Module Values.TelemetryRuleSummarySource

A summary of a telemetry rule's key properties.

Sourcetype nonrec t = {
  1. ruleName : RuleName.t option;
    (*

    The name of the telemetry rule.

    *)
  2. ruleArn : ResourceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the telemetry rule.

    *)
  3. createdTimeStamp : Long.t option;
    (*

    The timestamp when the telemetry rule was created.

    *)
  4. lastUpdateTimeStamp : Long.t option;
    (*

    The timestamp when the telemetry rule was last modified.

    *)
  5. resourceType : ResourceType.t option;
    (*

    The type of Amazon Web Services resource the rule applies to.

    *)
  6. telemetryType : TelemetryType.t option;
    (*

    The type of telemetry (Logs, Metrics, or Traces) the rule configures.

    *)
  7. telemetrySourceTypes : TelemetrySourceTypes.t option;
    (*

    The types of telemetry sources configured for this rule, such as VPC Flow Logs or EKS audit logs. TelemetrySourceTypes must be correlated with the specific resource type.

    *)
}
Sourceval make : ?ruleName:??? -> ?ruleArn:??? -> ?createdTimeStamp:??? -> ?lastUpdateTimeStamp:??? -> ?resourceType:??? -> ?telemetryType:??? -> ?telemetrySourceTypes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `Long of Long.t | `String of RuleName.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