BrokerReference

class aws_cdk.aws_amazonmq.BrokerReference(*, broker_arn, broker_id)

Bases: object

A reference to a Broker resource.

Parameters:
  • broker_arn (str) – The ARN of the Broker resource.

  • broker_id (str) – The Id of the Broker resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_amazonmq as amazonmq

broker_reference = amazonmq.BrokerReference(
    broker_arn="brokerArn",
    broker_id="brokerId"
)

Attributes

broker_arn

The ARN of the Broker resource.

broker_id

The Id of the Broker resource.