/* * 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.rds.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 CreateBlueGreenDeploymentRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* The name of the blue/green deployment. *

*

* Constraints: *

* */ private String blueGreenDeploymentName; /** *

* The Amazon Resource Name (ARN) of the source production database. *

*

* Specify the database that you want to clone. The blue/green deployment creates this database in the green * environment. You can make updates to the database in the green environment, such as an engine version upgrade. * When you are ready, you can switch the database in the green environment to be the production database. *

*/ private String source; /** *

* The engine version of the database in the green environment. *

*

* Specify the engine version to upgrade to in the green environment. *

*/ private String targetEngineVersion; /** *

* The DB parameter group associated with the DB instance in the green environment. *

*

* To test parameter changes, specify a DB parameter group that is different from the one associated with the source * DB instance. *

*/ private String targetDBParameterGroupName; /** *

* The DB cluster parameter group associated with the Aurora DB cluster in the green environment. *

*

* To test parameter changes, specify a DB cluster parameter group that is different from the one associated with * the source DB cluster. *

*/ private String targetDBClusterParameterGroupName; /** *

* Tags to assign to the blue/green deployment. *

*/ private com.amazonaws.internal.SdkInternalList tags; /** *

* The name of the blue/green deployment. *

*

* Constraints: *

* * * @param blueGreenDeploymentName * The name of the blue/green deployment.

*

* Constraints: *

*