Create Db Instance
| docdb_create_db_instance | R Documentation |
Creates a new instance¶
Description¶
Creates a new instance.
Usage¶
docdb_create_db_instance(DBInstanceIdentifier, DBInstanceClass, Engine,
AvailabilityZone, PreferredMaintenanceWindow, AutoMinorVersionUpgrade,
Tags, DBClusterIdentifier, CopyTagsToSnapshot, PromotionTier,
EnablePerformanceInsights, PerformanceInsightsKMSKeyId,
CACertificateIdentifier)
Arguments¶
DBInstanceIdentifier[required] The instance identifier. This parameter is stored as a lowercase string.
Constraints:
Must contain from 1 to 63 letters, numbers, or hyphens.
The first character must be a letter.
Cannot end with a hyphen or contain two consecutive hyphens.
Example:
mydbinstanceDBInstanceClass[required] The compute and memory capacity of the instance; for example,
db.r5.large.Engine[required] The name of the database engine to be used for this instance.
Valid value:
docdbAvailabilityZoneThe Amazon EC2 Availability Zone that the instance is created in.
Default: A random, system-chosen Availability Zone in the endpoint's Amazon Web Services Region.
Example:
us-east-1dPreferredMaintenanceWindowThe time range each week during which system maintenance can occur, in Universal Coordinated Time (UTC).
Format:
ddd:hh24:mi-ddd:hh24:miThe default is a 30-minute window selected at random from an 8-hour block of time for each Amazon Web Services Region, occurring on a random day of the week.
Valid days: Mon, Tue, Wed, Thu, Fri, Sat, Sun
Constraints: Minimum 30-minute window.
AutoMinorVersionUpgradeThis parameter does not apply to Amazon DocumentDB. Amazon DocumentDB does not perform minor version upgrades regardless of the value set.
Default:
falseTagsThe tags to be assigned to the instance. You can assign up to 10 tags to an instance.
DBClusterIdentifier[required] The identifier of the cluster that the instance will belong to.
CopyTagsToSnapshotA value that indicates whether to copy tags from the DB instance to snapshots of the DB instance. By default, tags are not copied.
PromotionTierA value that specifies the order in which an Amazon DocumentDB replica is promoted to the primary instance after a failure of the existing primary instance.
Default: 1
Valid values: 0-15
EnablePerformanceInsightsA value that indicates whether to enable Performance Insights for the DB Instance. For more information, see Using Amazon Performance Insights.
PerformanceInsightsKMSKeyIdThe KMS key identifier for encryption of Performance Insights data.
The KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.
If you do not specify a value for PerformanceInsightsKMSKeyId, then Amazon DocumentDB uses your default KMS key. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services region.
CACertificateIdentifierThe CA certificate identifier to use for the DB instance's server certificate.
For more information, see Updating Your Amazon DocumentDB TLS Certificates and Encrypting Data in Transit in the Amazon DocumentDB Developer Guide.
Value¶
A list with the following syntax:
list(
DBInstance = list(
DBInstanceIdentifier = "string",
DBInstanceClass = "string",
Engine = "string",
DBInstanceStatus = "string",
Endpoint = list(
Address = "string",
Port = 123,
HostedZoneId = "string"
),
InstanceCreateTime = as.POSIXct(
"2015-01-01"
),
PreferredBackupWindow = "string",
BackupRetentionPeriod = 123,
VpcSecurityGroups = list(
list(
VpcSecurityGroupId = "string",
Status = "string"
)
),
AvailabilityZone = "string",
DBSubnetGroup = list(
DBSubnetGroupName = "string",
DBSubnetGroupDescription = "string",
VpcId = "string",
SubnetGroupStatus = "string",
Subnets = list(
list(
SubnetIdentifier = "string",
SubnetAvailabilityZone = list(
Name = "string"
),
SubnetStatus = "string"
)
),
DBSubnetGroupArn = "string"
),
PreferredMaintenanceWindow = "string",
PendingModifiedValues = list(
DBInstanceClass = "string",
AllocatedStorage = 123,
MasterUserPassword = "string",
Port = 123,
BackupRetentionPeriod = 123,
MultiAZ = TRUE|FALSE,
EngineVersion = "string",
LicenseModel = "string",
Iops = 123,
DBInstanceIdentifier = "string",
StorageType = "string",
CACertificateIdentifier = "string",
DBSubnetGroupName = "string",
PendingCloudwatchLogsExports = list(
LogTypesToEnable = list(
"string"
),
LogTypesToDisable = list(
"string"
)
)
),
LatestRestorableTime = as.POSIXct(
"2015-01-01"
),
EngineVersion = "string",
AutoMinorVersionUpgrade = TRUE|FALSE,
PubliclyAccessible = TRUE|FALSE,
StatusInfos = list(
list(
StatusType = "string",
Normal = TRUE|FALSE,
Status = "string",
Message = "string"
)
),
DBClusterIdentifier = "string",
StorageEncrypted = TRUE|FALSE,
KmsKeyId = "string",
DbiResourceId = "string",
CACertificateIdentifier = "string",
CopyTagsToSnapshot = TRUE|FALSE,
PromotionTier = 123,
DBInstanceArn = "string",
EnabledCloudwatchLogsExports = list(
"string"
),
CertificateDetails = list(
CAIdentifier = "string",
ValidTill = as.POSIXct(
"2015-01-01"
)
),
PerformanceInsightsEnabled = TRUE|FALSE,
PerformanceInsightsKMSKeyId = "string"
)
)
Request syntax¶
svc$create_db_instance(
DBInstanceIdentifier = "string",
DBInstanceClass = "string",
Engine = "string",
AvailabilityZone = "string",
PreferredMaintenanceWindow = "string",
AutoMinorVersionUpgrade = TRUE|FALSE,
Tags = list(
list(
Key = "string",
Value = "string"
)
),
DBClusterIdentifier = "string",
CopyTagsToSnapshot = TRUE|FALSE,
PromotionTier = 123,
EnablePerformanceInsights = TRUE|FALSE,
PerformanceInsightsKMSKeyId = "string",
CACertificateIdentifier = "string"
)