aws_sdk_firehose/client/
stop_delivery_stream_encryption.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`StopDeliveryStreamEncryption`](crate::operation::stop_delivery_stream_encryption::builders::StopDeliveryStreamEncryptionFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`delivery_stream_name(impl Into<String>)`](crate::operation::stop_delivery_stream_encryption::builders::StopDeliveryStreamEncryptionFluentBuilder::delivery_stream_name) / [`set_delivery_stream_name(Option<String>)`](crate::operation::stop_delivery_stream_encryption::builders::StopDeliveryStreamEncryptionFluentBuilder::set_delivery_stream_name):<br>required: **true**<br><p>The name of the Firehose stream for which you want to disable server-side encryption (SSE).</p><br>
7    /// - On success, responds with [`StopDeliveryStreamEncryptionOutput`](crate::operation::stop_delivery_stream_encryption::StopDeliveryStreamEncryptionOutput)
8    /// - On failure, responds with [`SdkError<StopDeliveryStreamEncryptionError>`](crate::operation::stop_delivery_stream_encryption::StopDeliveryStreamEncryptionError)
9    pub fn stop_delivery_stream_encryption(
10        &self,
11    ) -> crate::operation::stop_delivery_stream_encryption::builders::StopDeliveryStreamEncryptionFluentBuilder {
12        crate::operation::stop_delivery_stream_encryption::builders::StopDeliveryStreamEncryptionFluentBuilder::new(self.handle.clone())
13    }
14}