CfnFirewallRuleGroupMixinProps

class aws_cdk.mixins_preview.aws_route53resolver.mixins.CfnFirewallRuleGroupMixinProps(*, firewall_rules=None, name=None, tags=None)

Bases: object

Properties for CfnFirewallRuleGroupPropsMixin.

Parameters:
  • firewall_rules (Union[IResolvable, Sequence[Union[IResolvable, FirewallRuleProperty, Dict[str, Any]]], None]) – A list of the rules that you have defined.

  • name (Optional[str]) – The name of the rule group.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – A list of the tag keys and values that you want to associate with the rule group.

See:

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

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_route53resolver import mixins as route53resolver_mixins

cfn_firewall_rule_group_mixin_props = route53resolver_mixins.CfnFirewallRuleGroupMixinProps(
    firewall_rules=[route53resolver_mixins.CfnFirewallRuleGroupPropsMixin.FirewallRuleProperty(
        action="action",
        block_override_dns_type="blockOverrideDnsType",
        block_override_domain="blockOverrideDomain",
        block_override_ttl=123,
        block_response="blockResponse",
        confidence_threshold="confidenceThreshold",
        dns_threat_protection="dnsThreatProtection",
        firewall_domain_list_id="firewallDomainListId",
        firewall_domain_redirection_action="firewallDomainRedirectionAction",
        firewall_threat_protection_id="firewallThreatProtectionId",
        priority=123,
        qtype="qtype"
    )],
    name="name",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

firewall_rules

A list of the rules that you have defined.

See:

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

name

The name of the rule group.

See:

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.

See:

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