Module Values_0.EbsInstanceBlockDeviceSource

Describes a parameter used to set up an EBS volume in a block device mapping.

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

    The time stamp when the attachment initiated.

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

    Indicates whether the volume is deleted on instance termination.

    *)
  3. status : AttachmentStatus.t option;
    (*

    The attachment state.

    *)
  4. volumeId : String_.t option;
    (*

    The ID of the EBS volume.

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

    The ARN of the Amazon Web Services-managed resource to which the volume is attached.

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

    The ID of the Amazon Web Services account that owns the volume. This parameter is returned only for volumes that are attached to Amazon Web Services-managed resources.

    *)
  7. operator : OperatorResponse.t option;
    (*

    The service provider that manages the EBS volume.

    *)
  8. ebsCardIndex : Integer.t option;
    (*

    The index of the EBS card. Some instance types support multiple EBS cards. The default EBS card index is 0.

    *)
}
Sourceval make : ?attachTime:??? -> ?deleteOnTermination:??? -> ?status:??? -> ?volumeId:??? -> ?associatedResource:??? -> ?volumeOwnerId:??? -> ?operator:??? -> ?ebsCardIndex:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of Integer.t | `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t | `String of String_.t ]) list | `Timestamp of DateTime.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