Interface AwsJobAbortConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AwsJobAbortConfig.Builder,AwsJobAbortConfig>,SdkBuilder<AwsJobAbortConfig.Builder,AwsJobAbortConfig>,SdkPojo
- Enclosing class:
- AwsJobAbortConfig
public static interface AwsJobAbortConfig.Builder extends SdkPojo, CopyableBuilder<AwsJobAbortConfig.Builder,AwsJobAbortConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AwsJobAbortConfig.BuilderabortCriteriaList(Collection<AwsJobAbortCriteria> abortCriteriaList)The list of criteria that determine when and how to abort the job.AwsJobAbortConfig.BuilderabortCriteriaList(Consumer<AwsJobAbortCriteria.Builder>... abortCriteriaList)The list of criteria that determine when and how to abort the job.AwsJobAbortConfig.BuilderabortCriteriaList(AwsJobAbortCriteria... abortCriteriaList)The list of criteria that determine when and how to abort the job.-
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
-
abortCriteriaList
AwsJobAbortConfig.Builder abortCriteriaList(Collection<AwsJobAbortCriteria> abortCriteriaList)
The list of criteria that determine when and how to abort the job.
- Parameters:
abortCriteriaList- The list of criteria that determine when and how to abort the job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
abortCriteriaList
AwsJobAbortConfig.Builder abortCriteriaList(AwsJobAbortCriteria... abortCriteriaList)
The list of criteria that determine when and how to abort the job.
- Parameters:
abortCriteriaList- The list of criteria that determine when and how to abort the job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
abortCriteriaList
AwsJobAbortConfig.Builder abortCriteriaList(Consumer<AwsJobAbortCriteria.Builder>... abortCriteriaList)
The list of criteria that determine when and how to abort the job.
This is a convenience method that creates an instance of theAwsJobAbortCriteria.Builderavoiding the need to create one manually viaAwsJobAbortCriteria.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#abortCriteriaList(List.) - Parameters:
abortCriteriaList- a consumer that will call methods onAwsJobAbortCriteria.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#abortCriteriaList(java.util.Collection)
-
-