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

ObservabilityConfiguration

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

Describes an App Runner observability configuration resource. Multiple revisions of a configuration have the same ObservabilityConfigurationName and different ObservabilityConfigurationRevision values.

The resource is designed to configure multiple features (currently one feature, tracing). This type contains optional members that describe the configuration of these features (currently one member, TraceConfiguration). If a feature member isn't specified, the feature isn't enabled.

interface ObservabilityConfiguration {
CreatedAt?: Date | number | null;
DeletedAt?: Date | number | null;
Latest?: boolean | null;
ObservabilityConfigurationArn?: string | null;
ObservabilityConfigurationName?: string | null;
ObservabilityConfigurationRevision?: number | null;
TraceConfiguration?: TraceConfiguration | null;
}

§Properties

§
CreatedAt?: Date | number | null
[src]

The time when the observability configuration was created. It's in Unix time stamp format.

§
DeletedAt?: Date | number | null
[src]

The time when the observability configuration was deleted. It's in Unix time stamp format.

§
Latest?: boolean | null
[src]

It's set to true for the configuration with the highest Revision among all configurations that share the same ObservabilityConfigurationName. It's set to false otherwise.

§
ObservabilityConfigurationArn?: string | null
[src]

The Amazon Resource Name (ARN) of this observability configuration.

§
ObservabilityConfigurationName?: string | null
[src]

The customer-provided observability configuration name. It can be used in multiple revisions of a configuration.

§
ObservabilityConfigurationRevision?: number | null
[src]

The revision of this observability configuration. It's unique among all the active configurations ("Status": "ACTIVE") that share the same ObservabilityConfigurationName.

§

The current state of the observability configuration. If the status of a configuration revision is INACTIVE, it was deleted and can't be used. Inactive configuration revisions are permanently removed some time after they are deleted.

§
TraceConfiguration?: TraceConfiguration | null
[src]

The configuration of the tracing feature within this observability configuration. If not specified, tracing isn't enabled.