@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class UpdateDeploymentStrategyRequest extends AmazonWebServiceRequest implements Serializable, Cloneable
NOOP
Constructor and Description |
---|
UpdateDeploymentStrategyRequest() |
Modifier and Type | Method and Description |
---|---|
UpdateDeploymentStrategyRequest |
clone()
Creates a shallow clone of this object for all fields except the handler context.
|
boolean |
equals(Object obj) |
Integer |
getDeploymentDurationInMinutes()
Total amount of time for a deployment to last.
|
String |
getDeploymentStrategyId()
The deployment strategy ID.
|
String |
getDescription()
A description of the deployment strategy.
|
Integer |
getFinalBakeTimeInMinutes()
The amount of time AppConfig monitors for alarms before considering the deployment to be complete and no longer
eligible for automatic roll back.
|
Float |
getGrowthFactor()
The percentage of targets to receive a deployed configuration during each interval.
|
String |
getGrowthType()
The algorithm used to define how percentage grows over time.
|
int |
hashCode() |
void |
setDeploymentDurationInMinutes(Integer deploymentDurationInMinutes)
Total amount of time for a deployment to last.
|
void |
setDeploymentStrategyId(String deploymentStrategyId)
The deployment strategy ID.
|
void |
setDescription(String description)
A description of the deployment strategy.
|
void |
setFinalBakeTimeInMinutes(Integer finalBakeTimeInMinutes)
The amount of time AppConfig monitors for alarms before considering the deployment to be complete and no longer
eligible for automatic roll back.
|
void |
setGrowthFactor(Float growthFactor)
The percentage of targets to receive a deployed configuration during each interval.
|
void |
setGrowthType(String growthType)
The algorithm used to define how percentage grows over time.
|
String |
toString()
Returns a string representation of this object.
|
UpdateDeploymentStrategyRequest |
withDeploymentDurationInMinutes(Integer deploymentDurationInMinutes)
Total amount of time for a deployment to last.
|
UpdateDeploymentStrategyRequest |
withDeploymentStrategyId(String deploymentStrategyId)
The deployment strategy ID.
|
UpdateDeploymentStrategyRequest |
withDescription(String description)
A description of the deployment strategy.
|
UpdateDeploymentStrategyRequest |
withFinalBakeTimeInMinutes(Integer finalBakeTimeInMinutes)
The amount of time AppConfig monitors for alarms before considering the deployment to be complete and no longer
eligible for automatic roll back.
|
UpdateDeploymentStrategyRequest |
withGrowthFactor(Float growthFactor)
The percentage of targets to receive a deployed configuration during each interval.
|
UpdateDeploymentStrategyRequest |
withGrowthType(GrowthType growthType)
The algorithm used to define how percentage grows over time.
|
UpdateDeploymentStrategyRequest |
withGrowthType(String growthType)
The algorithm used to define how percentage grows over time.
|
addHandlerContext, getCloneRoot, getCloneSource, getCustomQueryParameters, getCustomRequestHeaders, getGeneralProgressListener, getHandlerContext, getReadLimit, getRequestClientOptions, getRequestCredentials, getRequestCredentialsProvider, getRequestMetricCollector, getSdkClientExecutionTimeout, getSdkRequestTimeout, putCustomQueryParameter, putCustomRequestHeader, setGeneralProgressListener, setRequestCredentials, setRequestCredentialsProvider, setRequestMetricCollector, setSdkClientExecutionTimeout, setSdkRequestTimeout, withGeneralProgressListener, withRequestCredentialsProvider, withRequestMetricCollector, withSdkClientExecutionTimeout, withSdkRequestTimeout
public void setDeploymentStrategyId(String deploymentStrategyId)
The deployment strategy ID.
deploymentStrategyId
- The deployment strategy ID.public String getDeploymentStrategyId()
The deployment strategy ID.
public UpdateDeploymentStrategyRequest withDeploymentStrategyId(String deploymentStrategyId)
The deployment strategy ID.
deploymentStrategyId
- The deployment strategy ID.public void setDescription(String description)
A description of the deployment strategy.
description
- A description of the deployment strategy.public String getDescription()
A description of the deployment strategy.
public UpdateDeploymentStrategyRequest withDescription(String description)
A description of the deployment strategy.
description
- A description of the deployment strategy.public void setDeploymentDurationInMinutes(Integer deploymentDurationInMinutes)
Total amount of time for a deployment to last.
deploymentDurationInMinutes
- Total amount of time for a deployment to last.public Integer getDeploymentDurationInMinutes()
Total amount of time for a deployment to last.
public UpdateDeploymentStrategyRequest withDeploymentDurationInMinutes(Integer deploymentDurationInMinutes)
Total amount of time for a deployment to last.
deploymentDurationInMinutes
- Total amount of time for a deployment to last.public void setFinalBakeTimeInMinutes(Integer finalBakeTimeInMinutes)
The amount of time AppConfig monitors for alarms before considering the deployment to be complete and no longer eligible for automatic roll back.
finalBakeTimeInMinutes
- The amount of time AppConfig monitors for alarms before considering the deployment to be complete and no
longer eligible for automatic roll back.public Integer getFinalBakeTimeInMinutes()
The amount of time AppConfig monitors for alarms before considering the deployment to be complete and no longer eligible for automatic roll back.
public UpdateDeploymentStrategyRequest withFinalBakeTimeInMinutes(Integer finalBakeTimeInMinutes)
The amount of time AppConfig monitors for alarms before considering the deployment to be complete and no longer eligible for automatic roll back.
finalBakeTimeInMinutes
- The amount of time AppConfig monitors for alarms before considering the deployment to be complete and no
longer eligible for automatic roll back.public void setGrowthFactor(Float growthFactor)
The percentage of targets to receive a deployed configuration during each interval.
growthFactor
- The percentage of targets to receive a deployed configuration during each interval.public Float getGrowthFactor()
The percentage of targets to receive a deployed configuration during each interval.
public UpdateDeploymentStrategyRequest withGrowthFactor(Float growthFactor)
The percentage of targets to receive a deployed configuration during each interval.
growthFactor
- The percentage of targets to receive a deployed configuration during each interval.public void setGrowthType(String growthType)
The algorithm used to define how percentage grows over time. AWS AppConfig supports the following growth types:
Linear: For this type, AppConfig processes the deployment by increments of the growth factor evenly distributed over the deployment time. For example, a linear deployment that uses a growth factor of 20 initially makes the configuration available to 20 percent of the targets. After 1/5th of the deployment time has passed, the system updates the percentage to 40 percent. This continues until 100% of the targets are set to receive the deployed configuration.
Exponential: For this type, AppConfig processes the deployment exponentially using the following formula:
G*(2^N)
. In this formula, G
is the growth factor specified by the user and
N
is the number of steps until the configuration is deployed to all targets. For example, if you
specify a growth factor of 2, then the system rolls out the configuration as follows:
2*(2^0)
2*(2^1)
2*(2^2)
Expressed numerically, the deployment rolls out as follows: 2% of the targets, 4% of the targets, 8% of the targets, and continues until the configuration has been deployed to all targets.
growthType
- The algorithm used to define how percentage grows over time. AWS AppConfig supports the following growth
types:
Linear: For this type, AppConfig processes the deployment by increments of the growth factor evenly distributed over the deployment time. For example, a linear deployment that uses a growth factor of 20 initially makes the configuration available to 20 percent of the targets. After 1/5th of the deployment time has passed, the system updates the percentage to 40 percent. This continues until 100% of the targets are set to receive the deployed configuration.
Exponential: For this type, AppConfig processes the deployment exponentially using the following
formula: G*(2^N)
. In this formula, G
is the growth factor specified by the user
and N
is the number of steps until the configuration is deployed to all targets. For example,
if you specify a growth factor of 2, then the system rolls out the configuration as follows:
2*(2^0)
2*(2^1)
2*(2^2)
Expressed numerically, the deployment rolls out as follows: 2% of the targets, 4% of the targets, 8% of the targets, and continues until the configuration has been deployed to all targets.
GrowthType
public String getGrowthType()
The algorithm used to define how percentage grows over time. AWS AppConfig supports the following growth types:
Linear: For this type, AppConfig processes the deployment by increments of the growth factor evenly distributed over the deployment time. For example, a linear deployment that uses a growth factor of 20 initially makes the configuration available to 20 percent of the targets. After 1/5th of the deployment time has passed, the system updates the percentage to 40 percent. This continues until 100% of the targets are set to receive the deployed configuration.
Exponential: For this type, AppConfig processes the deployment exponentially using the following formula:
G*(2^N)
. In this formula, G
is the growth factor specified by the user and
N
is the number of steps until the configuration is deployed to all targets. For example, if you
specify a growth factor of 2, then the system rolls out the configuration as follows:
2*(2^0)
2*(2^1)
2*(2^2)
Expressed numerically, the deployment rolls out as follows: 2% of the targets, 4% of the targets, 8% of the targets, and continues until the configuration has been deployed to all targets.
Linear: For this type, AppConfig processes the deployment by increments of the growth factor evenly distributed over the deployment time. For example, a linear deployment that uses a growth factor of 20 initially makes the configuration available to 20 percent of the targets. After 1/5th of the deployment time has passed, the system updates the percentage to 40 percent. This continues until 100% of the targets are set to receive the deployed configuration.
Exponential: For this type, AppConfig processes the deployment exponentially using the following
formula: G*(2^N)
. In this formula, G
is the growth factor specified by the user
and N
is the number of steps until the configuration is deployed to all targets. For
example, if you specify a growth factor of 2, then the system rolls out the configuration as follows:
2*(2^0)
2*(2^1)
2*(2^2)
Expressed numerically, the deployment rolls out as follows: 2% of the targets, 4% of the targets, 8% of the targets, and continues until the configuration has been deployed to all targets.
GrowthType
public UpdateDeploymentStrategyRequest withGrowthType(String growthType)
The algorithm used to define how percentage grows over time. AWS AppConfig supports the following growth types:
Linear: For this type, AppConfig processes the deployment by increments of the growth factor evenly distributed over the deployment time. For example, a linear deployment that uses a growth factor of 20 initially makes the configuration available to 20 percent of the targets. After 1/5th of the deployment time has passed, the system updates the percentage to 40 percent. This continues until 100% of the targets are set to receive the deployed configuration.
Exponential: For this type, AppConfig processes the deployment exponentially using the following formula:
G*(2^N)
. In this formula, G
is the growth factor specified by the user and
N
is the number of steps until the configuration is deployed to all targets. For example, if you
specify a growth factor of 2, then the system rolls out the configuration as follows:
2*(2^0)
2*(2^1)
2*(2^2)
Expressed numerically, the deployment rolls out as follows: 2% of the targets, 4% of the targets, 8% of the targets, and continues until the configuration has been deployed to all targets.
growthType
- The algorithm used to define how percentage grows over time. AWS AppConfig supports the following growth
types:
Linear: For this type, AppConfig processes the deployment by increments of the growth factor evenly distributed over the deployment time. For example, a linear deployment that uses a growth factor of 20 initially makes the configuration available to 20 percent of the targets. After 1/5th of the deployment time has passed, the system updates the percentage to 40 percent. This continues until 100% of the targets are set to receive the deployed configuration.
Exponential: For this type, AppConfig processes the deployment exponentially using the following
formula: G*(2^N)
. In this formula, G
is the growth factor specified by the user
and N
is the number of steps until the configuration is deployed to all targets. For example,
if you specify a growth factor of 2, then the system rolls out the configuration as follows:
2*(2^0)
2*(2^1)
2*(2^2)
Expressed numerically, the deployment rolls out as follows: 2% of the targets, 4% of the targets, 8% of the targets, and continues until the configuration has been deployed to all targets.
GrowthType
public UpdateDeploymentStrategyRequest withGrowthType(GrowthType growthType)
The algorithm used to define how percentage grows over time. AWS AppConfig supports the following growth types:
Linear: For this type, AppConfig processes the deployment by increments of the growth factor evenly distributed over the deployment time. For example, a linear deployment that uses a growth factor of 20 initially makes the configuration available to 20 percent of the targets. After 1/5th of the deployment time has passed, the system updates the percentage to 40 percent. This continues until 100% of the targets are set to receive the deployed configuration.
Exponential: For this type, AppConfig processes the deployment exponentially using the following formula:
G*(2^N)
. In this formula, G
is the growth factor specified by the user and
N
is the number of steps until the configuration is deployed to all targets. For example, if you
specify a growth factor of 2, then the system rolls out the configuration as follows:
2*(2^0)
2*(2^1)
2*(2^2)
Expressed numerically, the deployment rolls out as follows: 2% of the targets, 4% of the targets, 8% of the targets, and continues until the configuration has been deployed to all targets.
growthType
- The algorithm used to define how percentage grows over time. AWS AppConfig supports the following growth
types:
Linear: For this type, AppConfig processes the deployment by increments of the growth factor evenly distributed over the deployment time. For example, a linear deployment that uses a growth factor of 20 initially makes the configuration available to 20 percent of the targets. After 1/5th of the deployment time has passed, the system updates the percentage to 40 percent. This continues until 100% of the targets are set to receive the deployed configuration.
Exponential: For this type, AppConfig processes the deployment exponentially using the following
formula: G*(2^N)
. In this formula, G
is the growth factor specified by the user
and N
is the number of steps until the configuration is deployed to all targets. For example,
if you specify a growth factor of 2, then the system rolls out the configuration as follows:
2*(2^0)
2*(2^1)
2*(2^2)
Expressed numerically, the deployment rolls out as follows: 2% of the targets, 4% of the targets, 8% of the targets, and continues until the configuration has been deployed to all targets.
GrowthType
public String toString()
toString
in class Object
Object.toString()
public UpdateDeploymentStrategyRequest clone()
AmazonWebServiceRequest
clone
in class AmazonWebServiceRequest
Object.clone()