Module Values.AccountPolicySource

A structure that contains information about one CloudWatch Logs account policy.

Sourcetype nonrec t = {
  1. policyName : PolicyName.t option;
    (*

    The name of the account policy.

    *)
  2. policyDocument : AccountPolicyDocument.t option;
    (*

    The policy document for this account policy. The JSON specified in policyDocument can be up to 30,720 characters.

    *)
  3. lastUpdatedTime : Timestamp.t option;
    (*

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

    *)
  4. policyType : PolicyType.t option;
    (*

    The type of policy for this account policy.

    *)
  5. scope : Scope.t option;
    (*

    The scope of the account policy.

    *)
  6. selectionCriteria : SelectionCriteria.t option;
    (*

    The log group selection criteria that is used for this policy.

    *)
  7. accountId : AccountId.t option;
    (*

    The Amazon Web Services account ID that the policy applies to.

    *)
}
Sourceval make : ?policyName:??? -> ?policyDocument:??? -> ?lastUpdatedTime:??? -> ?policyType:??? -> ?scope:??? -> ?selectionCriteria:??? -> ?accountId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of Timestamp.t | `String of PolicyName.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