/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Configuration for processing job outputs in Amazon SageMaker Feature
* Store.See Also:
AWS
* API Reference
The name of the Amazon SageMaker FeatureGroup to use as the destination for * processing job output. Note that your processing script is responsible for * putting records into your Feature Store.
*/ inline const Aws::String& GetFeatureGroupName() const{ return m_featureGroupName; } /** *The name of the Amazon SageMaker FeatureGroup to use as the destination for * processing job output. Note that your processing script is responsible for * putting records into your Feature Store.
*/ inline bool FeatureGroupNameHasBeenSet() const { return m_featureGroupNameHasBeenSet; } /** *The name of the Amazon SageMaker FeatureGroup to use as the destination for * processing job output. Note that your processing script is responsible for * putting records into your Feature Store.
*/ inline void SetFeatureGroupName(const Aws::String& value) { m_featureGroupNameHasBeenSet = true; m_featureGroupName = value; } /** *The name of the Amazon SageMaker FeatureGroup to use as the destination for * processing job output. Note that your processing script is responsible for * putting records into your Feature Store.
*/ inline void SetFeatureGroupName(Aws::String&& value) { m_featureGroupNameHasBeenSet = true; m_featureGroupName = std::move(value); } /** *The name of the Amazon SageMaker FeatureGroup to use as the destination for * processing job output. Note that your processing script is responsible for * putting records into your Feature Store.
*/ inline void SetFeatureGroupName(const char* value) { m_featureGroupNameHasBeenSet = true; m_featureGroupName.assign(value); } /** *The name of the Amazon SageMaker FeatureGroup to use as the destination for * processing job output. Note that your processing script is responsible for * putting records into your Feature Store.
*/ inline ProcessingFeatureStoreOutput& WithFeatureGroupName(const Aws::String& value) { SetFeatureGroupName(value); return *this;} /** *The name of the Amazon SageMaker FeatureGroup to use as the destination for * processing job output. Note that your processing script is responsible for * putting records into your Feature Store.
*/ inline ProcessingFeatureStoreOutput& WithFeatureGroupName(Aws::String&& value) { SetFeatureGroupName(std::move(value)); return *this;} /** *The name of the Amazon SageMaker FeatureGroup to use as the destination for * processing job output. Note that your processing script is responsible for * putting records into your Feature Store.
*/ inline ProcessingFeatureStoreOutput& WithFeatureGroupName(const char* value) { SetFeatureGroupName(value); return *this;} private: Aws::String m_featureGroupName; bool m_featureGroupNameHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws