Module Values.VolumeDetailSource

Contains EBS volume details.

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

    EBS volume ARN information.

    *)
  2. volumeType : String_.t option;
    (*

    The EBS volume type.

    *)
  3. deviceName : String_.t option;
    (*

    The device name for the EBS volume.

    *)
  4. volumeSizeInGB : Integer.t option;
    (*

    EBS volume size in GB.

    *)
  5. encryptionType : String_.t option;
    (*

    EBS volume encryption type.

    *)
  6. snapshotArn : String_.t option;
    (*

    Snapshot ARN of the EBS volume.

    *)
  7. kmsKeyArn : String_.t option;
    (*

    KMS key ARN used to encrypt the EBS volume.

    *)
}
Sourceval make : ?volumeArn:??? -> ?volumeType:??? -> ?deviceName:??? -> ?volumeSizeInGB:??? -> ?encryptionType:??? -> ?snapshotArn:??? -> ?kmsKeyArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of String_.t ]) 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