Best Python code snippet using localstack_python
eventbridge.py
Source:eventbridge.py  
...1306    EventBridge.Client.exceptions.InternalException1307    1308    """1309    pass1310def put_partner_events(Entries=None):1311    """1312    This is used by SaaS partners to write events to a customer\'s partner event bus. AWS customers do not use this operation.1313    See also: AWS API Documentation1314    1315    Exceptions1316    1317    :example: response = client.put_partner_events(1318        Entries=[1319            {1320                'Time': datetime(2015, 1, 1),1321                'Source': 'string',1322                'Resources': [1323                    'string',1324                ],1325                'DetailType': 'string',1326                'Detail': 'string'1327            },1328        ]1329    )1330    1331    ...client.pyi
Source:client.pyi  
...496        Sends custom events to Amazon EventBridge so that they can be matched to rules.497        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/events.html#EventBridge.Client.put_events)498        [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_events/client.html#put_events)499        """500    def put_partner_events(501        self, *, Entries: List["PutPartnerEventsRequestEntryTypeDef"]502    ) -> PutPartnerEventsResponseTypeDef:503        """504        This is used by SaaS partners to write events to a customer's partner event bus.505        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/events.html#EventBridge.Client.put_partner_events)506        [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_events/client.html#put_partner_events)507        """508    def put_permission(509        self,510        *,511        EventBusName: str = None,512        Action: str = None,513        Principal: str = None,514        StatementId: str = None,...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!!
