interface AlertTargetProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoT.CfnSecurityProfilePropsMixin.AlertTargetProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiot#CfnSecurityProfilePropsMixin_AlertTargetProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iot.CfnSecurityProfilePropsMixin.AlertTargetProperty |
Python | aws_cdk.cfn_property_mixins.aws_iot.CfnSecurityProfilePropsMixin.AlertTargetProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iot » 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 { aws_iot as iot } from '@aws-cdk/cfn-property-mixins';
const alertTargetProperty: iot.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