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

GetRandomPasswordRequest

import type { GetRandomPasswordRequest } from "https://aws-api.deno.dev/v0.4/services/secretsmanager.ts?docs=full";
interface GetRandomPasswordRequest {
ExcludeCharacters?: string | null;
ExcludeLowercase?: boolean | null;
ExcludeNumbers?: boolean | null;
ExcludePunctuation?: boolean | null;
ExcludeUppercase?: boolean | null;
IncludeSpace?: boolean | null;
PasswordLength?: number | null;
RequireEachIncludedType?: boolean | null;
}

§Properties

§
ExcludeCharacters?: string | null
[src]

A string of the characters that you don't want in the password.

§
ExcludeLowercase?: boolean | null
[src]

Specifies whether to exclude lowercase letters from the password. If you don't include this switch, the password can contain lowercase letters.

§
ExcludeNumbers?: boolean | null
[src]

Specifies whether to exclude numbers from the password. If you don't include this switch, the password can contain numbers.

§
ExcludePunctuation?: boolean | null
[src]

Specifies whether to exclude the following punctuation characters from the password: ! " # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _ { | } ~`. If you don't include this switch, the password can contain punctuation.

§
ExcludeUppercase?: boolean | null
[src]

Specifies whether to exclude uppercase letters from the password. If you don't include this switch, the password can contain uppercase letters.

§
IncludeSpace?: boolean | null
[src]

Specifies whether to include the space character. If you include this switch, the password can contain space characters.

§
PasswordLength?: number | null
[src]

The length of the password. If you don't include this parameter, the default length is 32 characters.

§
RequireEachIncludedType?: boolean | null
[src]

Specifies whether to include at least one upper and lowercase letter, one number, and one punctuation. If you don't include this switch, the password contains at least one of every character type.