CfnEventIntegrationProps

class aws_cdk.aws_appintegrations.CfnEventIntegrationProps(*, event_bridge_bus, event_filter, name, description=None, tags=None)

Bases: object

Properties 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 .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appintegrations-eventintegration.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import 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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appintegrations-eventintegration.html#cfn-appintegrations-eventintegration-description

event_bridge_bus

The Amazon EventBridge bus for the event integration.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appintegrations-eventintegration.html#cfn-appintegrations-eventintegration-eventbridgebus

event_filter

The event integration filter.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appintegrations-eventintegration.html#cfn-appintegrations-eventintegration-eventfilter

name

The name of the event integration.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appintegrations-eventintegration.html#cfn-appintegrations-eventintegration-name

tags

An array of key-value pairs to apply to this resource.

For more information, see Tag .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appintegrations-eventintegration.html#cfn-appintegrations-eventintegration-tags