Module Values.OptionSpecificationSource

A specification identifying an individual configuration option.

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

    A unique resource name for a time-based scaling configuration option.

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

    A unique namespace identifying the option's associated AWS resource.

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

    The name of the configuration option.

    *)
}
Sourceval make : ?resourceName:??? -> ?namespace:??? -> ?optionName:??? -> 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