SageMaker.Client.
list_edge_deployment_plans
(**kwargs)¶Lists all edge deployment plans.
See also: AWS API Documentation
Request Syntax
response = client.list_edge_deployment_plans(
NextToken='string',
MaxResults=123,
CreationTimeAfter=datetime(2015, 1, 1),
CreationTimeBefore=datetime(2015, 1, 1),
LastModifiedTimeAfter=datetime(2015, 1, 1),
LastModifiedTimeBefore=datetime(2015, 1, 1),
NameContains='string',
DeviceFleetNameContains='string',
SortBy='NAME'|'DEVICE_FLEET_NAME'|'CREATION_TIME'|'LAST_MODIFIED_TIME',
SortOrder='Ascending'|'Descending'
)
NAME
, DEVICEFLEETNAME
, CREATIONTIME
, LASTMODIFIEDTIME
.dict
Response Syntax
{
'EdgeDeploymentPlanSummaries': [
{
'EdgeDeploymentPlanArn': 'string',
'EdgeDeploymentPlanName': 'string',
'DeviceFleetName': 'string',
'EdgeDeploymentSuccess': 123,
'EdgeDeploymentPending': 123,
'EdgeDeploymentFailed': 123,
'CreationTime': datetime(2015, 1, 1),
'LastModifiedTime': datetime(2015, 1, 1)
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
EdgeDeploymentPlanSummaries (list) --
List of summaries of edge deployment plans.
(dict) --
Contains information summarizing an edge deployment plan.
EdgeDeploymentPlanArn (string) --
The ARN of the edge deployment plan.
EdgeDeploymentPlanName (string) --
The name of the edge deployment plan.
DeviceFleetName (string) --
The name of the device fleet used for the deployment.
EdgeDeploymentSuccess (integer) --
The number of edge devices with the successful deployment.
EdgeDeploymentPending (integer) --
The number of edge devices yet to pick up the deployment, or in progress.
EdgeDeploymentFailed (integer) --
The number of edge devices that failed the deployment.
CreationTime (datetime) --
The time when the edge deployment plan was created.
LastModifiedTime (datetime) --
The time when the edge deployment plan was last updated.
NextToken (string) --
The token to use when calling the next page of results.