GeneratePasswordRequest: {
    additionalChars?: string;
    description?: string;
    disablePrevious?: boolean;
    length: number;
    noDigits?: boolean;
    noLowercaseLetters?: boolean;
    noUppercaseLetters?: boolean;
    region?: Region;
    secretId: string;
}

Type declaration

  • OptionaladditionalChars?: string

    (Optional.) Additional ASCII characters to be included in the password character set.

  • Optionaldescription?: string

    Description of the version.

  • OptionaldisablePrevious?: boolean

    This has no effect if there is no previous version or if the previous version was already disabled.

  • length: number

    Length of the password to generate (between 1 and 1024 characters).

  • OptionalnoDigits?: boolean

    (Optional.) Exclude digits by default in the password character set.

  • OptionalnoLowercaseLetters?: boolean

    (Optional.) Exclude lower case letters by default in the password character set.

  • OptionalnoUppercaseLetters?: boolean

    (Optional.) Exclude upper case letters by default in the password character set.

  • Optionalregion?: Region

    Region to target. If none is passed will use default region from the config.

  • secretId: string

    ID of the secret.