interface CfnConfigurationProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.AmazonMQ.CfnConfigurationProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsamazonmq#CfnConfigurationProps |
![]() | software.amazon.awscdk.services.amazonmq.CfnConfigurationProps |
![]() | aws_cdk.aws_amazonmq.CfnConfigurationProps |
![]() | aws-cdk-lib » 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 { aws_amazonmq as amazonmq } from 'aws-cdk-lib';
const cfnConfigurationProps: amazonmq.CfnConfigurationProps = {
engineType: 'engineType',
name: 'name',
// the properties below are optional
authenticationStrategy: 'authenticationStrategy',
data: 'data',
description: 'description',
engineVersion: 'engineVersion',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
engine | string | The type of broker engine. |
name | string | The name of the configuration. |
authentication | string | Optional. |
data? | string | The base64-encoded XML configuration. |
description? | string | The description of the configuration. |
engine | string | The version of the broker engine. |
tags? | Tags [] | Create tags when creating the configuration. |
engineType
Type:
string
The type of broker engine.
Note: Currently, Amazon MQ only supports ACTIVEMQ for creating and editing broker configurations.
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
.
data?
Type:
string
(optional)
The base64-encoded XML configuration.
description?
Type:
string
(optional)
The description of the configuration.
engineVersion?
Type:
string
(optional)
The version of the broker engine.
For a list of supported engine versions, see
tags?
Type:
Tags
[]
(optional)
Create tags when creating the configuration.