Module Values.AccessSource

Contains information about actions and resources that define permissions to check against a policy.

Sourcetype nonrec t = {
  1. actions : AccessActionsList.t option;
    (*

    A list of actions for the access permissions. Any strings that can be used as an action in an IAM policy can be used in the list of actions to check.

    *)
  2. resources : AccessResourcesList.t option;
    (*

    A list of resources for the access permissions. Any strings that can be used as an Amazon Resource Name (ARN) in an IAM policy can be used in the list of resources to check. You can only use a wildcard in the portion of the ARN that specifies the resource ID.

    *)
}
Sourceval make : ?actions:??? -> ?resources:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of Action.t ] 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