Module Values_1.LaunchTemplateBlockDeviceMappingRequestSource

Describes a block device mapping.

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

    The device name (for example, /dev/sdh or xvdh).

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

    The virtual device name (ephemeralN). Instance store volumes are numbered starting from 0. An instance type with 2 available instance store volumes can specify mappings for ephemeral0 and ephemeral1. The number of available instance store volumes depends on the instance type. After you connect to the instance, you must mount the volume.

    *)
  3. ebs : LaunchTemplateEbsBlockDeviceRequest.t option;
    (*

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

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

    To omit the device from the block device mapping, specify an empty string.

    *)
}
Sourceval make : ?deviceName:??? -> ?virtualName:??? -> ?ebs:??? -> ?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 | `Enum of string | `Integer of Values_0.Integer.t | `String of Values_0.KmsKeyId.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