Module Values.GetPoliciesStatsResponseSource

Returns statistical information about your OpenSearch Serverless access policies, security configurations, and security policies.

Sourcetype nonrec t = {
  1. accessPolicyStats : AccessPolicyStats.t option;
    (*

    Information about the data access policies in your account.

    *)
  2. securityPolicyStats : SecurityPolicyStats.t option;
    (*

    Information about the security policies in your account.

    *)
  3. securityConfigStats : SecurityConfigStats.t option;
    (*

    Information about the security configurations in your account.

    *)
  4. lifecyclePolicyStats : LifecyclePolicyStats.t option;
    (*

    Information about the lifecycle policies in your account.

    *)
  5. totalPolicyCount : Long.t option;
    (*

    The total number of OpenSearch Serverless security policies and configurations in your account.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalServerException of InternalServerException.t
  2. | `Unknown_operation_error of string * string option
]
Sourceval make : ?accessPolicyStats:??? -> ?securityPolicyStats:??? -> ?securityConfigStats:??? -> ?lifecyclePolicyStats:??? -> ?totalPolicyCount:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalServerException of InternalServerException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalServerException of InternalServerException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.t | `Structure of (string * [> `Long of Long.t ]) list ]) 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