Class CfnWebACLProps
Properties for defining a CfnWebACL
.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.WAF
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnWebACLProps : ICfnWebACLProps
Syntax (vb)
Public Class CfnWebACLProps Implements ICfnWebACLProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.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.WAF;
var cfnWebACLProps = new CfnWebACLProps {
DefaultAction = new WafActionProperty {
Type = "type"
},
MetricName = "metricName",
Name = "name",
// the properties below are optional
Rules = new [] { new ActivatedRuleProperty {
Priority = 123,
RuleId = "ruleId",
// the properties below are optional
Action = new WafActionProperty {
Type = "type"
}
} }
};
Synopsis
Constructors
CfnWebACLProps() | Properties for defining a |
Properties
DefaultAction | The action to perform if none of the |
MetricName | The name of the metrics for this |
Name | A friendly name or description of the |
Rules | An array that contains the action for each |
Constructors
CfnWebACLProps()
Properties for defining a CfnWebACL
.
public CfnWebACLProps()
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.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.WAF;
var cfnWebACLProps = new CfnWebACLProps {
DefaultAction = new WafActionProperty {
Type = "type"
},
MetricName = "metricName",
Name = "name",
// the properties below are optional
Rules = new [] { new ActivatedRuleProperty {
Priority = 123,
RuleId = "ruleId",
// the properties below are optional
Action = new WafActionProperty {
Type = "type"
}
} }
};
Properties
DefaultAction
The action to perform if none of the Rules
contained in the WebACL
match.
public object DefaultAction { get; set; }
Property Value
Remarks
The action is specified by the WafAction
object.
MetricName
The name of the metrics for this WebACL
.
public string MetricName { get; set; }
Property Value
Remarks
The name can contain only alphanumeric characters (A-Z, a-z, 0-9), with maximum length 128 and minimum length one. It can't contain whitespace or metric names reserved for AWS WAF , including "All" and "Default_Action." You can't change MetricName
after you create the WebACL
.
Name
A friendly name or description of the WebACL
.
public string Name { get; set; }
Property Value
Remarks
You can't change the name of a WebACL
after you create it.
Rules
An array that contains the action for each Rule
in a WebACL
, the priority of the Rule
, and the ID of the Rule
.
public object? Rules { get; set; }