Module Values.AwsElasticBeanstalkEnvironmentOptionSettingSource

A configuration option setting for the environment.

Sourcetype nonrec t = {
  1. namespace : NonEmptyString.t option;
    (*

    The type of resource that the configuration option is associated with.

    *)
  2. optionName : NonEmptyString.t option;
    (*

    The name of the option.

    *)
  3. resourceName : NonEmptyString.t option;
    (*

    The name of the resource.

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

    The value of the configuration setting.

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