Struct rusoto_kms::RetireGrantRequest[][src]

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

Fields

Unique identifier of the grant to retire. The grant ID is returned in the response to a CreateGrant operation.

  • Grant ID Example - 0123456789012345678901234567890123456789012345678901234567890123

Token that identifies the grant to be retired.

The Amazon Resource Name (ARN) of the CMK associated with the grant.

For example: arn:aws:kms:us-east-2:444455556666:key/1234abcd-12ab-34cd-56ef-1234567890ab

Trait Implementations

impl Default for RetireGrantRequest
[src]

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

impl Debug for RetireGrantRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for RetireGrantRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for RetireGrantRequest
[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