/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace Athena { namespace Model { /** */ class UpdateDataCatalogRequest : public AthenaRequest { public: AWS_ATHENA_API UpdateDataCatalogRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "UpdateDataCatalog"; } AWS_ATHENA_API Aws::String SerializePayload() const override; AWS_ATHENA_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The name of the data catalog to update. The catalog name must be unique for * the Amazon Web Services account and can use a maximum of 127 alphanumeric, * underscore, at sign, or hyphen characters. The remainder of the length * constraint of 256 is reserved for use by Athena.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

The name of the data catalog to update. The catalog name must be unique for * the Amazon Web Services account and can use a maximum of 127 alphanumeric, * underscore, at sign, or hyphen characters. The remainder of the length * constraint of 256 is reserved for use by Athena.

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

The name of the data catalog to update. The catalog name must be unique for * the Amazon Web Services account and can use a maximum of 127 alphanumeric, * underscore, at sign, or hyphen characters. The remainder of the length * constraint of 256 is reserved for use by Athena.

*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *

The name of the data catalog to update. The catalog name must be unique for * the Amazon Web Services account and can use a maximum of 127 alphanumeric, * underscore, at sign, or hyphen characters. The remainder of the length * constraint of 256 is reserved for use by Athena.

*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

The name of the data catalog to update. The catalog name must be unique for * the Amazon Web Services account and can use a maximum of 127 alphanumeric, * underscore, at sign, or hyphen characters. The remainder of the length * constraint of 256 is reserved for use by Athena.

*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *

The name of the data catalog to update. The catalog name must be unique for * the Amazon Web Services account and can use a maximum of 127 alphanumeric, * underscore, at sign, or hyphen characters. The remainder of the length * constraint of 256 is reserved for use by Athena.

*/ inline UpdateDataCatalogRequest& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

The name of the data catalog to update. The catalog name must be unique for * the Amazon Web Services account and can use a maximum of 127 alphanumeric, * underscore, at sign, or hyphen characters. The remainder of the length * constraint of 256 is reserved for use by Athena.

*/ inline UpdateDataCatalogRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

The name of the data catalog to update. The catalog name must be unique for * the Amazon Web Services account and can use a maximum of 127 alphanumeric, * underscore, at sign, or hyphen characters. The remainder of the length * constraint of 256 is reserved for use by Athena.

*/ inline UpdateDataCatalogRequest& WithName(const char* value) { SetName(value); return *this;} /** *

Specifies the type of data catalog to update. Specify LAMBDA for * a federated catalog, HIVE for an external hive metastore, or * GLUE for an Glue Data Catalog.

*/ inline const DataCatalogType& GetType() const{ return m_type; } /** *

Specifies the type of data catalog to update. Specify LAMBDA for * a federated catalog, HIVE for an external hive metastore, or * GLUE for an Glue Data Catalog.

*/ inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; } /** *

Specifies the type of data catalog to update. Specify LAMBDA for * a federated catalog, HIVE for an external hive metastore, or * GLUE for an Glue Data Catalog.

*/ inline void SetType(const DataCatalogType& value) { m_typeHasBeenSet = true; m_type = value; } /** *

Specifies the type of data catalog to update. Specify LAMBDA for * a federated catalog, HIVE for an external hive metastore, or * GLUE for an Glue Data Catalog.

*/ inline void SetType(DataCatalogType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); } /** *

Specifies the type of data catalog to update. Specify LAMBDA for * a federated catalog, HIVE for an external hive metastore, or * GLUE for an Glue Data Catalog.

*/ inline UpdateDataCatalogRequest& WithType(const DataCatalogType& value) { SetType(value); return *this;} /** *

Specifies the type of data catalog to update. Specify LAMBDA for * a federated catalog, HIVE for an external hive metastore, or * GLUE for an Glue Data Catalog.

*/ inline UpdateDataCatalogRequest& WithType(DataCatalogType&& value) { SetType(std::move(value)); return *this;} /** *

New or modified text that describes the data catalog.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

New or modified text that describes the data catalog.

*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *

New or modified text that describes the data catalog.

*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *

New or modified text that describes the data catalog.

*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *

New or modified text that describes the data catalog.

*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *

New or modified text that describes the data catalog.

*/ inline UpdateDataCatalogRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

