Module Values.DirectConnectGatewayAttachmentSource

Information about an attachment between a Direct Connect gateway and a virtual interface.

Sourcetype nonrec t = {
  1. directConnectGatewayId : DirectConnectGatewayId.t option;
    (*

    The ID of the Direct Connect gateway.

    *)
  2. virtualInterfaceId : VirtualInterfaceId.t option;
    (*

    The ID of the virtual interface.

    *)
  3. virtualInterfaceRegion : VirtualInterfaceRegion.t option;
    (*

    The Amazon Web Services Region where the virtual interface is located.

    *)
  4. virtualInterfaceOwnerAccount : OwnerAccount.t option;
    (*

    The ID of the Amazon Web Services account that owns the virtual interface.

    *)
  5. attachmentState : DirectConnectGatewayAttachmentState.t option;
    (*

    The state of the attachment. The following are the possible values: attaching: The initial state after a virtual interface is created using the Direct Connect gateway. attached: The Direct Connect gateway and virtual interface are attached and ready to pass traffic. detaching: The initial state after calling DeleteVirtualInterface. detached: The virtual interface is detached from the Direct Connect gateway. Traffic flow between the Direct Connect gateway and virtual interface is stopped.

    *)
  6. attachmentType : DirectConnectGatewayAttachmentType.t option;
    (*

    The type of attachment.

    *)
  7. stateChangeError : StateChangeError.t option;
    (*

    The error message if the state of an object failed to advance.

    *)
}
Sourceval make : ?directConnectGatewayId:??? -> ?virtualInterfaceId:??? -> ?virtualInterfaceRegion:??? -> ?virtualInterfaceOwnerAccount:??? -> ?attachmentState:??? -> ?attachmentType:??? -> ?stateChangeError:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DirectConnectGatewayId.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