Show / Hide Table of Contents

Class CfnGeoMatchSetProps

Properties for defining a CfnGeoMatchSet.

Inheritance
object
CfnGeoMatchSetProps
Implements
ICfnGeoMatchSetProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.WAFRegional
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnGeoMatchSetProps : ICfnGeoMatchSetProps
Syntax (vb)
Public Class CfnGeoMatchSetProps Implements 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

Constructors

CfnGeoMatchSetProps()

Properties for defining a CfnGeoMatchSet.

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 .

Constructors

CfnGeoMatchSetProps()

Properties for defining a CfnGeoMatchSet.

public CfnGeoMatchSetProps()
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"
                 } }
             };

Properties

GeoMatchConstraints

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

public object? GeoMatchConstraints { get; set; }
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 .

public string Name { get; set; }
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

Implements

ICfnGeoMatchSetProps
Back to top Generated by DocFX