Struct rusoto_kms::RevokeGrantRequest [] [src]

pub struct RevokeGrantRequest {
    pub grant_id: String,
    pub key_id: String,
}

Fields

Identifier of the grant to be revoked.

A unique identifier for the customer master key associated with the grant. This value can be a globally unique identifier or the fully specified ARN to a key.

  • Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012

  • Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012

Trait Implementations

impl Default for RevokeGrantRequest
[src]

[src]

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

impl Debug for RevokeGrantRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for RevokeGrantRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations