aws_sdk_firehose/client/
describe_delivery_stream.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 [`DescribeDeliveryStream`](crate::operation::describe_delivery_stream::builders::DescribeDeliveryStreamFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`delivery_stream_name(impl Into<String>)`](crate::operation::describe_delivery_stream::builders::DescribeDeliveryStreamFluentBuilder::delivery_stream_name) / [`set_delivery_stream_name(Option<String>)`](crate::operation::describe_delivery_stream::builders::DescribeDeliveryStreamFluentBuilder::set_delivery_stream_name):<br>required: **true**<br><p>The name of the Firehose stream.</p><br>
7    ///   - [`limit(i32)`](crate::operation::describe_delivery_stream::builders::DescribeDeliveryStreamFluentBuilder::limit) / [`set_limit(Option<i32>)`](crate::operation::describe_delivery_stream::builders::DescribeDeliveryStreamFluentBuilder::set_limit):<br>required: **false**<br><p>The limit on the number of destinations to return. You can have one destination per Firehose stream.</p><br>
8    ///   - [`exclusive_start_destination_id(impl Into<String>)`](crate::operation::describe_delivery_stream::builders::DescribeDeliveryStreamFluentBuilder::exclusive_start_destination_id) / [`set_exclusive_start_destination_id(Option<String>)`](crate::operation::describe_delivery_stream::builders::DescribeDeliveryStreamFluentBuilder::set_exclusive_start_destination_id):<br>required: **false**<br><p>The ID of the destination to start returning the destination information. Firehose supports one destination per Firehose stream.</p><br>
9    /// - On success, responds with [`DescribeDeliveryStreamOutput`](crate::operation::describe_delivery_stream::DescribeDeliveryStreamOutput) with field(s):
10    ///   - [`delivery_stream_description(Option<DeliveryStreamDescription>)`](crate::operation::describe_delivery_stream::DescribeDeliveryStreamOutput::delivery_stream_description): <p>Information about the Firehose stream.</p>
11    /// - On failure, responds with [`SdkError<DescribeDeliveryStreamError>`](crate::operation::describe_delivery_stream::DescribeDeliveryStreamError)
12    pub fn describe_delivery_stream(&self) -> crate::operation::describe_delivery_stream::builders::DescribeDeliveryStreamFluentBuilder {
13        crate::operation::describe_delivery_stream::builders::DescribeDeliveryStreamFluentBuilder::new(self.handle.clone())
14    }
15}