#[non_exhaustive]pub struct DescribeEndpointConfigOutput {
pub endpoint_config_name: Option<String>,
pub endpoint_config_arn: Option<String>,
pub production_variants: Option<Vec<ProductionVariant>>,
pub data_capture_config: Option<DataCaptureConfig>,
pub kms_key_id: Option<String>,
pub creation_time: Option<DateTime>,
pub async_inference_config: Option<AsyncInferenceConfig>,
}
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_config_name: Option<String>
Name of the Amazon SageMaker endpoint configuration.
endpoint_config_arn: Option<String>
The Amazon Resource Name (ARN) of the endpoint configuration.
production_variants: Option<Vec<ProductionVariant>>
An array of ProductionVariant
objects, one for each model that you want to host at this endpoint.
data_capture_config: Option<DataCaptureConfig>
kms_key_id: Option<String>
Amazon Web Services KMS key ID Amazon SageMaker uses to encrypt data when storing it on the ML storage volume attached to the instance.
creation_time: Option<DateTime>
A timestamp that shows when the endpoint configuration was created.
async_inference_config: Option<AsyncInferenceConfig>
Returns the description of an endpoint configuration created using the CreateEndpointConfig
API.
Implementations
sourceimpl DescribeEndpointConfigOutput
impl DescribeEndpointConfigOutput
sourcepub fn endpoint_config_name(&self) -> Option<&str>
pub fn endpoint_config_name(&self) -> Option<&str>
Name of the Amazon SageMaker endpoint configuration.
sourcepub fn endpoint_config_arn(&self) -> Option<&str>
pub fn endpoint_config_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the endpoint configuration.
sourcepub fn production_variants(&self) -> Option<&[ProductionVariant]>
pub fn production_variants(&self) -> Option<&[ProductionVariant]>
An array of ProductionVariant
objects, one for each model that you want to host at this endpoint.
sourcepub fn data_capture_config(&self) -> Option<&DataCaptureConfig>
pub fn data_capture_config(&self) -> Option<&DataCaptureConfig>
sourcepub fn kms_key_id(&self) -> Option<&str>
pub fn kms_key_id(&self) -> Option<&str>
Amazon Web Services KMS key ID Amazon SageMaker uses to encrypt data when storing it on the ML storage volume attached to the instance.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
A timestamp that shows when the endpoint configuration was created.
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.
sourceimpl DescribeEndpointConfigOutput
impl DescribeEndpointConfigOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeEndpointConfigOutput
Trait Implementations
sourceimpl Clone for DescribeEndpointConfigOutput
impl Clone for DescribeEndpointConfigOutput
sourcefn clone(&self) -> DescribeEndpointConfigOutput
fn clone(&self) -> DescribeEndpointConfigOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for DescribeEndpointConfigOutput
impl Debug for DescribeEndpointConfigOutput
sourceimpl PartialEq<DescribeEndpointConfigOutput> for DescribeEndpointConfigOutput
impl PartialEq<DescribeEndpointConfigOutput> for DescribeEndpointConfigOutput
sourcefn eq(&self, other: &DescribeEndpointConfigOutput) -> bool
fn eq(&self, other: &DescribeEndpointConfigOutput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DescribeEndpointConfigOutput) -> bool
fn ne(&self, other: &DescribeEndpointConfigOutput) -> bool
This method tests for !=
.
impl StructuralPartialEq for DescribeEndpointConfigOutput
Auto Trait Implementations
impl RefUnwindSafe for DescribeEndpointConfigOutput
impl Send for DescribeEndpointConfigOutput
impl Sync for DescribeEndpointConfigOutput
impl Unpin for DescribeEndpointConfigOutput
impl UnwindSafe for DescribeEndpointConfigOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more