Show / Hide Table of Contents

Interface ICfnGeoMatchSetProps

Properties for defining a CfnGeoMatchSet.

Namespace: Amazon.CDK.AWS.WAFRegional
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnGeoMatchSetProps
Syntax (vb)
Public Interface ICfnGeoMatchSetProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.WAFRegional;

             var cfnGeoMatchSetProps = new CfnGeoMatchSetProps {
                 Name = "name",

                 // the properties below are optional
                 GeoMatchConstraints = new [] { new GeoMatchConstraintProperty {
                     Type = "type",
                     Value = "value"
                 } }
             };

Synopsis

Properties

GeoMatchConstraints

An array of GeoMatchConstraint objects, which contain the country that you want AWS WAF to search for.

Name

A friendly name or description of the GeoMatchSet .

Properties

GeoMatchConstraints

An array of GeoMatchConstraint objects, which contain the country that you want AWS WAF to search for.

object? GeoMatchConstraints { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html#cfn-wafregional-geomatchset-geomatchconstraints

Name

A friendly name or description of the GeoMatchSet .

string Name { get; }
Property Value

string

Remarks

You can't change the name of an GeoMatchSet after you create it.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html#cfn-wafregional-geomatchset-name

Back to top Generated by DocFX