interface LoggingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.APS.CfnWorkspace.LoggingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsaps#CfnWorkspace_LoggingConfigurationProperty |
Java | software.amazon.awscdk.services.aps.CfnWorkspace.LoggingConfigurationProperty |
Python | aws_cdk.aws_aps.CfnWorkspace.LoggingConfigurationProperty |
TypeScript | aws-cdk-lib » aws_aps » CfnWorkspace » LoggingConfigurationProperty |
Contains information about the rules and alerting logging configuration for the workspace.
These logging configurations are only for rules and alerting logs.
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 loggingConfigurationProperty: aps.CfnWorkspace.LoggingConfigurationProperty = {
logGroupArn: 'logGroupArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| log | string | The ARN of the CloudWatch log group to which the vended log data will be published. |
logGroupArn?
Type:
string
(optional)
The ARN of the CloudWatch log group to which the vended log data will be published.
This log group must exist prior to calling this operation.

.NET
Go
Java
Python
TypeScript