Interface CfnBroker.LogListProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBroker.LogListProperty.Jsii$Proxy
- Enclosing class:
CfnBroker
@Stability(Stable)
public static interface CfnBroker.LogListProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.amazonmq.*; LogListProperty logListProperty = LogListProperty.builder() .audit(false) .general(false) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBroker.LogListProperty
static final class
An implementation forCfnBroker.LogListProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAudit
Enables audit logging.Every user management action made using JMX or the ActiveMQ Web Console is logged. Does not apply to RabbitMQ brokers.
-
getGeneral
Enables general logging. -
builder
- Returns:
- a
CfnBroker.LogListProperty.Builder
ofCfnBroker.LogListProperty
-