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 action.

Fields

The unique identifier for the SSH public key.

The status of the SSH public key. Active means the key can be used for authentication with an AWS CodeCommit repository. Inactive means 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]

[src]

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

impl Debug for SSHPublicKeyMetadata
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for SSHPublicKeyMetadata
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations