public static interface DeploymentConfiguration.Builder extends CopyableBuilder<DeploymentConfiguration.Builder,DeploymentConfiguration>
| Modifier and Type | Method and Description |
|---|---|
DeploymentConfiguration.Builder |
maximumPercent(Integer maximumPercent)
The upper limit (as a percentage of the service's
desiredCount) of the number of tasks that are
allowed in the RUNNING or PENDING state in a service during a deployment. |
DeploymentConfiguration.Builder |
minimumHealthyPercent(Integer minimumHealthyPercent)
The lower limit (as a percentage of the service's
desiredCount) of the number of running tasks
that must remain in the RUNNING state in a service during a deployment. |
copyapply, buildDeploymentConfiguration.Builder maximumPercent(Integer maximumPercent)
The upper limit (as a percentage of the service's desiredCount) of the number of tasks that are
allowed in the RUNNING or PENDING state in a service during a deployment. The
maximum number of tasks during a deployment is the desiredCount multiplied by
maximumPercent/100, rounded down to the nearest integer value.
maximumPercent - The upper limit (as a percentage of the service's desiredCount) of the number of tasks
that are allowed in the RUNNING or PENDING state in a service during a
deployment. The maximum number of tasks during a deployment is the desiredCount
multiplied by maximumPercent/100, rounded down to the nearest integer value.DeploymentConfiguration.Builder minimumHealthyPercent(Integer minimumHealthyPercent)
The lower limit (as a percentage of the service's desiredCount) of the number of running tasks
that must remain in the RUNNING state in a service during a deployment. The minimum healthy
tasks during a deployment is the desiredCount multiplied by minimumHealthyPercent
/100, rounded up to the nearest integer value.
minimumHealthyPercent - The lower limit (as a percentage of the service's desiredCount) of the number of running
tasks that must remain in the RUNNING state in a service during a deployment. The minimum
healthy tasks during a deployment is the desiredCount multiplied by
minimumHealthyPercent/100, rounded up to the nearest integer value.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.