Class: Aws::SecretsManager::Types::GetRandomPasswordRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecretsManager::Types::GetRandomPasswordRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-secretsmanager/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#exclude_characters ⇒ String
A string of the characters that you don’t want in the password.
-
#exclude_lowercase ⇒ Boolean
Specifies whether to exclude lowercase letters from the password.
-
#exclude_numbers ⇒ Boolean
Specifies whether to exclude numbers from the password.
-
#exclude_punctuation ⇒ Boolean
Specifies whether to exclude the following punctuation characters from the password: “ ! “ # $ % & ‘ ( ) * + , - .
-
#exclude_uppercase ⇒ Boolean
Specifies whether to exclude uppercase letters from the password.
-
#include_space ⇒ Boolean
Specifies whether to include the space character.
-
#password_length ⇒ Integer
The length of the password.
-
#require_each_included_type ⇒ Boolean
Specifies whether to include at least one upper and lowercase letter, one number, and one punctuation.
Instance Attribute Details
#exclude_characters ⇒ String
A string of the characters that you don’t want in the password.
869 870 871 872 873 874 875 876 877 878 879 880 |
# File 'lib/aws-sdk-secretsmanager/types.rb', line 869 class GetRandomPasswordRequest < Struct.new( :password_length, :exclude_characters, :exclude_numbers, :exclude_punctuation, :exclude_uppercase, :exclude_lowercase, :include_space, :require_each_included_type) SENSITIVE = [] include Aws::Structure end |
#exclude_lowercase ⇒ Boolean
Specifies whether to exclude lowercase letters from the password. If you don’t include this switch, the password can contain lowercase letters.
869 870 871 872 873 874 875 876 877 878 879 880 |
# File 'lib/aws-sdk-secretsmanager/types.rb', line 869 class GetRandomPasswordRequest < Struct.new( :password_length, :exclude_characters, :exclude_numbers, :exclude_punctuation, :exclude_uppercase, :exclude_lowercase, :include_space, :require_each_included_type) SENSITIVE = [] include Aws::Structure end |
#exclude_numbers ⇒ Boolean
Specifies whether to exclude numbers from the password. If you don’t include this switch, the password can contain numbers.
869 870 871 872 873 874 875 876 877 878 879 880 |
# File 'lib/aws-sdk-secretsmanager/types.rb', line 869 class GetRandomPasswordRequest < Struct.new( :password_length, :exclude_characters, :exclude_numbers, :exclude_punctuation, :exclude_uppercase, :exclude_lowercase, :include_space, :require_each_included_type) SENSITIVE = [] include Aws::Structure end |
#exclude_punctuation ⇒ Boolean
Specifies whether to exclude the following punctuation characters from the password: “ ! “ # $ % & ‘ ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _ ` { | } ~ “. If you don’t include this switch, the password can contain punctuation.
869 870 871 872 873 874 875 876 877 878 879 880 |
# File 'lib/aws-sdk-secretsmanager/types.rb', line 869 class GetRandomPasswordRequest < Struct.new( :password_length, :exclude_characters, :exclude_numbers, :exclude_punctuation, :exclude_uppercase, :exclude_lowercase, :include_space, :require_each_included_type) SENSITIVE = [] include Aws::Structure end |
#exclude_uppercase ⇒ Boolean
Specifies whether to exclude uppercase letters from the password. If you don’t include this switch, the password can contain uppercase letters.
869 870 871 872 873 874 875 876 877 878 879 880 |
# File 'lib/aws-sdk-secretsmanager/types.rb', line 869 class GetRandomPasswordRequest < Struct.new( :password_length, :exclude_characters, :exclude_numbers, :exclude_punctuation, :exclude_uppercase, :exclude_lowercase, :include_space, :require_each_included_type) SENSITIVE = [] include Aws::Structure end |
#include_space ⇒ Boolean
Specifies whether to include the space character. If you include this switch, the password can contain space characters.
869 870 871 872 873 874 875 876 877 878 879 880 |
# File 'lib/aws-sdk-secretsmanager/types.rb', line 869 class GetRandomPasswordRequest < Struct.new( :password_length, :exclude_characters, :exclude_numbers, :exclude_punctuation, :exclude_uppercase, :exclude_lowercase, :include_space, :require_each_included_type) SENSITIVE = [] include Aws::Structure end |
#password_length ⇒ Integer
The length of the password. If you don’t include this parameter, the default length is 32 characters.
869 870 871 872 873 874 875 876 877 878 879 880 |
# File 'lib/aws-sdk-secretsmanager/types.rb', line 869 class GetRandomPasswordRequest < Struct.new( :password_length, :exclude_characters, :exclude_numbers, :exclude_punctuation, :exclude_uppercase, :exclude_lowercase, :include_space, :require_each_included_type) SENSITIVE = [] include Aws::Structure end |
#require_each_included_type ⇒ Boolean
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.
869 870 871 872 873 874 875 876 877 878 879 880 |
# File 'lib/aws-sdk-secretsmanager/types.rb', line 869 class GetRandomPasswordRequest < Struct.new( :password_length, :exclude_characters, :exclude_numbers, :exclude_punctuation, :exclude_uppercase, :exclude_lowercase, :include_space, :require_each_included_type) SENSITIVE = [] include Aws::Structure end |