CfnNotificationChannelMixinProps
- class aws_cdk.mixins_preview.aws_devopsguru.mixins.CfnNotificationChannelMixinProps(*, config=None)
Bases:
objectProperties for CfnNotificationChannelPropsMixin.
- Parameters:
config (
Union[IResolvable,NotificationChannelConfigProperty,Dict[str,Any],None]) – ANotificationChannelConfigobject that contains information about configured notification channels.- See:
- 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
NotificationChannelConfigobject that contains information about configured notification channels.