lambda-params-secrets
    Preparing search index...

    Interface SecretResponse

    The Extension's response for Secrets.

    See: GetSecretValueCommandOutput.

    interface SecretResponse {
        ARN?: string;
        CreatedDate: string;
        Name?: string;
        ResultMetadata: Record<never, never>;
        SecretBinary: string | null;
        SecretString: string | null;
        VersionId?: string;
        VersionStages?: string[];
    }
    Index

    Properties

    ARN?: string
    CreatedDate: string
    Name?: string
    ResultMetadata: Record<never, never>

    The Extension appears to always return an empty object {}-

    SecretBinary: string | null

    The Binary Secret value. The Extension returns SecretBinary as a Base64 encoded string.

    SecretString: string | null

    The String Secrert value.

    VersionId?: string
    VersionStages?: string[]