@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.501Z") @Stability(value=Stable) public interface SubnetNetworkAclAssociationProps extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
SubnetNetworkAclAssociationProps.Builder
A builder for
SubnetNetworkAclAssociationProps |
static class |
SubnetNetworkAclAssociationProps.Jsii$Proxy
An implementation for
SubnetNetworkAclAssociationProps |
| Modifier and Type | Method and Description |
|---|---|
static SubnetNetworkAclAssociationProps.Builder |
builder() |
INetworkAcl |
getNetworkAcl()
The Network ACL this association is defined for.
|
ISubnet |
getSubnet()
ID of the Subnet.
|
default String |
getSubnetNetworkAclAssociationName()
The name of the SubnetNetworkAclAssociation.
|
@Stability(value=Stable) @NotNull INetworkAcl getNetworkAcl()
@Stability(value=Stable) @NotNull ISubnet getSubnet()
@Stability(value=Stable) @Nullable default String getSubnetNetworkAclAssociationName()
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.
@Stability(value=Stable) static SubnetNetworkAclAssociationProps.Builder builder()
Copyright © 2022. All rights reserved.