Class: Aws::SageMaker::Types::ModelDeployConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ModelDeployConfig
- Includes:
- Aws::Structure
- Defined in:
- 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 to `False` 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`.
<note markdown=“1”> If you set ‘AutoGenerateEndpointName` to `True`, do not specify the `EndpointName`; otherwise a 400 error is thrown.
</note>
32741 32742 32743 32744 32745 32746 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 32741 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.
<note markdown=“1”> Specify the ‘EndpointName` if and only if you set `AutoGenerateEndpointName` to `False`; otherwise a 400 error is thrown.
</note>
32741 32742 32743 32744 32745 32746 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 32741 class ModelDeployConfig < Struct.new( :auto_generate_endpoint_name, :endpoint_name) SENSITIVE = [] include Aws::Structure end |