Container for the parameters to the CreateDBInstanceReadReplica operation.

Creates a DB Instance that acts as a Read Replica of a source DB Instance.

All Read Replica DB Instances are created as Single-AZ deployments with backups disabled. All other DB Instance attributes (including DB Security Groups and DB Parameter Groups) are inherited from the source DB Instance, except as specified below.

IMPORTANT: The source DB Instance must have backup retention enabled.

Namespace: Amazon.RDS.Model
Assembly: AWSSDK (in AWSSDK.dll) Version: 1.4.10.0 (1.4.10.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public class CreateDBInstanceReadReplicaRequest : AmazonWebServiceRequest
Public Class CreateDBInstanceReadReplicaRequest _
	Inherits AmazonWebServiceRequest
public ref class CreateDBInstanceReadReplicaRequest : public AmazonWebServiceRequest

Members

            
 All Members  Constructors   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
CreateDBInstanceReadReplicaRequest()()()()
Initializes a new instance of the CreateDBInstanceReadReplicaRequest class
AutoMinorVersionUpgrade
Indicates that minor engine upgrades will be applied automatically to the Read Replica during the maintenance window. Default: Inherits from the source DB Instance
AvailabilityZone
The Amazon EC2 Availability Zone that the Read Replica will be created in. Default: A random, system-chosen Availability Zone in the endpoint's region. Example: us-east-1d
DBInstanceClass
The compute and memory capacity of the Read Replica. Valid Values: db.m1.small | db.m1.large | db.m1.xlarge | db.m2.xlarge |db.m2.2xlarge | db.m2.4xlarge Default: Inherits from the source DB Instance.
DBInstanceIdentifier
The DB Instance identifier of the Read Replica. This is the unique key that identifies a DB Instance. This parameter is stored as a lowercase string.
Equals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
GetHashCode()()()()
Serves as a hash function for a particular type.
(Inherited from Object.)
GetType()()()()
Gets the Type of the current instance.
(Inherited from Object.)
Port
The port number that the DB Instance uses for connections. Default: Inherits from the source DB Instance Valid Values: 1150-65535
SourceDBInstanceIdentifier
The identifier of the DB Instance that will act as the source for the Read Replica. Each DB Instance can have up to five Read Replicas. Constraints: Must be the identifier of an existing DB Instance that is not already a Read Replica DB Instance.
ToString()()()()
Returns a String that represents the current Object.
(Inherited from Object.)
WithAutoMinorVersionUpgrade(Boolean)
Sets the AutoMinorVersionUpgrade property
WithAvailabilityZone(String)
Sets the AvailabilityZone property
WithDBInstanceClass(String)
Sets the DBInstanceClass property
WithDBInstanceIdentifier(String)
Sets the DBInstanceIdentifier property
WithPort(Int32)
Sets the Port property
WithSourceDBInstanceIdentifier(String)
Sets the SourceDBInstanceIdentifier property

Inheritance Hierarchy

System..::..Object
  Amazon.Runtime..::..AmazonWebServiceRequest
    Amazon.RDS.Model..::..CreateDBInstanceReadReplicaRequest

See Also