Module Values.DescribeConfigurationOptionsMessageSource

Result message containing a list of application version descriptions.

Sourcetype nonrec t = {
  1. applicationName : ApplicationName.t option;
    (*

    The name of the application associated with the configuration template or environment. Only needed if you want to describe the configuration options associated with either the configuration template or environment.

    *)
  2. templateName : ConfigurationTemplateName.t option;
    (*

    The name of the configuration template whose configuration options you want to describe.

    *)
  3. environmentName : EnvironmentName.t option;
    (*

    The name of the environment whose configuration options you want to describe.

    *)
  4. solutionStackName : SolutionStackName.t option;
    (*

    The name of the solution stack whose configuration options you want to describe.

    *)
  5. platformArn : PlatformArn.t option;
    (*

    The ARN of the custom platform.

    *)
  6. options : OptionsSpecifierList.t option;
    (*

    If specified, restricts the descriptions to only the specified options.

    *)
}
Sourceval make : ?applicationName:??? -> ?templateName:??? -> ?environmentName:??? -> ?solutionStackName:??? -> ?platformArn:??? -> ?options:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of ResourceName.t ]) list ] list | `String of ApplicationName.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