Create Edge Deployment Stage
sagemaker_create_edge_deployment_stage | R Documentation |
Creates a new stage in an existing edge deployment plan¶
Description¶
Creates a new stage in an existing edge deployment plan.
Usage¶
Arguments¶
EdgeDeploymentPlanName
[required] The name of the edge deployment plan.
Stages
[required] List of stages to be added to the edge deployment plan.
Value¶
An empty list.
Request syntax¶
svc$create_edge_deployment_stage(
EdgeDeploymentPlanName = "string",
Stages = list(
list(
StageName = "string",
DeviceSelectionConfig = list(
DeviceSubsetType = "PERCENTAGE"|"SELECTION"|"NAMECONTAINS",
Percentage = 123,
DeviceNames = list(
"string"
),
DeviceNameContains = "string"
),
DeploymentConfig = list(
FailureHandlingPolicy = "ROLLBACK_ON_FAILURE"|"DO_NOTHING"
)
)
)
)