Interface AwsEc2NetworkAclDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AwsEc2NetworkAclDetails.Builder,AwsEc2NetworkAclDetails>,SdkBuilder<AwsEc2NetworkAclDetails.Builder,AwsEc2NetworkAclDetails>,SdkPojo
- Enclosing class:
- AwsEc2NetworkAclDetails
public static interface AwsEc2NetworkAclDetails.Builder extends SdkPojo, CopyableBuilder<AwsEc2NetworkAclDetails.Builder,AwsEc2NetworkAclDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AwsEc2NetworkAclDetails.Builderassociations(Collection<AwsEc2NetworkAclAssociation> associations)Associations between the network ACL and subnets.AwsEc2NetworkAclDetails.Builderassociations(Consumer<AwsEc2NetworkAclAssociation.Builder>... associations)Associations between the network ACL and subnets.AwsEc2NetworkAclDetails.Builderassociations(AwsEc2NetworkAclAssociation... associations)Associations between the network ACL and subnets.AwsEc2NetworkAclDetails.Builderentries(Collection<AwsEc2NetworkAclEntry> entries)The set of rules in the network ACL.AwsEc2NetworkAclDetails.Builderentries(Consumer<AwsEc2NetworkAclEntry.Builder>... entries)The set of rules in the network ACL.AwsEc2NetworkAclDetails.Builderentries(AwsEc2NetworkAclEntry... entries)The set of rules in the network ACL.AwsEc2NetworkAclDetails.BuilderisDefault(Boolean isDefault)Whether this is the default network ACL for the VPC.AwsEc2NetworkAclDetails.BuildernetworkAclId(String networkAclId)The identifier of the network ACL.AwsEc2NetworkAclDetails.BuilderownerId(String ownerId)The identifier of the Amazon Web Services account that owns the network ACL.AwsEc2NetworkAclDetails.BuildervpcId(String vpcId)The identifier of the VPC for the network ACL.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
isDefault
AwsEc2NetworkAclDetails.Builder isDefault(Boolean isDefault)
Whether this is the default network ACL for the VPC.
- Parameters:
isDefault- Whether this is the default network ACL for the VPC.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
networkAclId
AwsEc2NetworkAclDetails.Builder networkAclId(String networkAclId)
The identifier of the network ACL.
- Parameters:
networkAclId- The identifier of the network ACL.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ownerId
AwsEc2NetworkAclDetails.Builder ownerId(String ownerId)
The identifier of the Amazon Web Services account that owns the network ACL.
- Parameters:
ownerId- The identifier of the Amazon Web Services account that owns the network ACL.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcId
AwsEc2NetworkAclDetails.Builder vpcId(String vpcId)
The identifier of the VPC for the network ACL.
- Parameters:
vpcId- The identifier of the VPC for the network ACL.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
associations
AwsEc2NetworkAclDetails.Builder associations(Collection<AwsEc2NetworkAclAssociation> associations)
Associations between the network ACL and subnets.
- Parameters:
associations- Associations between the network ACL and subnets.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
associations
AwsEc2NetworkAclDetails.Builder associations(AwsEc2NetworkAclAssociation... associations)
Associations between the network ACL and subnets.
- Parameters:
associations- Associations between the network ACL and subnets.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
associations
AwsEc2NetworkAclDetails.Builder associations(Consumer<AwsEc2NetworkAclAssociation.Builder>... associations)
Associations between the network ACL and subnets.
This is a convenience method that creates an instance of theAwsEc2NetworkAclAssociation.Builderavoiding the need to create one manually viaAwsEc2NetworkAclAssociation.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#associations(List.) - Parameters:
associations- a consumer that will call methods onAwsEc2NetworkAclAssociation.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#associations(java.util.Collection)
-
entries
AwsEc2NetworkAclDetails.Builder entries(Collection<AwsEc2NetworkAclEntry> entries)
The set of rules in the network ACL.
- Parameters:
entries- The set of rules in the network ACL.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entries
AwsEc2NetworkAclDetails.Builder entries(AwsEc2NetworkAclEntry... entries)
The set of rules in the network ACL.
- Parameters:
entries- The set of rules in the network ACL.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entries
AwsEc2NetworkAclDetails.Builder entries(Consumer<AwsEc2NetworkAclEntry.Builder>... entries)
The set of rules in the network ACL.
This is a convenience method that creates an instance of theAwsEc2NetworkAclEntry.Builderavoiding the need to create one manually viaAwsEc2NetworkAclEntry.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#entries(List.) - Parameters:
entries- a consumer that will call methods onAwsEc2NetworkAclEntry.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#entries(java.util.Collection)
-
-