interface LoggingFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.APS.CfnWorkspace.LoggingFilterProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsaps#CfnWorkspace_LoggingFilterProperty |
Java | software.amazon.awscdk.services.aps.CfnWorkspace.LoggingFilterProperty |
Python | aws_cdk.aws_aps.CfnWorkspace.LoggingFilterProperty |
TypeScript | aws-cdk-lib » aws_aps » CfnWorkspace » 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 { aws_aps as aps } from 'aws-cdk-lib';
const loggingFilterProperty: aps.CfnWorkspace.LoggingFilterProperty = {
qspThreshold: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| qsp | number | The Query Samples Processed (QSP) threshold above which queries will be logged. |
qspThreshold
Type:
number
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