interface CfnManagedNotificationConfigurationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.UserNotifications.CfnManagedNotificationConfigurationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsusernotifications#CfnManagedNotificationConfigurationProps |
Java | software.amazon.awscdk.services.usernotifications.CfnManagedNotificationConfigurationProps |
Python | aws_cdk.aws_usernotifications.CfnManagedNotificationConfigurationProps |
TypeScript | aws-cdk-lib » aws_usernotifications » CfnManagedNotificationConfigurationProps |
Properties for defining a CfnManagedNotificationConfiguration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_usernotifications as usernotifications } from 'aws-cdk-lib';
const cfnManagedNotificationConfigurationProps: usernotifications.CfnManagedNotificationConfigurationProps = {
category: 'category',
subCategory: 'subCategory',
};
Properties
| Name | Type | Description |
|---|---|---|
| category? | string | The category of the ManagedNotificationConfiguration. |
| sub | string | The subCategory of the ManagedNotificationConfiguration. |
category?
Type:
string
(optional)
The category of the ManagedNotificationConfiguration.
subCategory?
Type:
string
(optional)
The subCategory of the ManagedNotificationConfiguration.

.NET
Go
Java
Python
TypeScript