AWS
delete_load_balancer
Deletes the provided load balancer(s)
Deregisters one random target from target group
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 |
---|---|---|---|
tg_name | string | Yes |
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