How to use stop_delivery_stream_encryption method in localstack

Best Python code snippet using localstack_python

client.pyi

Source:client.pyi Github

copy

Full Screen

...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(...

Full Screen

Full Screen

client.py

Source:client.py Github

copy

Full Screen

...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:...

Full Screen

Full Screen

Automation Testing Tutorials

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.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run localstack automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful