/** *

Contains information about a backup of an AWS CloudHSM cluster.

*/ export interface _Backup { /** *

The identifier (ID) of the backup.

*/ BackupId: string; /** *

The state of the backup.

*/ BackupState?: "CREATE_IN_PROGRESS" | "READY" | "DELETED" | "PENDING_DELETION" | string; /** *

The identifier (ID) of the cluster that was backed up.

*/ ClusterId?: string; /** *

The date and time when the backup was created.

*/ CreateTimestamp?: Date | string | number; /** * _Timestamp shape */ CopyTimestamp?: Date | string | number; /** * _Region shape */ SourceRegion?: string; /** * _BackupId shape */ SourceBackup?: string; /** * _ClusterId shape */ SourceCluster?: string; /** *

The date and time when the backup will be permanently deleted.

*/ DeleteTimestamp?: Date | string | number; } export interface _UnmarshalledBackup extends _Backup { /** *

The date and time when the backup was created.

*/ CreateTimestamp?: Date; /** * _Timestamp shape */ CopyTimestamp?: Date; /** *

The date and time when the backup will be permanently deleted.

*/ DeleteTimestamp?: Date; }