Struct aws_sdk_sagemaker::model::EndpointSummary
source · #[non_exhaustive]pub struct EndpointSummary { /* private fields */ }
Expand description
Provides summary information for an endpoint.
Implementations§
source§impl EndpointSummary
impl EndpointSummary
sourcepub fn endpoint_name(&self) -> Option<&str>
pub fn endpoint_name(&self) -> Option<&str>
The name of the endpoint.
sourcepub fn endpoint_arn(&self) -> Option<&str>
pub fn endpoint_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the endpoint.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
A timestamp that shows when the endpoint was created.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
A timestamp that shows when the endpoint was last modified.
sourcepub fn endpoint_status(&self) -> Option<&EndpointStatus>
pub fn endpoint_status(&self) -> Option<&EndpointStatus>
The status of the endpoint.
-
OutOfService
: Endpoint is not available to take incoming requests. -
Creating
:CreateEndpoint
is executing. -
Updating
:UpdateEndpoint
orUpdateEndpointWeightsAndCapacities
is executing. -
SystemUpdating
: Endpoint is undergoing maintenance and cannot be updated or deleted or re-scaled until it has completed. This maintenance operation does not change any customer-specified values such as VPC config, KMS encryption, model, instance type, or instance count. -
RollingBack
: Endpoint fails to scale up or down or change its variant weight and is in the process of rolling back to its previous configuration. Once the rollback completes, endpoint returns to anInService
status. This transitional status only applies to an endpoint that has autoscaling enabled and is undergoing variant weight or capacity changes as part of anUpdateEndpointWeightsAndCapacities
call or when theUpdateEndpointWeightsAndCapacities
operation is called explicitly. -
InService
: Endpoint is available to process incoming requests. -
Deleting
:DeleteEndpoint
is executing. -
Failed
: Endpoint could not be created, updated, or re-scaled. UseDescribeEndpointOutput$FailureReason
for information about the failure.DeleteEndpoint
is the only operation that can be performed on a failed endpoint.
To get a list of endpoints with a specified status, use the ListEndpointsInput$StatusEquals
filter.
source§impl EndpointSummary
impl EndpointSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture EndpointSummary
.
Trait Implementations§
source§impl Clone for EndpointSummary
impl Clone for EndpointSummary
source§fn clone(&self) -> EndpointSummary
fn clone(&self) -> EndpointSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for EndpointSummary
impl Debug for EndpointSummary
source§impl PartialEq<EndpointSummary> for EndpointSummary
impl PartialEq<EndpointSummary> for EndpointSummary
source§fn eq(&self, other: &EndpointSummary) -> bool
fn eq(&self, other: &EndpointSummary) -> bool
self
and other
values to be equal, and is used
by ==
.