Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ServiceObservabilityConfiguration

import type { ServiceObservabilityConfiguration } from "https://aws-api.deno.dev/v0.4/services/apprunner.ts?docs=full";

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.

interface ServiceObservabilityConfiguration {
ObservabilityConfigurationArn?: string | null;
ObservabilityEnabled: boolean;
}

§Properties

§
ObservabilityConfigurationArn?: string | null
[src]

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

§
ObservabilityEnabled: boolean
[src]

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