Module Values.ProjectPolicySource

Describes a project policy in the response from ListProjectPolicies.

Sourcetype nonrec t = {
  1. projectArn : ProjectArn.t option;
    (*

    The Amazon Resource Name (ARN) of the project to which the project policy is attached.

    *)
  2. policyName : ProjectPolicyName.t option;
    (*

    The name of the project policy.

    *)
  3. policyRevisionId : ProjectPolicyRevisionId.t option;
    (*

    The revision ID of the project policy.

    *)
  4. policyDocument : ProjectPolicyDocument.t option;
    (*

    The JSON document for the project policy.

    *)
  5. creationTimestamp : DateTime.t option;
    (*

    The Unix datetime for the creation of the project policy.

    *)
  6. lastUpdatedTimestamp : DateTime.t option;
    (*

    The Unix datetime for when the project policy was last updated.

    *)
}
Sourceval make : ?projectArn:??? -> ?policyName:??? -> ?policyRevisionId:??? -> ?policyDocument:??? -> ?creationTimestamp:??? -> ?lastUpdatedTimestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ProjectArn.t | `Timestamp of DateTime.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