Module Values.AccountAssignmentOperationStatusSource

The status of the creation or deletion operation of an assignment that a principal needs to access an account.

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. failureReason : Reason.t option;
    (*

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

    *)
  4. targetId : TargetId.t option;
    (*

    TargetID is an Amazon Web Services account identifier, (For example, 123456789012).

    *)
  5. targetType : TargetType.t option;
    (*

    The entity type for which the assignment will be created.

    *)
  6. 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.

    *)
  7. principalType : PrincipalType.t option;
    (*

    The entity type for which the assignment will be created.

    *)
  8. principalId : PrincipalId.t option;
    (*

    An identifier for an object in IAM Identity Center, such as a user or group. PrincipalIds are GUIDs (For example, f81d4fae-7dec-11d0-a765-00a0c91e6bf6). For more information about PrincipalIds in IAM Identity Center, see the IAM Identity Center Identity Store API Reference.

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

    The date that the permission set was created.

    *)
}
Sourceval make : ?status:??? -> ?requestId:??? -> ?failureReason:??? -> ?targetId:??? -> ?targetType:??? -> ?permissionSetArn:??? -> ?principalType:??? -> ?principalId:??? -> ?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