CfnGeoMatchSetMixinProps
- class aws_cdk.mixins_preview.aws_wafregional.mixins.CfnGeoMatchSetMixinProps(*, geo_match_constraints=None, name=None)
Bases:
objectProperties for CfnGeoMatchSetPropsMixin.
- Parameters:
geo_match_constraints (
Union[IResolvable,Sequence[Union[IResolvable,GeoMatchConstraintProperty,Dict[str,Any]]],None]) – An array ofGeoMatchConstraintobjects, which contain the country that you want AWS WAF to search for.name (
Optional[str]) – A friendly name or description of theGeoMatchSet. You can’t change the name of anGeoMatchSetafter you create it.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_wafregional import mixins as wafregional_mixins cfn_geo_match_set_mixin_props = wafregional_mixins.CfnGeoMatchSetMixinProps( geo_match_constraints=[wafregional_mixins.CfnGeoMatchSetPropsMixin.GeoMatchConstraintProperty( type="type", value="value" )], name="name" )
Attributes
- geo_match_constraints
An array of
GeoMatchConstraintobjects, which contain the country that you want AWS WAF to search for.
- name
A friendly name or description of the
GeoMatchSet.You can’t change the name of an
GeoMatchSetafter you create it.