Struct rusoto_kms::AliasListEntry[][src]

pub struct AliasListEntry {
    pub alias_arn: Option<String>,
    pub alias_name: Option<String>,
    pub target_key_id: Option<String>,
}

Contains information about an alias.

Fields

String that contains the key ARN.

String that contains the alias.

String that contains the key identifier referred to by the alias.

Trait Implementations

impl Default for AliasListEntry
[src]

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

impl Debug for AliasListEntry
[src]

Formats the value using the given formatter. Read more

impl Clone for AliasListEntry
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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