Module Values.AccessPolicySummarySource

Contains an access policy that defines an identity's access to an IoT SiteWise Monitor resource.

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

    The ID of the access policy.

    *)
  2. identity : Identity.t option;
    (*

    The identity (an IAM Identity Center user, an IAM Identity Center group, or an IAM user).

    *)
  3. resource : Resource.t option;
    (*

    The IoT SiteWise Monitor resource (a portal or project).

    *)
  4. permission : Permission.t option;
    (*

    The permissions for the access policy. Note that a project ADMINISTRATOR is also known as a project owner.

    *)
  5. creationDate : Timestamp.t option;
    (*

    The date the access policy was created, in Unix epoch time.

    *)
  6. lastUpdateDate : Timestamp.t option;
    (*

    The date the access policy was last updated, in Unix epoch time.

    *)
}
Sourceval make : ?id:??? -> ?identity:??? -> ?resource:??? -> ?permission:??? -> ?creationDate:??? -> ?lastUpdateDate:??? -> 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 | `Timestamp of Timestamp.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