Module Values_2.RouteServerEndpointSource

Describes a route server endpoint and its properties. A route server endpoint is an Amazon Web Services-managed component inside a subnet that facilitates BGP (Border Gateway Protocol) connections between your route server and your BGP peers.

Sourcetype nonrec t = {
  1. routeServerId : Values_1.RouteServerId.t option;
    (*

    The ID of the route server associated with this endpoint.

    *)
  2. routeServerEndpointId : Values_1.RouteServerEndpointId.t option;
    (*

    The unique identifier of the route server endpoint.

    *)
  3. vpcId : Values_0.VpcId.t option;
    (*

    The ID of the VPC containing the endpoint.

    *)
  4. subnetId : Values_0.SubnetId.t option;
    (*

    The ID of the subnet to place the route server endpoint into.

    *)
  5. eniId : Values_0.NetworkInterfaceId.t option;
    (*

    The ID of the Elastic network interface for the endpoint.

    *)
  6. eniAddress : Values_0.String_.t option;
    (*

    The IP address of the Elastic network interface for the endpoint.

    *)
  7. state : Values_1.RouteServerEndpointState.t option;
    (*

    The current state of the route server endpoint.

    *)
  8. failureReason : Values_0.String_.t option;
    (*

    The reason for any failure in endpoint creation or operation.

    *)
  9. tags : Values_0.TagList.t option;
    (*

    Any tags assigned to the route server endpoint.

    *)
}
Sourceval make : ?routeServerId:??? -> ?routeServerEndpointId:??? -> ?vpcId:??? -> ?subnetId:??? -> ?eniId:??? -> ?eniAddress:??? -> ?state:??? -> ?failureReason:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of string ]) list ] list | `String of Values_1.RouteServerId.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