Module Values.DescribeLaunchConfigurationTemplatesRequestSource

Lists all Launch Configuration Templates, filtered by Launch Configuration Template IDs

Sourcetype nonrec t = {
  1. launchConfigurationTemplateIDs : LaunchConfigurationTemplateIDs.t option;
    (*

    Request to filter Launch Configuration Templates list by Launch Configuration Template ID.

    *)
  2. maxResults : MaxResultsType.t option;
    (*

    Maximum results to be returned in DescribeLaunchConfigurationTemplates.

    *)
  3. nextToken : PaginationToken.t option;
    (*

    The token of the next Launch Configuration Template to retrieve.

    *)
}
Sourceval make : ?launchConfigurationTemplateIDs:??? -> ?maxResults:??? -> ?nextToken:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResultsType.t | `List of [> `String of LaunchConfigurationTemplateID.t ] list | `String of PaginationToken.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