/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include 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
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