Interface CfnDiscovererProps

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:29:56.701Z") @Stability(Stable) public interface CfnDiscovererProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnDiscoverer.

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.eventschemas.*;
 CfnDiscovererProps cfnDiscovererProps = CfnDiscovererProps.builder()
         .sourceArn("sourceArn")
         // the properties below are optional
         .crossAccount(false)
         .description("description")
         .tags(List.of(TagsEntryProperty.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 
  • Method Details

    • getSourceArn

      @Stability(Stable) @NotNull String getSourceArn()
      The ARN of the event bus.
    • getCrossAccount

      @Stability(Stable) @Nullable default Object getCrossAccount()
      Allows for the discovery of the event schemas that are sent to the event bus from another account.
    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      A description for the discoverer.
    • getTags

      @Stability(Stable) @Nullable default List<CfnDiscoverer.TagsEntryProperty> getTags()
      Tags associated with the resource.
    • builder

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