Interface CfnVpcEndpointAssociationMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVpcEndpointAssociationMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:01.844Z")
@Stability(Stable)
public interface CfnVpcEndpointAssociationMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnVpcEndpointAssociationPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.networkfirewall.*;
CfnVpcEndpointAssociationMixinProps cfnVpcEndpointAssociationMixinProps = CfnVpcEndpointAssociationMixinProps.builder()
.description("description")
.firewallArn("firewallArn")
.subnetMapping(SubnetMappingProperty.builder()
.ipAddressType("ipAddressType")
.subnetId("subnetId")
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.vpcId("vpcId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnVpcEndpointAssociationMixinPropsstatic final classAn implementation forCfnVpcEndpointAssociationMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringA description of the VPC endpoint association.default StringThe Amazon Resource Name (ARN) of the firewall.default ObjectThe ID for a subnet that's used in an association with a firewall.getTags()The key:value pairs to associate with the resource.default StringgetVpcId()The unique identifier of the VPC for the endpoint association.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
A description of the VPC endpoint association.- See Also:
-
getFirewallArn
The Amazon Resource Name (ARN) of the firewall.- See Also:
-
getSubnetMapping
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.Returns union: either
IResolvableorCfnVpcEndpointAssociationPropsMixin.SubnetMappingProperty- See Also:
-
getTags
The key:value pairs to associate with the resource.- See Also:
-
getVpcId
The unique identifier of the VPC for the endpoint association.- See Also:
-
builder
-