pub struct DescribeModelOutput {
pub containers: Option<Vec<ContainerDefinition>>,
pub creation_time: f64,
pub enable_network_isolation: Option<bool>,
pub execution_role_arn: String,
pub model_arn: String,
pub model_name: String,
pub primary_container: Option<ContainerDefinition>,
pub vpc_config: Option<VpcConfig>,
}
Fields§
§containers: Option<Vec<ContainerDefinition>>
The containers in the inference pipeline.
creation_time: f64
A timestamp that shows when the model was created.
enable_network_isolation: Option<bool>
If True
, no inbound or outbound network calls can be made to or from the model container.
execution_role_arn: String
The Amazon Resource Name (ARN) of the IAM role that you specified for the model.
model_arn: String
The Amazon Resource Name (ARN) of the model.
model_name: String
Name of the Amazon SageMaker model.
primary_container: Option<ContainerDefinition>
The location of the primary inference code, associated artifacts, and custom environment map that the inference code uses when it is deployed in production.
vpc_config: Option<VpcConfig>
A VpcConfig object that specifies the VPC that this model has access to. For more information, see Protect Endpoints by Using an Amazon Virtual Private Cloud
Trait Implementations§
Source§impl Clone for DescribeModelOutput
impl Clone for DescribeModelOutput
Source§fn clone(&self) -> DescribeModelOutput
fn clone(&self) -> DescribeModelOutput
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 DescribeModelOutput
impl Debug for DescribeModelOutput
Source§impl Default for DescribeModelOutput
impl Default for DescribeModelOutput
Source§fn default() -> DescribeModelOutput
fn default() -> DescribeModelOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeModelOutput
impl<'de> Deserialize<'de> for DescribeModelOutput
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 DescribeModelOutput
impl PartialEq for DescribeModelOutput
impl StructuralPartialEq for DescribeModelOutput
Auto Trait Implementations§
impl Freeze for DescribeModelOutput
impl RefUnwindSafe for DescribeModelOutput
impl Send for DescribeModelOutput
impl Sync for DescribeModelOutput
impl Unpin for DescribeModelOutput
impl UnwindSafe for DescribeModelOutput
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