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
True
to automatically generate an endpoint name for a one-click Autopilot model deployment; set toFalse
otherwise. -
#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.
32814 32815 32816 32817 32818 32819 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 32814 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.
32814 32815 32816 32817 32818 32819 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 32814 class ModelDeployConfig < Struct.new( :auto_generate_endpoint_name, :endpoint_name) SENSITIVE = [] include Aws::Structure end |