Module Values.EbsConfigurationSource

The Amazon EBS configuration of a cluster instance.

Sourcetype nonrec t = {
  1. ebsBlockDeviceConfigs : EbsBlockDeviceConfigList.t option;
    (*

    An array of Amazon EBS volume specifications attached to a cluster instance.

    *)
  2. ebsOptimized : BooleanObject.t option;
    (*

    Indicates whether an Amazon EBS volume is EBS-optimized. The default is false. You should explicitly set this value to true to enable the Amazon EBS-optimized setting for an EC2 instance.

    *)
}
Sourceval make : ?ebsBlockDeviceConfigs:??? -> ?ebsOptimized:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanObject.t | `List of [> `Structure of (string * [> `Integer of Integer.t | `Structure of (string * [> `Integer of Integer.t | `String of String_.t ]) list ]) list ] 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