interface ConfigurationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.AmazonMQ.ConfigurationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsamazonmq#ConfigurationReference |
Java | software.amazon.awscdk.interfaces.amazonmq.ConfigurationReference |
Python | aws_cdk.interfaces.aws_amazonmq.ConfigurationReference |
TypeScript | aws-cdk-lib » interfaces » aws_amazonmq » ConfigurationReference |
A reference to a Configuration resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_amazonmq as interfaces_aws_amazonmq } from 'aws-cdk-lib/interfaces';
const configurationReference: interfaces_aws_amazonmq.ConfigurationReference = {
configurationArn: 'configurationArn',
configurationId: 'configurationId',
};
Properties
| Name | Type | Description |
|---|---|---|
| configuration | string | The ARN of the Configuration resource. |
| configuration | string | The Id of the Configuration resource. |
configurationArn
Type:
string
The ARN of the Configuration resource.
configurationId
Type:
string
The Id of the Configuration resource.

.NET
Go
Java
Python
TypeScript