Module Values.DirectConnectGatewaySource

Information about a Direct Connect gateway, which enables you to connect virtual interfaces and virtual private gateway or transit gateways.

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

    The ID of the Direct Connect gateway.

    *)
  2. directConnectGatewayName : DirectConnectGatewayName.t option;
    (*

    The name of the Direct Connect gateway.

    *)
  3. amazonSideAsn : LongAsn.t option;
    (*

    The autonomous system number (AS) for the Amazon side of the connection.

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

    The ID of the Amazon Web Services account that owns the Direct Connect gateway.

    *)
  5. directConnectGatewayState : DirectConnectGatewayState.t option;
    (*

    The state of the Direct Connect gateway. The following are the possible values: pending: The initial state after calling CreateDirectConnectGateway. available: The Direct Connect gateway is ready for use. deleting: The initial state after calling DeleteDirectConnectGateway. deleted: The Direct Connect gateway is deleted and cannot pass traffic.

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

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

    *)
  7. tags : TagList.t option;
    (*

    Information about a tag.

    *)
}
Sourceval make : ?directConnectGatewayId:??? -> ?directConnectGatewayName:??? -> ?amazonSideAsn:??? -> ?ownerAccount:??? -> ?directConnectGatewayState:??? -> ?stateChangeError:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `Long of LongAsn.t | `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