#[non_exhaustive]pub struct EndpointOutputConfiguration { /* private fields */ }
Expand description
The endpoint configuration made by Inference Recommender during a recommendation job.
Implementations§
source§impl EndpointOutputConfiguration
impl EndpointOutputConfiguration
sourcepub fn endpoint_name(&self) -> Option<&str>
pub fn endpoint_name(&self) -> Option<&str>
The name of the endpoint made during a recommendation job.
sourcepub fn variant_name(&self) -> Option<&str>
pub fn variant_name(&self) -> Option<&str>
The name of the production variant (deployed model) made during a recommendation job.
sourcepub fn instance_type(&self) -> Option<&ProductionVariantInstanceType>
pub fn instance_type(&self) -> Option<&ProductionVariantInstanceType>
The instance type recommended by Amazon SageMaker Inference Recommender.
sourcepub fn initial_instance_count(&self) -> i32
pub fn initial_instance_count(&self) -> i32
The number of instances recommended to launch initially.
source§impl EndpointOutputConfiguration
impl EndpointOutputConfiguration
sourcepub fn builder() -> EndpointOutputConfigurationBuilder
pub fn builder() -> EndpointOutputConfigurationBuilder
Creates a new builder-style object to manufacture EndpointOutputConfiguration
.
Trait Implementations§
source§impl Clone for EndpointOutputConfiguration
impl Clone for EndpointOutputConfiguration
source§fn clone(&self) -> EndpointOutputConfiguration
fn clone(&self) -> EndpointOutputConfiguration
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 EndpointOutputConfiguration
impl Debug for EndpointOutputConfiguration
source§impl PartialEq<EndpointOutputConfiguration> for EndpointOutputConfiguration
impl PartialEq<EndpointOutputConfiguration> for EndpointOutputConfiguration
source§fn eq(&self, other: &EndpointOutputConfiguration) -> bool
fn eq(&self, other: &EndpointOutputConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for EndpointOutputConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for EndpointOutputConfiguration
impl Send for EndpointOutputConfiguration
impl Sync for EndpointOutputConfiguration
impl Unpin for EndpointOutputConfiguration
impl UnwindSafe for EndpointOutputConfiguration
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