Module Values.JobRunExecutionIamPolicySource

Optional IAM policy. The resulting job IAM role permissions will be an intersection of the policies passed and the policy associated with your job execution role.

Sourcetype nonrec t = {
  1. policy : PolicyDocument.t option;
    (*

    An IAM inline policy to use as an execution IAM policy.

    *)
  2. policyArns : PolicyArnList.t option;
    (*

    A list of Amazon Resource Names (ARNs) to use as an execution IAM policy.

    *)
}
Sourceval make : ?policy:??? -> ?policyArns:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of Arn.t ] list | `String of PolicyDocument.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