Class: Aws::Wickr::Types::PasswordRequirements

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb

Overview

Defines password complexity requirements for users in a security group, including minimum length and character type requirements.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#lowercaseInteger

The minimum number of lowercase letters required in passwords.

Returns:

  • (Integer)


2472
2473
2474
2475
2476
2477
2478
2479
2480
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 2472

class PasswordRequirements < Struct.new(
  :lowercase,
  :min_length,
  :numbers,
  :symbols,
  :uppercase)
  SENSITIVE = []
  include Aws::Structure
end

#min_lengthInteger

The minimum password length in characters.

Returns:

  • (Integer)


2472
2473
2474
2475
2476
2477
2478
2479
2480
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 2472

class PasswordRequirements < Struct.new(
  :lowercase,
  :min_length,
  :numbers,
  :symbols,
  :uppercase)
  SENSITIVE = []
  include Aws::Structure
end

#numbersInteger

The minimum number of numeric characters required in passwords.

Returns:

  • (Integer)


2472
2473
2474
2475
2476
2477
2478
2479
2480
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 2472

class PasswordRequirements < Struct.new(
  :lowercase,
  :min_length,
  :numbers,
  :symbols,
  :uppercase)
  SENSITIVE = []
  include Aws::Structure
end

#symbolsInteger

The minimum number of special symbol characters required in passwords.

Returns:

  • (Integer)


2472
2473
2474
2475
2476
2477
2478
2479
2480
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 2472

class PasswordRequirements < Struct.new(
  :lowercase,
  :min_length,
  :numbers,
  :symbols,
  :uppercase)
  SENSITIVE = []
  include Aws::Structure
end

#uppercaseInteger

The minimum number of uppercase letters required in passwords.

Returns:

  • (Integer)


2472
2473
2474
2475
2476
2477
2478
2479
2480
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 2472

class PasswordRequirements < Struct.new(
  :lowercase,
  :min_length,
  :numbers,
  :symbols,
  :uppercase)
  SENSITIVE = []
  include Aws::Structure
end