aws-sdk-firehose 1.113.0

AWS SDK for Amazon Kinesis Firehose
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeDeliveryStream`](crate::operation::describe_delivery_stream::builders::DescribeDeliveryStreamFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    ///   - [`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>
    ///   - [`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>
    /// - On success, responds with [`DescribeDeliveryStreamOutput`](crate::operation::describe_delivery_stream::DescribeDeliveryStreamOutput) with field(s):
    ///   - [`delivery_stream_description(Option<DeliveryStreamDescription>)`](crate::operation::describe_delivery_stream::DescribeDeliveryStreamOutput::delivery_stream_description): <p>Information about the Firehose stream.</p>
    /// - On failure, responds with [`SdkError<DescribeDeliveryStreamError>`](crate::operation::describe_delivery_stream::DescribeDeliveryStreamError)
    pub fn describe_delivery_stream(&self) -> crate::operation::describe_delivery_stream::builders::DescribeDeliveryStreamFluentBuilder {
        crate::operation::describe_delivery_stream::builders::DescribeDeliveryStreamFluentBuilder::new(self.handle.clone())
    }
}