interface EventBusReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Events.EventBusReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsevents#EventBusReference |
Java | software.amazon.awscdk.interfaces.events.EventBusReference |
Python | aws_cdk.interfaces.aws_events.EventBusReference |
TypeScript | aws-cdk-lib » interfaces » aws_events » EventBusReference |
A reference to a EventBus resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_events as interfaces_events } from 'aws-cdk-lib/interfaces';
const eventBusReference: interfaces_events.EventBusReference = {
eventBusArn: 'eventBusArn',
eventBusName: 'eventBusName',
};
Properties
| Name | Type | Description |
|---|---|---|
| event | string | The ARN of the EventBus resource. |
| event | string | The Name of the EventBus resource. |
eventBusArn
Type:
string
The ARN of the EventBus resource.
eventBusName
Type:
string
The Name of the EventBus resource.

.NET
Go
Java
Python
TypeScript