AWS
associate_vpc_with_zone
Associate a VPC with a private hosted zone
Remove an association between a VPC and a private hosted zone
Below are the details and signature of the activity Python module.
Type | action |
Module | chaosaws.route53.actions |
Name | disassociate_vpc_from_zone |
Return | mapping |
Usage
JSON
{
"name": "disassociate-vpc-from-zone",
"type": "action",
"provider": {
"type": "python",
"module": "chaosaws.route53.actions",
"func": "disassociate_vpc_from_zone",
"arguments": {
"zone_id": "",
"vpc_id": "",
"vpc_region": ""
}
}
}
YAML
name: disassociate-vpc-from-zone
provider:
arguments:
vpc_id: ""
vpc_region: ""
zone_id: ""
func: disassociate_vpc_from_zone
module: chaosaws.route53.actions
type: python
type: action
Arguments
Name | Type | Default | Required | Title | Description |
---|---|---|---|---|---|
zone_id | string | Yes | Zone ID | Route53 zone | |
vpc_id | string | Yes | VPC ID | ||
vpc_region | string | Yes | Region | VPC region | |
comment | string | null | No | Comment | A comment for the operation’s audit |
Signature
def disassociate_vpc_from_zone(
zone_id: str,
vpc_id: str,
vpc_region: str,
comment: str = None,
configuration: Dict[str, Dict[str, str]] = None,
secrets: Dict[str, Dict[str, str]] = None) -> Dict[str, Any]:
pass