List Device Fleets
sagemaker_list_device_fleets | R Documentation |
Returns a list of devices in the fleet¶
Description¶
Returns a list of devices in the fleet.
Usage¶
sagemaker_list_device_fleets(NextToken, MaxResults, CreationTimeAfter,
CreationTimeBefore, LastModifiedTimeAfter, LastModifiedTimeBefore,
NameContains, SortBy, SortOrder)
Arguments¶
NextToken
The response from the last list when returning a list large enough to need tokening.
MaxResults
The maximum number of results to select.
CreationTimeAfter
Filter fleets where packaging job was created after specified time.
CreationTimeBefore
Filter fleets where the edge packaging job was created before specified time.
LastModifiedTimeAfter
Select fleets where the job was updated after X
LastModifiedTimeBefore
Select fleets where the job was updated before X
NameContains
Filter for fleets containing this name in their fleet device name.
SortBy
The column to sort by.
SortOrder
What direction to sort in.
Value¶
A list with the following syntax:
list(
DeviceFleetSummaries = list(
list(
DeviceFleetArn = "string",
DeviceFleetName = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_device_fleets(
NextToken = "string",
MaxResults = 123,
CreationTimeAfter = as.POSIXct(
"2015-01-01"
),
CreationTimeBefore = as.POSIXct(
"2015-01-01"
),
LastModifiedTimeAfter = as.POSIXct(
"2015-01-01"
),
LastModifiedTimeBefore = as.POSIXct(
"2015-01-01"
),
NameContains = "string",
SortBy = "NAME"|"CREATION_TIME"|"LAST_MODIFIED_TIME",
SortOrder = "Ascending"|"Descending"
)