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.Builder
networkAclName
(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.It is not recommended to use an explicit name.
Default: If you don't specify a networkAclName, AWS CloudFormation generates a unique physical ID and uses that ID for the group 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:
build
in interfacesoftware.amazon.jsii.Builder<NetworkAcl>
- Returns:
- a newly built instance of
NetworkAcl
.
-