Class CfnIPSet
A CloudFormation AWS::WAFRegional::IPSet
.
Inherited Members
Namespace: Amazon.CDK.AWS.WAFRegional
Assembly: Amazon.CDK.AWS.WAFRegional.dll
Syntax (csharp)
public class CfnIPSet : CfnResource, IConstruct, IDependable, IInspectable
Syntax (vb)
Public Class CfnIPSet
Inherits CfnResource
Implements IConstruct, IDependable, IInspectable
Remarks
This is AWS WAF Classic documentation. For more information, see AWS WAF Classic in the developer guide.
For the latest version of AWS WAF , use the AWS WAF V2 API and see the AWS WAF Developer Guide . With the latest version, AWS WAF has a single set of endpoints for regional and global use.
Contains one or more IP addresses or blocks of IP addresses specified in Classless Inter-Domain Routing (CIDR) notation. AWS WAF supports IPv4 address ranges: /8 and any range between /16 through /32. AWS WAF supports IPv6 address ranges: /24, /32, /48, /56, /64, and /128.
To specify an individual IP address, you specify the four-part IP address followed by a /32
, for example, 192.0.2.0/32. To block a range of IP addresses, you can specify /8 or any range between /16 through /32 (for IPv4) or /24, /32, /48, /56, /64, or /128 (for IPv6). For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing .
CloudformationResource: AWS::WAFRegional::IPSet
Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.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 cfnIPSet = new CfnIPSet(this, "MyCfnIPSet", new CfnIPSetProps {
Name = "name",
// the properties below are optional
IpSetDescriptors = new [] { new Dictionary<string, string> {
{ "type", "type" },
{ "value", "value" }
} }
});
Synopsis
Constructors
CfnIPSet(Construct, String, ICfnIPSetProps) | Create a new |
CfnIPSet(ByRefValue) | Used by jsii to construct an instance of this class from a Javascript-owned object reference |
CfnIPSet(DeputyBase.DeputyProps) | Used by jsii to construct an instance of this class from DeputyProps |
Properties
CFN_RESOURCE_TYPE_NAME | The CloudFormation resource type name for this resource class. |
CfnProperties | |
IpSetDescriptors | The IP address type ( |
Name | A friendly name or description of the |
Methods
Inspect(TreeInspector) | Examines the CloudFormation resource and discloses attributes. |
RenderProperties(IDictionary<String, Object>) |
Constructors
CfnIPSet(Construct, String, ICfnIPSetProps)
Create a new AWS::WAFRegional::IPSet
.
public CfnIPSet(Construct scope, string id, ICfnIPSetProps props)
Parameters
- scope Construct
- scope in which this resource is defined.
- id System.String
- scoped id of the resource.
- props ICfnIPSetProps
- resource properties.
CfnIPSet(ByRefValue)
Used by jsii to construct an instance of this class from a Javascript-owned object reference
protected CfnIPSet(ByRefValue reference)
Parameters
- reference Amazon.JSII.Runtime.Deputy.ByRefValue
The Javascript-owned object reference
CfnIPSet(DeputyBase.DeputyProps)
Used by jsii to construct an instance of this class from DeputyProps
protected CfnIPSet(DeputyBase.DeputyProps props)
Parameters
- props Amazon.JSII.Runtime.Deputy.DeputyBase.DeputyProps
The deputy props
Properties
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
public static string CFN_RESOURCE_TYPE_NAME { get; }
Property Value
System.String
CfnProperties
protected override IDictionary<string, object> CfnProperties { get; }
Property Value
System.Collections.Generic.IDictionary<System.String, System.Object>
Overrides
IpSetDescriptors
The IP address type ( IPV4
or IPV6
) and the IP address range (in CIDR notation) that web requests originate from.
public virtual object IpSetDescriptors { get; set; }
Property Value
System.Object
Remarks
Name
A friendly name or description of the IPSet
.
public virtual string Name { get; set; }
Property Value
System.String
Remarks
You can't change the name of an IPSet
after you create it.
Methods
Inspect(TreeInspector)
Examines the CloudFormation resource and discloses attributes.
public virtual void Inspect(TreeInspector inspector)
Parameters
- inspector TreeInspector
- tree inspector to collect and process attributes.
RenderProperties(IDictionary<String, Object>)
protected override IDictionary<string, object> RenderProperties(IDictionary<string, object> props)
Parameters
- props System.Collections.Generic.IDictionary<System.String, System.Object>
Returns
System.Collections.Generic.IDictionary<System.String, System.Object>