Interface VirtualCluster.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<VirtualCluster.Builder,VirtualCluster>,SdkBuilder<VirtualCluster.Builder,VirtualCluster>,SdkPojo
- Enclosing class:
- VirtualCluster
public static interface VirtualCluster.Builder extends SdkPojo, CopyableBuilder<VirtualCluster.Builder,VirtualCluster>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description VirtualCluster.Builderarn(String arn)The ARN of the virtual cluster.default VirtualCluster.BuildercontainerProvider(Consumer<ContainerProvider.Builder> containerProvider)The container provider of the virtual cluster.VirtualCluster.BuildercontainerProvider(ContainerProvider containerProvider)The container provider of the virtual cluster.VirtualCluster.BuildercreatedAt(Instant createdAt)The date and time when the virtual cluster is created.VirtualCluster.Builderid(String id)The ID of the virtual cluster.VirtualCluster.Buildername(String name)The name of the virtual cluster.VirtualCluster.Builderstate(String state)The state of the virtual cluster.VirtualCluster.Builderstate(VirtualClusterState state)The state of the virtual cluster.VirtualCluster.Buildertags(Map<String,String> tags)The assigned tags of the virtual cluster.-
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, sdkFields
-
-
-
-
Method Detail
-
id
VirtualCluster.Builder id(String id)
The ID of the virtual cluster.
- Parameters:
id- The ID of the virtual cluster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
VirtualCluster.Builder name(String name)
The name of the virtual cluster.
- Parameters:
name- The name of the virtual cluster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
VirtualCluster.Builder arn(String arn)
The ARN of the virtual cluster.
- Parameters:
arn- The ARN of the virtual cluster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
state
VirtualCluster.Builder state(String state)
The state of the virtual cluster.
- Parameters:
state- The state of the virtual cluster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
VirtualClusterState,VirtualClusterState
-
state
VirtualCluster.Builder state(VirtualClusterState state)
The state of the virtual cluster.
- Parameters:
state- The state of the virtual cluster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
VirtualClusterState,VirtualClusterState
-
containerProvider
VirtualCluster.Builder containerProvider(ContainerProvider containerProvider)
The container provider of the virtual cluster.
- Parameters:
containerProvider- The container provider of the virtual cluster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
containerProvider
default VirtualCluster.Builder containerProvider(Consumer<ContainerProvider.Builder> containerProvider)
The container provider of the virtual cluster.
This is a convenience method that creates an instance of theContainerProvider.Builderavoiding the need to create one manually viaContainerProvider.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocontainerProvider(ContainerProvider).- Parameters:
containerProvider- a consumer that will call methods onContainerProvider.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
containerProvider(ContainerProvider)
-
createdAt
VirtualCluster.Builder createdAt(Instant createdAt)
The date and time when the virtual cluster is created.
- Parameters:
createdAt- The date and time when the virtual cluster is created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
VirtualCluster.Builder tags(Map<String,String> tags)
The assigned tags of the virtual cluster.
- Parameters:
tags- The assigned tags of the virtual cluster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-