Best Python code snippet using localstack_python
client.pyi
Source:client.pyi  
...1824    def delete_vpc(self, VpcId: str, DryRun: bool = None) -> None:1825        """1826        [Client.delete_vpc documentation](https://boto3.amazonaws.com/v1/documentation/api/1.14.47/reference/services/ec2.html#EC2.Client.delete_vpc)1827        """1828    def delete_vpc_endpoint_connection_notifications(1829        self, ConnectionNotificationIds: List[str], DryRun: bool = None1830    ) -> DeleteVpcEndpointConnectionNotificationsResultTypeDef:1831        """1832        [Client.delete_vpc_endpoint_connection_notifications documentation](https://boto3.amazonaws.com/v1/documentation/api/1.14.47/reference/services/ec2.html#EC2.Client.delete_vpc_endpoint_connection_notifications)1833        """1834    def delete_vpc_endpoint_service_configurations(1835        self, ServiceIds: List[str], DryRun: bool = None1836    ) -> DeleteVpcEndpointServiceConfigurationsResultTypeDef:1837        """1838        [Client.delete_vpc_endpoint_service_configurations documentation](https://boto3.amazonaws.com/v1/documentation/api/1.14.47/reference/services/ec2.html#EC2.Client.delete_vpc_endpoint_service_configurations)1839        """1840    def delete_vpc_endpoints(1841        self, VpcEndpointIds: List[str], DryRun: bool = None1842    ) -> DeleteVpcEndpointsResultTypeDef:...client.py
Source:client.py  
...236    def delete_volume(self, VolumeId: str, DryRun: bool = None):237        pass238    def delete_vpc(self, VpcId: str, DryRun: bool = None):239        pass240    def delete_vpc_endpoint_connection_notifications(self, ConnectionNotificationIds: List, DryRun: bool = None) -> Dict:241        pass242    def delete_vpc_endpoint_service_configurations(self, ServiceIds: List, DryRun: bool = None) -> Dict:243        pass244    def delete_vpc_endpoints(self, VpcEndpointIds: List, DryRun: bool = None) -> Dict:245        pass246    def delete_vpc_peering_connection(self, VpcPeeringConnectionId: str, DryRun: bool = None) -> Dict:247        pass248    def delete_vpn_connection(self, VpnConnectionId: str, DryRun: bool = None):249        pass250    def delete_vpn_connection_route(self, DestinationCidrBlock: str, VpnConnectionId: str):251        pass252    def delete_vpn_gateway(self, VpnGatewayId: str, DryRun: bool = None):253        pass254    def deprovision_byoip_cidr(self, Cidr: str, DryRun: bool = None) -> Dict:...Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!
