// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DeleteStream`](crate::operation::delete_stream::builders::DeleteStreamFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`cluster_identifier(impl Into<String>)`](crate::operation::delete_stream::builders::DeleteStreamFluentBuilder::cluster_identifier) / [`set_cluster_identifier(Option<String>)`](crate::operation::delete_stream::builders::DeleteStreamFluentBuilder::set_cluster_identifier):<br>required: **true**<br><p>The ID of the cluster containing the stream to delete.</p><br>
/// - [`stream_identifier(impl Into<String>)`](crate::operation::delete_stream::builders::DeleteStreamFluentBuilder::stream_identifier) / [`set_stream_identifier(Option<String>)`](crate::operation::delete_stream::builders::DeleteStreamFluentBuilder::set_stream_identifier):<br>required: **true**<br><p>The ID of the stream to delete.</p><br>
/// - [`client_token(impl Into<String>)`](crate::operation::delete_stream::builders::DeleteStreamFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::delete_stream::builders::DeleteStreamFluentBuilder::set_client_token):<br>required: **false**<br><p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, the subsequent retries with the same client token return the result from the original successful request and they have no additional effect.</p> <p>If you don't specify a client token, the Amazon Web Services SDK automatically generates one.</p><br>
/// - On success, responds with [`DeleteStreamOutput`](crate::operation::delete_stream::DeleteStreamOutput) with field(s):
/// - [`cluster_identifier(String)`](crate::operation::delete_stream::DeleteStreamOutput::cluster_identifier): <p>The ID of the cluster for the deleted stream.</p>
/// - [`stream_identifier(String)`](crate::operation::delete_stream::DeleteStreamOutput::stream_identifier): <p>The ID of the deleted stream.</p>
/// - [`arn(String)`](crate::operation::delete_stream::DeleteStreamOutput::arn): <p>The ARN of the deleted stream.</p>
/// - [`status(StreamStatus)`](crate::operation::delete_stream::DeleteStreamOutput::status): <p>The status of the stream.</p>
/// - [`creation_time(DateTime)`](crate::operation::delete_stream::DeleteStreamOutput::creation_time): <p>The time when the stream was created.</p>
/// - On failure, responds with [`SdkError<DeleteStreamError>`](crate::operation::delete_stream::DeleteStreamError)
pub fn delete_stream(&self) -> crate::operation::delete_stream::builders::DeleteStreamFluentBuilder {
crate::operation::delete_stream::builders::DeleteStreamFluentBuilder::new(self.handle.clone())
}
}