Interface ModelSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ModelSummary.Builder,ModelSummary>,SdkBuilder<ModelSummary.Builder,ModelSummary>,SdkPojo
- Enclosing class:
- ModelSummary
public static interface ModelSummary.Builder extends SdkPojo, CopyableBuilder<ModelSummary.Builder,ModelSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ModelSummary.BuildercreationTime(Instant creationTime)A timestamp that indicates when the model was created.ModelSummary.BuildermodelArn(String modelArn)The Amazon Resource Name (ARN) of the model.ModelSummary.BuildermodelName(String modelName)The name of the model that you want a summary for.-
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
-
modelName
ModelSummary.Builder modelName(String modelName)
The name of the model that you want a summary for.
- Parameters:
modelName- The name of the model that you want a summary for.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
modelArn
ModelSummary.Builder modelArn(String modelArn)
The Amazon Resource Name (ARN) of the model.
- Parameters:
modelArn- The Amazon Resource Name (ARN) of the model.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationTime
ModelSummary.Builder creationTime(Instant creationTime)
A timestamp that indicates when the model was created.
- Parameters:
creationTime- A timestamp that indicates when the model was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-