/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace ForecastService { namespace Model { /** */ class DescribeAutoPredictorRequest : public ForecastServiceRequest { public: AWS_FORECASTSERVICE_API DescribeAutoPredictorRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "DescribeAutoPredictor"; } AWS_FORECASTSERVICE_API Aws::String SerializePayload() const override; AWS_FORECASTSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The Amazon Resource Name (ARN) of the predictor.

*/ inline const Aws::String& GetPredictorArn() const{ return m_predictorArn; } /** *

The Amazon Resource Name (ARN) of the predictor.

*/ inline bool PredictorArnHasBeenSet() const { return m_predictorArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the predictor.

*/ inline void SetPredictorArn(const Aws::String& value) { m_predictorArnHasBeenSet = true; m_predictorArn = value; } /** *

The Amazon Resource Name (ARN) of the predictor.

*/ inline void SetPredictorArn(Aws::String&& value) { m_predictorArnHasBeenSet = true; m_predictorArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the predictor.

*/ inline void SetPredictorArn(const char* value) { m_predictorArnHasBeenSet = true; m_predictorArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the predictor.

*/ inline DescribeAutoPredictorRequest& WithPredictorArn(const Aws::String& value) { SetPredictorArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the predictor.

*/ inline DescribeAutoPredictorRequest& WithPredictorArn(Aws::String&& value) { SetPredictorArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the predictor.

*/ inline DescribeAutoPredictorRequest& WithPredictorArn(const char* value) { SetPredictorArn(value); return *this;} private: Aws::String m_predictorArn; bool m_predictorArnHasBeenSet = false; }; } // namespace Model } // namespace ForecastService } // namespace Aws