Module Values.AccountAssignmentSource

The assignment that indicates a principal's limited access to a specified Amazon Web Services account with a specified permission set. The term principal here refers to a user or group that is defined in IAM Identity Center.

Sourcetype nonrec t = {
  1. accountId : AccountId.t option;
    (*

    The identifier of the Amazon Web Services account.

    *)
  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. principalType : PrincipalType.t option;
    (*

    The entity type for which the assignment will be created.

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

    *)
}
Sourceval make : ?accountId:??? -> ?permissionSetArn:??? -> ?principalType:??? -> ?principalId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AccountId.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