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)


34295
34296
34297
34298
34299
34300
# File 'lib/aws-sdk-sagemaker/types.rb', line 34295

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.



34295
34296
34297
34298
34299
34300
# File 'lib/aws-sdk-sagemaker/types.rb', line 34295

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