interface QueryLoggingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.APS.Mixins.CfnWorkspacePropsMixin.QueryLoggingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsaps/mixins#CfnWorkspacePropsMixin_QueryLoggingConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.aps.mixins.CfnWorkspacePropsMixin.QueryLoggingConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_aps.mixins.CfnWorkspacePropsMixin.QueryLoggingConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_aps » mixins » CfnWorkspacePropsMixin » QueryLoggingConfigurationProperty |
The query logging configuration 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 queryLoggingConfigurationProperty: aps_mixins.CfnWorkspacePropsMixin.QueryLoggingConfigurationProperty = {
destinations: [{
cloudWatchLogs: {
logGroupArn: 'logGroupArn',
},
filters: {
qspThreshold: 123,
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| destinations? | IResolvable | (IResolvable | Logging)[] | Defines a destination and its associated filtering criteria for query logging. |
destinations?
Type:
IResolvable | (IResolvable | Logging)[]
(optional)
Defines a destination and its associated filtering criteria for query logging.

.NET
Go
Java
Python
TypeScript