interface CfnConfigurationAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AmazonMQ.CfnConfigurationAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsamazonmq#CfnConfigurationAssociationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.amazonmq.CfnConfigurationAssociationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_amazonmq.CfnConfigurationAssociationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_amazonmq » CfnConfigurationAssociationMixinProps |
Properties for CfnConfigurationAssociationPropsMixin.
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/cfn-property-mixins';
const cfnConfigurationAssociationMixinProps: amazonmq.CfnConfigurationAssociationMixinProps = {
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
(optional)
ID of the Broker that the configuration should be applied to.
configuration?
Type:
IResolvable | Configuration
(optional)
Returns information about all configurations.

.NET
Go
Java
Python
TypeScript