interface LoggingFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.APS.Mixins.CfnWorkspacePropsMixin.LoggingFilterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsaps/mixins#CfnWorkspacePropsMixin_LoggingFilterProperty |
Java | software.amazon.awscdk.mixins.preview.services.aps.mixins.CfnWorkspacePropsMixin.LoggingFilterProperty |
Python | aws_cdk.mixins_preview.aws_aps.mixins.CfnWorkspacePropsMixin.LoggingFilterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_aps » mixins » CfnWorkspacePropsMixin » LoggingFilterProperty |
Filtering criteria that determine which queries are logged.
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 loggingFilterProperty: aps_mixins.CfnWorkspacePropsMixin.LoggingFilterProperty = {
qspThreshold: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| qsp | number | The Query Samples Processed (QSP) threshold above which queries will be logged. |
qspThreshold?
Type:
number
(optional)
The Query Samples Processed (QSP) threshold above which queries will be logged.
Queries processing more samples than this threshold will be captured in logs.

.NET
Go
Java
Python
TypeScript