interface AlertTargetProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.IoT.CfnSecurityProfile.AlertTargetProperty |
Java | software.amazon.awscdk.services.iot.CfnSecurityProfile.AlertTargetProperty |
Python | aws_cdk.aws_iot.CfnSecurityProfile.AlertTargetProperty |
TypeScript | @aws-cdk/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 * as iot from '@aws-cdk/aws-iot';
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.