Module Values.CreateCapacityReservationInputSource

Creates a capacity reservation with the specified name and number of requested data processing units.

Sourcetype nonrec t = {
  1. targetDpus : TargetDpusInteger.t;
    (*

    The number of requested data processing units.

    *)
  2. name : CapacityReservationName.t;
    (*

    The name of the capacity reservation to create.

    *)
  3. tags : TagList.t option;
    (*

    The tags for the capacity reservation.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> targetDpus:TargetDpusInteger.t -> name:CapacityReservationName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of TargetDpusInteger.t | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of CapacityReservationName.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