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

Cluster

import type { Cluster } from "https://aws-api.deno.dev/v0.4/services/cloudhsmv2.ts?docs=full";

Contains information about an AWS CloudHSM cluster.

interface Cluster {
BackupPolicy?: BackupPolicy | null;
BackupRetentionPolicy?: BackupRetentionPolicy | null;
Certificates?: Certificates | null;
ClusterId?: string | null;
CreateTimestamp?: Date | number | null;
Hsms?: Hsm[] | null;
HsmType?: string | null;
PreCoPassword?: string | null;
SecurityGroup?: string | null;
SourceBackupId?: string | null;
State?: ClusterState | null;
StateMessage?: string | null;
SubnetMapping?: {
[key: string]: string | null | undefined;
}
| null;
TagList?: Tag[] | null;
VpcId?: string | null;
}

§Properties

§
BackupPolicy?: BackupPolicy | null
[src]

The cluster's backup policy.

§
BackupRetentionPolicy?: BackupRetentionPolicy | null
[src]

A policy that defines how the service retains backups.

§
Certificates?: Certificates | null
[src]

Contains one or more certificates or a certificate signing request (CSR).

§
ClusterId?: string | null
[src]

The cluster's identifier (ID).

§
CreateTimestamp?: Date | number | null
[src]

The date and time when the cluster was created.

§
Hsms?: Hsm[] | null
[src]

Contains information about the HSMs in the cluster.

§
HsmType?: string | null
[src]

The type of HSM that the cluster contains.

§
PreCoPassword?: string | null
[src]

The default password for the cluster's Pre-Crypto Officer (PRECO) user.

§
SecurityGroup?: string | null
[src]

The identifier (ID) of the cluster's security group.

§
SourceBackupId?: string | null
[src]

The identifier (ID) of the backup used to create the cluster. This value exists only when the cluster was created from a backup.

§
State?: ClusterState | null
[src]

The cluster's state.

§
StateMessage?: string | null
[src]

A description of the cluster's state.

§
SubnetMapping?: {
[key: string]: string | null | undefined;
}
| null
[src]

A map from availability zone to the cluster’s subnet in that availability zone.

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

The list of tags for the cluster.

§
VpcId?: string | null
[src]

The identifier (ID) of the virtual private cloud (VPC) that contains the cluster.