import * as __aws_sdk_types from '@aws-sdk/types'; /** * CreateGrantOutput shape */ export interface CreateGrantOutput { /** *

The grant token.

For more information, see Grant Tokens in the AWS Key Management Service Developer Guide.

*/ GrantToken?: string; /** *

The unique identifier for the grant.

You can use the GrantId in a subsequent RetireGrant or RevokeGrant operation.

*/ GrantId?: string; /** * Metadata about the response received, including the HTTP status code, HTTP headers, and any request identifiers recognized by the SDK. */ $metadata: __aws_sdk_types.ResponseMetadata; }