Best Python code snippet using localstack_python
eventbridge.py
Source:eventbridge.py  
...178    :type Name: string179    :param Name: [REQUIRED]\nThe name of the event bus to delete.\n180    """181    pass182def delete_partner_event_source(Name=None, Account=None):183    """184    This operation is used by SaaS partners to delete a partner event source. This operation is not used by AWS customers.185    When you delete an event source, the status of the corresponding partner event bus in the AWS customer account becomes DELETED.186    See also: AWS API Documentation187    188    Exceptions189    190    :example: response = client.delete_partner_event_source(191        Name='string',192        Account='string'193    )194    195    196    :type Name: string197    :param Name: [REQUIRED]\nThe name of the event source to delete.\n198    :type Account: string199    :param Account: [REQUIRED]\nThe AWS account ID of the AWS customer that the event source was created for.\n200    :returns: 201    EventBridge.Client.exceptions.InternalException202    EventBridge.Client.exceptions.ConcurrentModificationException203    204    """...client.pyi
Source:client.pyi  
...254        Deletes the specified custom event bus or partner event bus.255        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/events.html#EventBridge.Client.delete_event_bus)256        [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_events/client.html#delete_event_bus)257        """258    def delete_partner_event_source(self, *, Name: str, Account: str) -> None:259        """260        This operation is used by SaaS partners to delete a partner event source.261        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/events.html#EventBridge.Client.delete_partner_event_source)262        [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_events/client.html#delete_partner_event_source)263        """264    def delete_rule(self, *, Name: str, EventBusName: str = None, Force: bool = None) -> None:265        """266        Deletes the specified rule.267        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/events.html#EventBridge.Client.delete_rule)268        [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_events/client.html#delete_rule)269        """270    def describe_api_destination(self, *, Name: str) -> DescribeApiDestinationResponseTypeDef:271        """272        Retrieves details about an API destination....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!!
