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