Class CfnBrokerPropsMixin.LogListProperty
The list of information about logs to be enabled for the specified broker.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.AmazonMQ
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnBrokerPropsMixin.LogListProperty : CfnBrokerPropsMixin.ILogListProperty
Syntax (vb)
Public Class CfnBrokerPropsMixin.LogListProperty Implements CfnBrokerPropsMixin.ILogListProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.AmazonMQ;
var logListProperty = new LogListProperty {
Audit = false,
General = false
};
Synopsis
Constructors
| LogListProperty() | The list of information about logs to be enabled for the specified broker. |
Properties
| Audit | Enables audit logging. |
| General | Enables general logging. |
Constructors
LogListProperty()
The list of information about logs to be enabled for the specified broker.
public LogListProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.AmazonMQ;
var logListProperty = new LogListProperty {
Audit = false,
General = false
};
Properties
Audit
Enables audit logging.
public object? Audit { get; set; }
Property Value
Remarks
Every user management action made using JMX or the ActiveMQ Web Console is logged. Does not apply to RabbitMQ brokers.
Type union: either bool or IResolvable
General
Enables general logging.
public object? General { get; set; }