Class: Aws::SageMaker::Types::ModelDeployResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ModelDeployResult
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Provides information about the endpoint of the model deployment.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#endpoint_name ⇒ String
The name of the endpoint to which the model has been deployed.
Instance Attribute Details
#endpoint_name ⇒ String
The name of the endpoint to which the model has been deployed.
<note markdown=“1”> If model deployment fails, this field is omitted from the response.
</note>
32782 32783 32784 32785 32786 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 32782 class ModelDeployResult < Struct.new( :endpoint_name) SENSITIVE = [] include Aws::Structure end |