Interface CfnEventIntegrationMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEventIntegrationMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:55.678Z")
@Stability(Stable)
public interface CfnEventIntegrationMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnEventIntegrationPropsMixin.
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.appintegrations.*;
CfnEventIntegrationMixinProps cfnEventIntegrationMixinProps = CfnEventIntegrationMixinProps.builder()
.description("description")
.eventBridgeBus("eventBridgeBus")
.eventFilter(EventFilterProperty.builder()
.source("source")
.build())
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEventIntegrationMixinPropsstatic final classAn implementation forCfnEventIntegrationMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe event integration description.default StringThe Amazon EventBridge bus for the event integration.default ObjectThe event integration filter.default StringgetName()The name of the event integration.getTags()An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
The event integration description.- See Also:
-
getEventBridgeBus
The Amazon EventBridge bus for the event integration.- See Also:
-
getEventFilter
The event integration filter.Returns union: either
IResolvableorCfnEventIntegrationPropsMixin.EventFilterProperty- See Also:
-
getName
The name of the event integration.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
- See Also:
-
builder
-