interface CfnNotificationConfigurationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Notifications.CfnNotificationConfigurationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsnotifications#CfnNotificationConfigurationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.notifications.CfnNotificationConfigurationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_notifications.CfnNotificationConfigurationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_notifications » 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 { aws_notifications as notifications } from '@aws-cdk/cfn-property-mixins';
const cfnNotificationConfigurationMixinProps: notifications.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