Module Values.CreatePermissionSetRequestSource

Creates a permission set within a specified IAM Identity Center instance. To grant users and groups access to Amazon Web Services account resources, use CreateAccountAssignment .

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

    The name of the PermissionSet.

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

    The description of the PermissionSet.

    *)
  3. instanceArn : InstanceArn.t;
    (*

    The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon Web Services General Reference.

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

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

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

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

    *)
  6. tags : TagList.t option;
    (*

    The tags to attach to the new PermissionSet.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?sessionDuration:??? -> ?relayState:??? -> ?tags:??? -> name:PermissionSetName.t -> instanceArn:InstanceArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of PermissionSetName.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