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¶
NextTokenThe response from the last list when returning a list large enough to need tokening.
MaxResultsThe maximum number of results to select.
CreationTimeAfterFilter fleets where packaging job was created after specified time.
CreationTimeBeforeFilter fleets where the edge packaging job was created before specified time.
LastModifiedTimeAfterSelect fleets where the job was updated after X
LastModifiedTimeBeforeSelect fleets where the job was updated before X
NameContainsFilter for fleets containing this name in their fleet device name.
SortByThe column to sort by.
SortOrderWhat 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"
)