List Devices
worklink_list_devices | R Documentation |
Retrieves a list of devices registered with the specified fleet¶
Description¶
Retrieves a list of devices registered with the specified fleet.
Usage¶
Arguments¶
FleetArn
[required] The ARN of the fleet.
NextToken
The pagination token used to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.
MaxResults
The maximum number of results to be included in the next page.
Value¶
A list with the following syntax:
list(
Devices = list(
list(
DeviceId = "string",
DeviceStatus = "ACTIVE"|"SIGNED_OUT"
)
),
NextToken = "string"
)