/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include This object belongs to the CreatePredictor operation. If you
* created your predictor with CreateAutoPredictor, see
* DataConfig. The data used to train a predictor. The data
* includes a dataset group and any supplementary features. You specify this object
* in the CreatePredictor request.See Also:
AWS
* API Reference
The Amazon Resource Name (ARN) of the dataset group.
*/ inline const Aws::String& GetDatasetGroupArn() const{ return m_datasetGroupArn; } /** *The Amazon Resource Name (ARN) of the dataset group.
*/ inline bool DatasetGroupArnHasBeenSet() const { return m_datasetGroupArnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the dataset group.
*/ inline void SetDatasetGroupArn(const Aws::String& value) { m_datasetGroupArnHasBeenSet = true; m_datasetGroupArn = value; } /** *The Amazon Resource Name (ARN) of the dataset group.
*/ inline void SetDatasetGroupArn(Aws::String&& value) { m_datasetGroupArnHasBeenSet = true; m_datasetGroupArn = std::move(value); } /** *The Amazon Resource Name (ARN) of the dataset group.
*/ inline void SetDatasetGroupArn(const char* value) { m_datasetGroupArnHasBeenSet = true; m_datasetGroupArn.assign(value); } /** *The Amazon Resource Name (ARN) of the dataset group.
*/ inline InputDataConfig& WithDatasetGroupArn(const Aws::String& value) { SetDatasetGroupArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the dataset group.
*/ inline InputDataConfig& WithDatasetGroupArn(Aws::String&& value) { SetDatasetGroupArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the dataset group.
*/ inline InputDataConfig& WithDatasetGroupArn(const char* value) { SetDatasetGroupArn(value); return *this;} /** *An array of supplementary features. The only supported feature is a holiday * calendar.
*/ inline const Aws::VectorAn array of supplementary features. The only supported feature is a holiday * calendar.
*/ inline bool SupplementaryFeaturesHasBeenSet() const { return m_supplementaryFeaturesHasBeenSet; } /** *An array of supplementary features. The only supported feature is a holiday * calendar.
*/ inline void SetSupplementaryFeatures(const Aws::VectorAn array of supplementary features. The only supported feature is a holiday * calendar.
*/ inline void SetSupplementaryFeatures(Aws::VectorAn array of supplementary features. The only supported feature is a holiday * calendar.
*/ inline InputDataConfig& WithSupplementaryFeatures(const Aws::VectorAn array of supplementary features. The only supported feature is a holiday * calendar.
*/ inline InputDataConfig& WithSupplementaryFeatures(Aws::VectorAn array of supplementary features. The only supported feature is a holiday * calendar.
*/ inline InputDataConfig& AddSupplementaryFeatures(const SupplementaryFeature& value) { m_supplementaryFeaturesHasBeenSet = true; m_supplementaryFeatures.push_back(value); return *this; } /** *An array of supplementary features. The only supported feature is a holiday * calendar.
*/ inline InputDataConfig& AddSupplementaryFeatures(SupplementaryFeature&& value) { m_supplementaryFeaturesHasBeenSet = true; m_supplementaryFeatures.push_back(std::move(value)); return *this; } private: Aws::String m_datasetGroupArn; bool m_datasetGroupArnHasBeenSet = false; Aws::Vector