Class: Aws::SageMaker::Types::ModelInfrastructureConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ModelInfrastructureConfig
- Defined in:
- gems/aws-sdk-sagemaker/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.
^
32943 32944 32945 32946 32947 32948 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 32943 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.
32943 32944 32945 32946 32947 32948 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 32943 class ModelInfrastructureConfig < Struct.new( :infrastructure_type, :real_time_inference_config) SENSITIVE = [] include Aws::Structure end |