Class: Aws::KMS::Types::CreateGrantResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::KMS::Types::CreateGrantResponse
- Defined in:
- gems/aws-sdk-kms/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 'gems/aws-sdk-kms/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.
771 772 773 774 775 776 |
# File 'gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb', line 771 class CreateGrantResponse < Struct.new( :grant_token, :grant_id) SENSITIVE = [] include Aws::Structure end |