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

* The DB instance identifier. This value is stored as a lowercase string. *

*

* Constraints: *

* *

* Example: mydbinstance *

*/ private String dBInstanceIdentifier; /** *

* The number of days for which automated backups are retained. Setting this parameter to a positive number enables * backups. Setting this parameter to 0 disables automated backups. *

*

* Default: 1 *

*

* Constraints: *

* */ private Integer backupRetentionPeriod; /** *

* The daily time range during which automated backups are created if automated backups are enabled, using the * BackupRetentionPeriod parameter. *

*

* The default is a 30-minute window selected at random from an 8-hour block of time for each Amazon Web Services * Region. To see the time blocks available, see Adjusting the * Preferred Maintenance Window in the Amazon RDS User Guide. *

*

* Constraints: *

* */ private String preferredBackupWindow; /** *

* The DB instance identifier. This value is stored as a lowercase string. *

*

* Constraints: *

* *

* Example: mydbinstance *

* * @param dBInstanceIdentifier * The DB instance identifier. This value is stored as a lowercase string.

*

* Constraints: *

* *

* Example: mydbinstance */ public void setDBInstanceIdentifier(String dBInstanceIdentifier) { this.dBInstanceIdentifier = dBInstanceIdentifier; } /** *

* The DB instance identifier. This value is stored as a lowercase string. *

*

* Constraints: *

* *

* Example: mydbinstance *

* * @return The DB instance identifier. This value is stored as a lowercase string.

*

* Constraints: *

* *

* Example: mydbinstance */ public String getDBInstanceIdentifier() { return this.dBInstanceIdentifier; } /** *

* The DB instance identifier. This value is stored as a lowercase string. *

*

* Constraints: *

* *

* Example: mydbinstance *

* * @param dBInstanceIdentifier * The DB instance identifier. This value is stored as a lowercase string.

*

* Constraints: *

* *

* Example: mydbinstance * @return Returns a reference to this object so that method calls can be chained together. */ public PromoteReadReplicaRequest withDBInstanceIdentifier(String dBInstanceIdentifier) { setDBInstanceIdentifier(dBInstanceIdentifier); return this; } /** *

* The number of days for which automated backups are retained. Setting this parameter to a positive number enables * backups. Setting this parameter to 0 disables automated backups. *

*

* Default: 1 *

*

* Constraints: *

* * * @param backupRetentionPeriod * The number of days for which automated backups are retained. Setting this parameter to a positive number * enables backups. Setting this parameter to 0 disables automated backups.

*

* Default: 1 *

*

* Constraints: *

*