Struct aws_sdk_sagemaker::output::DescribeEndpointOutput
source · #[non_exhaustive]pub struct DescribeEndpointOutput { /* private fields */ }
Implementations§
source§impl DescribeEndpointOutput
impl DescribeEndpointOutput
sourcepub fn endpoint_name(&self) -> Option<&str>
pub fn endpoint_name(&self) -> Option<&str>
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 endpoint_config_name(&self) -> Option<&str>
pub fn endpoint_config_name(&self) -> Option<&str>
The name of the endpoint configuration associated with this endpoint.
sourcepub fn production_variants(&self) -> Option<&[ProductionVariantSummary]>
pub fn production_variants(&self) -> Option<&[ProductionVariantSummary]>
An array of ProductionVariantSummary
objects, one for each model hosted behind this endpoint.
sourcepub fn data_capture_config(&self) -> Option<&DataCaptureConfigSummary>
pub fn data_capture_config(&self) -> Option<&DataCaptureConfigSummary>
The currently active data capture configuration used by your Endpoint.
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.
sourcepub fn failure_reason(&self) -> Option<&str>
pub fn failure_reason(&self) -> Option<&str>
If the status of the endpoint is Failed
, the reason why it failed.
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 last_deployment_config(&self) -> Option<&DeploymentConfig>
pub fn last_deployment_config(&self) -> Option<&DeploymentConfig>
The most recent deployment configuration for the endpoint.
sourcepub fn async_inference_config(&self) -> Option<&AsyncInferenceConfig>
pub fn async_inference_config(&self) -> Option<&AsyncInferenceConfig>
Returns the description of an endpoint configuration created using the CreateEndpointConfig
API.
sourcepub fn pending_deployment_summary(&self) -> Option<&PendingDeploymentSummary>
pub fn pending_deployment_summary(&self) -> Option<&PendingDeploymentSummary>
Returns the summary of an in-progress deployment. This field is only returned when the endpoint is creating or updating with a new endpoint configuration.
sourcepub fn explainer_config(&self) -> Option<&ExplainerConfig>
pub fn explainer_config(&self) -> Option<&ExplainerConfig>
The configuration parameters for an explainer.
sourcepub fn shadow_production_variants(&self) -> Option<&[ProductionVariantSummary]>
pub fn shadow_production_variants(&self) -> Option<&[ProductionVariantSummary]>
An array of ProductionVariantSummary
objects, one for each model that you want to host at this endpoint in shadow mode with production traffic replicated from the model specified on ProductionVariants
.
source§impl DescribeEndpointOutput
impl DescribeEndpointOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeEndpointOutput
.
Trait Implementations§
source§impl Clone for DescribeEndpointOutput
impl Clone for DescribeEndpointOutput
source§fn clone(&self) -> DescribeEndpointOutput
fn clone(&self) -> DescribeEndpointOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeEndpointOutput
impl Debug for DescribeEndpointOutput
source§impl PartialEq<DescribeEndpointOutput> for DescribeEndpointOutput
impl PartialEq<DescribeEndpointOutput> for DescribeEndpointOutput
source§fn eq(&self, other: &DescribeEndpointOutput) -> bool
fn eq(&self, other: &DescribeEndpointOutput) -> bool
self
and other
values to be equal, and is used
by ==
.