interface CfnConfigurationAssociationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AmazonMQ.CfnConfigurationAssociationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsamazonmq#CfnConfigurationAssociationProps |
Java | software.amazon.awscdk.services.amazonmq.CfnConfigurationAssociationProps |
Python | aws_cdk.aws_amazonmq.CfnConfigurationAssociationProps |
TypeScript | aws-cdk-lib » aws_amazonmq » CfnConfigurationAssociationProps |
Properties for defining a CfnConfigurationAssociation.
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 cfnConfigurationAssociationProps: amazonmq.CfnConfigurationAssociationProps = {
broker: 'broker',
configuration: {
id: 'id',
revision: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| broker | string | ID of the Broker that the configuration should be applied to. |
| configuration | IResolvable | Configuration | Returns information about all configurations. |
broker
Type:
string
ID of the Broker that the configuration should be applied to.
configuration
Type:
IResolvable | Configuration
Returns information about all configurations.

.NET
Go
Java
Python
TypeScript