interface NotificationHubStatusSummaryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Notifications.CfnNotificationHub.NotificationHubStatusSummaryProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsnotifications#CfnNotificationHub_NotificationHubStatusSummaryProperty |
Java | software.amazon.awscdk.services.notifications.CfnNotificationHub.NotificationHubStatusSummaryProperty |
Python | aws_cdk.aws_notifications.CfnNotificationHub.NotificationHubStatusSummaryProperty |
TypeScript | aws-cdk-lib » aws_notifications » CfnNotificationHub » 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 { aws_notifications as notifications } from 'aws-cdk-lib';
const notificationHubStatusSummaryProperty: notifications.CfnNotificationHub.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
Indicates the current status of the NotificationHub .
notificationHubStatusReason
Type:
string
An explanation for the current status.

.NET
Go
Java
Python
TypeScript