Module Values_0.LaunchTemplateBlockDeviceMappingSource

Describes a block device mapping.

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

    The device name.

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

    The virtual device name (ephemeralN).

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

    Information about the block device for an EBS volume.

    *)
  4. noDevice : 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 String_.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of Integer.t | `String of 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