Module Values.ServiceObservabilityConfigurationSource

Describes the observability configuration of an App Runner service. These are additional observability features, like tracing, that you choose to enable. They're configured in a separate resource that you associate with your service.

Sourcetype nonrec t = {
  1. observabilityEnabled : Boolean.t;
    (*

    When true, an observability configuration resource is associated with the service, and an ObservabilityConfigurationArn is specified.

    *)
  2. observabilityConfigurationArn : AppRunnerResourceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the observability configuration that is associated with the service. Specified only when ObservabilityEnabled is true. Specify an ARN with a name and a revision number to associate that revision. For example: arn:aws:apprunner:us-east-1:123456789012:observabilityconfiguration/xray-tracing/3 Specify just the name to associate the latest revision. For example: arn:aws:apprunner:us-east-1:123456789012:observabilityconfiguration/xray-tracing

    *)
}
Sourceval context_ : string
Sourceval make : ?observabilityConfigurationArn:??? -> observabilityEnabled:Boolean.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of AppRunnerResourceArn.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