Module Values.InsightImpactGraphServiceSource

Information about an application that processed requests, users that made requests, or downstream services, resources, and applications that an application used.

Sourcetype nonrec t = {
  1. referenceId : NullableInteger.t option;
    (*

    Identifier for the service. Unique within the service map.

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

    Identifier for the service. Unique within the service map. Amazon Web Services Resource - The type of an Amazon Web Services resource. For example, AWS::EC2::Instance for an application running on Amazon EC2 or AWS::DynamoDB::Table for an Amazon DynamoDB table that the application used. Amazon Web Services Service - The type of an Amazon Web Services service. For example, AWS::DynamoDB for downstream calls to Amazon DynamoDB that didn't target a specific table. Amazon Web Services Service - The type of an Amazon Web Services service. For example, AWS::DynamoDB for downstream calls to Amazon DynamoDB that didn't target a specific table. remote - A downstream service of indeterminate type.

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

    The canonical name of the service.

    *)
  4. names : ServiceNames.t option;
    (*

    A list of names for the service, including the canonical name.

    *)
  5. accountId : String_.t option;
    (*

    Identifier of the Amazon Web Services account in which the service runs.

    *)
  6. edges : InsightImpactGraphEdgeList.t option;
    (*

    Connections to downstream services.

    *)
}
Sourceval make : ?referenceId:??? -> ?type_:??? -> ?name:??? -> ?names:??? -> ?accountId:??? -> ?edges:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of NullableInteger.t | `List of [> `String of String_.t | `Structure of (string * [> `Integer of NullableInteger.t ]) list ] list | `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