CfnFirewallRulePropsMixin
- class aws_cdk.cfn_property_mixins.aws_route53globalresolver.CfnFirewallRulePropsMixin(props, *, strategy=None)
Bases:
MixinResource schema for AWS::Route53GlobalResolver::FirewallRule.
- See:
- CloudformationResource:
AWS::Route53GlobalResolver::FirewallRule
- Mixin:
true
- 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.cfn_property_mixins import aws_route53globalresolver as route53globalresolver import aws_cdk as cdk # merge_strategy: cdk.IMergeStrategy cfn_firewall_rule_props_mixin = route53globalresolver.CfnFirewallRulePropsMixin(route53globalresolver.CfnFirewallRuleMixinProps( action="action", block_override_dns_type="blockOverrideDnsType", block_override_domain="blockOverrideDomain", block_override_ttl=123, block_response="blockResponse", client_token="clientToken", confidence_threshold="confidenceThreshold", description="description", dns_advanced_protection="dnsAdvancedProtection", dns_view_id="dnsViewId", firewall_domain_list_id="firewallDomainListId", name="name", priority=123, q_type="qType" ), strategy=merge_strategy )
Create a mixin to apply properties to
AWS::Route53GlobalResolver::FirewallRule.- Parameters:
props (
Union[CfnFirewallRuleMixinProps,Dict[str,Any]]) – L1 properties to apply.strategy (
Optional[IMergeStrategy]) – Strategy for merging nested properties. Default: - PropertyMergeStrategy.combine()
Methods
- apply_to(construct)
Apply the mixin properties to the construct.
- Parameters:
construct (
IConstruct)- Return type:
None
- supports(construct)
Check if this mixin supports the given construct.
- Parameters:
construct (
IConstruct)- Return type:
bool
Attributes
- CFN_PROPERTY_KEYS = ['action', 'blockOverrideDnsType', 'blockOverrideDomain', 'blockOverrideTtl', 'blockResponse', 'clientToken', 'confidenceThreshold', 'description', 'dnsAdvancedProtection', 'dnsViewId', 'firewallDomainListId', 'name', 'priority', 'qType']
Static Methods
- classmethod is_mixin(x)
Checks if
xis a Mixin.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsMixin.