Module Values.AwsAutoScalingLaunchConfigurationBlockDeviceMappingsDetailsSource

A block device for the instance.

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

    The device name that is exposed to the EC2 instance. For example, /dev/sdh or xvdh.

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

    Parameters that are used to automatically set up Amazon EBS volumes when an instance is launched.

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

    Whether to suppress the device that is included in the block device mapping of the Amazon Machine Image (AMI). If NoDevice is true, then you cannot specify Ebs.>

    *)
  4. virtualName : NonEmptyString.t option;
    (*

    The name of the virtual device (for example, ephemeral0). You can provide either VirtualName or Ebs, but not both.

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