interface CfnNotificationConfigurationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Notifications.Mixins.CfnNotificationConfigurationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnotifications/mixins#CfnNotificationConfigurationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.notifications.mixins.CfnNotificationConfigurationMixinProps |
Python | aws_cdk.mixins_preview.aws_notifications.mixins.CfnNotificationConfigurationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_notifications » mixins » CfnNotificationConfigurationMixinProps |
Properties for CfnNotificationConfigurationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as notifications_mixins } from '@aws-cdk/mixins-preview/aws-notifications';
const cfnNotificationConfigurationMixinProps: notifications_mixins.CfnNotificationConfigurationMixinProps = {
aggregationDuration: 'aggregationDuration',
description: 'description',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| aggregation | string | The aggregation preference of the NotificationConfiguration . |
| description? | string | The description of the NotificationConfiguration . |
| name? | string | The name of the NotificationConfiguration . |
| tags? | Cfn[] | A map of tags assigned to a NotificationConfiguration . |
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.
description?
Type:
string
(optional)
The description of the NotificationConfiguration .
name?
Type:
string
(optional)
The name of the NotificationConfiguration .
Supports RFC 3986's unreserved characters.
tags?
Type:
Cfn[]
(optional)
A map of tags assigned to a NotificationConfiguration .

.NET
Go
Java
Python
TypeScript