Interface CfnTrustAnchor.NotificationSettingProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTrustAnchor.NotificationSettingProperty.Jsii$Proxy
Enclosing class:
CfnTrustAnchor

@Stability(Stable) public static interface CfnTrustAnchor.NotificationSettingProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.rolesanywhere.*;
 NotificationSettingProperty notificationSettingProperty = NotificationSettingProperty.builder()
         .enabled(false)
         .event("event")
         // the properties below are optional
         .channel("channel")
         .threshold(123)
         .build();
 

See Also: