Module Values.ServiceEntitySource

A structure that contains identifying information for a service entity.

Sourcetype nonrec t = {
  1. type_ : String_.t option;
    (*

    The type of the service entity.

    *)
  2. name : String_.t option;
    (*

    The name of the service.

    *)
  3. environment : String_.t option;
    (*

    The environment where the service is deployed.

    *)
  4. awsAccountId : String_.t option;
    (*

    The Amazon Web Services account ID where the service is located. Provide this value only for cross-account access.

    *)
}
Sourceval make : ?type_:??? -> ?name:??? -> ?environment:??? -> ?awsAccountId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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