interface NotificationSettingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.RolesAnywhere.CfnTrustAnchor.NotificationSettingProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrolesanywhere#CfnTrustAnchor_NotificationSettingProperty |
Java | software.amazon.awscdk.services.rolesanywhere.CfnTrustAnchor.NotificationSettingProperty |
Python | aws_cdk.aws_rolesanywhere.CfnTrustAnchor.NotificationSettingProperty |
TypeScript | aws-cdk-lib » aws_rolesanywhere » CfnTrustAnchor » NotificationSettingProperty |
Customizable notification settings that will be applied to notification events.
IAM Roles Anywhere consumes these settings while notifying across multiple channels - CloudWatch metrics, EventBridge, and AWS Health Dashboard .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_rolesanywhere as rolesanywhere } from 'aws-cdk-lib';
const notificationSettingProperty: rolesanywhere.CfnTrustAnchor.NotificationSettingProperty = {
enabled: false,
event: 'event',
// the properties below are optional
channel: 'channel',
threshold: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| enabled | boolean | IResolvable | Indicates whether the notification setting is enabled. |
| event | string | The event to which this notification setting is applied. |
| channel? | string | The specified channel of notification. |
| threshold? | number | The number of days before a notification event. |
enabled
Type:
boolean | IResolvable
Indicates whether the notification setting is enabled.
event
Type:
string
The event to which this notification setting is applied.
channel?
Type:
string
(optional)
The specified channel of notification.
IAM Roles Anywhere uses CloudWatch metrics, EventBridge, and AWS Health Dashboard to notify for an event.
In the absence of a specific channel, IAM Roles Anywhere applies this setting to 'ALL' channels.
threshold?
Type:
number
(optional)
The number of days before a notification event.
This value is required for a notification setting that is enabled.

.NET
Go
Java
Python
TypeScript