aws-sdk-iotmanagedintegrations 1.42.0

AWS SDK for Managed integrations for AWS IoT Device Management
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetDestination`](crate::operation::get_destination::builders::GetDestinationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`name(impl Into<String>)`](crate::operation::get_destination::builders::GetDestinationFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::get_destination::builders::GetDestinationFluentBuilder::set_name):<br>required: **true**<br><p>The name of the customer-managed destination.</p><br>
    /// - On success, responds with [`GetDestinationOutput`](crate::operation::get_destination::GetDestinationOutput) with field(s):
    ///   - [`description(Option<String>)`](crate::operation::get_destination::GetDestinationOutput::description): <p>The description of the customer-managed destination.</p>
    ///   - [`delivery_destination_arn(Option<String>)`](crate::operation::get_destination::GetDestinationOutput::delivery_destination_arn): <p>The Amazon Resource Name (ARN) of the customer-managed destination.</p>
    ///   - [`delivery_destination_type(Option<DeliveryDestinationType>)`](crate::operation::get_destination::GetDestinationOutput::delivery_destination_type): <p>The destination type for the customer-managed destination.</p>
    ///   - [`name(Option<String>)`](crate::operation::get_destination::GetDestinationOutput::name): <p>The name of the customer-managed destination.</p>
    ///   - [`role_arn(Option<String>)`](crate::operation::get_destination::GetDestinationOutput::role_arn): <p>The Amazon Resource Name (ARN) of the delivery destination role.</p>
    ///   - [`created_at(Option<DateTime>)`](crate::operation::get_destination::GetDestinationOutput::created_at): <p>The timestamp value of when the destination creation requset occurred.</p>
    ///   - [`updated_at(Option<DateTime>)`](crate::operation::get_destination::GetDestinationOutput::updated_at): <p>The timestamp value of when the destination update requset occurred.</p>
    ///   - [`tags(Option<HashMap::<String, String>>)`](crate::operation::get_destination::GetDestinationOutput::tags): <p>A set of key/value pairs that are used to manage the customer-managed destination.</p>
    /// - On failure, responds with [`SdkError<GetDestinationError>`](crate::operation::get_destination::GetDestinationError)
    pub fn get_destination(&self) -> crate::operation::get_destination::builders::GetDestinationFluentBuilder {
        crate::operation::get_destination::builders::GetDestinationFluentBuilder::new(self.handle.clone())
    }
}