Interface DatasetContentStatus.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DatasetContentStatus.Builder,DatasetContentStatus>,SdkBuilder<DatasetContentStatus.Builder,DatasetContentStatus>,SdkPojo
- Enclosing class:
- DatasetContentStatus
public static interface DatasetContentStatus.Builder extends SdkPojo, CopyableBuilder<DatasetContentStatus.Builder,DatasetContentStatus>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DatasetContentStatus.Builderreason(String reason)The reason the dataset contents are in this state.DatasetContentStatus.Builderstate(String state)The state of the dataset contents.DatasetContentStatus.Builderstate(DatasetContentState state)The state of the dataset contents.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
state
DatasetContentStatus.Builder state(String state)
The state of the dataset contents. Can be one of READY, CREATING, SUCCEEDED, or FAILED.
- Parameters:
state- The state of the dataset contents. Can be one of READY, CREATING, SUCCEEDED, or FAILED.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DatasetContentState,DatasetContentState
-
state
DatasetContentStatus.Builder state(DatasetContentState state)
The state of the dataset contents. Can be one of READY, CREATING, SUCCEEDED, or FAILED.
- Parameters:
state- The state of the dataset contents. Can be one of READY, CREATING, SUCCEEDED, or FAILED.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DatasetContentState,DatasetContentState
-
reason
DatasetContentStatus.Builder reason(String reason)
The reason the dataset contents are in this state.
- Parameters:
reason- The reason the dataset contents are in this state.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-