Module Values.DescribeConfigurationTemplatesRequestSource

Use this operation to return the valid and default values that are used when creating delivery sources, delivery destinations, and deliveries. For more information about deliveries, see CreateDelivery.

Sourcetype nonrec t = {
  1. service : Service.t option;
    (*

    Use this parameter to filter the response to include only the configuration templates that apply to the Amazon Web Services service that you specify here.

    *)
  2. logTypes : LogTypes.t option;
    (*

    Use this parameter to filter the response to include only the configuration templates that apply to the log types that you specify here.

    *)
  3. resourceTypes : ResourceTypes.t option;
    (*

    Use this parameter to filter the response to include only the configuration templates that apply to the resource types that you specify here.

    *)
  4. deliveryDestinationTypes : DeliveryDestinationTypes.t option;
    (*

    Use this parameter to filter the response to include only the configuration templates that apply to the delivery destination types that you specify here.

    *)
  5. nextToken : NextToken.t option;
  6. limit : DescribeLimit.t option;
    (*

    Use this parameter to limit the number of configuration templates that are returned in the response.

    *)
}
Sourceval make : ?service:??? -> ?logTypes:??? -> ?resourceTypes:??? -> ?deliveryDestinationTypes:??? -> ?nextToken:??? -> ?limit:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of DescribeLimit.t | `List of [> `Enum of string | `String of LogType.t ] list | `String of Service.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