Interface ModelLifeCycle.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<ModelLifeCycle.Builder,ModelLifeCycle>
,SdkBuilder<ModelLifeCycle.Builder,ModelLifeCycle>
,SdkPojo
- Enclosing class:
- ModelLifeCycle
public static interface ModelLifeCycle.Builder extends SdkPojo, CopyableBuilder<ModelLifeCycle.Builder,ModelLifeCycle>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ModelLifeCycle.Builder
stage(String stage)
The current stage in the model life cycle.ModelLifeCycle.Builder
stageDescription(String stageDescription)
Describes the stage related details.ModelLifeCycle.Builder
stageStatus(String stageStatus)
The current status of a stage in model life cycle.-
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
-
stage
ModelLifeCycle.Builder stage(String stage)
The current stage in the model life cycle.
- Parameters:
stage
- The current stage in the model life cycle.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stageStatus
ModelLifeCycle.Builder stageStatus(String stageStatus)
The current status of a stage in model life cycle.
- Parameters:
stageStatus
- The current status of a stage in model life cycle.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stageDescription
ModelLifeCycle.Builder stageDescription(String stageDescription)
Describes the stage related details.
- Parameters:
stageDescription
- Describes the stage related details.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-