Struct rusoto_kms::CreateGrantResponse[][src]

pub struct CreateGrantResponse {
    pub grant_id: Option<String>,
    pub grant_token: Option<String>,
}

Fields

The unique identifier for the grant.

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

The grant token.

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

Trait Implementations

impl Default for CreateGrantResponse
[src]

Returns the "default value" for a type. Read more

impl Debug for CreateGrantResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateGrantResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateGrantResponse
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations