pub struct DescribeEndpointConfigOutput {
pub creation_time: f64,
pub data_capture_config: Option<DataCaptureConfig>,
pub endpoint_config_arn: String,
pub endpoint_config_name: String,
pub kms_key_id: Option<String>,
pub production_variants: Vec<ProductionVariant>,
}
Fields§
§creation_time: f64
A timestamp that shows when the endpoint configuration was created.
data_capture_config: Option<DataCaptureConfig>
§endpoint_config_arn: String
The Amazon Resource Name (ARN) of the endpoint configuration.
endpoint_config_name: String
Name of the Amazon SageMaker endpoint configuration.
kms_key_id: Option<String>
AWS KMS key ID Amazon SageMaker uses to encrypt data when storing it on the ML storage volume attached to the instance.
production_variants: Vec<ProductionVariant>
An array of ProductionVariant
objects, one for each model that you want to host at this endpoint.
Trait Implementations§
Source§impl Clone for DescribeEndpointConfigOutput
impl Clone for DescribeEndpointConfigOutput
Source§fn clone(&self) -> DescribeEndpointConfigOutput
fn clone(&self) -> DescribeEndpointConfigOutput
Returns a duplicate 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 DescribeEndpointConfigOutput
impl Debug for DescribeEndpointConfigOutput
Source§impl Default for DescribeEndpointConfigOutput
impl Default for DescribeEndpointConfigOutput
Source§fn default() -> DescribeEndpointConfigOutput
fn default() -> DescribeEndpointConfigOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeEndpointConfigOutput
impl<'de> Deserialize<'de> for DescribeEndpointConfigOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DescribeEndpointConfigOutput
impl PartialEq for DescribeEndpointConfigOutput
Source§fn eq(&self, other: &DescribeEndpointConfigOutput) -> bool
fn eq(&self, other: &DescribeEndpointConfigOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeEndpointConfigOutput
Auto Trait Implementations§
impl Freeze for DescribeEndpointConfigOutput
impl RefUnwindSafe for DescribeEndpointConfigOutput
impl Send for DescribeEndpointConfigOutput
impl Sync for DescribeEndpointConfigOutput
impl Unpin for DescribeEndpointConfigOutput
impl UnwindSafe for DescribeEndpointConfigOutput
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