interface AlertTargetProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.IoT.CfnSecurityProfile.AlertTargetProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiot#CfnSecurityProfile_AlertTargetProperty | 
  Java | software.amazon.awscdk.services.iot.CfnSecurityProfile.AlertTargetProperty | 
  Python | aws_cdk.aws_iot.CfnSecurityProfile.AlertTargetProperty | 
  TypeScript  | aws-cdk-lib » aws_iot » CfnSecurityProfile » AlertTargetProperty | 
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 { aws_iot as iot } from 'aws-cdk-lib';
const alertTargetProperty: iot.CfnSecurityProfile.AlertTargetProperty = {
  alertTargetArn: 'alertTargetArn',
  roleArn: 'roleArn',
};
Properties
| Name | Type | Description | 
|---|---|---|
| alert | string | The Amazon Resource Name (ARN) of the notification target to which alerts are sent. | 
| role | string | The ARN of the role that grants permission to send alerts to the notification target. | 
alertTargetArn
Type:
string
The Amazon Resource Name (ARN) of the notification target to which alerts are sent.
roleArn
Type:
string
The ARN of the role that grants permission to send alerts to the notification target.

 .NET
 Go
 Java
 Python
 TypeScript