Module Values.SecurityConfigSummarySource

A summary of a security configuration for OpenSearch Serverless.

Sourcetype nonrec t = {
  1. id : SecurityConfigId.t option;
    (*

    The unique identifier of the security configuration.

    *)
  2. type_ : SecurityConfigType.t option;
    (*

    The type of security configuration.

    *)
  3. configVersion : PolicyVersion.t option;
    (*

    The version of the security configuration.

    *)
  4. description : ConfigDescription.t option;
    (*

    The description of the security configuration.

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

    The Epoch time when the security configuration was created.

    *)
  6. lastModifiedDate : Long.t option;
    (*

    The timestamp of when the configuration was last modified.

    *)
}
Sourceval make : ?id:??? -> ?type_:??? -> ?configVersion:??? -> ?description:??? -> ?createdDate:??? -> ?lastModifiedDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of Long.t | `String of SecurityConfigId.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