New or modified text that describes the data catalog.

*/ inline UpdateDataCatalogRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

New or modified text that describes the data catalog.

*/ inline UpdateDataCatalogRequest& WithDescription(const char* value) { SetDescription(value); return *this;} /** *

Specifies the Lambda function or functions to use for updating the data * catalog. This is a mapping whose values depend on the catalog type.

    *
  • For the HIVE data catalog type, use the following syntax. * The metadata-function parameter is required. The * sdk-version parameter is optional and defaults to the currently supported * version.

    metadata-function=lambda_arn, * sdk-version=version_number

  • For the * LAMBDA data catalog type, use one of the following sets of required * parameters, but not both.

    • If you have one Lambda function that * processes metadata and another for reading the actual data, use the following * syntax. Both parameters are required.

      * metadata-function=lambda_arn, record-function=lambda_arn *

    • If you have a composite Lambda function that * processes both metadata and data, use the following syntax to specify your * Lambda function.

      function=lambda_arn

    • *
*/ inline const Aws::Map& GetParameters() const{ return m_parameters; } /** *

Specifies the Lambda function or functions to use for updating the data * catalog. This is a mapping whose values depend on the catalog type.

    *
  • For the HIVE data catalog type, use the following syntax. * The metadata-function parameter is required. The * sdk-version parameter is optional and defaults to the currently supported * version.

    metadata-function=lambda_arn, * sdk-version=version_number

  • For the * LAMBDA data catalog type, use one of the following sets of required * parameters, but not both.

    • If you have one Lambda function that * processes metadata and another for reading the actual data, use the following * syntax. Both parameters are required.

      * metadata-function=lambda_arn, record-function=lambda_arn *

    • If you have a composite Lambda function that * processes both metadata and data, use the following syntax to specify your * Lambda function.

      function=lambda_arn

    • *
*/ inline bool ParametersHasBeenSet() const { return m_parametersHasBeenSet; } /** *

Specifies the Lambda function or functions to use for updating the data * catalog. This is a mapping whose values depend on the catalog type.

    *
  • For the HIVE data catalog type, use the following syntax. * The metadata-function parameter is required. The * sdk-version parameter is optional and defaults to the currently supported * version.

    metadata-function=lambda_arn, * sdk-version=version_number

  • For the * LAMBDA data catalog type, use one of the following sets of required * parameters, but not both.

    • If you have one Lambda function that * processes metadata and another for reading the actual data, use the following * syntax. Both parameters are required.

      * metadata-function=lambda_arn, record-function=lambda_arn *

    • If you have a composite Lambda function that * processes both metadata and data, use the following syntax to specify your * Lambda function.

      function=lambda_arn

    • *
*/ inline void SetParameters(const Aws::Map& value) { m_parametersHasBeenSet = true; m_parameters = value; } /** *

Specifies the Lambda function or functions to use for updating the data * catalog. This is a mapping whose values depend on the catalog type.

    *
  • For the HIVE data catalog type, use the following syntax. * The metadata-function parameter is required. The * sdk-version parameter is optional and defaults to the currently supported * version.

    metadata-function=lambda_arn, * sdk-version=version_number

  • For the * LAMBDA data catalog type, use one of the following sets of required * parameters, but not both.

    • If you have one Lambda function that * processes metadata and another for reading the actual data, use the following * syntax. Both parameters are required.

      * metadata-function=lambda_arn, record-function=lambda_arn *

    • If you have a composite Lambda function that * processes both metadata and data, use the following syntax to specify your * Lambda function.

      function=lambda_arn

    • *
*/ inline void SetParameters(Aws::Map&& value) { m_parametersHasBeenSet = true; m_parameters = std::move(value); } /** *

Specifies the Lambda function or functions to use for updating the data * catalog. This is a mapping whose values depend on the catalog type.

    *
  • For the HIVE data catalog type, use the following syntax. * The metadata-function parameter is required. The * sdk-version parameter is optional and defaults to the currently supported * version.

    metadata-function=lambda_arn, * sdk-version=version_number

  • For the * LAMBDA data catalog type, use one of the following sets of required * parameters, but not both.

    • If you have one Lambda function that * processes metadata and another for reading the actual data, use the following * syntax. Both parameters are required.

      * metadata-function=lambda_arn, record-function=lambda_arn *

    • If you have a composite Lambda function that * processes both metadata and data, use the following syntax to specify your * Lambda function.

      function=lambda_arn

    • *
*/ inline UpdateDataCatalogRequest& WithParameters(const Aws::Map& value) { SetParameters(value); return *this;} /** *

Specifies the Lambda function or functions to use for updating the data * catalog. This is a mapping whose values depend on the catalog type.

    *
  • For the HIVE data catalog type, use the following syntax. * The metadata-function parameter is required. The * sdk-version parameter is optional and defaults to the currently supported * version.

    metadata-function=lambda_arn, * sdk-version=version_number

  • For the * LAMBDA data catalog type, use one of the following sets of required * parameters, but not both.

    • If you have one Lambda function that * processes metadata and another for reading the actual data, use the following * syntax. Both parameters are required.

      * metadata-function=lambda_arn, record-function=lambda_arn *

    • If you have a composite Lambda function that * processes both metadata and data, use the following syntax to specify your * Lambda function.

      function=lambda_arn

    • *
*/ inline UpdateDataCatalogRequest& WithParameters(Aws::Map&& value) { SetParameters(std::move(value)); return *this;} /** *

Specifies the Lambda function or functions to use for updating the data * catalog. This is a mapping whose values depend on the catalog type.

    *
  • For the HIVE data catalog type, use the following syntax. * The metadata-function parameter is required. The * sdk-version parameter is optional and defaults to the currently supported * version.

    metadata-function=lambda_arn, * sdk-version=version_number

  • For the * LAMBDA data catalog type, use one of the following sets of required * parameters, but not both.

    • If you have one Lambda function that * processes metadata and another for reading the actual data, use the following * syntax. Both parameters are required.

      * metadata-function=lambda_arn, record-function=lambda_arn *

    • If you have a composite Lambda function that * processes both metadata and data, use the following syntax to specify your * Lambda function.

      function=lambda_arn

    • *
*/ inline UpdateDataCatalogRequest& AddParameters(const Aws::String& key, const Aws::String& value) { m_parametersHasBeenSet = true; m_parameters.emplace(key, value); return *this; } /** *

Specifies the Lambda function or functions to use for updating the data * catalog. This is a mapping whose values depend on the catalog type.

    *
  • For the HIVE data catalog type, use the following syntax. * The metadata-function parameter is required. The * sdk-version parameter is optional and defaults to the currently supported * version.

    metadata-function=lambda_arn, * sdk-version=version_number

  • For the * LAMBDA data catalog type, use one of the following sets of required * parameters, but not both.

    • If you have one Lambda function that * processes metadata and another for reading the actual data, use the following * syntax. Both parameters are required.

      * metadata-function=lambda_arn, record-function=lambda_arn *

    • If you have a composite Lambda function that * processes both metadata and data, use the following syntax to specify your * Lambda function.

      function=lambda_arn

    • *
*/ inline UpdateDataCatalogRequest& AddParameters(Aws::String&& key, const Aws::String& value) { m_parametersHasBeenSet = true; m_parameters.emplace(std::move(key), value); return *this; } /** *

Specifies the Lambda function or functions to use for updating the data * catalog. This is a mapping whose values depend on the catalog type.

    *
  • For the HIVE data catalog type, use the following syntax. * The metadata-function parameter is required. The * sdk-version parameter is optional and defaults to the currently supported * version.

    metadata-function=lambda_arn, * sdk-version=version_number

  • For the * LAMBDA data catalog type, use one of the following sets of required * parameters, but not both.

    • If you have one Lambda function that * processes metadata and another for reading the actual data, use the following * syntax. Both parameters are required.

      * metadata-function=lambda_arn, record-function=lambda_arn *

    • If you have a composite Lambda function that * processes both metadata and data, use the following syntax to specify your * Lambda function.

      function=lambda_arn

    • *
*/ inline UpdateDataCatalogRequest& AddParameters(const Aws::String& key, Aws::String&& value) { m_parametersHasBeenSet = true; m_parameters.emplace(key, std::move(value)); return *this; } /** *

Specifies the Lambda function or functions to use for updating the data * catalog. This is a mapping whose values depend on the catalog type.

    *
  • For the HIVE data catalog type, use the following syntax. * The metadata-function parameter is required. The * sdk-version parameter is optional and defaults to the currently supported * version.

    metadata-function=lambda_arn, * sdk-version=version_number

  • For the * LAMBDA data catalog type, use one of the following sets of required * parameters, but not both.

    • If you have one Lambda function that * processes metadata and another for reading the actual data, use the following * syntax. Both parameters are required.

      * metadata-function=lambda_arn, record-function=lambda_arn *

    • If you have a composite Lambda function that * processes both metadata and data, use the following syntax to specify your * Lambda function.

      function=lambda_arn

    • *
*/ inline UpdateDataCatalogRequest& AddParameters(Aws::String&& key, Aws::String&& value) { m_parametersHasBeenSet = true; m_parameters.emplace(std::move(key), std::move(value)); return *this; } /** *

Specifies the Lambda function or functions to use for updating the data * catalog. This is a mapping whose values depend on the catalog type.

    *
  • For the HIVE data catalog type, use the following syntax. * The metadata-function parameter is required. The * sdk-version parameter is optional and defaults to the currently supported * version.

    metadata-function=lambda_arn, * sdk-version=version_number

  • For the * LAMBDA data catalog type, use one of the following sets of required * parameters, but not both.

    • If you have one Lambda function that * processes metadata and another for reading the actual data, use the following * syntax. Both parameters are required.

      * metadata-function=lambda_arn, record-function=lambda_arn *

    • If you have a composite Lambda function that * processes both metadata and data, use the following syntax to specify your * Lambda function.

      function=lambda_arn

    • *
*/ inline UpdateDataCatalogRequest& AddParameters(const char* key, Aws::String&& value) { m_parametersHasBeenSet = true; m_parameters.emplace(key, std::move(value)); return *this; } /** *

Specifies the Lambda function or functions to use for updating the data * catalog. This is a mapping whose values depend on the catalog type.

    *
  • For the HIVE data catalog type, use the following syntax. * The metadata-function parameter is required. The * sdk-version parameter is optional and defaults to the currently supported * version.

    metadata-function=lambda_arn, * sdk-version=version_number

  • For the * LAMBDA data catalog type, use one of the following sets of required * parameters, but not both.

    • If you have one Lambda function that * processes metadata and another for reading the actual data, use the following * syntax. Both parameters are required.

      * metadata-function=lambda_arn, record-function=lambda_arn *

    • If you have a composite Lambda function that * processes both metadata and data, use the following syntax to specify your * Lambda function.

      function=lambda_arn

    • *
*/ inline UpdateDataCatalogRequest& AddParameters(Aws::String&& key, const char* value) { m_parametersHasBeenSet = true; m_parameters.emplace(std::move(key), value); return *this; } /** *

Specifies the Lambda function or functions to use for updating the data * catalog. This is a mapping whose values depend on the catalog type.

    *
  • For the HIVE data catalog type, use the following syntax. * The metadata-function parameter is required. The * sdk-version parameter is optional and defaults to the currently supported * version.

    metadata-function=lambda_arn, * sdk-version=version_number

  • For the * LAMBDA data catalog type, use one of the following sets of required * parameters, but not both.

    • If you have one Lambda function that * processes metadata and another for reading the actual data, use the following * syntax. Both parameters are required.

      * metadata-function=lambda_arn, record-function=lambda_arn *

    • If you have a composite Lambda function that * processes both metadata and data, use the following syntax to specify your * Lambda function.

      function=lambda_arn

    • *
*/ inline UpdateDataCatalogRequest& AddParameters(const char* key, const char* value) { m_parametersHasBeenSet = true; m_parameters.emplace(key, value); return *this; } private: Aws::String m_name; bool m_nameHasBeenSet = false; DataCatalogType m_type; bool m_typeHasBeenSet = false; Aws::String m_description; bool m_descriptionHasBeenSet = false; Aws::Map m_parameters; bool m_parametersHasBeenSet = false; }; } // namespace Model } // namespace Athena } // namespace Aws