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.Types.PathPatternConditionConfig

Description

 
Synopsis

Documentation

data PathPatternConditionConfig Source #

Information about a path pattern condition.

See: newPathPatternConditionConfig smart constructor.

Constructors

PathPatternConditionConfig' 

Fields

  • values :: Maybe [Text]

    One or more path patterns to compare against the request URL. The maximum size of each string is 128 characters. The comparison is case sensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character).

    If you specify multiple strings, the condition is satisfied if one of them matches the request URL. The path pattern is compared only to the path of the URL, not to its query string. To compare against the query string, use QueryStringConditionConfig.

Instances

Instances details
Eq PathPatternConditionConfig Source # 
Instance details

Defined in Amazonka.ELBV2.Types.PathPatternConditionConfig

Read PathPatternConditionConfig Source # 
Instance details

Defined in Amazonka.ELBV2.Types.PathPatternConditionConfig

Show PathPatternConditionConfig Source # 
Instance details

Defined in Amazonka.ELBV2.Types.PathPatternConditionConfig

Generic PathPatternConditionConfig Source # 
Instance details

Defined in Amazonka.ELBV2.Types.PathPatternConditionConfig

Associated Types

type Rep PathPatternConditionConfig :: Type -> Type #

NFData PathPatternConditionConfig Source # 
Instance details

Defined in Amazonka.ELBV2.Types.PathPatternConditionConfig

Hashable PathPatternConditionConfig Source # 
Instance details

Defined in Amazonka.ELBV2.Types.PathPatternConditionConfig

ToQuery PathPatternConditionConfig Source # 
Instance details

Defined in Amazonka.ELBV2.Types.PathPatternConditionConfig

FromXML PathPatternConditionConfig Source # 
Instance details

Defined in Amazonka.ELBV2.Types.PathPatternConditionConfig

type Rep PathPatternConditionConfig Source # 
Instance details

Defined in Amazonka.ELBV2.Types.PathPatternConditionConfig

type Rep PathPatternConditionConfig = D1 ('MetaData "PathPatternConditionConfig" "Amazonka.ELBV2.Types.PathPatternConditionConfig" "libZSservicesZSamazonka-elbv2ZSamazonka-elbv2" 'False) (C1 ('MetaCons "PathPatternConditionConfig'" 'PrefixI 'True) (S1 ('MetaSel ('Just "values") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text]))))

newPathPatternConditionConfig :: PathPatternConditionConfig Source #

Create a value of PathPatternConditionConfig 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:values:PathPatternConditionConfig', pathPatternConditionConfig_values - One or more path patterns to compare against the request URL. The maximum size of each string is 128 characters. The comparison is case sensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character).

If you specify multiple strings, the condition is satisfied if one of them matches the request URL. The path pattern is compared only to the path of the URL, not to its query string. To compare against the query string, use QueryStringConditionConfig.

pathPatternConditionConfig_values :: Lens' PathPatternConditionConfig (Maybe [Text]) Source #

One or more path patterns to compare against the request URL. The maximum size of each string is 128 characters. The comparison is case sensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character).

If you specify multiple strings, the condition is satisfied if one of them matches the request URL. The path pattern is compared only to the path of the URL, not to its query string. To compare against the query string, use QueryStringConditionConfig.