interface CfnVpcEndpointAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.NetworkFirewall.CfnVpcEndpointAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsnetworkfirewall#CfnVpcEndpointAssociationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.networkfirewall.CfnVpcEndpointAssociationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_networkfirewall.CfnVpcEndpointAssociationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_networkfirewall » CfnVpcEndpointAssociationMixinProps |
Properties for CfnVpcEndpointAssociationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_networkfirewall as networkfirewall } from '@aws-cdk/cfn-property-mixins';
const cfnVpcEndpointAssociationMixinProps: networkfirewall.CfnVpcEndpointAssociationMixinProps = {
description: 'description',
firewallArn: 'firewallArn',
subnetMapping: {
ipAddressType: 'ipAddressType',
subnetId: 'subnetId',
},
tags: [{
key: 'key',
value: 'value',
}],
vpcId: 'vpcId',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A description of the VPC endpoint association. |
| firewall | string | The Amazon Resource Name (ARN) of the firewall. |
| subnet | IResolvable | Subnet | The ID for a subnet that's used in an association with a firewall. |
| tags? | Cfn[] | The key:value pairs to associate with the resource. |
| vpc | string | The unique identifier of the VPC for the endpoint association. |
description?
Type:
string
(optional)
A description of the VPC endpoint association.
firewallArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the firewall.
subnetMapping?
Type:
IResolvable | Subnet
(optional)
The ID for a subnet that's used in an association with a firewall.
This is used in CreateFirewall , AssociateSubnets , and CreateVpcEndpointAssociation . 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?
Type:
Cfn[]
(optional)
The key:value pairs to associate with the resource.
vpcId?
Type:
string
(optional)
The unique identifier of the VPC for the endpoint association.

.NET
Go
Java
Python
TypeScript