Interface SetStatusRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<SetStatusRequest.Builder,SetStatusRequest>,DataPipelineRequest.Builder,SdkBuilder<SetStatusRequest.Builder,SetStatusRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- SetStatusRequest
public static interface SetStatusRequest.Builder extends DataPipelineRequest.Builder, SdkPojo, CopyableBuilder<SetStatusRequest.Builder,SetStatusRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SetStatusRequest.BuilderobjectIds(String... objectIds)The IDs of the objects.SetStatusRequest.BuilderobjectIds(Collection<String> objectIds)The IDs of the objects.SetStatusRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)SetStatusRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)SetStatusRequest.BuilderpipelineId(String pipelineId)The ID of the pipeline that contains the objects.SetStatusRequest.Builderstatus(String status)The status to be set on all the objects specified inobjectIds.-
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.datapipeline.model.DataPipelineRequest.Builder
build
-
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
-
pipelineId
SetStatusRequest.Builder pipelineId(String pipelineId)
The ID of the pipeline that contains the objects.
- Parameters:
pipelineId- The ID of the pipeline that contains the objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
objectIds
SetStatusRequest.Builder objectIds(Collection<String> objectIds)
The IDs of the objects. The corresponding objects can be either physical or components, but not a mix of both types.
- Parameters:
objectIds- The IDs of the objects. The corresponding objects can be either physical or components, but not a mix of both types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
objectIds
SetStatusRequest.Builder objectIds(String... objectIds)
The IDs of the objects. The corresponding objects can be either physical or components, but not a mix of both types.
- Parameters:
objectIds- The IDs of the objects. The corresponding objects can be either physical or components, but not a mix of both types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
SetStatusRequest.Builder status(String status)
The status to be set on all the objects specified in
objectIds. For components, usePAUSEorRESUME. For instances, useTRY_CANCEL,RERUN, orMARK_FINISHED.- Parameters:
status- The status to be set on all the objects specified inobjectIds. For components, usePAUSEorRESUME. For instances, useTRY_CANCEL,RERUN, orMARK_FINISHED.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
SetStatusRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
SetStatusRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-