MitigationActionReference
- class aws_cdk.aws_iot.MitigationActionReference(*, action_name, mitigation_action_arn)
Bases:
object
A reference to a MitigationAction resource.
- Parameters:
action_name (
str
) – The ActionName of the MitigationAction resource.mitigation_action_arn (
str
) – The ARN of the MitigationAction resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_iot as iot mitigation_action_reference = iot.MitigationActionReference( action_name="actionName", mitigation_action_arn="mitigationActionArn" )
Attributes
- action_name
The ActionName of the MitigationAction resource.
- mitigation_action_arn
The ARN of the MitigationAction resource.