CfnNotificationConfigurationMixinProps

class aws_cdk.mixins_preview.aws_notifications.mixins.CfnNotificationConfigurationMixinProps(*, aggregation_duration=None, description=None, name=None, tags=None)

Bases: object

Properties for CfnNotificationConfigurationPropsMixin.

Parameters:
  • aggregation_duration (Optional[str]) – The aggregation preference of the NotificationConfiguration . - Values: - LONG - Aggregate notifications for long periods of time (12 hours). - SHORT - Aggregate notifications for short periods of time (5 minutes). - NONE - Don’t aggregate notifications.

  • description (Optional[str]) – The description of the NotificationConfiguration .

  • name (Optional[str]) – The name of the NotificationConfiguration . Supports RFC 3986’s unreserved characters.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – A map of tags assigned to a NotificationConfiguration .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-notificationconfiguration.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_notifications import mixins as notifications_mixins

cfn_notification_configuration_mixin_props = notifications_mixins.CfnNotificationConfigurationMixinProps(
    aggregation_duration="aggregationDuration",
    description="description",
    name="name",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

aggregation_duration

The aggregation preference of the NotificationConfiguration .

  • Values:

  • LONG

  • Aggregate notifications for long periods of time (12 hours).

  • SHORT

  • Aggregate notifications for short periods of time (5 minutes).

  • NONE

  • Don’t aggregate notifications.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-notificationconfiguration.html#cfn-notifications-notificationconfiguration-aggregationduration

description

The description of the NotificationConfiguration .

See:

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

name

The name of the NotificationConfiguration .

Supports RFC 3986’s unreserved characters.

See:

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

tags

A map of tags assigned to a NotificationConfiguration .

See:

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