Interface CfnServicePropsMixin.IServiceObservabilityConfigurationProperty
Describes the observability configuration of an AWS App Runner service.
Namespace: Amazon.CDK.Mixins.Preview.AWS.AppRunner.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnServicePropsMixin.IServiceObservabilityConfigurationProperty
Syntax (vb)
Public Interface CfnServicePropsMixin.IServiceObservabilityConfigurationProperty
Remarks
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.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.AppRunner.Mixins;
var serviceObservabilityConfigurationProperty = new ServiceObservabilityConfigurationProperty {
ObservabilityConfigurationArn = "observabilityConfigurationArn",
ObservabilityEnabled = false
};
Synopsis
Properties
| ObservabilityConfigurationArn | The Amazon Resource Name (ARN) of the observability configuration that is associated with the service. |
| ObservabilityEnabled | When |
Properties
ObservabilityConfigurationArn
The Amazon Resource Name (ARN) of the observability configuration that is associated with the service.
string? ObservabilityConfigurationArn { get; }
Property Value
Remarks
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
When true , an observability configuration resource is associated with the service, and an ObservabilityConfigurationArn is specified.
object? ObservabilityEnabled { get; }