Module Values_2.SubnetCidrReservationSource

Describes a subnet CIDR reservation.

Sourcetype nonrec t = {
  1. subnetCidrReservationId : Values_1.SubnetCidrReservationId.t option;
    (*

    The ID of the subnet CIDR reservation.

    *)
  2. subnetId : Values_0.SubnetId.t option;
    (*

    The ID of the subnet.

    *)
  3. cidr : Values_0.String_.t option;
    (*

    The CIDR that has been reserved.

    *)
  4. reservationType : Values_1.SubnetCidrReservationType.t option;
    (*

    The type of reservation.

    *)
  5. ownerId : Values_0.String_.t option;
    (*

    The ID of the account that owns the subnet CIDR reservation.

    *)
  6. description : Values_0.String_.t option;
    (*

    The description assigned to the subnet CIDR reservation.

    *)
  7. tags : Values_0.TagList.t option;
    (*

    The tags assigned to the subnet CIDR reservation.

    *)
}
Sourceval make : ?subnetCidrReservationId:??? -> ?subnetId:??? -> ?cidr:??? -> ?reservationType:??? -> ?ownerId:??? -> ?description:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of string ]) list ] list | `String of Values_1.SubnetCidrReservationId.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