CfnNotificationChannelMixinProps

class aws_cdk.mixins_preview.aws_devopsguru.mixins.CfnNotificationChannelMixinProps(*, config=None)

Bases: object

Properties for CfnNotificationChannelPropsMixin.

Parameters:

config (Union[IResolvable, NotificationChannelConfigProperty, Dict[str, Any], None]) – A NotificationChannelConfig object that contains information about configured notification channels.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsguru-notificationchannel.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_devopsguru import mixins as devopsguru_mixins

cfn_notification_channel_mixin_props = devopsguru_mixins.CfnNotificationChannelMixinProps(
    config=devopsguru_mixins.CfnNotificationChannelPropsMixin.NotificationChannelConfigProperty(
        filters=devopsguru_mixins.CfnNotificationChannelPropsMixin.NotificationFilterConfigProperty(
            message_types=["messageTypes"],
            severities=["severities"]
        ),
        sns=devopsguru_mixins.CfnNotificationChannelPropsMixin.SnsChannelConfigProperty(
            topic_arn="topicArn"
        )
    )
)

Attributes

config

A NotificationChannelConfig object that contains information about configured notification channels.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsguru-notificationchannel.html#cfn-devopsguru-notificationchannel-config