interface LogListProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AmazonMQ.Mixins.CfnBrokerPropsMixin.LogListProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsamazonmq/mixins#CfnBrokerPropsMixin_LogListProperty |
Java | software.amazon.awscdk.mixins.preview.services.amazonmq.mixins.CfnBrokerPropsMixin.LogListProperty |
Python | aws_cdk.mixins_preview.aws_amazonmq.mixins.CfnBrokerPropsMixin.LogListProperty |
TypeScript | @aws-cdk/mixins-preview » aws_amazonmq » mixins » CfnBrokerPropsMixin » LogListProperty |
The list of information about logs to be enabled for the specified broker.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as amazonmq_mixins } from '@aws-cdk/mixins-preview/aws-amazonmq';
const logListProperty: amazonmq_mixins.CfnBrokerPropsMixin.LogListProperty = {
audit: false,
general: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| audit? | boolean | IResolvable | Enables audit logging. |
| general? | boolean | IResolvable | Enables general logging. |
audit?
Type:
boolean | IResolvable
(optional)
Enables audit logging.
Every user management action made using JMX or the ActiveMQ Web Console is logged. Does not apply to RabbitMQ brokers.
general?
Type:
boolean | IResolvable
(optional)
Enables general logging.

.NET
Go
Java
Python
TypeScript