Module Values.UpdateAccessPolicyRequestSource

Updates an existing access policy that specifies an identity's access to an IoT SiteWise Monitor portal or project resource.

Sourcetype nonrec t = {
  1. accessPolicyId : ID.t;
    (*

    The ID of the access policy.

    *)
  2. accessPolicyIdentity : Identity.t;
    (*

    The identity for this access policy. Choose an IAM Identity Center user, an IAM Identity Center group, or an IAM user.

    *)
  3. accessPolicyResource : Resource.t;
    (*

    The IoT SiteWise Monitor resource for this access policy. Choose either a portal or a project.

    *)
  4. accessPolicyPermission : Permission.t;
    (*

    The permission level for this access policy. Note that a project ADMINISTRATOR is also known as a project owner.

    *)
  5. clientToken : ClientToken.t option;
    (*

    A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don't reuse this client token if a new idempotent request is required.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> accessPolicyId:ID.t -> accessPolicyIdentity:Identity.t -> accessPolicyResource:Resource.t -> accessPolicyPermission:Permission.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ID.t | `Structure of (string * [> `Structure of (string * [> `String of IdentityId.t ]) list ]) list ]) 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