Struct aws_sdk_iam::output::ListAccessKeysOutput [−][src]
#[non_exhaustive]pub struct ListAccessKeysOutput {
pub access_key_metadata: Option<Vec<AccessKeyMetadata>>,
pub is_truncated: bool,
pub marker: Option<String>,
}
Expand description
Contains the response to a successful ListAccessKeys request.
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.access_key_metadata: Option<Vec<AccessKeyMetadata>>
A list of objects containing metadata about the access keys.
is_truncated: bool
A flag that indicates whether there are more items to return. If your
results were truncated, you can make a subsequent pagination request using the Marker
request parameter to retrieve more items. Note that IAM might return fewer than the
MaxItems
number of results even when there are more results available. We recommend
that you check IsTruncated
after every call to ensure that you receive all your
results.
marker: Option<String>
When IsTruncated
is true
, this element
is present and contains the value to use for the Marker
parameter in a subsequent
pagination request.
Implementations
A list of objects containing metadata about the access keys.
A flag that indicates whether there are more items to return. If your
results were truncated, you can make a subsequent pagination request using the Marker
request parameter to retrieve more items. Note that IAM might return fewer than the
MaxItems
number of results even when there are more results available. We recommend
that you check IsTruncated
after every call to ensure that you receive all your
results.
Creates a new builder-style object to manufacture ListAccessKeysOutput
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 ListAccessKeysOutput
impl Send for ListAccessKeysOutput
impl Sync for ListAccessKeysOutput
impl Unpin for ListAccessKeysOutput
impl UnwindSafe for ListAccessKeysOutput
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