Class: Aws::AppRunner::Types::ServiceObservabilityConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppRunner::Types::ServiceObservabilityConfiguration
- Defined in:
- gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#observability_configuration_arn ⇒ String
The Amazon Resource Name (ARN) of the observability configuration that is associated with the service.
-
#observability_enabled ⇒ Boolean
When
true
, an observability configuration resource is associated with the service, and anObservabilityConfigurationArn
is specified.
Instance Attribute Details
#observability_configuration_arn ⇒ String
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
2581 2582 2583 2584 2585 2586 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 2581 class ServiceObservabilityConfiguration < Struct.new( :observability_enabled, :observability_configuration_arn) SENSITIVE = [] include Aws::Structure end |
#observability_enabled ⇒ Boolean
When true
, an observability configuration resource is associated
with the service, and an ObservabilityConfigurationArn
is
specified.
2581 2582 2583 2584 2585 2586 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 2581 class ServiceObservabilityConfiguration < Struct.new( :observability_enabled, :observability_configuration_arn) SENSITIVE = [] include Aws::Structure end |