libZSservicesZSamazonka-elbv2ZSamazonka-elbv2
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.ELBV2.DescribeRules

Description

Describes the specified rules or the rules for the specified listener. You must specify either a listener or one or more rules.

This operation returns paginated results.

Synopsis

Creating a Request

data DescribeRules Source #

See: newDescribeRules smart constructor.

Constructors

DescribeRules' 

Fields

Instances

Instances details
Eq DescribeRules Source # 
Instance details

Defined in Amazonka.ELBV2.DescribeRules

Read DescribeRules Source # 
Instance details

Defined in Amazonka.ELBV2.DescribeRules

Show DescribeRules Source # 
Instance details

Defined in Amazonka.ELBV2.DescribeRules

Generic DescribeRules Source # 
Instance details

Defined in Amazonka.ELBV2.DescribeRules

Associated Types

type Rep DescribeRules :: Type -> Type #

NFData DescribeRules Source # 
Instance details

Defined in Amazonka.ELBV2.DescribeRules

Methods

rnf :: DescribeRules -> () #

Hashable DescribeRules Source # 
Instance details

Defined in Amazonka.ELBV2.DescribeRules

AWSPager DescribeRules Source # 
Instance details

Defined in Amazonka.ELBV2.DescribeRules

AWSRequest DescribeRules Source # 
Instance details

Defined in Amazonka.ELBV2.DescribeRules

Associated Types

type AWSResponse DescribeRules #

ToHeaders DescribeRules Source # 
Instance details

Defined in Amazonka.ELBV2.DescribeRules

ToPath DescribeRules Source # 
Instance details

Defined in Amazonka.ELBV2.DescribeRules

ToQuery DescribeRules Source # 
Instance details

Defined in Amazonka.ELBV2.DescribeRules

type Rep DescribeRules Source # 
Instance details

Defined in Amazonka.ELBV2.DescribeRules

type Rep DescribeRules = D1 ('MetaData "DescribeRules" "Amazonka.ELBV2.DescribeRules" "libZSservicesZSamazonka-elbv2ZSamazonka-elbv2" 'False) (C1 ('MetaCons "DescribeRules'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "listenerArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "marker") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "ruleArns") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: S1 ('MetaSel ('Just "pageSize") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)))))
type AWSResponse DescribeRules Source # 
Instance details

Defined in Amazonka.ELBV2.DescribeRules

newDescribeRules :: DescribeRules Source #

Create a value of DescribeRules with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:listenerArn:DescribeRules', describeRules_listenerArn - The Amazon Resource Name (ARN) of the listener.

$sel:marker:DescribeRules', describeRules_marker - The marker for the next set of results. (You received this marker from a previous call.)

$sel:ruleArns:DescribeRules', describeRules_ruleArns - The Amazon Resource Names (ARN) of the rules.

$sel:pageSize:DescribeRules', describeRules_pageSize - The maximum number of results to return with this call.

Request Lenses

describeRules_listenerArn :: Lens' DescribeRules (Maybe Text) Source #

The Amazon Resource Name (ARN) of the listener.

describeRules_marker :: Lens' DescribeRules (Maybe Text) Source #

The marker for the next set of results. (You received this marker from a previous call.)

describeRules_ruleArns :: Lens' DescribeRules (Maybe [Text]) Source #

The Amazon Resource Names (ARN) of the rules.

describeRules_pageSize :: Lens' DescribeRules (Maybe Natural) Source #

The maximum number of results to return with this call.

Destructuring the Response

data DescribeRulesResponse Source #

See: newDescribeRulesResponse smart constructor.

Constructors

DescribeRulesResponse' 

Fields

Instances

Instances details
Eq DescribeRulesResponse Source # 
Instance details

Defined in Amazonka.ELBV2.DescribeRules

Read DescribeRulesResponse Source # 
Instance details

Defined in Amazonka.ELBV2.DescribeRules

Show DescribeRulesResponse Source # 
Instance details

Defined in Amazonka.ELBV2.DescribeRules

Generic DescribeRulesResponse Source # 
Instance details

Defined in Amazonka.ELBV2.DescribeRules

Associated Types

type Rep DescribeRulesResponse :: Type -> Type #

NFData DescribeRulesResponse Source # 
Instance details

Defined in Amazonka.ELBV2.DescribeRules

Methods

rnf :: DescribeRulesResponse -> () #

type Rep DescribeRulesResponse Source # 
Instance details

Defined in Amazonka.ELBV2.DescribeRules

type Rep DescribeRulesResponse = D1 ('MetaData "DescribeRulesResponse" "Amazonka.ELBV2.DescribeRules" "libZSservicesZSamazonka-elbv2ZSamazonka-elbv2" 'False) (C1 ('MetaCons "DescribeRulesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "rules") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Rule])) :*: (S1 ('MetaSel ('Just "nextMarker") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newDescribeRulesResponse Source #

Create a value of DescribeRulesResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:rules:DescribeRulesResponse', describeRulesResponse_rules - Information about the rules.

$sel:nextMarker:DescribeRulesResponse', describeRulesResponse_nextMarker - If there are additional results, this is the marker for the next set of results. Otherwise, this is null.

$sel:httpStatus:DescribeRulesResponse', describeRulesResponse_httpStatus - The response's http status code.

Response Lenses

describeRulesResponse_nextMarker :: Lens' DescribeRulesResponse (Maybe Text) Source #

If there are additional results, this is the marker for the next set of results. Otherwise, this is null.