Show / Hide Table of Contents

Class CfnService.ServiceObservabilityConfigurationProperty

Describes the observability configuration of an AWS App Runner service.

Inheritance
object
CfnService.ServiceObservabilityConfigurationProperty
Implements
CfnService.IServiceObservabilityConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.AppRunner
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnService.ServiceObservabilityConfigurationProperty : CfnService.IServiceObservabilityConfigurationProperty
Syntax (vb)
Public Class CfnService.ServiceObservabilityConfigurationProperty Implements CfnService.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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-serviceobservabilityconfiguration.html

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.AWS.AppRunner;

             var serviceObservabilityConfigurationProperty = new ServiceObservabilityConfigurationProperty {
                 ObservabilityEnabled = false,

                 // the properties below are optional
                 ObservabilityConfigurationArn = "observabilityConfigurationArn"
             };

Synopsis

Constructors

ServiceObservabilityConfigurationProperty()

Describes the observability configuration of an AWS App Runner service.

Properties

ObservabilityConfigurationArn

The Amazon Resource Name (ARN) of the observability configuration that is associated with the service.

ObservabilityEnabled

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

Constructors

ServiceObservabilityConfigurationProperty()

Describes the observability configuration of an AWS App Runner service.

public ServiceObservabilityConfigurationProperty()
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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-serviceobservabilityconfiguration.html

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.AWS.AppRunner;

             var serviceObservabilityConfigurationProperty = new ServiceObservabilityConfigurationProperty {
                 ObservabilityEnabled = false,

                 // the properties below are optional
                 ObservabilityConfigurationArn = "observabilityConfigurationArn"
             };

Properties

ObservabilityConfigurationArn

The Amazon Resource Name (ARN) of the observability configuration that is associated with the service.

public string? ObservabilityConfigurationArn { get; set; }
Property Value

string

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-serviceobservabilityconfiguration.html#cfn-apprunner-service-serviceobservabilityconfiguration-observabilityconfigurationarn

ObservabilityEnabled

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

public object ObservabilityEnabled { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-serviceobservabilityconfiguration.html#cfn-apprunner-service-serviceobservabilityconfiguration-observabilityenabled

Type union: either bool or IResolvable

Implements

CfnService.IServiceObservabilityConfigurationProperty
Back to top Generated by DocFX