import * as __aws_sdk_types from "@aws-sdk/types"; /** * CreateSecretOutput shape */ export interface CreateSecretOutput extends __aws_sdk_types.MetadataBearer { /** *

The Amazon Resource Name (ARN) of the secret that you just created.

Secrets Manager automatically adds several random characters to the name at the end of the ARN when you initially create a secret. This affects only the ARN and not the actual friendly name. This ensures that if you create a new secret with the same name as an old secret that you previously deleted, then users with access to the old secret don't automatically get access to the new secret because the ARNs are different.

*/ ARN?: string; /** *

The friendly name of the secret that you just created.

*/ Name?: string; /** *

The unique identifier that's associated with the version of the secret you just created.

*/ VersionId?: string; /** * Metadata about the response received, including the HTTP status code, HTTP headers, and any request identifiers recognized by the SDK. */ $metadata: __aws_sdk_types.ResponseMetadata; }