interface NotificationHubStatusSummaryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Notifications.Mixins.CfnNotificationHubPropsMixin.NotificationHubStatusSummaryProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnotifications/mixins#CfnNotificationHubPropsMixin_NotificationHubStatusSummaryProperty |
Java | software.amazon.awscdk.mixins.preview.services.notifications.mixins.CfnNotificationHubPropsMixin.NotificationHubStatusSummaryProperty |
Python | aws_cdk.mixins_preview.aws_notifications.mixins.CfnNotificationHubPropsMixin.NotificationHubStatusSummaryProperty |
TypeScript | @aws-cdk/mixins-preview » aws_notifications » mixins » CfnNotificationHubPropsMixin » NotificationHubStatusSummaryProperty |
Provides additional information about the current NotificationHub status.
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 notificationHubStatusSummaryProperty: notifications_mixins.CfnNotificationHubPropsMixin.NotificationHubStatusSummaryProperty = {
notificationHubStatus: 'notificationHubStatus',
notificationHubStatusReason: 'notificationHubStatusReason',
};
Properties
| Name | Type | Description |
|---|---|---|
| notification | string | Indicates the current status of the NotificationHub . |
| notification | string | An explanation for the current status. |
notificationHubStatus?
Type:
string
(optional)
Indicates the current status of the NotificationHub .
notificationHubStatusReason?
Type:
string
(optional)
An explanation for the current status.

.NET
Go
Java
Python
TypeScript