Interface CfnEventBusProps

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:36.987Z") @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.*;
 CfnEventBusProps cfnEventBusProps = CfnEventBusProps.builder()
         .name("name")
         // the properties below are optional
         .eventSourceName("eventSourceName")
         .tags(List.of(TagEntryProperty.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 
  • Method Details

    • getName

      @Stability(Stable) @NotNull String getName()
      The name of the new event bus.

      Custom event bus names can't contain the / character, but you can use the / character in partner event bus names. In addition, for partner event buses, the name must exactly match the name of the partner event source that this event bus is matched to.

      You can't use the name default for a custom event bus, as this name is already used for your account's default event bus.

    • getEventSourceName

      @Stability(Stable) @Nullable default String getEventSourceName()
      If you are creating a partner event bus, this specifies the partner event source that the new event bus will be matched with.
    • getTags

      @Stability(Stable) @Nullable default List<CfnEventBus.TagEntryProperty> getTags()
      Tags to associate with the event bus.
    • builder

      @Stability(Stable) static CfnEventBusProps.Builder builder()
      Returns:
      a CfnEventBusProps.Builder of CfnEventBusProps