GenerateSecretStringArgs

data class GenerateSecretStringArgs(val excludeCharacters: Output<String>? = null, val excludeLowercase: Output<Boolean>? = null, val excludeNumbers: Output<Boolean>? = null, val excludePunctuation: Output<Boolean>? = null, val excludeUppercase: Output<Boolean>? = null, val generateStringKey: Output<String>? = null, val includeSpace: Output<Boolean>? = null, val passwordLength: Output<Int>? = null, val requireEachIncludedType: Output<Boolean>? = null, val secretStringTemplate: Output<String>? = null) : ConvertibleToJava<GenerateSecretStringArgs>

Definition of GenerateSecretString

Constructors

Link copied to clipboard
constructor(excludeCharacters: Output<String>? = null, excludeLowercase: Output<Boolean>? = null, excludeNumbers: Output<Boolean>? = null, excludePunctuation: Output<Boolean>? = null, excludeUppercase: Output<Boolean>? = null, generateStringKey: Output<String>? = null, includeSpace: Output<Boolean>? = null, passwordLength: Output<Int>? = null, requireEachIncludedType: Output<Boolean>? = null, secretStringTemplate: Output<String>? = null)

Properties

Link copied to clipboard
val excludeCharacters: Output<String>? = null

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

Link copied to clipboard
val excludeLowercase: Output<Boolean>? = null

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

Link copied to clipboard
val excludeNumbers: Output<Boolean>? = null

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

Link copied to clipboard
val excludePunctuation: Output<Boolean>? = null

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

Link copied to clipboard
val excludeUppercase: Output<Boolean>? = null

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

Link copied to clipboard
val generateStringKey: Output<String>? = null

The JSON key name for the key/value pair, where the value is the generated password. This pair is added to the JSON structure specified by the `SecretStringTemplate` parameter. If you specify this parameter, then you must also specify `SecretStringTemplate`.

Link copied to clipboard
val includeSpace: Output<Boolean>? = null

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

Link copied to clipboard
val passwordLength: Output<Int>? = null

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

Link copied to clipboard
val requireEachIncludedType: Output<Boolean>? = null

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.

Link copied to clipboard
val secretStringTemplate: Output<String>? = null

A template that the generated string must match. When you make a change to this property, a new secret version is created.

Functions

Link copied to clipboard
open override fun toJava(): GenerateSecretStringArgs