Class: Aws::SageMaker::Types::ModelDeployConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb

Overview

Specifies how to generate the endpoint name for an automatic one-click Autopilot model deployment.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#auto_generate_endpoint_nameBoolean

Set to True to automatically generate an endpoint name for a one-click Autopilot model deployment; set to False otherwise. The default value is False.

If you set AutoGenerateEndpointName to True, do not specify the EndpointName; otherwise a 400 error is thrown.

Returns:

  • (Boolean)


31110
31111
31112
31113
31114
31115
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 31110

class ModelDeployConfig < Struct.new(
  :auto_generate_endpoint_name,
  :endpoint_name)
  SENSITIVE = []
  include Aws::Structure
end

#endpoint_nameString

Specifies the endpoint name to use for a one-click Autopilot model deployment if the endpoint name is not generated automatically.

Specify the EndpointName if and only if you set AutoGenerateEndpointName to False; otherwise a 400 error is thrown.

Returns:

  • (String)


31110
31111
31112
31113
31114
31115
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 31110

class ModelDeployConfig < Struct.new(
  :auto_generate_endpoint_name,
  :endpoint_name)
  SENSITIVE = []
  include Aws::Structure
end