interface LogListProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AmazonMQ.CfnBrokerPropsMixin.LogListProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsamazonmq#CfnBrokerPropsMixin_LogListProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.amazonmq.CfnBrokerPropsMixin.LogListProperty |
Python | aws_cdk.cfn_property_mixins.aws_amazonmq.CfnBrokerPropsMixin.LogListProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_amazonmq » 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 { aws_amazonmq as amazonmq } from '@aws-cdk/cfn-property-mixins';
const logListProperty: amazonmq.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