interface CfnConfigurationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AmazonMQ.Mixins.CfnConfigurationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsamazonmq/mixins#CfnConfigurationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.amazonmq.mixins.CfnConfigurationMixinProps |
Python | aws_cdk.mixins_preview.aws_amazonmq.mixins.CfnConfigurationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_amazonmq » mixins » CfnConfigurationMixinProps |
Properties for CfnConfigurationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as amazonmq_mixins } from '@aws-cdk/mixins-preview/aws-amazonmq';
const cfnConfigurationMixinProps: amazonmq_mixins.CfnConfigurationMixinProps = {
authenticationStrategy: 'authenticationStrategy',
data: 'data',
description: 'description',
engineType: 'engineType',
engineVersion: 'engineVersion',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| authentication | string | Optional. |
| data? | string | Amazon MQ for Active MQ: The base64-encoded XML configuration. |
| description? | string | The description of the configuration. |
| engine | string | Required. |
| engine | string | The broker engine version. |
| name? | string | Required. |
| tags? | Tags[] | Create tags when creating the configuration. |
authenticationStrategy?
Type:
string
(optional)
Optional.
The authentication strategy associated with the configuration. The default is SIMPLE .
data?
Type:
string
(optional)
Amazon MQ for Active MQ: The base64-encoded XML configuration.
Amazon MQ for RabbitMQ: the base64-encoded Cuttlefish configuration.
description?
Type:
string
(optional)
The description of the configuration.
engineType?
Type:
string
(optional)
Required.
The type of broker engine. Currently, Amazon MQ supports ACTIVEMQ and RABBITMQ .
engineVersion?
Type:
string
(optional)
The broker engine version.
Defaults to the latest available version for the specified broker engine type. For more information, see the ActiveMQ version management and the RabbitMQ version management sections in the Amazon MQ Developer Guide.
name?
Type:
string
(optional)
Required.
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.
tags?
Type:
Tags[]
(optional)
Create tags when creating the configuration.

.NET
Go
Java
Python
TypeScript