Class: Aws::SageMaker::Types::CreateModelInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::CreateModelInput
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#containers ⇒ Array<Types::ContainerDefinition>
Specifies the containers in the inference pipeline.
-
#enable_network_isolation ⇒ Boolean
Isolates the model container.
-
#execution_role_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM role that SageMaker can assume to access model artifacts and docker image for deployment on ML compute instances or for batch transform jobs.
-
#inference_execution_config ⇒ Types::InferenceExecutionConfig
Specifies details of how containers in a multi-container endpoint are called.
-
#model_name ⇒ String
The name of the new model.
-
#primary_container ⇒ Types::ContainerDefinition
The location of the primary docker image containing inference code, associated artifacts, and custom environment map that the inference code uses when the model is deployed for predictions.
-
#tags ⇒ Array<Types::Tag>
An array of key-value pairs.
-
#vpc_config ⇒ Types::VpcConfig
A [VpcConfig][1] object that specifies the VPC that you want your model to connect to.
Instance Attribute Details
#containers ⇒ Array<Types::ContainerDefinition>
Specifies the containers in the inference pipeline.
8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 8349 class CreateModelInput < Struct.new( :model_name, :primary_container, :containers, :inference_execution_config, :execution_role_arn, :tags, :vpc_config, :enable_network_isolation) SENSITIVE = [] include Aws::Structure end |
#enable_network_isolation ⇒ Boolean
Isolates the model container. No inbound or outbound network calls can be made to or from the model container.
8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 8349 class CreateModelInput < Struct.new( :model_name, :primary_container, :containers, :inference_execution_config, :execution_role_arn, :tags, :vpc_config, :enable_network_isolation) SENSITIVE = [] include Aws::Structure end |
#execution_role_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM role that SageMaker can assume to access model artifacts and docker image for deployment on ML compute instances or for batch transform jobs. Deploying on ML compute instances is part of model hosting. For more information, see SageMaker Roles.
iam:PassRole
permission.
8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 8349 class CreateModelInput < Struct.new( :model_name, :primary_container, :containers, :inference_execution_config, :execution_role_arn, :tags, :vpc_config, :enable_network_isolation) SENSITIVE = [] include Aws::Structure end |
#inference_execution_config ⇒ Types::InferenceExecutionConfig
Specifies details of how containers in a multi-container endpoint are called.
8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 8349 class CreateModelInput < Struct.new( :model_name, :primary_container, :containers, :inference_execution_config, :execution_role_arn, :tags, :vpc_config, :enable_network_isolation) SENSITIVE = [] include Aws::Structure end |
#model_name ⇒ String
The name of the new model.
8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 8349 class CreateModelInput < Struct.new( :model_name, :primary_container, :containers, :inference_execution_config, :execution_role_arn, :tags, :vpc_config, :enable_network_isolation) SENSITIVE = [] include Aws::Structure end |
#primary_container ⇒ Types::ContainerDefinition
The location of the primary docker image containing inference code, associated artifacts, and custom environment map that the inference code uses when the model is deployed for predictions.
8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 8349 class CreateModelInput < Struct.new( :model_name, :primary_container, :containers, :inference_execution_config, :execution_role_arn, :tags, :vpc_config, :enable_network_isolation) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
An array of key-value pairs. You can use tags to categorize your Amazon Web Services resources in different ways, for example, by purpose, owner, or environment. For more information, see Tagging Amazon Web Services Resources.
8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 8349 class CreateModelInput < Struct.new( :model_name, :primary_container, :containers, :inference_execution_config, :execution_role_arn, :tags, :vpc_config, :enable_network_isolation) SENSITIVE = [] include Aws::Structure end |
#vpc_config ⇒ Types::VpcConfig
A VpcConfig object that specifies the VPC that you want your
model to connect to. Control access to and from your model container
by configuring the VPC. VpcConfig
is used in hosting services and
in batch transform. For more information, see Protect Endpoints by
Using an Amazon Virtual Private Cloud and Protect Data in Batch
Transform Jobs by Using an Amazon Virtual Private Cloud.
8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 8349 class CreateModelInput < Struct.new( :model_name, :primary_container, :containers, :inference_execution_config, :execution_role_arn, :tags, :vpc_config, :enable_network_isolation) SENSITIVE = [] include Aws::Structure end |