List Virtual Mfa Devices
iam_list_virtual_mfa_devices | R Documentation |
Lists the virtual MFA devices defined in the Amazon Web Services account by assignment status¶
Description¶
Lists the virtual MFA devices defined in the Amazon Web Services account
by assignment status. If you do not specify an assignment status, the
operation returns a list of all virtual MFA devices. Assignment status
can be Assigned
, Unassigned
, or Any
.
IAM resource-listing operations return a subset of the available
attributes for the resource. For example, this operation does not return
tags, even though they are an attribute of the returned object. To view
tag information for a virtual MFA device, see list_mfa_device_tags
.
You can paginate the results using the MaxItems
and Marker
parameters.
Usage¶
iam_list_virtual_mfa_devices(AssignmentStatus, Marker, MaxItems)
Arguments¶
AssignmentStatus |
The status ( |
Marker |
Use this parameter only when paginating results and only after
you receive a response indicating that the results are truncated. Set it
to the value of the |
MaxItems |
Use this only when paginating results to indicate the maximum
number of items you want in the response. If additional items exist
beyond the maximum you specify, the If you do not include this parameter, the number of items defaults to
100. Note that IAM might return fewer results, even when there are more
results available. In that case, the |
Value¶
A list with the following syntax:
list(
VirtualMFADevices = list(
list(
SerialNumber = "string",
Base32StringSeed = raw,
QRCodePNG = raw,
User = list(
Path = "string",
UserName = "string",
UserId = "string",
Arn = "string",
CreateDate = as.POSIXct(
"2015-01-01"
),
PasswordLastUsed = as.POSIXct(
"2015-01-01"
),
PermissionsBoundary = list(
PermissionsBoundaryType = "PermissionsBoundaryPolicy",
PermissionsBoundaryArn = "string"
),
Tags = list(
list(
Key = "string",
Value = "string"
)
)
),
EnableDate = as.POSIXct(
"2015-01-01"
),
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
),
IsTruncated = TRUE|FALSE,
Marker = "string"
)
Request syntax¶
svc$list_virtual_mfa_devices(
AssignmentStatus = "Assigned"|"Unassigned"|"Any",
Marker = "string",
MaxItems = 123
)
Examples¶
## Not run:
# The following command lists the virtual MFA devices that have been
# configured for the current account.
svc$list_virtual_mfa_devices()
## End(Not run)