Module Values.ConfigurationOptionSettingSource

A specification identifying an individual configuration option along with its current value. For a list of possible namespaces and option values, see Option Values in the AWS Elastic Beanstalk Developer Guide.

Sourcetype nonrec t = {
  1. resourceName : ResourceName.t option;
    (*

    A unique resource name for the option setting. Use it for a time–based scaling configuration option.

    *)
  2. namespace : OptionNamespace.t option;
    (*

    A unique namespace that identifies the option's associated AWS resource.

    *)
  3. optionName : ConfigurationOptionName.t option;
    (*

    The name of the configuration option.

    *)
  4. value : ConfigurationOptionValue.t option;
    (*

    The current value for the configuration option.

    *)
}
Sourceval make : ?resourceName:??? -> ?namespace:??? -> ?optionName:??? -> ?value:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ResourceName.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