interface CfnNotificationConfigurationProps
Language | Type name |
---|---|
![]() | Amazon.CDK.aws_notifications.CfnNotificationConfigurationProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsnotifications#CfnNotificationConfigurationProps |
![]() | software.amazon.awscdk.services.notifications.CfnNotificationConfigurationProps |
![]() | aws_cdk.aws_notifications.CfnNotificationConfigurationProps |
![]() | aws-cdk-lib » aws_notifications » CfnNotificationConfigurationProps |
Properties for defining a CfnNotificationConfiguration
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_notifications as notifications } from 'aws-cdk-lib';
const cfnNotificationConfigurationProps: notifications.CfnNotificationConfigurationProps = {
description: 'description',
name: 'name',
// the properties below are optional
aggregationDuration: 'aggregationDuration',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
description | string | The description of the NotificationConfiguration . |
name | string | The name of the NotificationConfiguration . |
aggregation | string | The aggregation preference of the NotificationConfiguration . |
tags? | Cfn [] | A map of tags assigned to a NotificationConfiguration . |
description
Type:
string
The description of the NotificationConfiguration
.
name
Type:
string
The name of the NotificationConfiguration
.
Supports RFC 3986's unreserved characters.
aggregationDuration?
Type:
string
(optional)
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.
tags?
Type:
Cfn
[]
(optional)
A map of tags assigned to a NotificationConfiguration
.