Class: Aws::SageMaker::Types::DeploymentRecommendation
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::DeploymentRecommendation
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
A set of recommended deployment configurations for the model. To get more advanced recommendations, see CreateInferenceRecommendationsJob to create an inference recommendation job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#real_time_inference_recommendations ⇒ Array<Types::RealTimeInferenceRecommendation>
A list of [RealTimeInferenceRecommendation][1] items.
-
#recommendation_status ⇒ String
Status of the deployment recommendation.
Instance Attribute Details
#real_time_inference_recommendations ⇒ Array<Types::RealTimeInferenceRecommendation>
A list of RealTimeInferenceRecommendation items.
12131 12132 12133 12134 12135 12136 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 12131 class DeploymentRecommendation < Struct.new( :recommendation_status, :real_time_inference_recommendations) SENSITIVE = [] include Aws::Structure end |
#recommendation_status ⇒ String
Status of the deployment recommendation. The status NOT_APPLICABLE
means that SageMaker is unable to provide a default recommendation
for the model using the information provided. If the deployment
status is IN_PROGRESS
, retry your API call after a few seconds to
get a COMPLETED
deployment recommendation.
12131 12132 12133 12134 12135 12136 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 12131 class DeploymentRecommendation < Struct.new( :recommendation_status, :real_time_inference_recommendations) SENSITIVE = [] include Aws::Structure end |