secretsmanager_get_random_password: Generates a random password

View source: R/secretsmanager_operations.R

secretsmanager_get_random_passwordR Documentation

Generates a random password

Description

Generates a random password. We recommend that you specify the maximum length and include every character type that the system you are generating a password for can support.

See https://www.paws-r-sdk.com/docs/secretsmanager_get_random_password/ for full documentation.

Usage

secretsmanager_get_random_password(
  PasswordLength = NULL,
  ExcludeCharacters = NULL,
  ExcludeNumbers = NULL,
  ExcludePunctuation = NULL,
  ExcludeUppercase = NULL,
  ExcludeLowercase = NULL,
  IncludeSpace = NULL,
  RequireEachIncludedType = NULL
)

Arguments

PasswordLength

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

ExcludeCharacters

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

ExcludeNumbers

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

ExcludePunctuation

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

ExcludeUppercase

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

ExcludeLowercase

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

IncludeSpace

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

RequireEachIncludedType

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.


paws.security.identity documentation built on Sept. 12, 2023, 1:10 a.m.