Module Values.VirtualRouterDataSource

An object that represents a virtual router returned by a describe operation.

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

    The name of the service mesh that the virtual router resides in.

    *)
  2. metadata : ResourceMetadata.t option;
    (*

    The associated metadata for the virtual router.

    *)
  3. spec : VirtualRouterSpec.t option;
    (*

    The specifications of the virtual router.

    *)
  4. status : VirtualRouterStatus.t option;
    (*

    The current status of the virtual router.

    *)
  5. virtualRouterName : ResourceName.t option;
    (*

    The name of the virtual router.

    *)
}
Sourceval make : ?meshName:??? -> ?metadata:??? -> ?spec:??? -> ?status:??? -> ?virtualRouterName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ResourceName.t | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `Integer of PortNumber.t ]) list ]) list ] list | `Long of Long.t | `String of Arn.t | `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