interface EventBusPolicyReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Events.EventBusPolicyReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsevents#EventBusPolicyReference |
Java | software.amazon.awscdk.services.events.EventBusPolicyReference |
Python | aws_cdk.aws_events.EventBusPolicyReference |
TypeScript | aws-cdk-lib » aws_events » EventBusPolicyReference |
A reference to a EventBusPolicy 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 events } from 'aws-cdk-lib';
const eventBusPolicyReference: events.EventBusPolicyReference = {
eventBusName: 'eventBusName',
statementId: 'statementId',
};
Properties
| Name | Type | Description |
|---|---|---|
| event | string | The EventBusName of the EventBusPolicy resource. |
| statement | string | The StatementId of the EventBusPolicy resource. |
eventBusName
Type:
string
The EventBusName of the EventBusPolicy resource.
statementId
Type:
string
The StatementId of the EventBusPolicy resource.

.NET
Go
Java
Python
TypeScript