Struct rusoto_iam::SSHPublicKeyMetadata[][src]

pub struct SSHPublicKeyMetadata {
    pub ssh_public_key_id: String,
    pub status: String,
    pub upload_date: String,
    pub user_name: String,
}

Contains information about an SSH public key, without the key's body or fingerprint.

This data type is used as a response element in the ListSSHPublicKeys operation.

Fields

The unique identifier for the SSH public key.

The status of the SSH public key. Active means that the key can be used for authentication with an AWS CodeCommit repository. Inactive means that the key cannot be used.

The date and time, in ISO 8601 date-time format, when the SSH public key was uploaded.

The name of the IAM user associated with the SSH public key.

Trait Implementations

impl Default for SSHPublicKeyMetadata
[src]

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

impl Debug for SSHPublicKeyMetadata
[src]

Formats the value using the given formatter. Read more

impl Clone for SSHPublicKeyMetadata
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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