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