Module Values.AwsEc2LaunchTemplateDataBlockDeviceMappingSetDetailsSource

Information about a block device mapping for an Amazon Elastic Compute Cloud (Amazon EC2) launch template.

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

    The device name.

    *)
  2. ebs : AwsEc2LaunchTemplateDataBlockDeviceMappingSetEbsDetails.t option;
    (*

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

    *)
  3. noDevice : NonEmptyString.t option;
    (*

    Omits the device from the block device mapping when an empty string is specified.

    *)
  4. virtualName : NonEmptyString.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.

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