Module Values_2.InstanceBlockDeviceMappingSpecificationSource

Describes a block device mapping entry.

Sourcetype nonrec t = {
  1. deviceName : Values_0.String_.t option;
    (*

    The device name. For available device names, see Device names for volumes.

    *)
  2. ebs : Values_1.EbsInstanceBlockDeviceSpecification.t option;
    (*

    Parameters used to automatically set up EBS volumes when the instance is launched.

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

    The virtual device name.

    *)
  4. noDevice : Values_0.String_.t option;
    (*

    Suppresses the specified device included in the block device mapping.

    *)
}
Sourceval make : ?deviceName:??? -> ?ebs:??? -> ?virtualName:??? -> ?noDevice:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.String_.t | `Structure of (string * [> `Boolean of Values_0.Boolean.t | `String of Values_0.VolumeId.t ]) list ]) 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