Interface RescoreExecutionPlanSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RescoreExecutionPlanSummary.Builder,RescoreExecutionPlanSummary>,SdkBuilder<RescoreExecutionPlanSummary.Builder,RescoreExecutionPlanSummary>,SdkPojo
- Enclosing class:
- RescoreExecutionPlanSummary
public static interface RescoreExecutionPlanSummary.Builder extends SdkPojo, CopyableBuilder<RescoreExecutionPlanSummary.Builder,RescoreExecutionPlanSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RescoreExecutionPlanSummary.BuildercreatedAt(Instant createdAt)The Unix timestamp when the rescore execution plan was created.RescoreExecutionPlanSummary.Builderid(String id)The identifier of the rescore execution plan.RescoreExecutionPlanSummary.Buildername(String name)The name of the rescore execution plan.RescoreExecutionPlanSummary.Builderstatus(String status)The current status of the rescore execution plan.RescoreExecutionPlanSummary.Builderstatus(RescoreExecutionPlanStatus status)The current status of the rescore execution plan.RescoreExecutionPlanSummary.BuilderupdatedAt(Instant updatedAt)The Unix timestamp when the rescore execution plan was last updated.-
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
-
name
RescoreExecutionPlanSummary.Builder name(String name)
The name of the rescore execution plan.
- Parameters:
name- The name of the rescore execution plan.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
id
RescoreExecutionPlanSummary.Builder id(String id)
The identifier of the rescore execution plan.
- Parameters:
id- The identifier of the rescore execution plan.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdAt
RescoreExecutionPlanSummary.Builder createdAt(Instant createdAt)
The Unix timestamp when the rescore execution plan was created.
- Parameters:
createdAt- The Unix timestamp when the rescore execution plan was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
updatedAt
RescoreExecutionPlanSummary.Builder updatedAt(Instant updatedAt)
The Unix timestamp when the rescore execution plan was last updated.
- Parameters:
updatedAt- The Unix timestamp when the rescore execution plan was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
RescoreExecutionPlanSummary.Builder status(String status)
The current status of the rescore execution plan. When the value is
ACTIVE, the rescore execution plan is ready for use.- Parameters:
status- The current status of the rescore execution plan. When the value isACTIVE, the rescore execution plan is ready for use.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RescoreExecutionPlanStatus,RescoreExecutionPlanStatus
-
status
RescoreExecutionPlanSummary.Builder status(RescoreExecutionPlanStatus status)
The current status of the rescore execution plan. When the value is
ACTIVE, the rescore execution plan is ready for use.- Parameters:
status- The current status of the rescore execution plan. When the value isACTIVE, the rescore execution plan is ready for use.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RescoreExecutionPlanStatus,RescoreExecutionPlanStatus
-
-