CfnEventIntegrationProps
- class aws_cdk.aws_appintegrations.CfnEventIntegrationProps(*, event_bridge_bus, event_filter, name, description=None, tags=None)
Bases:
objectProperties for defining a
CfnEventIntegration.- Parameters:
event_bridge_bus (
str) – The Amazon EventBridge bus for the event integration.event_filter (
Union[IResolvable,EventFilterProperty,Dict[str,Any]]) – The event integration filter.name (
str) – The name of the event integration.description (
Optional[str]) – The event integration description.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An array of key-value pairs to apply to this resource. For more information, see Tag .
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appintegrations as appintegrations cfn_event_integration_props = appintegrations.CfnEventIntegrationProps( event_bridge_bus="eventBridgeBus", event_filter=appintegrations.CfnEventIntegration.EventFilterProperty( source="source" ), name="name", # the properties below are optional description="description", tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
The event integration description.
- event_bridge_bus
The Amazon EventBridge bus for the event integration.
- event_filter
The event integration filter.
- name
The name of the event integration.