CfnVpcEndpointAssociationMixinProps
- class aws_cdk.mixins_preview.aws_networkfirewall.mixins.CfnVpcEndpointAssociationMixinProps(*, description=None, firewall_arn=None, subnet_mapping=None, tags=None, vpc_id=None)
Bases:
objectProperties for CfnVpcEndpointAssociationPropsMixin.
- Parameters:
description (
Optional[str]) – A description of the VPC endpoint association.firewall_arn (
Optional[str]) – The Amazon Resource Name (ARN) of the firewall.subnet_mapping (
Union[IResolvable,SubnetMappingProperty,Dict[str,Any],None]) – The ID for a subnet that’s used in an association with a firewall. This is used inCreateFirewall,AssociateSubnets, andCreateVpcEndpointAssociation. AWS Network Firewall creates an instance of the associated firewall in each subnet that you specify, to filter traffic in the subnet’s Availability Zone.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The key:value pairs to associate with the resource.vpc_id (
Optional[str]) – The unique identifier of the VPC for the endpoint association.
- See:
- 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_networkfirewall import mixins as networkfirewall_mixins cfn_vpc_endpoint_association_mixin_props = networkfirewall_mixins.CfnVpcEndpointAssociationMixinProps( description="description", firewall_arn="firewallArn", subnet_mapping=networkfirewall_mixins.CfnVpcEndpointAssociationPropsMixin.SubnetMappingProperty( ip_address_type="ipAddressType", subnet_id="subnetId" ), tags=[CfnTag( key="key", value="value" )], vpc_id="vpcId" )
Attributes
- description
A description of the VPC endpoint association.
- firewall_arn
The Amazon Resource Name (ARN) of the firewall.
- subnet_mapping
The ID for a subnet that’s used in an association with a firewall.
This is used in
CreateFirewall,AssociateSubnets, andCreateVpcEndpointAssociation. AWS Network Firewall creates an instance of the associated firewall in each subnet that you specify, to filter traffic in the subnet’s Availability Zone.
- tags
value pairs to associate with the resource.
- vpc_id
The unique identifier of the VPC for the endpoint association.