interface LoggingDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.APS.Mixins.CfnWorkspacePropsMixin.LoggingDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsaps/mixins#CfnWorkspacePropsMixin_LoggingDestinationProperty |
Java | software.amazon.awscdk.mixins.preview.services.aps.mixins.CfnWorkspacePropsMixin.LoggingDestinationProperty |
Python | aws_cdk.mixins_preview.aws_aps.mixins.CfnWorkspacePropsMixin.LoggingDestinationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_aps » mixins » CfnWorkspacePropsMixin » LoggingDestinationProperty |
The logging destination in an Amazon Managed Service for Prometheus workspace.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as aps_mixins } from '@aws-cdk/mixins-preview/aws-aps';
const loggingDestinationProperty: aps_mixins.CfnWorkspacePropsMixin.LoggingDestinationProperty = {
cloudWatchLogs: {
logGroupArn: 'logGroupArn',
},
filters: {
qspThreshold: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| cloud | IResolvable | Cloud | Configuration details for logging to CloudWatch Logs. |
| filters? | IResolvable | Logging | Filtering criteria that determine which queries are logged. |
cloudWatchLogs?
Type:
IResolvable | Cloud
(optional)
Configuration details for logging to CloudWatch Logs.
filters?
Type:
IResolvable | Logging
(optional)
Filtering criteria that determine which queries are logged.

.NET
Go
Java
Python
TypeScript