Module Values.CreateRenewalInputSource

Creates a renewal contract for the specified Outpost.

Sourcetype nonrec t = {
  1. paymentOption : PaymentOption.t;
    (*

    The payment option.

    *)
  2. paymentTerm : PaymentTerm.t;
    (*

    The payment term.

    *)
  3. outpostIdentifier : OutpostIdentifier.t;
    (*

    The ID or ARN of the Outpost.

    *)
  4. clientToken : AutoFillIdempotencyToken.t option;
    (*

    A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> paymentOption:PaymentOption.t -> paymentTerm:PaymentTerm.t -> outpostIdentifier:OutpostIdentifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of OutpostIdentifier.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