Class: Aws::KMS::Types::CreateGrantResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::KMS::Types::CreateGrantResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kms/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#grant_id ⇒ String
The unique identifier for the grant.
-
#grant_token ⇒ String
The grant token.
Instance Attribute Details
#grant_id ⇒ String
The unique identifier for the grant.
You can use the ‘GrantId` in a ListGrants, RetireGrant, or RevokeGrant operation.
771 772 773 774 775 776 |
# File 'lib/aws-sdk-kms/types.rb', line 771 class CreateGrantResponse < Struct.new( :grant_token, :grant_id) SENSITIVE = [] include Aws::Structure end |
#grant_token ⇒ String
The grant token.
Use a grant token when your permission to call this operation comes from a new grant that has not yet achieved *eventual consistency*. For more information, see [Grant token] and [Using a grant token] in the *Key Management Service Developer Guide*.
[1]: docs.aws.amazon.com/kms/latest/developerguide/grants.html#grant_token [2]: docs.aws.amazon.com/kms/latest/developerguide/grant-manage.html#using-grant-token
771 772 773 774 775 776 |
# File 'lib/aws-sdk-kms/types.rb', line 771 class CreateGrantResponse < Struct.new( :grant_token, :grant_id) SENSITIVE = [] include Aws::Structure end |