@cdklabs/cdk-amazonmq-activemq-config-v5-16-7
v0.0.0
Published
<!--BEGIN STABILITY BANNER-->
Downloads
5
Keywords
Readme
Amazon MQ for ActiveMQ XML configuration v5.16.7 bindings
| Features | Stability |
| -------------------------- | -------------------------------------------------------------------------------------------- |
| All types are experimental | |
Experimental: All types in this module are experimental and are under active development. They are subject to non-backward compatible changes or removal in any future version. These are not subject to the Semantic Versioning model and breaking changes will be announced in the release notes. This means that while you may use them, you may need to update your source code when upgrading to a newer version of this package.
This package provides strongly-typed configuration bindings for Amazon MQ for ActiveMQ version 5.16.7. It enables you to define your ActiveMQ broker configurations in code instead of raw XML.
The types in this library are intended to be used with the @cdklabs/cdk-amazonmq library and allow for providing strongly-typed configuration of ActiveMQ brokers that is generated from the XML schema definition tailored for the Amazon MQ.
An example of using this library can be found below:
// Basic broker configuration
const broker = new Broker({
schedulePeriodForDestinationPurge: 10000,
start: false
}, {
// Destination interceptors configuration
destinationInterceptors: [
// ... interceptor configuration
],
// Persistence configuration
persistenceAdapter: new KahaDB({
// ... persistence configuration
}),
// Policy configuration
destinationPolicy: new PolicyMap({
// ... policy configuration
}),
// ... other sections
});LDAP Integration Note:
Amazon MQ for ActiveMQ enables LDAP integration which requires usingcachedLDAPAuthorizationMap. See ActiveMQ documentation for more details. The types in this package include theCachedLDAPAuthorizationMaptype with attributes specifically enabled by Amazon MQ for ActiveMQ.
