Module Values.ApplicationPolicyStatementSource

Policy statement applied to the application.

Sourcetype nonrec t = {
  1. actions : string list;
    (*

    For the list of actions supported for this operation, see Application Permissions.

    *)
  2. principalOrgIDs : string list option;
    (*

    An array of PrinciplalOrgIDs, which corresponds to AWS IAM aws:PrincipalOrgID global condition key.

    *)
  3. principals : string list;
    (*

    An array of AWS account IDs, or * to make the application public.

    *)
  4. statementId : string option;
    (*

    A unique ID for the statement.

    *)
}
Sourceval context_ : string
Sourceval make : ?principalOrgIDs:??? -> ?statementId:??? -> actions:string list -> principals:string list -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of string ] list | `String of string ]) 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