GetRandomPasswordArgs constructor
Creates a new GetRandomPasswordArgs.
excludeCharacters String of the characters that you don't want in the password.
excludeLowercase Whether to exclude lowercase letters from the password.
excludeNumbers Whether to exclude numbers from the password.
excludePunctuation Whether to exclude the following punctuation characters from the password: ! " # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _ ` { | } ~ .
excludeUppercase Whether to exclude uppercase letters from the password.
includeSpace Whether to include the space character.
passwordLength Length of the password.
region Region where this resource will be managed. Defaults to the Region set in the provider configuration.
requireEachIncludedType Whether to include at least one upper and lowercase letter, one number, and one punctuation.
Implementation
const GetRandomPasswordArgs({
this.excludeCharacters,
this.excludeLowercase,
this.excludeNumbers,
this.excludePunctuation,
this.excludeUppercase,
this.includeSpace,
this.passwordLength,
this.region,
this.requireEachIncludedType,
});