Struct aws_sdk_sagemaker::model::ProductionVariantStatus [−][src]
#[non_exhaustive]pub struct ProductionVariantStatus {
pub status: Option<VariantStatus>,
pub status_message: Option<String>,
pub start_time: Option<DateTime>,
}
Expand description
Describes the status of the production variant.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.status: Option<VariantStatus>
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.
status_message: Option<String>
A message that describes the status of the production variant.
start_time: Option<DateTime>
The start time of the current status change.
Implementations
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.
A message that describes the status of the production variant.
The start time of the current status change.
Creates a new builder-style object to manufacture ProductionVariantStatus
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ProductionVariantStatus
impl Send for ProductionVariantStatus
impl Sync for ProductionVariantStatus
impl Unpin for ProductionVariantStatus
impl UnwindSafe for ProductionVariantStatus
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more