Module Values.PurchaseOfferingRequestSource

Submits a request to purchase an offering. If you already have an active reservation, you can't purchase another offering.

Sourcetype nonrec t = {
  1. offeringArn : String_.t;
    (*

    The Amazon Resource Name (ARN) of the offering.

    *)
  2. reservationName : String_.t;
    (*

    The name that you want to use for the reservation.

    *)
  3. start : String_.t;
    (*

    The date and time that you want the reservation to begin, in Coordinated Universal Time (UTC). You can specify any date and time between 12:00am on the first day of the current month to the current time on today's date, inclusive. Specify the start in a 24-hour notation. Use the following format: YYYY-MM-DDTHH:mm:SSZ, where T and Z are literal characters. For example, to specify 11:30pm on March 5, 2020, enter 2020-03-05T23:30:00Z.

    *)
}
Sourceval context_ : string
Sourceval make : offeringArn:String_.t -> reservationName:String_.t -> start:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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