Module Values.PermissionSetProvisioningStatusSource

A structure that is used to provide the status of the provisioning operation for a specified permission set.

Sourcetype nonrec t = {
  1. status : StatusValues.t option;
    (*

    The status of the permission set provisioning process.

    *)
  2. requestId : UUId.t option;
    (*

    The identifier for tracking the request operation that is generated by the universally unique identifier (UUID) workflow.

    *)
  3. accountId : AccountId.t option;
    (*

    The identifier of the Amazon Web Services account from which to list the assignments.

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

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

    *)
  5. failureReason : Reason.t option;
    (*

    The message that contains an error or exception in case of an operation failure.

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

    The date that the permission set was created.

    *)
}
Sourceval make : ?status:??? -> ?requestId:??? -> ?accountId:??? -> ?permissionSetArn:??? -> ?failureReason:??? -> ?createdDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of UUId.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