Interface NetworkAclProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
NetworkAclProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-15T10:24:58.443Z")
@Stability(Stable)
public interface NetworkAclProps
extends software.amazon.jsii.JsiiSerializable
Properties to create NetworkAcl.
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.*; Subnet subnet; SubnetFilter subnetFilter; Vpc vpc; NetworkAclProps networkAclProps = NetworkAclProps.builder() .vpc(vpc) // the properties below are optional .networkAclName("networkAclName") .subnetSelection(SubnetSelection.builder() .availabilityZones(List.of("availabilityZones")) .onePerAz(false) .subnetFilters(List.of(subnetFilter)) .subnetGroupName("subnetGroupName") .subnets(List.of(subnet)) .subnetType(SubnetType.PRIVATE_ISOLATED) .build()) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forNetworkAclProps
static final class
An implementation forNetworkAclProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic NetworkAclProps.Builder
builder()
default String
The name of the NetworkAcl.default SubnetSelection
Subnets in the given VPC to associate the ACL with.getVpc()
The VPC in which to create the NetworkACL.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getVpc
The VPC in which to create the NetworkACL. -
getNetworkAclName
The name of the NetworkAcl.Since the NetworkAcl resource doesn't support providing a physical name, the value provided here will be recorded in the
Name
tag.Default: CDK generated name
-
getSubnetSelection
Subnets in the given VPC to associate the ACL with.More subnets can always be added later by calling
associateWithSubnets()
.Default: - No subnets associated
-
builder
- Returns:
- a
NetworkAclProps.Builder
ofNetworkAclProps
-