/** * 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 Appflow { namespace Model { /** *

Specifies the configuration that Amazon AppFlow uses when it catalogs your * data. When Amazon AppFlow catalogs your data, it stores metadata in a data * catalog.

See Also:

AWS * API Reference

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

Specifies the configuration that Amazon AppFlow uses when it catalogs your * data with the Glue Data Catalog.

*/ inline const GlueDataCatalogConfig& GetGlueDataCatalog() const{ return m_glueDataCatalog; } /** *

Specifies the configuration that Amazon AppFlow uses when it catalogs your * data with the Glue Data Catalog.

*/ inline bool GlueDataCatalogHasBeenSet() const { return m_glueDataCatalogHasBeenSet; } /** *

Specifies the configuration that Amazon AppFlow uses when it catalogs your * data with the Glue Data Catalog.

*/ inline void SetGlueDataCatalog(const GlueDataCatalogConfig& value) { m_glueDataCatalogHasBeenSet = true; m_glueDataCatalog = value; } /** *

Specifies the configuration that Amazon AppFlow uses when it catalogs your * data with the Glue Data Catalog.

*/ inline void SetGlueDataCatalog(GlueDataCatalogConfig&& value) { m_glueDataCatalogHasBeenSet = true; m_glueDataCatalog = std::move(value); } /** *

Specifies the configuration that Amazon AppFlow uses when it catalogs your * data with the Glue Data Catalog.

*/ inline MetadataCatalogConfig& WithGlueDataCatalog(const GlueDataCatalogConfig& value) { SetGlueDataCatalog(value); return *this;} /** *

Specifies the configuration that Amazon AppFlow uses when it catalogs your * data with the Glue Data Catalog.

*/ inline MetadataCatalogConfig& WithGlueDataCatalog(GlueDataCatalogConfig&& value) { SetGlueDataCatalog(std::move(value)); return *this;} private: GlueDataCatalogConfig m_glueDataCatalog; bool m_glueDataCatalogHasBeenSet = false; }; } // namespace Model } // namespace Appflow } // namespace Aws