APIs.io Engineering Platform · Schema
ListVirtualMFADevicesResponse
Contains the response to a successful ListVirtualMFADevices request.
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| VirtualMFADevices | object | |
| IsTruncated | object | |
| Marker | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ListVirtualMFADevicesResponse",
"title": "ListVirtualMFADevicesResponse",
"type": "object",
"required": [
"VirtualMFADevices"
],
"example": {
"VirtualMFADevices": [
{
"SerialNumber": "arn:aws:iam::123456789012:mfa/ExampleMFADevice"
},
{
"SerialNumber": "arn:aws:iam::123456789012:mfa/Juan"
}
]
},
"properties": {
"VirtualMFADevices": {
"allOf": [
{
"$ref": "#/components/schemas/virtualMFADeviceListType"
},
{
"description": " The list of virtual MFA devices in the current account that match the <code>AssignmentStatus</code> value that was passed in the request."
}
]
},
"IsTruncated": {
"allOf": [
{
"$ref": "#/components/schemas/booleanType"
},
{
"description": "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 <code>Marker</code> request parameter to retrieve more items. Note that IAM might return fewer than the <code>MaxItems</code> number of results even when there are more results available. We recommend that you check <code>IsTruncated</code> after every call to ensure that you receive all your results."
}
]
},
"Marker": {
"allOf": [
{
"$ref": "#/components/schemas/responseMarkerType"
},
{
"description": "When <code>IsTruncated</code> is <code>true</code>, this element is present and contains the value to use for the <code>Marker</code> parameter in a subsequent pagination request."
}
]
}
},
"description": "Contains the response to a successful <a>ListVirtualMFADevices</a> request. "
}