List Edge Deployment Plans
| sagemaker_list_edge_deployment_plans | R Documentation |
Lists all edge deployment plans¶
Description¶
Lists all edge deployment plans.
Usage¶
sagemaker_list_edge_deployment_plans(NextToken, MaxResults,
CreationTimeAfter, CreationTimeBefore, LastModifiedTimeAfter,
LastModifiedTimeBefore, NameContains, DeviceFleetNameContains, 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 (50 by default).
CreationTimeAfterSelects edge deployment plans created after this time.
CreationTimeBeforeSelects edge deployment plans created before this time.
LastModifiedTimeAfterSelects edge deployment plans that were last updated after this time.
LastModifiedTimeBeforeSelects edge deployment plans that were last updated before this time.
NameContainsSelects edge deployment plans with names containing this name.
DeviceFleetNameContainsSelects edge deployment plans with a device fleet name containing this name.
SortByThe column by which to sort the edge deployment plans. Can be one of
NAME,DEVICEFLEETNAME,CREATIONTIME,LASTMODIFIEDTIME.SortOrderThe direction of the sorting (ascending or descending).
Value¶
A list with the following syntax:
list(
EdgeDeploymentPlanSummaries = list(
list(
EdgeDeploymentPlanArn = "string",
EdgeDeploymentPlanName = "string",
DeviceFleetName = "string",
EdgeDeploymentSuccess = 123,
EdgeDeploymentPending = 123,
EdgeDeploymentFailed = 123,
CreationTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_edge_deployment_plans(
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",
DeviceFleetNameContains = "string",
SortBy = "NAME"|"DEVICE_FLEET_NAME"|"CREATION_TIME"|"LAST_MODIFIED_TIME",
SortOrder = "Ascending"|"Descending"
)