1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeReturnShippingLabel`](crate::operation::describe_return_shipping_label::builders::DescribeReturnShippingLabelFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`job_id(impl Into<String>)`](crate::operation::describe_return_shipping_label::builders::DescribeReturnShippingLabelFluentBuilder::job_id) / [`set_job_id(Option<String>)`](crate::operation::describe_return_shipping_label::builders::DescribeReturnShippingLabelFluentBuilder::set_job_id):<br>required: **true**<br><p>The automatically generated ID for a job, for example <code>JID123e4567-e89b-12d3-a456-426655440000</code>.</p><br>
    /// - On success, responds with [`DescribeReturnShippingLabelOutput`](crate::operation::describe_return_shipping_label::DescribeReturnShippingLabelOutput) with field(s):
    ///   - [`status(Option<ShippingLabelStatus>)`](crate::operation::describe_return_shipping_label::DescribeReturnShippingLabelOutput::status): <p>The status information of the task on a Snow device that is being returned to Amazon Web Services.</p>
    ///   - [`expiration_date(Option<DateTime>)`](crate::operation::describe_return_shipping_label::DescribeReturnShippingLabelOutput::expiration_date): <p>The expiration date of the current return shipping label.</p>
    ///   - [`return_shipping_label_uri(Option<String>)`](crate::operation::describe_return_shipping_label::DescribeReturnShippingLabelOutput::return_shipping_label_uri): <p>The pre-signed Amazon S3 URI used to download the return shipping label.</p>
    /// - On failure, responds with [`SdkError<DescribeReturnShippingLabelError>`](crate::operation::describe_return_shipping_label::DescribeReturnShippingLabelError)
    pub fn describe_return_shipping_label(
        &self,
    ) -> crate::operation::describe_return_shipping_label::builders::DescribeReturnShippingLabelFluentBuilder {
        crate::operation::describe_return_shipping_label::builders::DescribeReturnShippingLabelFluentBuilder::new(self.handle.clone())
    }
}