AWS
all_targets_healthy
Return true/false based on if all targets for listed target groups are healthy
Below are the details and signature of the activity Python module.
Type | action |
Module | chaosaws.elbv2.actions |
Name | deregister_target |
Return | mapping |
Usage
JSON
{
"name": "deregister-target",
"type": "action",
"provider": {
"type": "python",
"module": "chaosaws.elbv2.actions",
"func": "deregister_target",
"arguments": {
"tg_name": ""
}
}
}
YAML
name: deregister-target
provider:
arguments:
tg_name: ""
func: deregister_target
module: chaosaws.elbv2.actions
type: python
type: action
Arguments
Name | Type | Default | Required | Title | Description |
---|---|---|---|---|---|
tg_name | str | Yes | Target Group Name |
Signature
def deregister_target(
tg_name: str,
configuration: Dict[str, Dict[str, str]] = None,
secrets: Dict[str, Dict[str, str]] = None) -> Dict[str, Any]:
pass