Class CfnDatabaseProps
Properties for defining a CfnDatabase
.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.Lightsail
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDatabaseProps : Object, ICfnDatabaseProps
Syntax (vb)
Public Class CfnDatabaseProps
Inherits Object
Implements ICfnDatabaseProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-database.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Lightsail;
var cfnDatabaseProps = new CfnDatabaseProps {
MasterDatabaseName = "masterDatabaseName",
MasterUsername = "masterUsername",
RelationalDatabaseBlueprintId = "relationalDatabaseBlueprintId",
RelationalDatabaseBundleId = "relationalDatabaseBundleId",
RelationalDatabaseName = "relationalDatabaseName",
// the properties below are optional
AvailabilityZone = "availabilityZone",
BackupRetention = false,
CaCertificateIdentifier = "caCertificateIdentifier",
MasterUserPassword = "masterUserPassword",
PreferredBackupWindow = "preferredBackupWindow",
PreferredMaintenanceWindow = "preferredMaintenanceWindow",
PubliclyAccessible = false,
RelationalDatabaseParameters = new [] { new RelationalDatabaseParameterProperty {
AllowedValues = "allowedValues",
ApplyMethod = "applyMethod",
ApplyType = "applyType",
DataType = "dataType",
Description = "description",
IsModifiable = false,
ParameterName = "parameterName",
ParameterValue = "parameterValue"
} },
RotateMasterUserPassword = false,
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
Cfn |
Properties
Availability |
The Availability Zone for the database. |
Backup |
A Boolean value indicating whether automated backup retention is enabled for the database. |
Ca |
The certificate associated with the database. |
Master |
The meaning of this parameter differs according to the database engine you use. |
Master |
The name for the primary user. |
Master |
The password for the primary user of the database. |
Preferred |
The daily time range during which automated backups are created for the database (for example, |
Preferred |
The weekly time range during which system maintenance can occur for the database, formatted as follows: |
Publicly |
A Boolean value indicating whether the database is accessible to anyone on the internet. |
Relational |
The blueprint ID for the database (for example, |
Relational |
The bundle ID for the database (for example, |
Relational |
The name of the instance. |
Relational |
An array of parameters for the database. |
Rotate |
A Boolean value indicating whether to change the primary user password to a new, strong password generated by Lightsail . |
Tags | An array of key-value pairs to apply to this resource. |
Constructors
CfnDatabaseProps()
public CfnDatabaseProps()
Properties
AvailabilityZone
The Availability Zone for the database.
public string AvailabilityZone { get; set; }
Property Value
System.
Remarks
BackupRetention
A Boolean value indicating whether automated backup retention is enabled for the database.
public object BackupRetention { get; set; }
Property Value
System.
Remarks
Data Import Mode is enabled when BackupRetention
is set to false
, and is disabled when BackupRetention
is set to true
.
CaCertificateIdentifier
The certificate associated with the database.
public string CaCertificateIdentifier { get; set; }
Property Value
System.
Remarks
MasterDatabaseName
The meaning of this parameter differs according to the database engine you use.
public string MasterDatabaseName { get; set; }
Property Value
System.
Remarks
MySQL
The name of the database to create when the Lightsail database resource is created. If this parameter isn't specified, no database is created in the database resource.
Constraints:
For more information about reserved words in MySQL, see the Keywords and Reserved Words articles for MySQL 5.6 , MySQL 5.7 , and MySQL 8.0 .
PostgreSQL
The name of the database to create when the Lightsail database resource is created. If this parameter isn't specified, a database named postgres
is created in the database resource.
Constraints:
For more information about reserved words in PostgreSQL, see the SQL Key Words articles for PostgreSQL 9.6 , PostgreSQL 10 , PostgreSQL 11 , and PostgreSQL 12 .
MasterUsername
The name for the primary user.
public string MasterUsername { get; set; }
Property Value
System.
Remarks
MySQL
Constraints:
For more information about reserved words in MySQL 5.6 or 5.7, see the Keywords and Reserved Words articles for MySQL 5.6 , MySQL 5.7 , or MySQL 8.0 .
PostgreSQL
Constraints:
For more information about reserved words in MySQL 5.6 or 5.7, see the Keywords and Reserved Words articles for PostgreSQL 9.6 , PostgreSQL 10 , PostgreSQL 11 , and PostgreSQL 12 .
MasterUserPassword
The password for the primary user of the database.
public string MasterUserPassword { get; set; }
Property Value
System.
Remarks
The password can include any printable ASCII character except the following: /, ", or
: . It cannot contain spaces.
The
MasterUserPassword
andRotateMasterUserPassword
parameters cannot be used together in the same template.
MySQL
Constraints: Must contain 8-41 characters.
PostgreSQL
Constraints: Must contain 8-128 characters.
PreferredBackupWindow
The daily time range during which automated backups are created for the database (for example, 16:00-16:30
).
public string PreferredBackupWindow { get; set; }
Property Value
System.
Remarks
PreferredMaintenanceWindow
The weekly time range during which system maintenance can occur for the database, formatted as follows: ddd:hh24:mi-ddd:hh24:mi
.
public string PreferredMaintenanceWindow { get; set; }
Property Value
System.
Remarks
For example, Tue:17:00-Tue:17:30
.
PubliclyAccessible
A Boolean value indicating whether the database is accessible to anyone on the internet.
public object PubliclyAccessible { get; set; }
Property Value
System.
Remarks
RelationalDatabaseBlueprintId
The blueprint ID for the database (for example, mysql_8_0
).
public string RelationalDatabaseBlueprintId { get; set; }
Property Value
System.
Remarks
RelationalDatabaseBundleId
The bundle ID for the database (for example, medium_1_0
).
public string RelationalDatabaseBundleId { get; set; }
Property Value
System.
Remarks
RelationalDatabaseName
The name of the instance.
public string RelationalDatabaseName { get; set; }
Property Value
System.
Remarks
RelationalDatabaseParameters
An array of parameters for the database.
public object RelationalDatabaseParameters { get; set; }
Property Value
System.
Remarks
RotateMasterUserPassword
A Boolean value indicating whether to change the primary user password to a new, strong password generated by Lightsail .
public object RotateMasterUserPassword { get; set; }
Property Value
System.
Remarks
The RotateMasterUserPassword
and MasterUserPassword
parameters cannot be used together in the same template.
Tags
An array of key-value pairs to apply to this resource.
public ICfnTag[] Tags { get; set; }
Property Value
ICfn
Remarks
For more information, see Tag in the AWS CloudFormation User Guide .
The Value
of Tags
is optional for Lightsail resources.