Interface ICfnFirewallRuleGroupProps
Properties for defining a CfnFirewallRuleGroup
.
Namespace: Amazon.CDK.AWS.Route53Resolver
Assembly: Amazon.CDK.AWS.Route53Resolver.dll
Syntax (csharp)
public interface ICfnFirewallRuleGroupProps
Syntax (vb)
Public Interface ICfnFirewallRuleGroupProps
Remarks
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.Route53Resolver;
CfnFirewallRuleGroupProps cfnFirewallRuleGroupProps = new CfnFirewallRuleGroupProps {
FirewallRules = new [] { new FirewallRuleProperty {
Action = "action",
FirewallDomainListId = "firewallDomainListId",
Priority = 123,
// the properties below are optional
BlockOverrideDnsType = "blockOverrideDnsType",
BlockOverrideDomain = "blockOverrideDomain",
BlockOverrideTtl = 123,
BlockResponse = "blockResponse"
} },
Name = "name",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Properties
FirewallRules | A list of the rules that you have defined. |
Name | The name of the rule group. |
Tags | A list of the tag keys and values that you want to associate with the rule group. |
Properties
FirewallRules
A list of the rules that you have defined.
virtual object FirewallRules { get; }
Property Value
System.Object
Remarks
Name
The name of the rule group.
virtual string Name { get; }
Property Value
System.String
Remarks
Tags
A list of the tag keys and values that you want to associate with the rule group.
virtual ICfnTag[] Tags { get; }
Property Value
ICfnTag[]