Module Values.IndexPolicySource

This structure contains information about one field index policy in this account.

Sourcetype nonrec t = {
  1. logGroupIdentifier : LogGroupIdentifier.t option;
    (*

    The ARN of the log group that this index policy applies to.

    *)
  2. lastUpdateTime : Timestamp.t option;
    (*

    The date and time that this index policy was most recently updated.

    *)
  3. policyDocument : PolicyDocument.t option;
    (*

    The policy document for this index policy, in JSON format.

    *)
  4. policyName : PolicyName.t option;
    (*

    The name of this policy. Responses about log group-level field index policies don't have this field, because those policies don't have names.

    *)
  5. source : IndexSource.t option;
    (*

    This field indicates whether this is an account-level index policy or an index policy that applies only to a single log group.

    *)
}
Sourceval make : ?logGroupIdentifier:??? -> ?lastUpdateTime:??? -> ?policyDocument:??? -> ?policyName:??? -> ?source:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of Timestamp.t | `String of LogGroupIdentifier.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