public static interface GetRandomPasswordRequest.Builder extends SecretsManagerRequest.Builder, SdkPojo, CopyableBuilder<GetRandomPasswordRequest.Builder,GetRandomPasswordRequest>
Modifier and Type | Method and Description |
---|---|
GetRandomPasswordRequest.Builder |
excludeCharacters(String excludeCharacters)
A string that includes characters that should not be included in the generated password.
|
GetRandomPasswordRequest.Builder |
excludeLowercase(Boolean excludeLowercase)
Specifies that the generated password should not include lowercase letters.
|
GetRandomPasswordRequest.Builder |
excludeNumbers(Boolean excludeNumbers)
Specifies that the generated password should not include digits.
|
GetRandomPasswordRequest.Builder |
excludePunctuation(Boolean excludePunctuation)
Specifies that the generated password should not include punctuation characters.
|
GetRandomPasswordRequest.Builder |
excludeUppercase(Boolean excludeUppercase)
Specifies that the generated password should not include uppercase letters.
|
GetRandomPasswordRequest.Builder |
includeSpace(Boolean includeSpace)
Specifies that the generated password can include the space character.
|
GetRandomPasswordRequest.Builder |
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) |
GetRandomPasswordRequest.Builder |
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) |
GetRandomPasswordRequest.Builder |
passwordLength(Long passwordLength)
The desired length of the generated password.
|
GetRandomPasswordRequest.Builder |
requireEachIncludedType(Boolean requireEachIncludedType)
A boolean value that specifies whether the generated password must include at least one of every allowed
character type.
|
build
overrideConfiguration
equalsBySdkFields, sdkFields
copy
applyMutation, build
GetRandomPasswordRequest.Builder passwordLength(Long passwordLength)
The desired length of the generated password. The default value if you do not include this parameter is 32 characters.
passwordLength
- The desired length of the generated password. The default value if you do not include this parameter
is 32 characters.GetRandomPasswordRequest.Builder excludeCharacters(String excludeCharacters)
A string that includes characters that should not be included in the generated password. The default is that all characters from the included sets can be used.
excludeCharacters
- A string that includes characters that should not be included in the generated password. The default
is that all characters from the included sets can be used.GetRandomPasswordRequest.Builder excludeNumbers(Boolean excludeNumbers)
Specifies that the generated password should not include digits. The default if you do not include this switch parameter is that digits can be included.
excludeNumbers
- Specifies that the generated password should not include digits. The default if you do not include
this switch parameter is that digits can be included.GetRandomPasswordRequest.Builder excludePunctuation(Boolean excludePunctuation)
Specifies that the generated password should not include punctuation characters. The default if you do not include this switch parameter is that punctuation characters can be included.
The following are the punctuation characters that can be included in the generated password if you
don't explicitly exclude them with ExcludeCharacters
or ExcludePunctuation
:
! " # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _ ` { | } ~
excludePunctuation
- Specifies that the generated password should not include punctuation characters. The default if you do
not include this switch parameter is that punctuation characters can be included.
The following are the punctuation characters that can be included in the generated password if
you don't explicitly exclude them with ExcludeCharacters
or
ExcludePunctuation
:
! " # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _ ` { | } ~
GetRandomPasswordRequest.Builder excludeUppercase(Boolean excludeUppercase)
Specifies that the generated password should not include uppercase letters. The default if you do not include this switch parameter is that uppercase letters can be included.
excludeUppercase
- Specifies that the generated password should not include uppercase letters. The default if you do not
include this switch parameter is that uppercase letters can be included.GetRandomPasswordRequest.Builder excludeLowercase(Boolean excludeLowercase)
Specifies that the generated password should not include lowercase letters. The default if you do not include this switch parameter is that lowercase letters can be included.
excludeLowercase
- Specifies that the generated password should not include lowercase letters. The default if you do not
include this switch parameter is that lowercase letters can be included.GetRandomPasswordRequest.Builder includeSpace(Boolean includeSpace)
Specifies that the generated password can include the space character. The default if you do not include this switch parameter is that the space character is not included.
includeSpace
- Specifies that the generated password can include the space character. The default if you do not
include this switch parameter is that the space character is not included.GetRandomPasswordRequest.Builder requireEachIncludedType(Boolean requireEachIncludedType)
A boolean value that specifies whether the generated password must include at least one of every allowed
character type. The default value is True
and the operation requires at least one of every
character type.
requireEachIncludedType
- A boolean value that specifies whether the generated password must include at least one of every
allowed character type. The default value is True
and the operation requires at least one
of every character type.GetRandomPasswordRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
overrideConfiguration
in interface AwsRequest.Builder
GetRandomPasswordRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
overrideConfiguration
in interface AwsRequest.Builder
Copyright © 2020. All rights reserved.