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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDiscovererProps
static final class
An implementation forCfnDiscovererProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnDiscovererProps.Builder
builder()
default Object
Allows for the discovery of the event schemas that are sent to the event bus from another account.default String
A description for the discoverer.The ARN of the event bus.default List<CfnDiscoverer.TagsEntryProperty>
getTags()
Tags associated with the resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSourceArn
The ARN of the event bus. -
getCrossAccount
Allows for the discovery of the event schemas that are sent to the event bus from another account. -
getDescription
A description for the discoverer. -
getTags
Tags associated with the resource. -
builder
- Returns:
- a
CfnDiscovererProps.Builder
ofCfnDiscovererProps
-