Module Values.AppConfigSource

Configuration settings for an OpenSearch application. For more information, see Using the OpenSearch user interface in Amazon OpenSearch Service.

Sourcetype nonrec t = {
  1. key : AppConfigType.t option;
    (*

    The configuration item to set, such as the admin role for the OpenSearch application.

    *)
  2. value : AppConfigValue.t option;
    (*

    The value assigned to the configuration key, such as an IAM user ARN.

    *)
}
Sourceval make : ?key:??? -> ?value:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AppConfigValue.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