GetClusterResult

data class GetClusterResult(val backupRetentionPeriod: Int? = null, val clusterArn: String? = null, val clusterEndpoint: String? = null, val preferredBackupWindow: String? = null, val preferredMaintenanceWindow: String? = null, val shardCapacity: Int? = null, val shardCount: Int? = null, val shardInstanceCount: Int? = null, val subnetIds: List<String>? = null, val tags: List<Tag>? = null, val vpcSecurityGroupIds: List<String>? = null)

Constructors

Link copied to clipboard
constructor(backupRetentionPeriod: Int? = null, clusterArn: String? = null, clusterEndpoint: String? = null, preferredBackupWindow: String? = null, preferredMaintenanceWindow: String? = null, shardCapacity: Int? = null, shardCount: Int? = null, shardInstanceCount: Int? = null, subnetIds: List<String>? = null, tags: List<Tag>? = null, vpcSecurityGroupIds: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The number of days for which automatic snapshots are retained.

Link copied to clipboard
val clusterArn: String? = null
Link copied to clipboard
val clusterEndpoint: String? = null

The URL used to connect to the elastic cluster.

Link copied to clipboard

The daily time range during which automated backups are created if automated backups are enabled, as determined by backupRetentionPeriod .

Link copied to clipboard

The weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC). Format : ddd:hh24:mi-ddd:hh24:mi Default : a 30-minute window selected at random from an 8-hour block of time for each AWS Region , occurring on a random day of the week. Valid days : Mon, Tue, Wed, Thu, Fri, Sat, Sun Constraints : Minimum 30-minute window.

Link copied to clipboard
val shardCapacity: Int? = null

The number of vCPUs assigned to each elastic cluster shard. Maximum is 64. Allowed values are 2, 4, 8, 16, 32, 64.

Link copied to clipboard
val shardCount: Int? = null

The number of shards assigned to the elastic cluster. Maximum is 32.

Link copied to clipboard
val shardInstanceCount: Int? = null

The number of replica instances applying to all shards in the cluster. A shardInstanceCount value of 1 means there is one writer instance, and any additional instances are replicas that can be used for reads and to improve availability.

Link copied to clipboard
val subnetIds: List<String>? = null

The Amazon EC2 subnet IDs for the new elastic cluster.

Link copied to clipboard
val tags: List<Tag>? = null

The tags to be assigned to the new elastic cluster.

Link copied to clipboard

A list of EC2 VPC security groups to associate with the new elastic cluster.