Class: Aws::SageMaker::Types::ProductionVariant
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ProductionVariant
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Identifies a model that you want to host and the resources chosen to deploy for hosting it. If you are deploying multiple models, tell SageMaker how to distribute traffic among the models by specifying variant weights. For more information on production variants, check Production variants.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#accelerator_type ⇒ String
The size of the Elastic Inference (EI) instance to use for the production variant.
-
#container_startup_health_check_timeout_in_seconds ⇒ Integer
The timeout value, in seconds, for your inference container to pass health check by SageMaker Hosting.
-
#core_dump_config ⇒ Types::ProductionVariantCoreDumpConfig
Specifies configuration for a core dump from the model container when the process crashes.
-
#enable_ssm_access ⇒ Boolean
You can use this parameter to turn on native Amazon Web Services Systems Manager (SSM) access for a production variant behind an endpoint.
-
#initial_instance_count ⇒ Integer
Number of instances to launch initially.
-
#initial_variant_weight ⇒ Float
Determines initial traffic distribution among all of the models that you specify in the endpoint configuration.
-
#instance_type ⇒ String
The ML compute instance type.
-
#model_data_download_timeout_in_seconds ⇒ Integer
The timeout value, in seconds, to download and extract the model that you want to host from Amazon S3 to the individual inference instance associated with this production variant.
-
#model_name ⇒ String
The name of the model that you want to host.
-
#serverless_config ⇒ Types::ProductionVariantServerlessConfig
The serverless configuration for an endpoint.
-
#variant_name ⇒ String
The name of the production variant.
-
#volume_size_in_gb ⇒ Integer
The size, in GB, of the ML storage volume attached to individual inference instance associated with the production variant.
Instance Attribute Details
#accelerator_type ⇒ String
The size of the Elastic Inference (EI) instance to use for the production variant. EI instances provide on-demand GPU computing for inference. For more information, see Using Elastic Inference in Amazon SageMaker.
32514 32515 32516 32517 32518 32519 32520 32521 32522 32523 32524 32525 32526 32527 32528 32529 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 32514 class ProductionVariant < Struct.new( :variant_name, :model_name, :initial_instance_count, :instance_type, :initial_variant_weight, :accelerator_type, :core_dump_config, :serverless_config, :volume_size_in_gb, :model_data_download_timeout_in_seconds, :container_startup_health_check_timeout_in_seconds, :enable_ssm_access) SENSITIVE = [] include Aws::Structure end |
#container_startup_health_check_timeout_in_seconds ⇒ Integer
The timeout value, in seconds, for your inference container to pass health check by SageMaker Hosting. For more information about health check, see How Your Container Should Respond to Health Check (Ping) Requests.
32514 32515 32516 32517 32518 32519 32520 32521 32522 32523 32524 32525 32526 32527 32528 32529 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 32514 class ProductionVariant < Struct.new( :variant_name, :model_name, :initial_instance_count, :instance_type, :initial_variant_weight, :accelerator_type, :core_dump_config, :serverless_config, :volume_size_in_gb, :model_data_download_timeout_in_seconds, :container_startup_health_check_timeout_in_seconds, :enable_ssm_access) SENSITIVE = [] include Aws::Structure end |
#core_dump_config ⇒ Types::ProductionVariantCoreDumpConfig
Specifies configuration for a core dump from the model container when the process crashes.
32514 32515 32516 32517 32518 32519 32520 32521 32522 32523 32524 32525 32526 32527 32528 32529 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 32514 class ProductionVariant < Struct.new( :variant_name, :model_name, :initial_instance_count, :instance_type, :initial_variant_weight, :accelerator_type, :core_dump_config, :serverless_config, :volume_size_in_gb, :model_data_download_timeout_in_seconds, :container_startup_health_check_timeout_in_seconds, :enable_ssm_access) SENSITIVE = [] include Aws::Structure end |
#enable_ssm_access ⇒ Boolean
You can use this parameter to turn on native Amazon Web Services
Systems Manager (SSM) access for a production variant behind an
endpoint. By default, SSM access is disabled for all production
variants behind an endpoint. You can turn on or turn off SSM access
for a production variant behind an existing endpoint by creating a
new endpoint configuration and calling UpdateEndpoint
.
32514 32515 32516 32517 32518 32519 32520 32521 32522 32523 32524 32525 32526 32527 32528 32529 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 32514 class ProductionVariant < Struct.new( :variant_name, :model_name, :initial_instance_count, :instance_type, :initial_variant_weight, :accelerator_type, :core_dump_config, :serverless_config, :volume_size_in_gb, :model_data_download_timeout_in_seconds, :container_startup_health_check_timeout_in_seconds, :enable_ssm_access) SENSITIVE = [] include Aws::Structure end |
#initial_instance_count ⇒ Integer
Number of instances to launch initially.
32514 32515 32516 32517 32518 32519 32520 32521 32522 32523 32524 32525 32526 32527 32528 32529 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 32514 class ProductionVariant < Struct.new( :variant_name, :model_name, :initial_instance_count, :instance_type, :initial_variant_weight, :accelerator_type, :core_dump_config, :serverless_config, :volume_size_in_gb, :model_data_download_timeout_in_seconds, :container_startup_health_check_timeout_in_seconds, :enable_ssm_access) SENSITIVE = [] include Aws::Structure end |
#initial_variant_weight ⇒ Float
Determines initial traffic distribution among all of the models that
you specify in the endpoint configuration. The traffic to a
production variant is determined by the ratio of the VariantWeight
to the sum of all VariantWeight
values across all
ProductionVariants. If unspecified, it defaults to 1.0.
32514 32515 32516 32517 32518 32519 32520 32521 32522 32523 32524 32525 32526 32527 32528 32529 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 32514 class ProductionVariant < Struct.new( :variant_name, :model_name, :initial_instance_count, :instance_type, :initial_variant_weight, :accelerator_type, :core_dump_config, :serverless_config, :volume_size_in_gb, :model_data_download_timeout_in_seconds, :container_startup_health_check_timeout_in_seconds, :enable_ssm_access) SENSITIVE = [] include Aws::Structure end |
#instance_type ⇒ String
The ML compute instance type.
32514 32515 32516 32517 32518 32519 32520 32521 32522 32523 32524 32525 32526 32527 32528 32529 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 32514 class ProductionVariant < Struct.new( :variant_name, :model_name, :initial_instance_count, :instance_type, :initial_variant_weight, :accelerator_type, :core_dump_config, :serverless_config, :volume_size_in_gb, :model_data_download_timeout_in_seconds, :container_startup_health_check_timeout_in_seconds, :enable_ssm_access) SENSITIVE = [] include Aws::Structure end |
#model_data_download_timeout_in_seconds ⇒ Integer
The timeout value, in seconds, to download and extract the model that you want to host from Amazon S3 to the individual inference instance associated with this production variant.
32514 32515 32516 32517 32518 32519 32520 32521 32522 32523 32524 32525 32526 32527 32528 32529 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 32514 class ProductionVariant < Struct.new( :variant_name, :model_name, :initial_instance_count, :instance_type, :initial_variant_weight, :accelerator_type, :core_dump_config, :serverless_config, :volume_size_in_gb, :model_data_download_timeout_in_seconds, :container_startup_health_check_timeout_in_seconds, :enable_ssm_access) SENSITIVE = [] include Aws::Structure end |
#model_name ⇒ String
The name of the model that you want to host. This is the name that you specified when creating the model.
32514 32515 32516 32517 32518 32519 32520 32521 32522 32523 32524 32525 32526 32527 32528 32529 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 32514 class ProductionVariant < Struct.new( :variant_name, :model_name, :initial_instance_count, :instance_type, :initial_variant_weight, :accelerator_type, :core_dump_config, :serverless_config, :volume_size_in_gb, :model_data_download_timeout_in_seconds, :container_startup_health_check_timeout_in_seconds, :enable_ssm_access) SENSITIVE = [] include Aws::Structure end |
#serverless_config ⇒ Types::ProductionVariantServerlessConfig
The serverless configuration for an endpoint. Specifies a serverless endpoint configuration instead of an instance-based endpoint configuration.
32514 32515 32516 32517 32518 32519 32520 32521 32522 32523 32524 32525 32526 32527 32528 32529 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 32514 class ProductionVariant < Struct.new( :variant_name, :model_name, :initial_instance_count, :instance_type, :initial_variant_weight, :accelerator_type, :core_dump_config, :serverless_config, :volume_size_in_gb, :model_data_download_timeout_in_seconds, :container_startup_health_check_timeout_in_seconds, :enable_ssm_access) SENSITIVE = [] include Aws::Structure end |
#variant_name ⇒ String
The name of the production variant.
32514 32515 32516 32517 32518 32519 32520 32521 32522 32523 32524 32525 32526 32527 32528 32529 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 32514 class ProductionVariant < Struct.new( :variant_name, :model_name, :initial_instance_count, :instance_type, :initial_variant_weight, :accelerator_type, :core_dump_config, :serverless_config, :volume_size_in_gb, :model_data_download_timeout_in_seconds, :container_startup_health_check_timeout_in_seconds, :enable_ssm_access) SENSITIVE = [] include Aws::Structure end |
#volume_size_in_gb ⇒ Integer
The size, in GB, of the ML storage volume attached to individual inference instance associated with the production variant. Currently only Amazon EBS gp2 storage volumes are supported.
32514 32515 32516 32517 32518 32519 32520 32521 32522 32523 32524 32525 32526 32527 32528 32529 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 32514 class ProductionVariant < Struct.new( :variant_name, :model_name, :initial_instance_count, :instance_type, :initial_variant_weight, :accelerator_type, :core_dump_config, :serverless_config, :volume_size_in_gb, :model_data_download_timeout_in_seconds, :container_startup_health_check_timeout_in_seconds, :enable_ssm_access) SENSITIVE = [] include Aws::Structure end |