Struct aws_sdk_sagemaker::output::DescribeEndpointOutput
source ·
[−]#[non_exhaustive]pub struct DescribeEndpointOutput {
pub endpoint_name: Option<String>,
pub endpoint_arn: Option<String>,
pub endpoint_config_name: Option<String>,
pub production_variants: Option<Vec<ProductionVariantSummary>>,
pub data_capture_config: Option<DataCaptureConfigSummary>,
pub endpoint_status: Option<EndpointStatus>,
pub failure_reason: Option<String>,
pub creation_time: Option<DateTime>,
pub last_modified_time: Option<DateTime>,
pub last_deployment_config: Option<DeploymentConfig>,
pub async_inference_config: Option<AsyncInferenceConfig>,
pub pending_deployment_summary: Option<PendingDeploymentSummary>,
}
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.endpoint_name: Option<String>
Name of the endpoint.
endpoint_arn: Option<String>
The Amazon Resource Name (ARN) of the endpoint.
endpoint_config_name: Option<String>
The name of the endpoint configuration associated with this endpoint.
production_variants: Option<Vec<ProductionVariantSummary>>
An array of ProductionVariantSummary
objects, one for each model hosted behind this endpoint.
data_capture_config: Option<DataCaptureConfigSummary>
endpoint_status: 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.
failure_reason: Option<String>
If the status of the endpoint is Failed
, the reason why it failed.
creation_time: Option<DateTime>
A timestamp that shows when the endpoint was created.
last_modified_time: Option<DateTime>
A timestamp that shows when the endpoint was last modified.
last_deployment_config: Option<DeploymentConfig>
The most recent deployment configuration for the endpoint.
async_inference_config: Option<AsyncInferenceConfig>
Returns the description of an endpoint configuration created using the CreateEndpointConfig
API.
pending_deployment_summary: 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.
Implementations
Name of the endpoint.
The Amazon Resource Name (ARN) of the endpoint.
The name of the endpoint configuration associated with this endpoint.
An array of ProductionVariantSummary
objects, one for each model hosted behind this endpoint.
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.
If the status of the endpoint is Failed
, the reason why it failed.
A timestamp that shows when the endpoint was created.
A timestamp that shows when the endpoint was last modified.
The most recent deployment configuration for the endpoint.
Returns the description of an endpoint configuration created using the CreateEndpointConfig
API.
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.
Creates a new builder-style object to manufacture DescribeEndpointOutput
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 DescribeEndpointOutput
impl Send for DescribeEndpointOutput
impl Sync for DescribeEndpointOutput
impl Unpin for DescribeEndpointOutput
impl UnwindSafe for DescribeEndpointOutput
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