Module Values.CreateSubscriptionDefinitionVersionRequestSource

Creates a version of a subscription definition which has already been defined.

Sourcetype nonrec t = {
  1. amznClientToken : string option;
    (*

    A client token used to correlate requests and responses.

    *)
  2. subscriptionDefinitionId : string;
    (*

    The ID of the subscription definition.

    *)
  3. subscriptions : Subscription.t list option;
    (*

    A list of subscriptions.

    *)
}
Sourceval context_ : string
Sourceval make : ?amznClientToken:??? -> ?subscriptions:??? -> subscriptionDefinitionId:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of string ]) list ] list | `String of string ]) 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