Class: AWSCDK::WAFv2::CfnRuleGroup::LabelMatchStatementProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
wa_fv2/cfn_rule_group.rb

Overview

A rule statement to match against labels that have been added to the web request by rules that have already run in the web ACL.

The label match statement provides the label or namespace string to search for. The label string can represent a part or all of the fully qualified label name that had been added to the web request. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label. If you do not provide the fully qualified name in your label match string, AWS WAF performs the search for labels that were added in the same context as the label match statement.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(key:, scope:) ⇒ LabelMatchStatementProperty

Returns a new instance of LabelMatchStatementProperty.

Parameters:

  • key (String)

    The string to match against. The setting you provide for this depends on the match statement's Scope setting:.

  • scope (String)

    Specify whether you want to match using the label name or just the namespace.



2478
2479
2480
2481
2482
2483
# File 'wa_fv2/cfn_rule_group.rb', line 2478

def initialize(key:, scope:)
  @key = key
  Jsii::Type.check_type(@key, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "key")
  @scope = scope
  Jsii::Type.check_type(@scope, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "scope")
end

Instance Attribute Details

#keyString (readonly)

The string to match against. The setting you provide for this depends on the match statement's Scope setting:.

  • If the Scope indicates LABEL , then this specification must include the name and can include any number of preceding namespace specifications and prefix up to providing the fully qualified label name.
  • If the Scope indicates NAMESPACE , then this specification can include any number of contiguous namespace strings, and can include the entire label namespace prefix from the rule group or web ACL where the label originates.

Labels are case sensitive and components of a label must be separated by colon, for example NS1:NS2:name .



2494
2495
2496
# File 'wa_fv2/cfn_rule_group.rb', line 2494

def key
  @key
end

#scopeString (readonly)

Specify whether you want to match using the label name or just the namespace.



2499
2500
2501
# File 'wa_fv2/cfn_rule_group.rb', line 2499

def scope
  @scope
end

Class Method Details

.jsii_propertiesObject



2501
2502
2503
2504
2505
2506
# File 'wa_fv2/cfn_rule_group.rb', line 2501

def self.jsii_properties
  {
    :key => "key",
    :scope => "scope",
  }
end

Instance Method Details

#to_jsiiObject



2508
2509
2510
2511
2512
2513
2514
2515
# File 'wa_fv2/cfn_rule_group.rb', line 2508

def to_jsii
  result = {}
  result.merge!({
    "key" => @key,
    "scope" => @scope,
  })
  result.compact
end