AWS
get_alarm_state_value
Return the state value of an alarm
Below are the details and signature of the activity Python module.
Type | action |
Module | chaosaws.cloudwatch.actions |
Name | disable_rule |
Return | mapping |
Usage
JSON
{
"name": "disable-rule",
"type": "action",
"provider": {
"type": "python",
"module": "chaosaws.cloudwatch.actions",
"func": "disable_rule",
"arguments": {
"rule_name": ""
}
}
}
YAML
name: disable-rule
provider:
arguments:
rule_name: ""
func: disable_rule
module: chaosaws.cloudwatch.actions
type: python
type: action
Arguments
Name | Type | Default | Required | Title | Description |
---|---|---|---|---|---|
rule_name | string | Yes | Rule Name | Name of the rule to disable |
Signature
def disable_rule(rule_name: str,
configuration: Dict[str, Dict[str, str]] = None,
secrets: Dict[str, Dict[str, str]] = None) -> Dict[str, Any]:
pass