/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace SageMaker { namespace Model { /** *

Configuration for processing job outputs in Amazon SageMaker Feature * Store.

See Also:

AWS * API Reference

*/ class ProcessingFeatureStoreOutput { public: AWS_SAGEMAKER_API ProcessingFeatureStoreOutput(); AWS_SAGEMAKER_API ProcessingFeatureStoreOutput(Aws::Utils::Json::JsonView jsonValue); AWS_SAGEMAKER_API ProcessingFeatureStoreOutput& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

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