in src/main/java/com/ecs/cicd/model/UpdateDeploymentGroupRequest.java [460:483]
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getApplicationName() != null)
sb.append("ApplicationName: ").append(getApplicationName()).append(",");
if (getCurrentDeploymentGroupName() != null)
sb.append("CurrentDeploymentGroupName: ").append(getCurrentDeploymentGroupName()).append(",");
if (getNewDeploymentGroupName() != null)
sb.append("NewDeploymentGroupName: ").append(getNewDeploymentGroupName()).append(",");
if (getDeploymentConfigName() != null)
sb.append("DeploymentConfigName: ").append(getDeploymentConfigName()).append(",");
if (getServiceRoleArn() != null)
sb.append("ServiceRoleArn: ").append(getServiceRoleArn()).append(",");
if (getDeploymentStyle() != null)
sb.append("DeploymentStyle: ").append(getDeploymentStyle()).append(",");
if (getBlueGreenDeploymentConfiguration() != null)
sb.append("BlueGreenDeploymentConfiguration: ").append(getBlueGreenDeploymentConfiguration()).append(",");
if (getLoadBalancerInfo() != null)
sb.append("LoadBalancerInfo: ").append(getLoadBalancerInfo()).append(",");
if (getEcsServices() != null)
sb.append("EcsServices: ").append(getEcsServices()).append(",");
sb.append("}");
return sb.toString();
}