Class: Aws::SageMaker::Types::ModelDeployConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ModelDeployConfig
- 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
-
#auto_generate_endpoint_name ⇒ Boolean
Set to
Trueto automatically generate an endpoint name for a one-click Autopilot model deployment; set toFalseotherwise. -
#endpoint_name ⇒ String
Specifies the endpoint name to use for a one-click Autopilot model deployment if the endpoint name is not generated automatically.
Instance Attribute Details
#auto_generate_endpoint_name ⇒ Boolean
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.
AutoGenerateEndpointName to True, do not specify the
EndpointName; otherwise a 400 error is thrown.
36789 36790 36791 36792 36793 36794 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 36789 class ModelDeployConfig < Struct.new( :auto_generate_endpoint_name, :endpoint_name) SENSITIVE = [] include Aws::Structure end |
#endpoint_name ⇒ String
Specifies the endpoint name to use for a one-click Autopilot model deployment if the endpoint name is not generated automatically.
EndpointName if and only if you set
AutoGenerateEndpointName to False; otherwise a 400 error is
thrown.
36789 36790 36791 36792 36793 36794 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 36789 class ModelDeployConfig < Struct.new( :auto_generate_endpoint_name, :endpoint_name) SENSITIVE = [] include Aws::Structure end |