interface BrokerReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.AmazonMQ.BrokerReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsamazonmq#BrokerReference |
Java | software.amazon.awscdk.interfaces.amazonmq.BrokerReference |
Python | aws_cdk.interfaces.aws_amazonmq.BrokerReference |
TypeScript | aws-cdk-lib » interfaces » aws_amazonmq » BrokerReference |
A reference to a Broker 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 brokerReference: interfaces_aws_amazonmq.BrokerReference = {
brokerArn: 'brokerArn',
brokerId: 'brokerId',
};
Properties
| Name | Type | Description |
|---|---|---|
| broker | string | The ARN of the Broker resource. |
| broker | string | The Id of the Broker resource. |
brokerArn
Type:
string
The ARN of the Broker resource.
brokerId
Type:
string
The Id of the Broker resource.

.NET
Go
Java
Python
TypeScript