/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/forecast/ForecastService_EXPORTS.h> #include <aws/forecast/ForecastServiceRequest.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <utility> namespace Aws { namespace ForecastService { namespace Model { /** */ class DescribeDatasetImportJobRequest : public ForecastServiceRequest { public: AWS_FORECASTSERVICE_API DescribeDatasetImportJobRequest(); // 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 "DescribeDatasetImportJob"; } AWS_FORECASTSERVICE_API Aws::String SerializePayload() const override; AWS_FORECASTSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** * <p>The Amazon Resource Name (ARN) of the dataset import job.</p> */ inline const Aws::String& GetDatasetImportJobArn() const{ return m_datasetImportJobArn; } /** * <p>The Amazon Resource Name (ARN) of the dataset import job.</p> */ inline bool DatasetImportJobArnHasBeenSet() const { return m_datasetImportJobArnHasBeenSet; } /** * <p>The Amazon Resource Name (ARN) of the dataset import job.</p> */ inline void SetDatasetImportJobArn(const Aws::String& value) { m_datasetImportJobArnHasBeenSet = true; m_datasetImportJobArn = value; } /** * <p>The Amazon Resource Name (ARN) of the dataset import job.</p> */ inline void SetDatasetImportJobArn(Aws::String&& value) { m_datasetImportJobArnHasBeenSet = true; m_datasetImportJobArn = std::move(value); } /** * <p>The Amazon Resource Name (ARN) of the dataset import job.</p> */ inline void SetDatasetImportJobArn(const char* value) { m_datasetImportJobArnHasBeenSet = true; m_datasetImportJobArn.assign(value); } /** * <p>The Amazon Resource Name (ARN) of the dataset import job.</p> */ inline DescribeDatasetImportJobRequest& WithDatasetImportJobArn(const Aws::String& value) { SetDatasetImportJobArn(value); return *this;} /** * <p>The Amazon Resource Name (ARN) of the dataset import job.</p> */ inline DescribeDatasetImportJobRequest& WithDatasetImportJobArn(Aws::String&& value) { SetDatasetImportJobArn(std::move(value)); return *this;} /** * <p>The Amazon Resource Name (ARN) of the dataset import job.</p> */ inline DescribeDatasetImportJobRequest& WithDatasetImportJobArn(const char* value) { SetDatasetImportJobArn(value); return *this;} private: Aws::String m_datasetImportJobArn; bool m_datasetImportJobArnHasBeenSet = false; }; } // namespace Model } // namespace ForecastService } // namespace Aws