186 lines
8.0 KiB
C
186 lines
8.0 KiB
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/kms/KMSRequest.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace KMS
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
*/
|
|||
|
|
class AWS_KMS_API RevokeGrantRequest : public KMSRequest
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
RevokeGrantRequest();
|
|||
|
|
|
|||
|
|
// 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 "RevokeGrant"; }
|
|||
|
|
|
|||
|
|
Aws::String SerializePayload() const override;
|
|||
|
|
|
|||
|
|
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A unique identifier for the customer master key associated with the
|
|||
|
|
* grant.</p> <p>Specify the key ID or the Amazon Resource Name (ARN) of the CMK.
|
|||
|
|
* To specify a CMK in a different AWS account, you must use the key ARN.</p>
|
|||
|
|
* <p>For example:</p> <ul> <li> <p>Key ID:
|
|||
|
|
* <code>1234abcd-12ab-34cd-56ef-1234567890ab</code> </p> </li> <li> <p>Key ARN:
|
|||
|
|
* <code>arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab</code>
|
|||
|
|
* </p> </li> </ul> <p>To get the key ID and key ARN for a CMK, use <a>ListKeys</a>
|
|||
|
|
* or <a>DescribeKey</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetKeyId() const{ return m_keyId; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A unique identifier for the customer master key associated with the
|
|||
|
|
* grant.</p> <p>Specify the key ID or the Amazon Resource Name (ARN) of the CMK.
|
|||
|
|
* To specify a CMK in a different AWS account, you must use the key ARN.</p>
|
|||
|
|
* <p>For example:</p> <ul> <li> <p>Key ID:
|
|||
|
|
* <code>1234abcd-12ab-34cd-56ef-1234567890ab</code> </p> </li> <li> <p>Key ARN:
|
|||
|
|
* <code>arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab</code>
|
|||
|
|
* </p> </li> </ul> <p>To get the key ID and key ARN for a CMK, use <a>ListKeys</a>
|
|||
|
|
* or <a>DescribeKey</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool KeyIdHasBeenSet() const { return m_keyIdHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A unique identifier for the customer master key associated with the
|
|||
|
|
* grant.</p> <p>Specify the key ID or the Amazon Resource Name (ARN) of the CMK.
|
|||
|
|
* To specify a CMK in a different AWS account, you must use the key ARN.</p>
|
|||
|
|
* <p>For example:</p> <ul> <li> <p>Key ID:
|
|||
|
|
* <code>1234abcd-12ab-34cd-56ef-1234567890ab</code> </p> </li> <li> <p>Key ARN:
|
|||
|
|
* <code>arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab</code>
|
|||
|
|
* </p> </li> </ul> <p>To get the key ID and key ARN for a CMK, use <a>ListKeys</a>
|
|||
|
|
* or <a>DescribeKey</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetKeyId(const Aws::String& value) { m_keyIdHasBeenSet = true; m_keyId = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A unique identifier for the customer master key associated with the
|
|||
|
|
* grant.</p> <p>Specify the key ID or the Amazon Resource Name (ARN) of the CMK.
|
|||
|
|
* To specify a CMK in a different AWS account, you must use the key ARN.</p>
|
|||
|
|
* <p>For example:</p> <ul> <li> <p>Key ID:
|
|||
|
|
* <code>1234abcd-12ab-34cd-56ef-1234567890ab</code> </p> </li> <li> <p>Key ARN:
|
|||
|
|
* <code>arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab</code>
|
|||
|
|
* </p> </li> </ul> <p>To get the key ID and key ARN for a CMK, use <a>ListKeys</a>
|
|||
|
|
* or <a>DescribeKey</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetKeyId(Aws::String&& value) { m_keyIdHasBeenSet = true; m_keyId = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A unique identifier for the customer master key associated with the
|
|||
|
|
* grant.</p> <p>Specify the key ID or the Amazon Resource Name (ARN) of the CMK.
|
|||
|
|
* To specify a CMK in a different AWS account, you must use the key ARN.</p>
|
|||
|
|
* <p>For example:</p> <ul> <li> <p>Key ID:
|
|||
|
|
* <code>1234abcd-12ab-34cd-56ef-1234567890ab</code> </p> </li> <li> <p>Key ARN:
|
|||
|
|
* <code>arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab</code>
|
|||
|
|
* </p> </li> </ul> <p>To get the key ID and key ARN for a CMK, use <a>ListKeys</a>
|
|||
|
|
* or <a>DescribeKey</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetKeyId(const char* value) { m_keyIdHasBeenSet = true; m_keyId.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A unique identifier for the customer master key associated with the
|
|||
|
|
* grant.</p> <p>Specify the key ID or the Amazon Resource Name (ARN) of the CMK.
|
|||
|
|
* To specify a CMK in a different AWS account, you must use the key ARN.</p>
|
|||
|
|
* <p>For example:</p> <ul> <li> <p>Key ID:
|
|||
|
|
* <code>1234abcd-12ab-34cd-56ef-1234567890ab</code> </p> </li> <li> <p>Key ARN:
|
|||
|
|
* <code>arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab</code>
|
|||
|
|
* </p> </li> </ul> <p>To get the key ID and key ARN for a CMK, use <a>ListKeys</a>
|
|||
|
|
* or <a>DescribeKey</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline RevokeGrantRequest& WithKeyId(const Aws::String& value) { SetKeyId(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A unique identifier for the customer master key associated with the
|
|||
|
|
* grant.</p> <p>Specify the key ID or the Amazon Resource Name (ARN) of the CMK.
|
|||
|
|
* To specify a CMK in a different AWS account, you must use the key ARN.</p>
|
|||
|
|
* <p>For example:</p> <ul> <li> <p>Key ID:
|
|||
|
|
* <code>1234abcd-12ab-34cd-56ef-1234567890ab</code> </p> </li> <li> <p>Key ARN:
|
|||
|
|
* <code>arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab</code>
|
|||
|
|
* </p> </li> </ul> <p>To get the key ID and key ARN for a CMK, use <a>ListKeys</a>
|
|||
|
|
* or <a>DescribeKey</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline RevokeGrantRequest& WithKeyId(Aws::String&& value) { SetKeyId(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A unique identifier for the customer master key associated with the
|
|||
|
|
* grant.</p> <p>Specify the key ID or the Amazon Resource Name (ARN) of the CMK.
|
|||
|
|
* To specify a CMK in a different AWS account, you must use the key ARN.</p>
|
|||
|
|
* <p>For example:</p> <ul> <li> <p>Key ID:
|
|||
|
|
* <code>1234abcd-12ab-34cd-56ef-1234567890ab</code> </p> </li> <li> <p>Key ARN:
|
|||
|
|
* <code>arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab</code>
|
|||
|
|
* </p> </li> </ul> <p>To get the key ID and key ARN for a CMK, use <a>ListKeys</a>
|
|||
|
|
* or <a>DescribeKey</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline RevokeGrantRequest& WithKeyId(const char* value) { SetKeyId(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Identifier of the grant to be revoked.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetGrantId() const{ return m_grantId; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Identifier of the grant to be revoked.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool GrantIdHasBeenSet() const { return m_grantIdHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Identifier of the grant to be revoked.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetGrantId(const Aws::String& value) { m_grantIdHasBeenSet = true; m_grantId = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Identifier of the grant to be revoked.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetGrantId(Aws::String&& value) { m_grantIdHasBeenSet = true; m_grantId = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Identifier of the grant to be revoked.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetGrantId(const char* value) { m_grantIdHasBeenSet = true; m_grantId.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Identifier of the grant to be revoked.</p>
|
|||
|
|
*/
|
|||
|
|
inline RevokeGrantRequest& WithGrantId(const Aws::String& value) { SetGrantId(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Identifier of the grant to be revoked.</p>
|
|||
|
|
*/
|
|||
|
|
inline RevokeGrantRequest& WithGrantId(Aws::String&& value) { SetGrantId(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Identifier of the grant to be revoked.</p>
|
|||
|
|
*/
|
|||
|
|
inline RevokeGrantRequest& WithGrantId(const char* value) { SetGrantId(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_keyId;
|
|||
|
|
bool m_keyIdHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::String m_grantId;
|
|||
|
|
bool m_grantIdHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace KMS
|
|||
|
|
} // namespace Aws
|