public static interface ClusterSubnetGroup.Builder extends SdkPojo, CopyableBuilder<ClusterSubnetGroup.Builder,ClusterSubnetGroup>
Modifier and Type | Method and Description |
---|---|
ClusterSubnetGroup.Builder |
clusterSubnetGroupName(String clusterSubnetGroupName)
The name of the cluster subnet group.
|
ClusterSubnetGroup.Builder |
description(String description)
The description of the cluster subnet group.
|
ClusterSubnetGroup.Builder |
subnetGroupStatus(String subnetGroupStatus)
The status of the cluster subnet group.
|
ClusterSubnetGroup.Builder |
subnets(Collection<Subnet> subnets)
A list of the VPC Subnet elements.
|
ClusterSubnetGroup.Builder |
subnets(Consumer<Subnet.Builder>... subnets)
A list of the VPC Subnet elements.
|
ClusterSubnetGroup.Builder |
subnets(Subnet... subnets)
A list of the VPC Subnet elements.
|
ClusterSubnetGroup.Builder |
tags(Collection<Tag> tags)
The list of tags for the cluster subnet group.
|
ClusterSubnetGroup.Builder |
tags(Consumer<Tag.Builder>... tags)
The list of tags for the cluster subnet group.
|
ClusterSubnetGroup.Builder |
tags(Tag... tags)
The list of tags for the cluster subnet group.
|
ClusterSubnetGroup.Builder |
vpcId(String vpcId)
The VPC ID of the cluster subnet group.
|
copy
applyMutation, build
ClusterSubnetGroup.Builder clusterSubnetGroupName(String clusterSubnetGroupName)
The name of the cluster subnet group.
clusterSubnetGroupName
- The name of the cluster subnet group.ClusterSubnetGroup.Builder description(String description)
The description of the cluster subnet group.
description
- The description of the cluster subnet group.ClusterSubnetGroup.Builder vpcId(String vpcId)
The VPC ID of the cluster subnet group.
vpcId
- The VPC ID of the cluster subnet group.ClusterSubnetGroup.Builder subnetGroupStatus(String subnetGroupStatus)
The status of the cluster subnet group. Possible values are Complete
, Incomplete
and Invalid
.
subnetGroupStatus
- The status of the cluster subnet group. Possible values are Complete
,
Incomplete
and Invalid
.ClusterSubnetGroup.Builder subnets(Collection<Subnet> subnets)
A list of the VPC Subnet elements.
subnets
- A list of the VPC Subnet elements.ClusterSubnetGroup.Builder subnets(Subnet... subnets)
A list of the VPC Subnet elements.
subnets
- A list of the VPC Subnet elements.ClusterSubnetGroup.Builder subnets(Consumer<Subnet.Builder>... subnets)
A list of the VPC Subnet elements.
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 #subnets(List)
.subnets
- a consumer that will call methods on List.Builder
#subnets(List)
ClusterSubnetGroup.Builder tags(Collection<Tag> tags)
The list of tags for the cluster subnet group.
tags
- The list of tags for the cluster subnet group.ClusterSubnetGroup.Builder tags(Tag... tags)
The list of tags for the cluster subnet group.
tags
- The list of tags for the cluster subnet group.ClusterSubnetGroup.Builder tags(Consumer<Tag.Builder>... tags)
The list of tags for the cluster subnet group.
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)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.