Show / Hide Table of Contents

Class GlobalClusterArgs

Inheritance
System.Object
InputArgs
ResourceArgs
GlobalClusterArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Rds
Assembly: Pulumi.Aws.dll
Syntax
public sealed class GlobalClusterArgs : ResourceArgs

Constructors

View Source

GlobalClusterArgs()

Declaration
public GlobalClusterArgs()

Properties

View Source

DatabaseName

Name for an automatically created database on cluster creation.

Declaration
public Input<string> DatabaseName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

DeletionProtection

If the Global Cluster should have deletion protection enabled. The database can't be deleted when this value is set to true. The default is false.

Declaration
public Input<bool> DeletionProtection { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Engine

Name of the database engine to be used for this DB cluster. Valid values: aurora, aurora-mysql, aurora-postgresql. Defaults to aurora.

Declaration
public Input<string> Engine { get; set; }
Property Value
Type Description
Input<System.String>
View Source

EngineVersion

Engine version of the Aurora global database.

  • NOTE: When the engine is set to aurora-mysql, an engine version compatible with global database is required. The earliest available version is 5.7.mysql_aurora.2.06.0.
Declaration
public Input<string> EngineVersion { get; set; }
Property Value
Type Description
Input<System.String>
View Source

GlobalClusterIdentifier

The global cluster identifier.

Declaration
public Input<string> GlobalClusterIdentifier { get; set; }
Property Value
Type Description
Input<System.String>
View Source

StorageEncrypted

Specifies whether the DB cluster is encrypted. The default is false.

Declaration
public Input<bool> StorageEncrypted { get; set; }
Property Value
Type Description
Input<System.Boolean>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.