Interface CfnSecurityProfile.AlertTargetProperty

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

@Stability(Stable) public static interface CfnSecurityProfile.AlertTargetProperty extends software.amazon.jsii.JsiiSerializable
A structure containing the alert target ARN and the role ARN.

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.iot.*;
 AlertTargetProperty alertTargetProperty = AlertTargetProperty.builder()
         .alertTargetArn("alertTargetArn")
         .roleArn("roleArn")
         .build();