This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-kms/include/aws/kms/model/GrantOperation.h

44 lines
874 B
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/kms/KMS_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
namespace Aws
{
namespace KMS
{
namespace Model
{
enum class GrantOperation
{
NOT_SET,
Decrypt,
Encrypt,
GenerateDataKey,
GenerateDataKeyWithoutPlaintext,
ReEncryptFrom,
ReEncryptTo,
Sign,
Verify,
GetPublicKey,
CreateGrant,
RetireGrant,
DescribeKey,
GenerateDataKeyPair,
GenerateDataKeyPairWithoutPlaintext
};
namespace GrantOperationMapper
{
AWS_KMS_API GrantOperation GetGrantOperationForName(const Aws::String& name);
AWS_KMS_API Aws::String GetNameForGrantOperation(GrantOperation value);
} // namespace GrantOperationMapper
} // namespace Model
} // namespace KMS
} // namespace Aws