Show / Hide Table of Contents

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-firewallrulegroup.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.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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-firewallrulegroup.html#cfn-route53resolver-firewallrulegroup-firewallrules

Name

The name of the rule group.

virtual string Name { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-firewallrulegroup.html#cfn-route53resolver-firewallrulegroup-name

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[]

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-firewallrulegroup.html#cfn-route53resolver-firewallrulegroup-tags

Back to top Generated by DocFX