Struct aws_sdk_sagemaker::model::EndpointMetadata
source · #[non_exhaustive]pub struct EndpointMetadata { /* private fields */ }
Expand description
The metadata of the endpoint.
Implementations§
source§impl EndpointMetadata
impl EndpointMetadata
sourcepub fn endpoint_name(&self) -> Option<&str>
pub fn endpoint_name(&self) -> Option<&str>
The name 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.
sourcepub fn endpoint_status(&self) -> Option<&EndpointStatus>
pub fn endpoint_status(&self) -> Option<&EndpointStatus>
The status of the endpoint. For possible values of the status of an endpoint, see EndpointSummary$EndpointStatus
.
sourcepub fn failure_reason(&self) -> Option<&str>
pub fn failure_reason(&self) -> Option<&str>
If the status of the endpoint is Failed
, or the status is InService
but update operation fails, this provides the reason why it failed.
source§impl EndpointMetadata
impl EndpointMetadata
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture EndpointMetadata
.
Trait Implementations§
source§impl Clone for EndpointMetadata
impl Clone for EndpointMetadata
source§fn clone(&self) -> EndpointMetadata
fn clone(&self) -> EndpointMetadata
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for EndpointMetadata
impl Debug for EndpointMetadata
source§impl PartialEq<EndpointMetadata> for EndpointMetadata
impl PartialEq<EndpointMetadata> for EndpointMetadata
source§fn eq(&self, other: &EndpointMetadata) -> bool
fn eq(&self, other: &EndpointMetadata) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.