Interface CfnDiscovererMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDiscovererMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-14T18:32:12.563Z")
@Stability(Stable)
public interface CfnDiscovererMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnDiscovererPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.eventschemas.*;
CfnDiscovererMixinProps cfnDiscovererMixinProps = CfnDiscovererMixinProps.builder()
.crossAccount(false)
.description("description")
.sourceArn("sourceArn")
.tags(List.of(TagsEntryProperty.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDiscovererMixinPropsstatic final classAn implementation forCfnDiscovererMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCrossAccount
Allows for the discovery of the event schemas that are sent to the event bus from another account.Returns union: either
BooleanorIResolvableDefault: - true
- See Also:
-
getDescription
A description for the discoverer.- See Also:
-
getSourceArn
The ARN of the event bus.Returns union: either
StringorIEventBusRef- See Also:
-
getTags
Tags associated with the resource.- See Also:
-
builder
- Returns:
- a
CfnDiscovererMixinProps.BuilderofCfnDiscovererMixinProps
-