Module Values.PasswordPolicySource

Contains information about the account password policy. This data type is used as a response element in the GetAccountPasswordPolicy operation.

Sourcetype nonrec t = {
  1. minimumPasswordLength : MinimumPasswordLengthType.t option;
    (*

    Minimum length to require for IAM user passwords.

    *)
  2. requireSymbols : BooleanType.t option;
    (*

    Specifies whether IAM user passwords must contain at least one of the following symbols: ! @ # $ % ^ & * ( ) _ + - = [ ] { } | '

    *)
  3. requireNumbers : BooleanType.t option;
    (*

    Specifies whether IAM user passwords must contain at least one numeric character (0 to 9).

    *)
  4. requireUppercaseCharacters : BooleanType.t option;
    (*

    Specifies whether IAM user passwords must contain at least one uppercase character (A to Z).

    *)
  5. requireLowercaseCharacters : BooleanType.t option;
    (*

    Specifies whether IAM user passwords must contain at least one lowercase character (a to z).

    *)
  6. allowUsersToChangePassword : BooleanType.t option;
    (*

    Specifies whether IAM users are allowed to change their own password. Gives IAM users permissions to iam:ChangePassword for only their user and to the iam:GetAccountPasswordPolicy action. This option does not attach a permissions policy to each user, rather the permissions are applied at the account-level for all users by IAM.

    *)
  7. expirePasswords : BooleanType.t option;
    (*

    Indicates whether passwords in the account expire. Returns true if MaxPasswordAge contains a value greater than 0. Returns false if MaxPasswordAge is 0 or not present.

    *)
  8. maxPasswordAge : MaxPasswordAgeType.t option;
    (*

    The number of days that an IAM user password is valid.

    *)
  9. passwordReusePrevention : PasswordReusePreventionType.t option;
    (*

    Specifies the number of previous passwords that IAM users are prevented from reusing.

    *)
  10. hardExpiry : BooleanObjectType.t option;
    (*

    Specifies whether IAM users are prevented from setting a new password via the Amazon Web Services Management Console after their password has expired. The IAM user cannot access the console until an administrator resets the password. IAM users with iam:ChangePassword permission and active access keys can reset their own expired console password using the CLI or API.

    *)
}
Sourceval make : ?minimumPasswordLength:??? -> ?requireSymbols:??? -> ?requireNumbers:??? -> ?requireUppercaseCharacters:??? -> ?requireLowercaseCharacters:??? -> ?allowUsersToChangePassword:??? -> ?expirePasswords:??? -> ?maxPasswordAge:??? -> ?passwordReusePrevention:??? -> ?hardExpiry:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanType.t | `Integer of MinimumPasswordLengthType.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t