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

ReplicationStatusType

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

A replication object consisting of a RegionReplicationStatus object and includes a Region, KMSKeyId, status, and status message.

interface ReplicationStatusType {
KmsKeyId?: string | null;
LastAccessedDate?: Date | number | null;
Region?: string | null;
Status?: StatusType | null;
StatusMessage?: string | null;
}

§Properties

§
KmsKeyId?: string | null
[src]

Can be an ARN, Key ID, or Alias.

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

The date that the secret was last accessed in the Region. This field is omitted if the secret has never been retrieved in the Region.

§
Region?: string | null
[src]

The Region where replication occurs.

§
Status?: StatusType | null
[src]

The status can be InProgress, Failed, or InSync.

§
StatusMessage?: string | null
[src]

Status message such as "Secret with this name already exists in this region".