Best Python code snippet using localstack_python
client.pyi
Source:client.pyi  
...172        Enables server-side encryption (SSE) for the delivery stream.173        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/firehose.html#Firehose.Client.start_delivery_stream_encryption)174        [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_firehose/client.html#start_delivery_stream_encryption)175        """176    def stop_delivery_stream_encryption(self, *, DeliveryStreamName: str) -> Dict[str, Any]:177        """178        Disables server-side encryption (SSE) for the delivery stream.179        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/firehose.html#Firehose.Client.stop_delivery_stream_encryption)180        [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_firehose/client.html#stop_delivery_stream_encryption)181        """182    def tag_delivery_stream(183        self, *, DeliveryStreamName: str, Tags: List["TagTypeDef"]184    ) -> Dict[str, Any]:185        """186        Adds or updates tags for the specified delivery stream.187        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/firehose.html#Firehose.Client.tag_delivery_stream)188        [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_firehose/client.html#tag_delivery_stream)189        """190    def untag_delivery_stream(...client.py
Source:client.py  
...29    def put_record_batch(self, DeliveryStreamName: str, Records: List) -> Dict:30        pass31    def start_delivery_stream_encryption(self, DeliveryStreamName: str) -> Dict:32        pass33    def stop_delivery_stream_encryption(self, DeliveryStreamName: str) -> Dict:34        pass35    def tag_delivery_stream(self, DeliveryStreamName: str, Tags: List) -> Dict:36        pass37    def untag_delivery_stream(self, DeliveryStreamName: str, TagKeys: List) -> Dict:38        pass39    def update_destination(self, DeliveryStreamName: str, CurrentDeliveryStreamVersionId: str, DestinationId: str, S3DestinationUpdate: Dict = None, ExtendedS3DestinationUpdate: Dict = None, RedshiftDestinationUpdate: Dict = None, ElasticsearchDestinationUpdate: Dict = None, SplunkDestinationUpdate: Dict = 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!!
