CfnEventIntegrationMixinProps

class aws_cdk.mixins_preview.aws_appintegrations.mixins.CfnEventIntegrationMixinProps(*, description=None, event_bridge_bus=None, event_filter=None, name=None, tags=None)

Bases: object

Properties for CfnEventIntegrationPropsMixin.

Parameters:
  • description (Optional[str]) – The event integration description.

  • event_bridge_bus (Optional[str]) – The Amazon EventBridge bus for the event integration.

  • event_filter (Union[IResolvable, EventFilterProperty, Dict[str, Any], None]) – The event integration filter.

  • name (Optional[str]) – The name of the event integration.

  • 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.mixins_preview.aws_appintegrations import mixins as appintegrations_mixins

cfn_event_integration_mixin_props = appintegrations_mixins.CfnEventIntegrationMixinProps(
    description="description",
    event_bridge_bus="eventBridgeBus",
    event_filter=appintegrations_mixins.CfnEventIntegrationPropsMixin.EventFilterProperty(
        source="source"
    ),
    name="name",
    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