Module Values.GatewayRouteDataSource

An object that represents a gateway route returned by a describe operation.

Sourcetype nonrec t = {
  1. gatewayRouteName : ResourceName.t option;
    (*

    The name of the gateway route.

    *)
  2. meshName : ResourceName.t option;
    (*

    The name of the service mesh that the resource resides in.

    *)
  3. metadata : ResourceMetadata.t option;
  4. spec : GatewayRouteSpec.t option;
    (*

    The specifications of the gateway route.

    *)
  5. status : GatewayRouteStatus.t option;
    (*

    The status of the gateway route.

    *)
  6. virtualGatewayName : ResourceName.t option;
    (*

    The virtual gateway that the gateway route is associated with.

    *)
}
Sourceval make : ?gatewayRouteName:??? -> ?meshName:??? -> ?metadata:??? -> ?spec:??? -> ?status:??? -> ?virtualGatewayName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ResourceName.t | `Structure of (string * [> `Enum of string | `Integer of GatewayRoutePriority.t | `Long of Long.t | `String of Arn.t | `Structure of (string * [> `Structure of (string * [> `Enum of string | `Integer of ListenerPort.t | `List of [> `Structure of (string * [> `Boolean of Boolean.t | `String of HeaderName.t | `Structure of (string * [> `String of HeaderMatch.t | `Structure of (string * [> `Long of Long.t ]) list ]) list ]) list ] list | `String of ServiceName.t | `Structure of (string * [> `Integer of ListenerPort.t | `String of ExactHostName.t | `Structure of (string * [> `Enum of string | `String of ResourceName.t ]) list ]) list ]) list ]) list | `Timestamp of Timestamp.t ]) list ]) 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