List Devices
sagemaker_list_devices | R Documentation |
A list of devices¶
Description¶
A list of devices.
Usage¶
sagemaker_list_devices(NextToken, MaxResults, LatestHeartbeatAfter,
ModelName, DeviceFleetName)
Arguments¶
NextToken |
The response from the last list when returning a list large enough to need tokening. |
MaxResults |
Maximum number of results to select. |
LatestHeartbeatAfter |
Select fleets where the job was updated after X |
ModelName |
A filter that searches devices that contains this name in any of their models. |
DeviceFleetName |
Filter for fleets containing this name in their device fleet name. |
Value¶
A list with the following syntax:
list(
DeviceSummaries = list(
list(
DeviceName = "string",
DeviceArn = "string",
Description = "string",
DeviceFleetName = "string",
IotThingName = "string",
RegistrationTime = as.POSIXct(
"2015-01-01"
),
LatestHeartbeat = as.POSIXct(
"2015-01-01"
),
Models = list(
list(
ModelName = "string",
ModelVersion = "string"
)
),
AgentVersion = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_devices(
NextToken = "string",
MaxResults = 123,
LatestHeartbeatAfter = as.POSIXct(
"2015-01-01"
),
ModelName = "string",
DeviceFleetName = "string"
)