Module Values_1.ScheduledInstancesBlockDeviceMappingSource

Describes a block device mapping for a Scheduled Instance.

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

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

    *)
  2. ebs : Values_0.ScheduledInstancesEbs.t option;
    (*

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

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

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

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

    The virtual device name (ephemeralN). Instance store volumes are numbered starting from 0. An instance type with two 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. Constraints: For M3 instances, you must specify instance store volumes in the block device mapping for the instance. When you launch an M3 instance, we ignore any instance store volumes specified in the block device mapping for the AMI.

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