EventBusPolicyReference

class aws_cdk.interfaces.aws_events.EventBusPolicyReference(*, event_bus_name, statement_id)

Bases: object

A reference to a EventBusPolicy resource.

Parameters:
  • event_bus_name (str) – The EventBusName of the EventBusPolicy resource.

  • statement_id (str) – The StatementId of the EventBusPolicy 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.interfaces import aws_events as interfaces_aws_events

event_bus_policy_reference = interfaces_aws_events.EventBusPolicyReference(
    event_bus_name="eventBusName",
    statement_id="statementId"
)

Attributes

event_bus_name

The EventBusName of the EventBusPolicy resource.

statement_id

The StatementId of the EventBusPolicy resource.