interface AlertTargetProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnSecurityProfilePropsMixin.AlertTargetProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnSecurityProfilePropsMixin_AlertTargetProperty |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnSecurityProfilePropsMixin.AlertTargetProperty |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnSecurityProfilePropsMixin.AlertTargetProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnSecurityProfilePropsMixin » 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 { mixins as iot_mixins } from '@aws-cdk/mixins-preview/aws-iot';
const alertTargetProperty: iot_mixins.CfnSecurityProfilePropsMixin.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
(optional)
The Amazon Resource Name (ARN) of the notification target to which alerts are sent.
roleArn?
Type:
string
(optional)
The ARN of the role that grants permission to send alerts to the notification target.

.NET
Go
Java
Python
TypeScript