Module Values.ObservabilityConfigurationSource

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.

Sourcetype nonrec t = {
  1. observabilityConfigurationArn : AppRunnerResourceArn.t option;
    (*

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

    *)
  2. observabilityConfigurationName : ObservabilityConfigurationName.t option;
    (*

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

    *)
  3. traceConfiguration : TraceConfiguration.t option;
    (*

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

    *)
  4. observabilityConfigurationRevision : Integer.t option;
    (*

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

    *)
  5. latest : Boolean.t option;
    (*

    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.

    *)
  6. status : ObservabilityConfigurationStatus.t option;
    (*

    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.

    *)
  7. createdAt : Timestamp.t option;
    (*

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

    *)
  8. deletedAt : Timestamp.t option;
    (*

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

    *)
}
Sourceval make : ?observabilityConfigurationArn:??? -> ?observabilityConfigurationName:??? -> ?traceConfiguration:??? -> ?observabilityConfigurationRevision:??? -> ?latest:??? -> ?status:??? -> ?createdAt:??? -> ?deletedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of Integer.t | `String of AppRunnerResourceArn.t | `Structure of (string * [> `Enum of string ]) list | `Timestamp of Timestamp.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