Module Values.MeshDataSource

An object that represents a service mesh returned by a describe operation.

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

    The name of the service mesh.

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

    The associated metadata for the service mesh.

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

    The associated specification for the service mesh.

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

    The status of the service mesh.

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