Module Values.AwsEc2VolumeAttachmentSource

An attachment to an Amazon EC2 volume.

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

    The datetime when the attachment initiated.

    *)
  2. deleteOnTermination : Boolean.t option;
    (*

    Whether the EBS volume is deleted when the EC2 instance is terminated.

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

    The identifier of the EC2 instance.

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

    The attachment state of the volume. Valid values are as follows: attaching attached busy detaching detached

    *)
}
Sourceval make : ?attachTime:??? -> ?deleteOnTermination:??? -> ?instanceId:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of NonEmptyString.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