Interface CfnEventBusProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEventBusProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.93.0 (build 1706ca5)", date="2024-01-03T18:29:26.749Z") @Stability(Stable) public interface CfnEventBusProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnEventBus.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.events.*;
 Object policy;
 CfnEventBusProps cfnEventBusProps = CfnEventBusProps.builder()
         .name("name")
         // the properties below are optional
         .eventSourceName("eventSourceName")
         .policy(policy)
         .tags(List.of(TagEntryProperty.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: