Struct aws_sdk_iam::model::AccessKeyMetadata [−][src]
#[non_exhaustive]pub struct AccessKeyMetadata {
pub user_name: Option<String>,
pub access_key_id: Option<String>,
pub status: Option<StatusType>,
pub create_date: Option<DateTime>,
}
Expand description
Contains information about an Amazon Web Services access key, without its secret key.
This data type is used as a response element in the ListAccessKeys 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 that the key is associated with.
access_key_id: Option<String>
The ID for this access key.
status: Option<StatusType>
The status of the access key. Active
means that the key is valid for API
calls; Inactive
means it is not.
create_date: Option<DateTime>
The date when the access key was created.
Implementations
The name of the IAM user that the key is associated with.
The ID for this access key.
The status of the access key. Active
means that the key is valid for API
calls; Inactive
means it is not.
The date when the access key was created.
Creates a new builder-style object to manufacture AccessKeyMetadata
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 AccessKeyMetadata
impl Send for AccessKeyMetadata
impl Sync for AccessKeyMetadata
impl Unpin for AccessKeyMetadata
impl UnwindSafe for AccessKeyMetadata
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