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

DBClusterSnapshot

import type { DBClusterSnapshot } from "https://aws-api.deno.dev/v0.3/services/neptune.ts?docs=full";

Contains the details for an Amazon Neptune DB cluster snapshot

This data type is used as a response element in the "DescribeDBClusterSnapshots" action.

interface DBClusterSnapshot {
AllocatedStorage?: number | null;
AvailabilityZones: string[];
ClusterCreateTime?: Date | number | null;
DBClusterIdentifier?: string | null;
DBClusterSnapshotArn?: string | null;
DBClusterSnapshotIdentifier?: string | null;
Engine?: string | null;
EngineVersion?: string | null;
IAMDatabaseAuthenticationEnabled?: boolean | null;
KmsKeyId?: string | null;
LicenseModel?: string | null;
MasterUsername?: string | null;
PercentProgress?: number | null;
Port?: number | null;
SnapshotCreateTime?: Date | number | null;
SnapshotType?: string | null;
SourceDBClusterSnapshotArn?: string | null;
Status?: string | null;
StorageEncrypted?: boolean | null;
VpcId?: string | null;
}

§Properties

§
AllocatedStorage?: number | null
[src]

Specifies the allocated storage size in gibibytes (GiB).

§
AvailabilityZones: string[]
[src]

Provides the list of EC2 Availability Zones that instances in the DB cluster snapshot can be restored in.

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

Specifies the time when the DB cluster was created, in Universal Coordinated Time (UTC).

§
DBClusterIdentifier?: string | null
[src]

Specifies the DB cluster identifier of the DB cluster that this DB cluster snapshot was created from.

§
DBClusterSnapshotArn?: string | null
[src]

The Amazon Resource Name (ARN) for the DB cluster snapshot.

§
DBClusterSnapshotIdentifier?: string | null
[src]

Specifies the identifier for a DB cluster snapshot. Must match the identifier of an existing snapshot.

After you restore a DB cluster using a DBClusterSnapshotIdentifier, you must specify the same DBClusterSnapshotIdentifier for any future updates to the DB cluster. When you specify this property for an update, the DB cluster is not restored from the snapshot again, and the data in the database is not changed.

However, if you don't specify the DBClusterSnapshotIdentifier, an empty DB cluster is created, and the original DB cluster is deleted. If you specify a property that is different from the previous snapshot restore property, the DB cluster is restored from the snapshot specified by the DBClusterSnapshotIdentifier, and the original DB cluster is deleted.

§
Engine?: string | null
[src]

Specifies the name of the database engine.

§
EngineVersion?: string | null
[src]

Provides the version of the database engine for this DB cluster snapshot.

§
IAMDatabaseAuthenticationEnabled?: boolean | null
[src]

True if mapping of Amazon Identity and Access Management (IAM) accounts to database accounts is enabled, and otherwise false.

§
KmsKeyId?: string | null
[src]

If StorageEncrypted is true, the Amazon KMS key identifier for the encrypted DB cluster snapshot.

§
LicenseModel?: string | null
[src]

Provides the license model information for this DB cluster snapshot.

§
MasterUsername?: string | null
[src]

Not supported by Neptune.

§
PercentProgress?: number | null
[src]

Specifies the percentage of the estimated data that has been transferred.

§
Port?: number | null
[src]

Specifies the port that the DB cluster was listening on at the time of the snapshot.

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

Provides the time when the snapshot was taken, in Universal Coordinated Time (UTC).

§
SnapshotType?: string | null
[src]

Provides the type of the DB cluster snapshot.

§
SourceDBClusterSnapshotArn?: string | null
[src]

If the DB cluster snapshot was copied from a source DB cluster snapshot, the Amazon Resource Name (ARN) for the source DB cluster snapshot, otherwise, a null value.

§
Status?: string | null
[src]

Specifies the status of this DB cluster snapshot.

§
StorageEncrypted?: boolean | null
[src]

Specifies whether the DB cluster snapshot is encrypted.

§
VpcId?: string | null
[src]

Provides the VPC ID associated with the DB cluster snapshot.