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

The Amazon Resource Name (ARN) for the secret for which you just created a version.

*/ ARN?: string; /** *

The friendly name of the secret for which you just created or updated a version.

*/ Name?: string; /** *

The unique identifier of the version of the secret you just created or updated.

*/ VersionId?: string; /** *

The list of staging labels that are currently attached to this version of the secret. Staging labels are used to track a version as it progresses through the secret rotation process.

*/ VersionStages?: Array; /** * 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; }