Copyright | (c) 2013-2015 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Language | Haskell2010 |
Creates a DB instance for a DB instance running MySQL or PostgreSQL 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.
The source DB instance must have backup retention enabled.
See: AWS API Reference for CreateDBInstanceReadReplica.
- createDBInstanceReadReplica :: Text -> Text -> CreateDBInstanceReadReplica
- data CreateDBInstanceReadReplica
- cdirrAutoMinorVersionUpgrade :: Lens' CreateDBInstanceReadReplica (Maybe Bool)
- cdirrPubliclyAccessible :: Lens' CreateDBInstanceReadReplica (Maybe Bool)
- cdirrDBSubnetGroupName :: Lens' CreateDBInstanceReadReplica (Maybe Text)
- cdirrIOPS :: Lens' CreateDBInstanceReadReplica (Maybe Int)
- cdirrDBInstanceClass :: Lens' CreateDBInstanceReadReplica (Maybe Text)
- cdirrAvailabilityZone :: Lens' CreateDBInstanceReadReplica (Maybe Text)
- cdirrOptionGroupName :: Lens' CreateDBInstanceReadReplica (Maybe Text)
- cdirrCopyTagsToSnapshot :: Lens' CreateDBInstanceReadReplica (Maybe Bool)
- cdirrTags :: Lens' CreateDBInstanceReadReplica [Tag]
- cdirrPort :: Lens' CreateDBInstanceReadReplica (Maybe Int)
- cdirrStorageType :: Lens' CreateDBInstanceReadReplica (Maybe Text)
- cdirrDBInstanceIdentifier :: Lens' CreateDBInstanceReadReplica Text
- cdirrSourceDBInstanceIdentifier :: Lens' CreateDBInstanceReadReplica Text
- createDBInstanceReadReplicaResponse :: Int -> CreateDBInstanceReadReplicaResponse
- data CreateDBInstanceReadReplicaResponse
- cdirrrsDBInstance :: Lens' CreateDBInstanceReadReplicaResponse (Maybe DBInstance)
- cdirrrsStatus :: Lens' CreateDBInstanceReadReplicaResponse Int
Creating a Request
createDBInstanceReadReplica Source
:: Text | |
-> Text | |
-> CreateDBInstanceReadReplica |
Creates a value of CreateDBInstanceReadReplica
with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
data CreateDBInstanceReadReplica Source
See: createDBInstanceReadReplica
smart constructor.
Request Lenses
cdirrAutoMinorVersionUpgrade :: Lens' CreateDBInstanceReadReplica (Maybe Bool) Source
Indicates that minor engine upgrades will be applied automatically to the Read Replica during the maintenance window.
Default: Inherits from the source DB instance
cdirrPubliclyAccessible :: Lens' CreateDBInstanceReadReplica (Maybe Bool) Source
Specifies the accessibility options for the DB instance. A value of true specifies an Internet-facing instance with a publicly resolvable DNS name, which resolves to a public IP address. A value of false specifies an internal instance with a DNS name that resolves to a private IP address.
Default: The default behavior varies depending on whether a VPC has been requested or not. The following list shows the default behavior in each case.
- Default VPC:true
- VPC:false
If no DB subnet group has been specified as part of the request and the PubliclyAccessible value has not been set, the DB instance will be publicly accessible. If a specific DB subnet group has been specified as part of the request and the PubliclyAccessible value has not been set, the DB instance will be private.
cdirrDBSubnetGroupName :: Lens' CreateDBInstanceReadReplica (Maybe Text) Source
Specifies a DB subnet group for the DB instance. The new DB instance will be created in the VPC associated with the DB subnet group. If no DB subnet group is specified, then the new DB instance is not created in a VPC.
Constraints:
- Can only be specified if the source DB instance identifier specifies a DB instance in another region.
- The specified DB subnet group must be in the same region in which the operation is running.
- All Read Replicas in one region that are created from the same source DB instance must either:
- Specify DB subnet groups from the same VPC. All these Read Replicas will be created in the same VPC.
- Not specify a DB subnet group. All these Read Replicas will be created outside of any VPC.
cdirrIOPS :: Lens' CreateDBInstanceReadReplica (Maybe Int) Source
The amount of Provisioned IOPS (input/output operations per second) to be initially allocated for the DB instance.
cdirrDBInstanceClass :: Lens' CreateDBInstanceReadReplica (Maybe Text) Source
The compute and memory capacity of the Read Replica.
Valid Values: 'db.m1.small | db.m1.medium | db.m1.large | db.m1.xlarge | db.m2.xlarge |db.m2.2xlarge | db.m2.4xlarge | db.m3.medium | db.m3.large | db.m3.xlarge | db.m3.2xlarge | db.r3.large | db.r3.xlarge | db.r3.2xlarge | db.r3.4xlarge | db.r3.8xlarge | db.t2.micro | db.t2.small | db.t2.medium'
Default: Inherits from the source DB instance.
cdirrAvailabilityZone :: Lens' CreateDBInstanceReadReplica (Maybe Text) Source
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'
cdirrOptionGroupName :: Lens' CreateDBInstanceReadReplica (Maybe Text) Source
The option group the DB instance will be associated with. If omitted, the default option group for the engine specified will be used.
cdirrCopyTagsToSnapshot :: Lens' CreateDBInstanceReadReplica (Maybe Bool) Source
This property is not currently implemented.
cdirrTags :: Lens' CreateDBInstanceReadReplica [Tag] Source
Undocumented member.
cdirrPort :: Lens' CreateDBInstanceReadReplica (Maybe Int) Source
The port number that the DB instance uses for connections.
Default: Inherits from the source DB instance
Valid Values: '1150-65535'
cdirrStorageType :: Lens' CreateDBInstanceReadReplica (Maybe Text) Source
Specifies the storage type to be associated with the Read Replica.
Valid values: 'standard | gp2 | io1'
If you specify io1
, you must also include a value for the Iops
parameter.
Default: io1
if the Iops
parameter is specified; otherwise
standard
cdirrDBInstanceIdentifier :: Lens' CreateDBInstanceReadReplica Text Source
The DB instance identifier of the Read Replica. This identifier is the unique key that identifies a DB instance. This parameter is stored as a lowercase string.
cdirrSourceDBInstanceIdentifier :: Lens' CreateDBInstanceReadReplica Text Source
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.
- Can specify a DB instance that is a MySQL Read Replica only if the source is running MySQL 5.6.
- Can specify a DB instance that is a PostgreSQL Read Replica only if the source is running PostgreSQL 9.3.5.
- The specified DB instance must have automatic backups enabled, its backup retention period must be greater than 0.
- If the source DB instance is in the same region as the Read Replica, specify a valid DB instance identifier.
- If the source DB instance is in a different region than the Read Replica, specify a valid DB instance ARN. For more information, go to Constructing a Amazon RDS Amazon Resource Name (ARN).
Destructuring the Response
createDBInstanceReadReplicaResponse Source
Creates a value of CreateDBInstanceReadReplicaResponse
with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
data CreateDBInstanceReadReplicaResponse Source
See: createDBInstanceReadReplicaResponse
smart constructor.
Response Lenses
cdirrrsDBInstance :: Lens' CreateDBInstanceReadReplicaResponse (Maybe DBInstance) Source
Undocumented member.
cdirrrsStatus :: Lens' CreateDBInstanceReadReplicaResponse Int Source
The response status code.