Module Values.AwsEc2NetworkInterfaceAttachmentSource

Information about the network interface attachment.

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

    Indicates when the attachment initiated. For more information about the validation and formatting of timestamp fields in Security Hub CSPM, see Timestamps.

    *)
  2. attachmentId : NonEmptyString.t option;
    (*

    The identifier of the network interface attachment

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

    Indicates whether the network interface is deleted when the instance is terminated.

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

    The device index of the network interface attachment on the instance.

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

    The ID of the instance.

    *)
  6. instanceOwnerId : NonEmptyString.t option;
    (*

    The Amazon Web Services account ID of the owner of the instance.

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

    The attachment state. Valid values: attaching | attached | detaching | detached

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