Class: Aws::SageMaker::Types::ModelInfrastructureConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ModelInfrastructureConfig
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
The configuration for the infrastructure that the model will be deployed to.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#infrastructure_type ⇒ String
The inference option to which to deploy your model.
-
#real_time_inference_config ⇒ Types::RealTimeInferenceConfig
The infrastructure configuration for deploying the model to real-time inference.
Instance Attribute Details
#infrastructure_type ⇒ String
The inference option to which to deploy your model. Possible values are the following:
-
‘RealTime`: Deploy to real-time inference.
^
32870 32871 32872 32873 32874 32875 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 32870 class ModelInfrastructureConfig < Struct.new( :infrastructure_type, :real_time_inference_config) SENSITIVE = [] include Aws::Structure end |
#real_time_inference_config ⇒ Types::RealTimeInferenceConfig
The infrastructure configuration for deploying the model to real-time inference.
32870 32871 32872 32873 32874 32875 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 32870 class ModelInfrastructureConfig < Struct.new( :infrastructure_type, :real_time_inference_config) SENSITIVE = [] include Aws::Structure end |