Struct cfn::aws::rds::DBClusterProperties [] [src]

pub struct DBClusterProperties {
    pub availability_zones: Option<ValueList<String>>,
    pub backup_retention_period: Option<Value<u32>>,
    pub db_cluster_identifier: Option<Value<String>>,
    pub db_cluster_parameter_group_name: Option<Value<String>>,
    pub db_subnet_group_name: Option<Value<String>>,
    pub database_name: Option<Value<String>>,
    pub engine: Value<String>,
    pub engine_version: Option<Value<String>>,
    pub kms_key_id: Option<Value<String>>,
    pub master_user_password: Option<Value<String>>,
    pub master_username: Option<Value<String>>,
    pub port: Option<Value<u32>>,
    pub preferred_backup_window: Option<Value<String>>,
    pub preferred_maintenance_window: Option<Value<String>>,
    pub replication_source_identifier: Option<Value<String>>,
    pub snapshot_identifier: Option<Value<String>>,
    pub storage_encrypted: Option<Value<bool>>,
    pub tags: Option<ValueList<Tag>>,
    pub vpc_security_group_ids: Option<ValueList<String>>,
}

Properties for the DBCluster resource.

Fields

Property AvailabilityZones.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property BackupRetentionPeriod.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property DBClusterIdentifier.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property DBClusterParameterGroupName.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property DBSubnetGroupName.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property DatabaseName.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property Engine.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property EngineVersion.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property KmsKeyId.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property MasterUserPassword.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property MasterUsername.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property Port.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property PreferredBackupWindow.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property PreferredMaintenanceWindow.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property ReplicationSourceIdentifier.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property SnapshotIdentifier.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property StorageEncrypted.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property Tags.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property VpcSecurityGroupIds.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Trait Implementations

impl Debug for DBClusterProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for DBClusterProperties
[src]

[src]

Returns the "default value" for a type. Read more

impl Serialize for DBClusterProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for DBClusterProperties
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<DBClusterProperties> for DBCluster
[src]

[src]

Performs the conversion.

Auto Trait Implementations