/** * 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 LakeFormation { namespace Model { /** */ class BatchRevokePermissionsRequest : public LakeFormationRequest { public: AWS_LAKEFORMATION_API BatchRevokePermissionsRequest(); // 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 "BatchRevokePermissions"; } AWS_LAKEFORMATION_API Aws::String SerializePayload() const override; /** *

The identifier for the Data Catalog. By default, the account ID. The Data * Catalog is the persistent metadata store. It contains database definitions, * table definitions, and other control information to manage your Lake Formation * environment.

*/ inline const Aws::String& GetCatalogId() const{ return m_catalogId; } /** *

The identifier for the Data Catalog. By default, the account ID. The Data * Catalog is the persistent metadata store. It contains database definitions, * table definitions, and other control information to manage your Lake Formation * environment.

*/ inline bool CatalogIdHasBeenSet() const { return m_catalogIdHasBeenSet; } /** *

The identifier for the Data Catalog. By default, the account ID. The Data * Catalog is the persistent metadata store. It contains database definitions, * table definitions, and other control information to manage your Lake Formation * environment.

*/ inline void SetCatalogId(const Aws::String& value) { m_catalogIdHasBeenSet = true; m_catalogId = value; } /** *

The identifier for the Data Catalog. By default, the account ID. The Data * Catalog is the persistent metadata store. It contains database definitions, * table definitions, and other control information to manage your Lake Formation * environment.

*/ inline void SetCatalogId(Aws::String&& value) { m_catalogIdHasBeenSet = true; m_catalogId = std::move(value); } /** *

The identifier for the Data Catalog. By default, the account ID. The Data * Catalog is the persistent metadata store. It contains database definitions, * table definitions, and other control information to manage your Lake Formation * environment.

*/ inline void SetCatalogId(const char* value) { m_catalogIdHasBeenSet = true; m_catalogId.assign(value); } /** *

The identifier for the Data Catalog. By default, the account ID. The Data * Catalog is the persistent metadata store. It contains database definitions, * table definitions, and other control information to manage your Lake Formation * environment.

*/ inline BatchRevokePermissionsRequest& WithCatalogId(const Aws::String& value) { SetCatalogId(value); return *this;} /** *

The identifier for the Data Catalog. By default, the account ID. The Data * Catalog is the persistent metadata store. It contains database definitions, * table definitions, and other control information to manage your Lake Formation * environment.

*/ inline BatchRevokePermissionsRequest& WithCatalogId(Aws::String&& value) { SetCatalogId(std::move(value)); return *this;} /** *

The identifier for the Data Catalog. By default, the account ID. The Data * Catalog is the persistent metadata store. It contains database definitions, * table definitions, and other control information to manage your Lake Formation * environment.

*/ inline BatchRevokePermissionsRequest& WithCatalogId(const char* value) { SetCatalogId(value); return *this;} /** *

A list of up to 20 entries for resource permissions to be revoked by batch * operation to the principal.

*/ inline const Aws::Vector& GetEntries() const{ return m_entries; } /** *

A list of up to 20 entries for resource permissions to be revoked by batch * operation to the principal.

*/ inline bool EntriesHasBeenSet() const { return m_entriesHasBeenSet; } /** *

A list of up to 20 entries for resource permissions to be revoked by batch * operation to the principal.

*/ inline void SetEntries(const Aws::Vector& value) { m_entriesHasBeenSet = true; m_entries = value; } /** *

A list of up to 20 entries for resource permissions to be revoked by batch * operation to the principal.

*/ inline void SetEntries(Aws::Vector&& value) { m_entriesHasBeenSet = true; m_entries = std::move(value); } /** *

A list of up to 20 entries for resource permissions to be revoked by batch * operation to the principal.

*/ inline BatchRevokePermissionsRequest& WithEntries(const Aws::Vector& value) { SetEntries(value); return *this;} /** *

A list of up to 20 entries for resource permissions to be revoked by batch * operation to the principal.

*/ inline BatchRevokePermissionsRequest& WithEntries(Aws::Vector&& value) { SetEntries(std::move(value)); return *this;} /** *

A list of up to 20 entries for resource permissions to be revoked by batch * operation to the principal.

*/ inline BatchRevokePermissionsRequest& AddEntries(const BatchPermissionsRequestEntry& value) { m_entriesHasBeenSet = true; m_entries.push_back(value); return *this; } /** *

A list of up to 20 entries for resource permissions to be revoked by batch * operation to the principal.

*/ inline BatchRevokePermissionsRequest& AddEntries(BatchPermissionsRequestEntry&& value) { m_entriesHasBeenSet = true; m_entries.push_back(std::move(value)); return *this; } private: Aws::String m_catalogId; bool m_catalogIdHasBeenSet = false; Aws::Vector m_entries; bool m_entriesHasBeenSet = false; }; } // namespace Model } // namespace LakeFormation } // namespace Aws