
com.amazonaws.services.appconfig.model.CreateDeploymentStrategyRequest Maven / Gradle / Ivy
/*
* Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package com.amazonaws.services.appconfig.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.AmazonWebServiceRequest;
/**
*
* @see AWS
* API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class CreateDeploymentStrategyRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* A name for the deployment strategy.
*
*/
private String name;
/**
*
* A description of the deployment strategy.
*
*/
private String description;
/**
*
* Total amount of time for a deployment to last.
*
*/
private Integer deploymentDurationInMinutes;
/**
*
* Specifies the amount of time AppConfig monitors for Amazon CloudWatch alarms after the configuration has been
* deployed to 100% of its targets, before considering the deployment to be complete. If an alarm is triggered
* during this time, AppConfig rolls back the deployment. You must configure permissions for AppConfig to roll back
* based on CloudWatch alarms. For more information, see Configuring permissions for rollback based on Amazon CloudWatch alarms in the AppConfig User Guide.
*
*/
private Integer finalBakeTimeInMinutes;
/**
*
* The percentage of targets to receive a deployed configuration during each interval.
*
*/
private Float growthFactor;
/**
*
* The algorithm used to define how percentage grows over time. AppConfig supports the following growth types:
*
*
* Linear: For this type, AppConfig processes the deployment by dividing the total number of targets by the
* value specified for Step percentage
. For example, a linear deployment that uses a
* Step percentage
of 10 deploys the configuration to 10 percent of the hosts. After those deployments
* are complete, the system deploys the configuration to the next 10 percent. This continues until 100% of the
* targets have successfully received the 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.
*
*/
private String growthType;
/**
*
* Save the deployment strategy to a Systems Manager (SSM) document.
*
*/
private String replicateTo;
/**
*
* Metadata to assign to the deployment strategy. Tags help organize and categorize your AppConfig resources. Each
* tag consists of a key and an optional value, both of which you define.
*
*/
private java.util.Map tags;
/**
*
* A name for the deployment strategy.
*
*
* @param name
* A name for the deployment strategy.
*/
public void setName(String name) {
this.name = name;
}
/**
*
* A name for the deployment strategy.
*
*
* @return A name for the deployment strategy.
*/
public String getName() {
return this.name;
}
/**
*
* A name for the deployment strategy.
*
*
* @param name
* A name for the deployment strategy.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDeploymentStrategyRequest withName(String name) {
setName(name);
return this;
}
/**
*
* A description of the deployment strategy.
*
*
* @param description
* A description of the deployment strategy.
*/
public void setDescription(String description) {
this.description = description;
}
/**
*
* A description of the deployment strategy.
*
*
* @return A description of the deployment strategy.
*/
public String getDescription() {
return this.description;
}
/**
*
* A description of the deployment strategy.
*
*
* @param description
* A description of the deployment strategy.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDeploymentStrategyRequest withDescription(String description) {
setDescription(description);
return this;
}
/**
*
* Total amount of time for a deployment to last.
*
*
* @param deploymentDurationInMinutes
* Total amount of time for a deployment to last.
*/
public void setDeploymentDurationInMinutes(Integer deploymentDurationInMinutes) {
this.deploymentDurationInMinutes = deploymentDurationInMinutes;
}
/**
*
* Total amount of time for a deployment to last.
*
*
* @return Total amount of time for a deployment to last.
*/
public Integer getDeploymentDurationInMinutes() {
return this.deploymentDurationInMinutes;
}
/**
*
* Total amount of time for a deployment to last.
*
*
* @param deploymentDurationInMinutes
* Total amount of time for a deployment to last.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDeploymentStrategyRequest withDeploymentDurationInMinutes(Integer deploymentDurationInMinutes) {
setDeploymentDurationInMinutes(deploymentDurationInMinutes);
return this;
}
/**
*
* Specifies the amount of time AppConfig monitors for Amazon CloudWatch alarms after the configuration has been
* deployed to 100% of its targets, before considering the deployment to be complete. If an alarm is triggered
* during this time, AppConfig rolls back the deployment. You must configure permissions for AppConfig to roll back
* based on CloudWatch alarms. For more information, see Configuring permissions for rollback based on Amazon CloudWatch alarms in the AppConfig User Guide.
*
*
* @param finalBakeTimeInMinutes
* Specifies the amount of time AppConfig monitors for Amazon CloudWatch alarms after the configuration has
* been deployed to 100% of its targets, before considering the deployment to be complete. If an alarm is
* triggered during this time, AppConfig rolls back the deployment. You must configure permissions for
* AppConfig to roll back based on CloudWatch alarms. For more information, see Configuring permissions for rollback based on Amazon CloudWatch alarms in the AppConfig User
* Guide.
*/
public void setFinalBakeTimeInMinutes(Integer finalBakeTimeInMinutes) {
this.finalBakeTimeInMinutes = finalBakeTimeInMinutes;
}
/**
*
* Specifies the amount of time AppConfig monitors for Amazon CloudWatch alarms after the configuration has been
* deployed to 100% of its targets, before considering the deployment to be complete. If an alarm is triggered
* during this time, AppConfig rolls back the deployment. You must configure permissions for AppConfig to roll back
* based on CloudWatch alarms. For more information, see Configuring permissions for rollback based on Amazon CloudWatch alarms in the AppConfig User Guide.
*
*
* @return Specifies the amount of time AppConfig monitors for Amazon CloudWatch alarms after the configuration has
* been deployed to 100% of its targets, before considering the deployment to be complete. If an alarm is
* triggered during this time, AppConfig rolls back the deployment. You must configure permissions for
* AppConfig to roll back based on CloudWatch alarms. For more information, see Configuring permissions for rollback based on Amazon CloudWatch alarms in the AppConfig User
* Guide.
*/
public Integer getFinalBakeTimeInMinutes() {
return this.finalBakeTimeInMinutes;
}
/**
*
* Specifies the amount of time AppConfig monitors for Amazon CloudWatch alarms after the configuration has been
* deployed to 100% of its targets, before considering the deployment to be complete. If an alarm is triggered
* during this time, AppConfig rolls back the deployment. You must configure permissions for AppConfig to roll back
* based on CloudWatch alarms. For more information, see Configuring permissions for rollback based on Amazon CloudWatch alarms in the AppConfig User Guide.
*
*
* @param finalBakeTimeInMinutes
* Specifies the amount of time AppConfig monitors for Amazon CloudWatch alarms after the configuration has
* been deployed to 100% of its targets, before considering the deployment to be complete. If an alarm is
* triggered during this time, AppConfig rolls back the deployment. You must configure permissions for
* AppConfig to roll back based on CloudWatch alarms. For more information, see Configuring permissions for rollback based on Amazon CloudWatch alarms in the AppConfig User
* Guide.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDeploymentStrategyRequest withFinalBakeTimeInMinutes(Integer finalBakeTimeInMinutes) {
setFinalBakeTimeInMinutes(finalBakeTimeInMinutes);
return this;
}
/**
*
* The percentage of targets to receive a deployed configuration during each interval.
*
*
* @param growthFactor
* The percentage of targets to receive a deployed configuration during each interval.
*/
public void setGrowthFactor(Float growthFactor) {
this.growthFactor = growthFactor;
}
/**
*
* The percentage of targets to receive a deployed configuration during each interval.
*
*
* @return The percentage of targets to receive a deployed configuration during each interval.
*/
public Float getGrowthFactor() {
return this.growthFactor;
}
/**
*
* The percentage of targets to receive a deployed configuration during each interval.
*
*
* @param growthFactor
* The percentage of targets to receive a deployed configuration during each interval.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDeploymentStrategyRequest withGrowthFactor(Float growthFactor) {
setGrowthFactor(growthFactor);
return this;
}
/**
*
* The algorithm used to define how percentage grows over time. AppConfig supports the following growth types:
*
*
* Linear: For this type, AppConfig processes the deployment by dividing the total number of targets by the
* value specified for Step percentage
. For example, a linear deployment that uses a
* Step percentage
of 10 deploys the configuration to 10 percent of the hosts. After those deployments
* are complete, the system deploys the configuration to the next 10 percent. This continues until 100% of the
* targets have successfully received the 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.
*
*
* @param growthType
* The algorithm used to define how percentage grows over time. AppConfig supports the following growth
* types:
*
* Linear: For this type, AppConfig processes the deployment by dividing the total number of targets
* by the value specified for Step percentage
. For example, a linear deployment that uses a
* Step percentage
of 10 deploys the configuration to 10 percent of the hosts. After those
* deployments are complete, the system deploys the configuration to the next 10 percent. This continues
* until 100% of the targets have successfully received the 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.
* @see GrowthType
*/
public void setGrowthType(String growthType) {
this.growthType = growthType;
}
/**
*
* The algorithm used to define how percentage grows over time. AppConfig supports the following growth types:
*
*
* Linear: For this type, AppConfig processes the deployment by dividing the total number of targets by the
* value specified for Step percentage
. For example, a linear deployment that uses a
* Step percentage
of 10 deploys the configuration to 10 percent of the hosts. After those deployments
* are complete, the system deploys the configuration to the next 10 percent. This continues until 100% of the
* targets have successfully received the 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.
*
*
* @return The algorithm used to define how percentage grows over time. AppConfig supports the following growth
* types:
*
* Linear: For this type, AppConfig processes the deployment by dividing the total number of targets
* by the value specified for Step percentage
. For example, a linear deployment that uses a
* Step percentage
of 10 deploys the configuration to 10 percent of the hosts. After those
* deployments are complete, the system deploys the configuration to the next 10 percent. This continues
* until 100% of the targets have successfully received the 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.
* @see GrowthType
*/
public String getGrowthType() {
return this.growthType;
}
/**
*
* The algorithm used to define how percentage grows over time. AppConfig supports the following growth types:
*
*
* Linear: For this type, AppConfig processes the deployment by dividing the total number of targets by the
* value specified for Step percentage
. For example, a linear deployment that uses a
* Step percentage
of 10 deploys the configuration to 10 percent of the hosts. After those deployments
* are complete, the system deploys the configuration to the next 10 percent. This continues until 100% of the
* targets have successfully received the 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.
*
*
* @param growthType
* The algorithm used to define how percentage grows over time. AppConfig supports the following growth
* types:
*
* Linear: For this type, AppConfig processes the deployment by dividing the total number of targets
* by the value specified for Step percentage
. For example, a linear deployment that uses a
* Step percentage
of 10 deploys the configuration to 10 percent of the hosts. After those
* deployments are complete, the system deploys the configuration to the next 10 percent. This continues
* until 100% of the targets have successfully received the 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.
* @return Returns a reference to this object so that method calls can be chained together.
* @see GrowthType
*/
public CreateDeploymentStrategyRequest withGrowthType(String growthType) {
setGrowthType(growthType);
return this;
}
/**
*
* The algorithm used to define how percentage grows over time. AppConfig supports the following growth types:
*
*
* Linear: For this type, AppConfig processes the deployment by dividing the total number of targets by the
* value specified for Step percentage
. For example, a linear deployment that uses a
* Step percentage
of 10 deploys the configuration to 10 percent of the hosts. After those deployments
* are complete, the system deploys the configuration to the next 10 percent. This continues until 100% of the
* targets have successfully received the 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.
*
*
* @param growthType
* The algorithm used to define how percentage grows over time. AppConfig supports the following growth
* types:
*
* Linear: For this type, AppConfig processes the deployment by dividing the total number of targets
* by the value specified for Step percentage
. For example, a linear deployment that uses a
* Step percentage
of 10 deploys the configuration to 10 percent of the hosts. After those
* deployments are complete, the system deploys the configuration to the next 10 percent. This continues
* until 100% of the targets have successfully received the 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.
* @return Returns a reference to this object so that method calls can be chained together.
* @see GrowthType
*/
public CreateDeploymentStrategyRequest withGrowthType(GrowthType growthType) {
this.growthType = growthType.toString();
return this;
}
/**
*
* Save the deployment strategy to a Systems Manager (SSM) document.
*
*
* @param replicateTo
* Save the deployment strategy to a Systems Manager (SSM) document.
* @see ReplicateTo
*/
public void setReplicateTo(String replicateTo) {
this.replicateTo = replicateTo;
}
/**
*
* Save the deployment strategy to a Systems Manager (SSM) document.
*
*
* @return Save the deployment strategy to a Systems Manager (SSM) document.
* @see ReplicateTo
*/
public String getReplicateTo() {
return this.replicateTo;
}
/**
*
* Save the deployment strategy to a Systems Manager (SSM) document.
*
*
* @param replicateTo
* Save the deployment strategy to a Systems Manager (SSM) document.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ReplicateTo
*/
public CreateDeploymentStrategyRequest withReplicateTo(String replicateTo) {
setReplicateTo(replicateTo);
return this;
}
/**
*
* Save the deployment strategy to a Systems Manager (SSM) document.
*
*
* @param replicateTo
* Save the deployment strategy to a Systems Manager (SSM) document.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ReplicateTo
*/
public CreateDeploymentStrategyRequest withReplicateTo(ReplicateTo replicateTo) {
this.replicateTo = replicateTo.toString();
return this;
}
/**
*
* Metadata to assign to the deployment strategy. Tags help organize and categorize your AppConfig resources. Each
* tag consists of a key and an optional value, both of which you define.
*
*
* @return Metadata to assign to the deployment strategy. Tags help organize and categorize your AppConfig
* resources. Each tag consists of a key and an optional value, both of which you define.
*/
public java.util.Map getTags() {
return tags;
}
/**
*
* Metadata to assign to the deployment strategy. Tags help organize and categorize your AppConfig resources. Each
* tag consists of a key and an optional value, both of which you define.
*
*
* @param tags
* Metadata to assign to the deployment strategy. Tags help organize and categorize your AppConfig resources.
* Each tag consists of a key and an optional value, both of which you define.
*/
public void setTags(java.util.Map tags) {
this.tags = tags;
}
/**
*
* Metadata to assign to the deployment strategy. Tags help organize and categorize your AppConfig resources. Each
* tag consists of a key and an optional value, both of which you define.
*
*
* @param tags
* Metadata to assign to the deployment strategy. Tags help organize and categorize your AppConfig resources.
* Each tag consists of a key and an optional value, both of which you define.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDeploymentStrategyRequest withTags(java.util.Map tags) {
setTags(tags);
return this;
}
/**
* Add a single Tags entry
*
* @see CreateDeploymentStrategyRequest#withTags
* @returns a reference to this object so that method calls can be chained together.
*/
public CreateDeploymentStrategyRequest addTagsEntry(String key, String value) {
if (null == this.tags) {
this.tags = new java.util.HashMap();
}
if (this.tags.containsKey(key))
throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided.");
this.tags.put(key, value);
return this;
}
/**
* Removes all the entries added into Tags.
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDeploymentStrategyRequest clearTagsEntries() {
this.tags = null;
return this;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getName() != null)
sb.append("Name: ").append(getName()).append(",");
if (getDescription() != null)
sb.append("Description: ").append(getDescription()).append(",");
if (getDeploymentDurationInMinutes() != null)
sb.append("DeploymentDurationInMinutes: ").append(getDeploymentDurationInMinutes()).append(",");
if (getFinalBakeTimeInMinutes() != null)
sb.append("FinalBakeTimeInMinutes: ").append(getFinalBakeTimeInMinutes()).append(",");
if (getGrowthFactor() != null)
sb.append("GrowthFactor: ").append(getGrowthFactor()).append(",");
if (getGrowthType() != null)
sb.append("GrowthType: ").append(getGrowthType()).append(",");
if (getReplicateTo() != null)
sb.append("ReplicateTo: ").append(getReplicateTo()).append(",");
if (getTags() != null)
sb.append("Tags: ").append(getTags());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof CreateDeploymentStrategyRequest == false)
return false;
CreateDeploymentStrategyRequest other = (CreateDeploymentStrategyRequest) obj;
if (other.getName() == null ^ this.getName() == null)
return false;
if (other.getName() != null && other.getName().equals(this.getName()) == false)
return false;
if (other.getDescription() == null ^ this.getDescription() == null)
return false;
if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false)
return false;
if (other.getDeploymentDurationInMinutes() == null ^ this.getDeploymentDurationInMinutes() == null)
return false;
if (other.getDeploymentDurationInMinutes() != null && other.getDeploymentDurationInMinutes().equals(this.getDeploymentDurationInMinutes()) == false)
return false;
if (other.getFinalBakeTimeInMinutes() == null ^ this.getFinalBakeTimeInMinutes() == null)
return false;
if (other.getFinalBakeTimeInMinutes() != null && other.getFinalBakeTimeInMinutes().equals(this.getFinalBakeTimeInMinutes()) == false)
return false;
if (other.getGrowthFactor() == null ^ this.getGrowthFactor() == null)
return false;
if (other.getGrowthFactor() != null && other.getGrowthFactor().equals(this.getGrowthFactor()) == false)
return false;
if (other.getGrowthType() == null ^ this.getGrowthType() == null)
return false;
if (other.getGrowthType() != null && other.getGrowthType().equals(this.getGrowthType()) == false)
return false;
if (other.getReplicateTo() == null ^ this.getReplicateTo() == null)
return false;
if (other.getReplicateTo() != null && other.getReplicateTo().equals(this.getReplicateTo()) == false)
return false;
if (other.getTags() == null ^ this.getTags() == null)
return false;
if (other.getTags() != null && other.getTags().equals(this.getTags()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode());
hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode());
hashCode = prime * hashCode + ((getDeploymentDurationInMinutes() == null) ? 0 : getDeploymentDurationInMinutes().hashCode());
hashCode = prime * hashCode + ((getFinalBakeTimeInMinutes() == null) ? 0 : getFinalBakeTimeInMinutes().hashCode());
hashCode = prime * hashCode + ((getGrowthFactor() == null) ? 0 : getGrowthFactor().hashCode());
hashCode = prime * hashCode + ((getGrowthType() == null) ? 0 : getGrowthType().hashCode());
hashCode = prime * hashCode + ((getReplicateTo() == null) ? 0 : getReplicateTo().hashCode());
hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode());
return hashCode;
}
@Override
public CreateDeploymentStrategyRequest clone() {
return (CreateDeploymentStrategyRequest) super.clone();
}
}