Interface UpdateContainerInstancesStateRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<UpdateContainerInstancesStateRequest.Builder,UpdateContainerInstancesStateRequest>
,EcsRequest.Builder
,SdkBuilder<UpdateContainerInstancesStateRequest.Builder,UpdateContainerInstancesStateRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- UpdateContainerInstancesStateRequest
public static interface UpdateContainerInstancesStateRequest.Builder extends EcsRequest.Builder, SdkPojo, CopyableBuilder<UpdateContainerInstancesStateRequest.Builder,UpdateContainerInstancesStateRequest>
-
-
Method Summary
-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.ecs.model.EcsRequest.Builder
build
-
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
-
cluster
UpdateContainerInstancesStateRequest.Builder cluster(String cluster)
The short name or full Amazon Resource Name (ARN) of the cluster that hosts the container instance to update. If you do not specify a cluster, the default cluster is assumed.
- Parameters:
cluster
- The short name or full Amazon Resource Name (ARN) of the cluster that hosts the container instance to update. If you do not specify a cluster, the default cluster is assumed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
containerInstances
UpdateContainerInstancesStateRequest.Builder containerInstances(Collection<String> containerInstances)
A list of up to 10 container instance IDs or full ARN entries.
- Parameters:
containerInstances
- A list of up to 10 container instance IDs or full ARN entries.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
containerInstances
UpdateContainerInstancesStateRequest.Builder containerInstances(String... containerInstances)
A list of up to 10 container instance IDs or full ARN entries.
- Parameters:
containerInstances
- A list of up to 10 container instance IDs or full ARN entries.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
UpdateContainerInstancesStateRequest.Builder status(String status)
The container instance state to update the container instance with. The only valid values for this action are
ACTIVE
andDRAINING
. A container instance can only be updated toDRAINING
status once it has reached anACTIVE
state. If a container instance is inREGISTERING
,DEREGISTERING
, orREGISTRATION_FAILED
state you can describe the container instance but can't update the container instance state.- Parameters:
status
- The container instance state to update the container instance with. The only valid values for this action areACTIVE
andDRAINING
. A container instance can only be updated toDRAINING
status once it has reached anACTIVE
state. If a container instance is inREGISTERING
,DEREGISTERING
, orREGISTRATION_FAILED
state you can describe the container instance but can't update the container instance state.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ContainerInstanceStatus
,ContainerInstanceStatus
-
status
UpdateContainerInstancesStateRequest.Builder status(ContainerInstanceStatus status)
The container instance state to update the container instance with. The only valid values for this action are
ACTIVE
andDRAINING
. A container instance can only be updated toDRAINING
status once it has reached anACTIVE
state. If a container instance is inREGISTERING
,DEREGISTERING
, orREGISTRATION_FAILED
state you can describe the container instance but can't update the container instance state.- Parameters:
status
- The container instance state to update the container instance with. The only valid values for this action areACTIVE
andDRAINING
. A container instance can only be updated toDRAINING
status once it has reached anACTIVE
state. If a container instance is inREGISTERING
,DEREGISTERING
, orREGISTRATION_FAILED
state you can describe the container instance but can't update the container instance state.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ContainerInstanceStatus
,ContainerInstanceStatus
-
overrideConfiguration
UpdateContainerInstancesStateRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateContainerInstancesStateRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-