Module Values.PermissionSetSource

An entity that contains IAM policies.

Sourcetype nonrec t = {
  1. name : PermissionSetName.t option;
    (*

    The name of the permission set.

    *)
  2. permissionSetArn : PermissionSetArn.t option;
    (*

    The ARN of the permission set. For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon Web Services General Reference.

    *)
  3. description : PermissionSetDescription.t option;
    (*

    The description of the PermissionSet.

    *)
  4. createdDate : Date.t option;
    (*

    The date that the permission set was created.

    *)
  5. sessionDuration : Duration.t option;
    (*

    The length of time that the application user sessions are valid for in the ISO-8601 standard.

    *)
  6. relayState : RelayState.t option;
    (*

    Used to redirect users within the application during the federation authentication process.

    *)
}
Sourceval make : ?name:??? -> ?permissionSetArn:??? -> ?description:??? -> ?createdDate:??? -> ?sessionDuration:??? -> ?relayState:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of PermissionSetName.t | `Timestamp of Date.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