Interface ProductionVariantStatus.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<ProductionVariantStatus.Builder,ProductionVariantStatus>
,SdkBuilder<ProductionVariantStatus.Builder,ProductionVariantStatus>
,SdkPojo
- Enclosing class:
- ProductionVariantStatus
public static interface ProductionVariantStatus.Builder extends SdkPojo, CopyableBuilder<ProductionVariantStatus.Builder,ProductionVariantStatus>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProductionVariantStatus.Builder
startTime(Instant startTime)
The start time of the current status change.ProductionVariantStatus.Builder
status(String status)
The endpoint variant status which describes the current deployment stage status or operational status.ProductionVariantStatus.Builder
status(VariantStatus status)
The endpoint variant status which describes the current deployment stage status or operational status.ProductionVariantStatus.Builder
statusMessage(String statusMessage)
A message that describes the status of the production variant.-
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
-
status
ProductionVariantStatus.Builder status(String status)
The endpoint variant status which describes the current deployment stage status or operational status.
-
Creating
: Creating inference resources for the production variant. -
Deleting
: Terminating inference resources for the production variant. -
Updating
: Updating capacity for the production variant. -
ActivatingTraffic
: Turning on traffic for the production variant. -
Baking
: Waiting period to monitor the CloudWatch alarms in the automatic rollback configuration.
- Parameters:
status
- The endpoint variant status which describes the current deployment stage status or operational status.-
Creating
: Creating inference resources for the production variant. -
Deleting
: Terminating inference resources for the production variant. -
Updating
: Updating capacity for the production variant. -
ActivatingTraffic
: Turning on traffic for the production variant. -
Baking
: Waiting period to monitor the CloudWatch alarms in the automatic rollback configuration.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
VariantStatus
,VariantStatus
-
-
status
ProductionVariantStatus.Builder status(VariantStatus status)
The endpoint variant status which describes the current deployment stage status or operational status.
-
Creating
: Creating inference resources for the production variant. -
Deleting
: Terminating inference resources for the production variant. -
Updating
: Updating capacity for the production variant. -
ActivatingTraffic
: Turning on traffic for the production variant. -
Baking
: Waiting period to monitor the CloudWatch alarms in the automatic rollback configuration.
- Parameters:
status
- The endpoint variant status which describes the current deployment stage status or operational status.-
Creating
: Creating inference resources for the production variant. -
Deleting
: Terminating inference resources for the production variant. -
Updating
: Updating capacity for the production variant. -
ActivatingTraffic
: Turning on traffic for the production variant. -
Baking
: Waiting period to monitor the CloudWatch alarms in the automatic rollback configuration.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
VariantStatus
,VariantStatus
-
-
statusMessage
ProductionVariantStatus.Builder statusMessage(String statusMessage)
A message that describes the status of the production variant.
- Parameters:
statusMessage
- A message that describes the status of the production variant.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startTime
ProductionVariantStatus.Builder startTime(Instant startTime)
The start time of the current status change.
- Parameters:
startTime
- The start time of the current status change.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-