Module Values.InstanceBlockDeviceMappingSource

Defines block device mappings for the instance used to configure your image.

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

    The device to which these mappings apply.

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

    Use to manage Amazon EBS-specific configuration for this mapping.

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

    Use to manage instance ephemeral devices.

    *)
  4. noDevice : EmptyString.t option;
    (*

    Use to remove a mapping from the base image.

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