Struct aws_sdk_sagemaker::output::DescribeModelOutput [−][src]
#[non_exhaustive]pub struct DescribeModelOutput {
pub model_name: Option<String>,
pub primary_container: Option<ContainerDefinition>,
pub containers: Option<Vec<ContainerDefinition>>,
pub inference_execution_config: Option<InferenceExecutionConfig>,
pub execution_role_arn: Option<String>,
pub vpc_config: Option<VpcConfig>,
pub creation_time: Option<DateTime>,
pub model_arn: Option<String>,
pub enable_network_isolation: bool,
}
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.model_name: Option<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.
containers: Option<Vec<ContainerDefinition>>
The containers in the inference pipeline.
inference_execution_config: Option<InferenceExecutionConfig>
Specifies details of how containers in a multi-container endpoint are called.
execution_role_arn: Option<String>
The Amazon Resource Name (ARN) of the IAM role that you specified for the model.
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
creation_time: Option<DateTime>
A timestamp that shows when the model was created.
model_arn: Option<String>
The Amazon Resource Name (ARN) of the model.
enable_network_isolation: bool
If True
, no inbound or outbound network calls can be made to or from the
model container.
Implementations
Name of the Amazon SageMaker model.
The location of the primary inference code, associated artifacts, and custom environment map that the inference code uses when it is deployed in production.
The containers in the inference pipeline.
Specifies details of how containers in a multi-container endpoint are called.
The Amazon Resource Name (ARN) of the IAM role that you specified for the model.
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
A timestamp that shows when the model was created.
If True
, no inbound or outbound network calls can be made to or from the
model container.
Creates a new builder-style object to manufacture DescribeModelOutput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for DescribeModelOutput
impl Send for DescribeModelOutput
impl Sync for DescribeModelOutput
impl Unpin for DescribeModelOutput
impl UnwindSafe for DescribeModelOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more