Class NetworkAcl.Builder
java.lang.Object
software.amazon.awscdk.services.ec2.NetworkAcl.Builder
- All Implemented Interfaces:
software.amazon.jsii.Builder<NetworkAcl>
- Enclosing class:
NetworkAcl
@Stability(Stable)
public static final class NetworkAcl.Builder
extends Object
implements software.amazon.jsii.Builder<NetworkAcl>
A fluent builder for
NetworkAcl.-
Method Summary
Modifier and TypeMethodDescriptionbuild()static NetworkAcl.BuildernetworkAclName(String networkAclName) The name of the NetworkAcl.subnetSelection(SubnetSelection subnetSelection) Subnets in the given VPC to associate the ACL with.The VPC in which to create the NetworkACL.
-
Method Details
-
create
@Stability(Stable) public static NetworkAcl.Builder create(software.constructs.Construct scope, String id) - Parameters:
scope- This parameter is required.id- This parameter is required.- Returns:
- a new instance of
NetworkAcl.Builder.
-
vpc
The VPC in which to create the NetworkACL.- Parameters:
vpc- The VPC in which to create the NetworkACL. This parameter is required.- Returns:
this
-
networkAclName
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
Nametag.Default: CDK generated name
- Parameters:
networkAclName- The name of the NetworkAcl. This parameter is required.- Returns:
this
-
subnetSelection
Subnets in the given VPC to associate the ACL with.More subnets can always be added later by calling
associateWithSubnets().Default: - No subnets associated
- Parameters:
subnetSelection- Subnets in the given VPC to associate the ACL with. This parameter is required.- Returns:
this
-
build
- Specified by:
buildin interfacesoftware.amazon.jsii.Builder<NetworkAcl>- Returns:
- a newly built instance of
NetworkAcl.
-