interface CfnGeoMatchSetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WAFRegional.Mixins.CfnGeoMatchSetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswafregional/mixins#CfnGeoMatchSetMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.wafregional.mixins.CfnGeoMatchSetMixinProps |
Python | aws_cdk.mixins_preview.aws_wafregional.mixins.CfnGeoMatchSetMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_wafregional » mixins » CfnGeoMatchSetMixinProps |
Properties for CfnGeoMatchSetPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as wafregional_mixins } from '@aws-cdk/mixins-preview/aws-wafregional';
const cfnGeoMatchSetMixinProps: wafregional_mixins.CfnGeoMatchSetMixinProps = {
geoMatchConstraints: [{
type: 'type',
value: 'value',
}],
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| geo | IResolvable | (IResolvable | Geo)[] | An array of GeoMatchConstraint objects, which contain the country that you want AWS WAF to search for. |
| name? | string | A friendly name or description of the GeoMatchSet . |
geoMatchConstraints?
Type:
IResolvable | (IResolvable | Geo)[]
(optional)
An array of GeoMatchConstraint objects, which contain the country that you want AWS WAF to search for.
name?
Type:
string
(optional)
A friendly name or description of the GeoMatchSet .
You can't change the name of an GeoMatchSet after you create it.

.NET
Go
Java
Python
TypeScript