Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CreateClusterRequest

import type { CreateClusterRequest } from "https://aws-api.deno.dev/v0.3/services/memorydb.ts?docs=full";
interface CreateClusterRequest {
ACLName: string;
AutoMinorVersionUpgrade?: boolean | null;
ClusterName: string;
Description?: string | null;
EngineVersion?: string | null;
KmsKeyId?: string | null;
MaintenanceWindow?: string | null;
NodeType: string;
NumReplicasPerShard?: number | null;
NumShards?: number | null;
ParameterGroupName?: string | null;
Port?: number | null;
SecurityGroupIds?: string[] | null;
SnapshotArns?: string[] | null;
SnapshotName?: string | null;
SnapshotRetentionLimit?: number | null;
SnapshotWindow?: string | null;
SnsTopicArn?: string | null;
SubnetGroupName?: string | null;
Tags?: Tag[] | null;
TLSEnabled?: boolean | null;
}

§Properties

§
ACLName: string
[src]

The name of the Access Control List to associate with the cluster.

§
AutoMinorVersionUpgrade?: boolean | null
[src]

When set to true, the cluster will automatically receive minor engine version upgrades after launch.

§
ClusterName: string
[src]

The name of the cluster. This value must be unique as it also serves as the cluster identifier.

§
Description?: string | null
[src]

An optional description of the cluster.

§
EngineVersion?: string | null
[src]

The version number of the Redis engine to be used for the cluster.

§
KmsKeyId?: string | null
[src]

The ID of the KMS key used to encrypt the cluster.

§
MaintenanceWindow?: string | null
[src]

Specifies the weekly time range during which maintenance on the cluster is performed. It is specified as a range in the format ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance window is a 60 minute period.

§
NodeType: string
[src]

The compute and memory capacity of the nodes in the cluster.

§
NumReplicasPerShard?: number | null
[src]

The number of replicas to apply to each shard. The default value is 1. The maximum is 5.

§
NumShards?: number | null
[src]

The number of shards the cluster will contain. The default value is 1.

§
ParameterGroupName?: string | null
[src]

The name of the parameter group associated with the cluster.

§
Port?: number | null
[src]

The port number on which each of the nodes accepts connections.

§
SecurityGroupIds?: string[] | null
[src]

A list of security group names to associate with this cluster.

§
SnapshotArns?: string[] | null
[src]

A list of Amazon Resource Names (ARN) that uniquely identify the RDB snapshot files stored in Amazon S3. The snapshot files are used to populate the new cluster. The Amazon S3 object name in the ARN cannot contain any commas.

§
SnapshotName?: string | null
[src]

The name of a snapshot from which to restore data into the new cluster. The snapshot status changes to restoring while the new cluster is being created.

§
SnapshotRetentionLimit?: number | null
[src]

The number of days for which MemoryDB retains automatic snapshots before deleting them. For example, if you set SnapshotRetentionLimit to 5, a snapshot that was taken today is retained for 5 days before being deleted.

§
SnapshotWindow?: string | null
[src]

The daily time range (in UTC) during which MemoryDB begins taking a daily snapshot of your shard.

Example: 05:00-09:00

If you do not specify this parameter, MemoryDB automatically chooses an appropriate time range.

§
SnsTopicArn?: string | null
[src]

The Amazon Resource Name (ARN) of the Amazon Simple Notification Service (SNS) topic to which notifications are sent.

§
SubnetGroupName?: string | null
[src]

The name of the subnet group to be used for the cluster.

§
Tags?: Tag[] | null
[src]

A list of tags to be added to this resource. Tags are comma-separated key,value pairs (e.g. Key=myKey, Value=myKeyValue. You can include multiple tags as shown following: Key=myKey, Value=myKeyValue Key=mySecondKey, Value=mySecondKeyValue.

§
TLSEnabled?: boolean | null
[src]

A flag to enable in-transit encryption on the cluster.