Struct aws_sdk_iam::model::SshPublicKeyMetadata [−][src]
#[non_exhaustive]pub struct SshPublicKeyMetadata {
pub user_name: Option<String>,
pub ssh_public_key_id: Option<String>,
pub status: Option<StatusType>,
pub upload_date: Option<DateTime>,
}
Expand description
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 (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.user_name: Option<String>
The name of the IAM user associated with the SSH public key.
ssh_public_key_id: Option<String>
The unique identifier for the SSH public key.
status: Option<StatusType>
The status of the SSH public key. Active
means that the key can be used for
authentication with an CodeCommit repository. Inactive
means that the key
cannot be used.
upload_date: Option<DateTime>
The date and time, in ISO 8601 date-time format, when the SSH public key was uploaded.
Implementations
The name of the IAM user associated with the SSH public key.
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 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.
Creates a new builder-style object to manufacture SshPublicKeyMetadata
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for SshPublicKeyMetadata
impl Send for SshPublicKeyMetadata
impl Sync for SshPublicKeyMetadata
impl Unpin for SshPublicKeyMetadata
impl UnwindSafe for SshPublicKeyMetadata
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more