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¶
Arguments¶
AssignmentStatus
The status (
Unassigned
orAssigned
) of the devices to list. If you do not specify anAssignmentStatus
, the operation defaults toAny
, which lists both assigned and unassigned virtual MFA devices.,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
Marker
element in the response that you received to indicate where the next call should start.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
IsTruncated
response element istrue
.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
IsTruncated
response element returnstrue
, andMarker
contains a value to include in the subsequent call that tells the service where to continue from.
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
)