Metadata-Version: 2.1
Name: cdklabs.cdk-amazonmq-activemq-config-v5-18-4
Version: 0.0.0
Summary: @cdklabs/cdk-amazonmq-activemq-config-v5-18-4
Home-page: https://github.com/cdklabs/cdk-amazonmq-activemq-configs
Author: AWS<cdk-amazonmq-maintainers@amazon.com>
License: Apache-2.0
Project-URL: Source, https://github.com/cdklabs/cdk-amazonmq-activemq-configs
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: JavaScript
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Typing :: Typed
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved
Requires-Python: ~=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: jsii<2.0.0,>=1.106.0
Requires-Dist: publication>=0.0.3
Requires-Dist: typeguard<4.3.0,>=2.13.3

# Amazon MQ for ActiveMQ XML configuration v5.18.4 bindings

<!--BEGIN STABILITY BANNER-->---


| Features                   | Stability                                                                                    |
| -------------------------- | -------------------------------------------------------------------------------------------- |
| All types are experimental | ![Experimental](https://img.shields.io/badge/experimental-important.svg?style=for-the-badge) |

> **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](https://semver.org/) 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.

---
<!--END STABILITY BANNER-->

This package provides strongly-typed configuration bindings for Amazon MQ for ActiveMQ version 5.18.4. 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](https://github.com/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](https://docs.aws.amazon.com/amazon-mq/latest/developer-guide/amazon-mq-broker-configuration-parameters.html#working-with-spring-xml-configuration-files).

An example of using this library can be found below:

```python
// 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](https://docs.aws.amazon.com/amazon-mq/latest/developer-guide/security-authentication-authorization.html) which requires using `cachedLDAPAuthorizationMap`. See [ActiveMQ documentation](https://activemq.apache.org/components/classic/documentation/cached-ldap-authorization-module) for more details. The types in this package include the `CachedLDAPAuthorizationMap` type with attributes specifically enabled by Amazon MQ for ActiveMQ.
