interface CfnNotificationConfigurationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_notifications.CfnNotificationConfigurationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsnotifications#CfnNotificationConfigurationProps |
Java | software.amazon.awscdk.services.notifications.CfnNotificationConfigurationProps |
Python | aws_cdk.aws_notifications.CfnNotificationConfigurationProps |
TypeScript | 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:
LONGAggregate notifications for long periods of time (12 hours).
SHORTAggregate notifications for short periods of time (5 minutes).
NONEDon't aggregate notifications.
tags?
Type:
Cfn[]
(optional)
A map of tags assigned to a NotificationConfiguration .

.NET
Go
Java
Python
TypeScript