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

CreateSecretResponse

import type { CreateSecretResponse } from "https://aws-api.deno.dev/v0.4/services/secretsmanager.ts?docs=full";
interface CreateSecretResponse {
ARN?: string | null;
Name?: string | null;
ReplicationStatus?: ReplicationStatusType[] | null;
VersionId?: string | null;
}

§Properties

§
ARN?: string | null
[src]

The ARN of the new secret. The ARN includes the name of the secret followed by six random characters. This ensures that if you create a new secret with the same name as a deleted secret, then users with access to the old secret don't get access to the new secret because the ARNs are different.

§
Name?: string | null
[src]

The name of the new secret.

§
ReplicationStatus?: ReplicationStatusType[] | null
[src]

A list of the replicas of this secret and their status:

  • Failed, which indicates that the replica was not created.
  • InProgress, which indicates that Secrets Manager is in the process of creating the replica.
  • InSync, which indicates that the replica was created.
§
VersionId?: string | null
[src]

The unique identifier associated with the version of the new secret.