interface MitigationActionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.IoT.MitigationActionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsiot#MitigationActionReference |
Java | software.amazon.awscdk.interfaces.iot.MitigationActionReference |
Python | aws_cdk.interfaces.aws_iot.MitigationActionReference |
TypeScript | aws-cdk-lib » interfaces » aws_iot » MitigationActionReference |
A reference to a MitigationAction resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iot as interfaces_aws_iot } from 'aws-cdk-lib/interfaces';
const mitigationActionReference: interfaces_aws_iot.MitigationActionReference = {
actionName: 'actionName',
mitigationActionArn: 'mitigationActionArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| action | string | The ActionName of the MitigationAction resource. |
| mitigation | string | The ARN of the MitigationAction resource. |
actionName
Type:
string
The ActionName of the MitigationAction resource.
mitigationActionArn
Type:
string
The ARN of the MitigationAction resource.

.NET
Go
Java
Python
TypeScript