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¶
NextToken |
The response from the last list when returning a list large enough to need tokening. |
MaxResults |
The maximum number of results to select (50 by default). |
CreationTimeAfter |
Selects edge deployment plans created after this time. |
CreationTimeBefore |
Selects edge deployment plans created before this time. |
LastModifiedTimeAfter |
Selects edge deployment plans that were last updated after this time. |
LastModifiedTimeBefore |
Selects edge deployment plans that were last updated before this time. |
NameContains |
Selects edge deployment plans with names containing this name. |
DeviceFleetNameContains |
Selects edge deployment plans with a device fleet name containing this name. |
SortBy |
The column by which to sort the edge deployment plans. Can be one
of |
SortOrder |
The 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"
)