interface CfnConfigurationProps
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.AmazonMQ.CfnConfigurationProps | 
  Java | software.amazon.awscdk.services.amazonmq.CfnConfigurationProps | 
  Python | aws_cdk.aws_amazonmq.CfnConfigurationProps | 
  TypeScript  | @aws-cdk/aws-amazonmq » CfnConfigurationProps | 
Properties for defining a CfnConfiguration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as amazonmq from '@aws-cdk/aws-amazonmq';
const cfnConfigurationProps: amazonmq.CfnConfigurationProps = {
  data: 'data',
  engineType: 'engineType',
  engineVersion: 'engineVersion',
  name: 'name',
  // the properties below are optional
  authenticationStrategy: 'authenticationStrategy',
  description: 'description',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};
Properties
| Name | Type | Description | 
|---|---|---|
| data | string | The base64-encoded XML configuration. | 
| engine | string | The type of broker engine. | 
| engine | string | The version of the broker engine. | 
| name | string | The name of the configuration. | 
| authentication | string | Optional. | 
| description? | string | The description of the configuration. | 
| tags? | Tags[] | Create tags when creating the configuration. | 
data
Type:
string
The base64-encoded XML configuration.
engineType
Type:
string
The type of broker engine.
Note: Currently, Amazon MQ only supports ACTIVEMQ for creating and editing broker configurations.
engineVersion
Type:
string
The version of the broker engine.
For a list of supported engine versions, see
name
Type:
string
The name of the configuration.
This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 1-150 characters long.
authenticationStrategy?
Type:
string
(optional)
Optional.
The authentication strategy associated with the configuration. The default is SIMPLE .
description?
Type:
string
(optional)
The description of the configuration.
tags?
Type:
Tags[]
(optional)
Create tags when creating the configuration.

 .NET
 Java
 Python
 TypeScript