@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.365Z") @Stability(value=Stable) public interface CfnEventIntegrationProps extends software.amazon.jsii.JsiiSerializable
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.appintegrations.*;
CfnEventIntegrationProps cfnEventIntegrationProps = CfnEventIntegrationProps.builder()
.eventBridgeBus("eventBridgeBus")
.eventFilter(EventFilterProperty.builder()
.source("source")
.build())
.name("name")
// the properties below are optional
.description("description")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnEventIntegrationProps.Builder
A builder for
CfnEventIntegrationProps |
static class |
CfnEventIntegrationProps.Jsii$Proxy
An implementation for
CfnEventIntegrationProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnEventIntegrationProps.Builder |
builder() |
default String |
getDescription()
The event integration description.
|
String |
getEventBridgeBus()
The Amazon EventBridge bus for the event integration.
|
Object |
getEventFilter()
The event integration filter.
|
String |
getName()
The name of the event integration.
|
default List<CfnTag> |
getTags()
An array of key-value pairs to apply to this resource.
|
@Stability(value=Stable) @NotNull String getEventBridgeBus()
@Stability(value=Stable) @NotNull Object getEventFilter()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
For more information, see Tag .
@Stability(value=Stable) static CfnEventIntegrationProps.Builder builder()
CfnEventIntegrationProps.Builder of CfnEventIntegrationPropsCopyright © 2022. All rights reserved.