public static interface NetworkAcl.Builder extends CopyableBuilder<NetworkAcl.Builder,NetworkAcl>
| Modifier and Type | Method and Description |
|---|---|
NetworkAcl.Builder |
associations(Collection<NetworkAclAssociation> associations)
Any associations between the network ACL and one or more subnets
|
NetworkAcl.Builder |
associations(Consumer<NetworkAclAssociation.Builder>... associations)
Any associations between the network ACL and one or more subnets
|
NetworkAcl.Builder |
associations(NetworkAclAssociation... associations)
Any associations between the network ACL and one or more subnets
|
NetworkAcl.Builder |
entries(Collection<NetworkAclEntry> entries)
One or more entries (rules) in the network ACL.
|
NetworkAcl.Builder |
entries(Consumer<NetworkAclEntry.Builder>... entries)
One or more entries (rules) in the network ACL.
|
NetworkAcl.Builder |
entries(NetworkAclEntry... entries)
One or more entries (rules) in the network ACL.
|
NetworkAcl.Builder |
isDefault(Boolean isDefault)
Indicates whether this is the default network ACL for the VPC.
|
NetworkAcl.Builder |
networkAclId(String networkAclId)
The ID of the network ACL.
|
NetworkAcl.Builder |
tags(Collection<Tag> tags)
Any tags assigned to the network ACL.
|
NetworkAcl.Builder |
tags(Consumer<Tag.Builder>... tags)
Any tags assigned to the network ACL.
|
NetworkAcl.Builder |
tags(Tag... tags)
Any tags assigned to the network ACL.
|
NetworkAcl.Builder |
vpcId(String vpcId)
The ID of the VPC for the network ACL.
|
copyapply, buildNetworkAcl.Builder associations(Collection<NetworkAclAssociation> associations)
Any associations between the network ACL and one or more subnets
associations - Any associations between the network ACL and one or more subnetsNetworkAcl.Builder associations(NetworkAclAssociation... associations)
Any associations between the network ACL and one or more subnets
associations - Any associations between the network ACL and one or more subnetsNetworkAcl.Builder associations(Consumer<NetworkAclAssociation.Builder>... associations)
Any associations between the network ACL and one or more subnets
This is a convenience that creates an instance of theList.Builder avoiding
the need to create one manually via List#builder() .
When the Consumer completes, List.Builder#build() is called
immediately and its result is passed to #associations(List) .associations - a consumer that will call methods on List.Builder #associations(List) NetworkAcl.Builder entries(Collection<NetworkAclEntry> entries)
One or more entries (rules) in the network ACL.
entries - One or more entries (rules) in the network ACL.NetworkAcl.Builder entries(NetworkAclEntry... entries)
One or more entries (rules) in the network ACL.
entries - One or more entries (rules) in the network ACL.NetworkAcl.Builder entries(Consumer<NetworkAclEntry.Builder>... entries)
One or more entries (rules) in the network ACL.
This is a convenience that creates an instance of theList.Builder avoiding the need
to create one manually via List#builder() .
When the Consumer completes, List.Builder#build() is called immediately and
its result is passed to #entries(List) .entries - a consumer that will call methods on List.Builder #entries(List) NetworkAcl.Builder isDefault(Boolean isDefault)
Indicates whether this is the default network ACL for the VPC.
isDefault - Indicates whether this is the default network ACL for the VPC.NetworkAcl.Builder networkAclId(String networkAclId)
The ID of the network ACL.
networkAclId - The ID of the network ACL.NetworkAcl.Builder tags(Collection<Tag> tags)
Any tags assigned to the network ACL.
tags - Any tags assigned to the network ACL.NetworkAcl.Builder tags(Tag... tags)
Any tags assigned to the network ACL.
tags - Any tags assigned to the network ACL.NetworkAcl.Builder tags(Consumer<Tag.Builder>... tags)
Any tags assigned to the network ACL.
This is a convenience that creates an instance of theList.Builder avoiding the need to create
one manually via List#builder() .
When the Consumer completes, List.Builder#build() is called immediately and its result
is passed to #tags(List) .tags - a consumer that will call methods on List.Builder #tags(List) NetworkAcl.Builder vpcId(String vpcId)
The ID of the VPC for the network ACL.
vpcId - The ID of the VPC for the network ACL.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.