Interface SubnetNetworkAclAssociationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
SubnetNetworkAclAssociationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:39.541Z")
@Stability(Stable)
public interface SubnetNetworkAclAssociationProps
extends software.amazon.jsii.JsiiSerializable
Properties to create a SubnetNetworkAclAssociation.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.ec2.*; NetworkAcl networkAcl; Subnet subnet; SubnetNetworkAclAssociationProps subnetNetworkAclAssociationProps = SubnetNetworkAclAssociationProps.builder() .networkAcl(networkAcl) .subnet(subnet) // the properties below are optional .subnetNetworkAclAssociationName("subnetNetworkAclAssociationName") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forSubnetNetworkAclAssociationProps
static final class
An implementation forSubnetNetworkAclAssociationProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getNetworkAcl
The Network ACL this association is defined for. -
getSubnet
ID of the Subnet. -
getSubnetNetworkAclAssociationName
The name of the SubnetNetworkAclAssociation.It is not recommended to use an explicit name.
Default: If you don't specify a SubnetNetworkAclAssociationName, AWS CloudFormation generates a unique physical ID and uses that ID for the group name.
-
builder
-