ServiceObservabilityConfiguration constructor

const ServiceObservabilityConfiguration({
  1. Input<String?>? observabilityConfigurationArn,
  2. required Input<bool> observabilityEnabled,
})

Creates a new ServiceObservabilityConfiguration. observabilityConfigurationArn ARN of the observability configuration that is associated with the service. Specified only when observabilityEnabled is true. observabilityEnabled When true, an observability configuration resource is associated with the service.

Implementation

const ServiceObservabilityConfiguration({
  this.observabilityConfigurationArn,
  required this.observabilityEnabled,
});