interface LoggingDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.APS.CfnWorkspacePropsMixin.LoggingDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsaps#CfnWorkspacePropsMixin_LoggingDestinationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.aps.CfnWorkspacePropsMixin.LoggingDestinationProperty |
Python | aws_cdk.cfn_property_mixins.aws_aps.CfnWorkspacePropsMixin.LoggingDestinationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_aps » 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 { aws_aps as aps } from '@aws-cdk/cfn-property-mixins';
const loggingDestinationProperty: aps.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