Module Values.ResourcePolicySource

The resource policy that allows Incident Manager to perform actions on resources on your behalf.

Sourcetype nonrec t = {
  1. policyDocument : Policy.t option;
    (*

    The JSON blob that describes the policy.

    *)
  2. policyId : PolicyId.t option;
    (*

    The ID of the resource policy.

    *)
  3. ramResourceShareRegion : String_.t option;
    (*

    The Amazon Web Services Region that policy allows resources to be used in.

    *)
}
Sourceval make : ?policyDocument:??? -> ?policyId:??? -> ?ramResourceShareRegion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Policy.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