Class: Aws::SageMaker::Types::ModelInfrastructureConfig

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#infrastructure_typeString

The inference option to which to deploy your model. Possible values are the following:

  • ‘RealTime`: Deploy to real-time inference.

^

Returns:

  • (String)


31269
31270
31271
31272
31273
31274
# File 'lib/aws-sdk-sagemaker/types.rb', line 31269

class ModelInfrastructureConfig < Struct.new(
  :infrastructure_type,
  :real_time_inference_config)
  SENSITIVE = []
  include Aws::Structure
end

#real_time_inference_configTypes::RealTimeInferenceConfig

The infrastructure configuration for deploying the model to real-time inference.



31269
31270
31271
31272
31273
31274
# File 'lib/aws-sdk-sagemaker/types.rb', line 31269

class ModelInfrastructureConfig < Struct.new(
  :infrastructure_type,
  :real_time_inference_config)
  SENSITIVE = []
  include Aws::Structure
end