Struct aws_sdk_sagemaker::types::ModelDashboardEndpoint
source · #[non_exhaustive]pub struct ModelDashboardEndpoint { /* private fields */ }
Expand description
An endpoint that hosts a model displayed in the Amazon SageMaker Model Dashboard.
Implementations§
source§impl ModelDashboardEndpoint
impl ModelDashboardEndpoint
sourcepub fn endpoint_name(&self) -> Option<&str>
pub fn endpoint_name(&self) -> Option<&str>
The endpoint name.
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 indicates when the endpoint was created.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
The last time the endpoint was modified.
sourcepub fn endpoint_status(&self) -> Option<&EndpointStatus>
pub fn endpoint_status(&self) -> Option<&EndpointStatus>
The endpoint status.
source§impl ModelDashboardEndpoint
impl ModelDashboardEndpoint
sourcepub fn builder() -> ModelDashboardEndpointBuilder
pub fn builder() -> ModelDashboardEndpointBuilder
Creates a new builder-style object to manufacture ModelDashboardEndpoint
.
Trait Implementations§
source§impl Clone for ModelDashboardEndpoint
impl Clone for ModelDashboardEndpoint
source§fn clone(&self) -> ModelDashboardEndpoint
fn clone(&self) -> ModelDashboardEndpoint
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 ModelDashboardEndpoint
impl Debug for ModelDashboardEndpoint
source§impl PartialEq<ModelDashboardEndpoint> for ModelDashboardEndpoint
impl PartialEq<ModelDashboardEndpoint> for ModelDashboardEndpoint
source§fn eq(&self, other: &ModelDashboardEndpoint) -> bool
fn eq(&self, other: &ModelDashboardEndpoint) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ModelDashboardEndpoint
Auto Trait Implementations§
impl RefUnwindSafe for ModelDashboardEndpoint
impl Send for ModelDashboardEndpoint
impl Sync for ModelDashboardEndpoint
impl Unpin for ModelDashboardEndpoint
impl UnwindSafe for ModelDashboardEndpoint
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more