Interface Model.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Model.Builder,Model>,SdkBuilder<Model.Builder,Model>,SdkPojo
- Enclosing class:
- Model
public static interface Model.Builder extends SdkPojo, CopyableBuilder<Model.Builder,Model>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Model.Builderarn(String arn)The ARN of the model.Model.BuildercreatedTime(String createdTime)Timestamp of when the model was created.Model.Builderdescription(String description)The model description.Model.BuildereventTypeName(String eventTypeName)The name of the event type.Model.BuilderlastUpdatedTime(String lastUpdatedTime)Timestamp of last time the model was updated.Model.BuildermodelId(String modelId)The model ID.Model.BuildermodelType(String modelType)The model type.Model.BuildermodelType(ModelTypeEnum modelType)The model type.-
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
-
modelId
Model.Builder modelId(String modelId)
The model ID.
- Parameters:
modelId- The model ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
modelType
Model.Builder modelType(String modelType)
The model type.
- Parameters:
modelType- The model type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ModelTypeEnum,ModelTypeEnum
-
modelType
Model.Builder modelType(ModelTypeEnum modelType)
The model type.
- Parameters:
modelType- The model type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ModelTypeEnum,ModelTypeEnum
-
description
Model.Builder description(String description)
The model description.
- Parameters:
description- The model description.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventTypeName
Model.Builder eventTypeName(String eventTypeName)
The name of the event type.
- Parameters:
eventTypeName- The name of the event type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdTime
Model.Builder createdTime(String createdTime)
Timestamp of when the model was created.
- Parameters:
createdTime- Timestamp of when the model was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdatedTime
Model.Builder lastUpdatedTime(String lastUpdatedTime)
Timestamp of last time the model was updated.
- Parameters:
lastUpdatedTime- Timestamp of last time the model was updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
Model.Builder arn(String arn)
The ARN of the model.
- Parameters:
arn- The ARN of the model.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-