aws-sdk-cloudwatchlogs 0.25.1

AWS SDK for Amazon CloudWatch Logs
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct DescribeDestinationsOutput {
    /// <p>The destinations.</p>
    #[doc(hidden)]
    pub destinations: std::option::Option<std::vec::Vec<crate::types::Destination>>,
    /// <p>The token for the next set of items to return. The token expires after 24 hours.</p>
    #[doc(hidden)]
    pub next_token: std::option::Option<std::string::String>,
    _request_id: Option<String>,
}
impl DescribeDestinationsOutput {
    /// <p>The destinations.</p>
    pub fn destinations(&self) -> std::option::Option<&[crate::types::Destination]> {
        self.destinations.as_deref()
    }
    /// <p>The token for the next set of items to return. The token expires after 24 hours.</p>
    pub fn next_token(&self) -> std::option::Option<&str> {
        self.next_token.as_deref()
    }
}
impl aws_http::request_id::RequestId for DescribeDestinationsOutput {
    fn request_id(&self) -> Option<&str> {
        self._request_id.as_deref()
    }
}
impl DescribeDestinationsOutput {
    /// Creates a new builder-style object to manufacture [`DescribeDestinationsOutput`](crate::operation::describe_destinations::DescribeDestinationsOutput).
    pub fn builder(
    ) -> crate::operation::describe_destinations::builders::DescribeDestinationsOutputBuilder {
        crate::operation::describe_destinations::builders::DescribeDestinationsOutputBuilder::default()
    }
}

/// A builder for [`DescribeDestinationsOutput`](crate::operation::describe_destinations::DescribeDestinationsOutput).
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct DescribeDestinationsOutputBuilder {
    pub(crate) destinations: std::option::Option<std::vec::Vec<crate::types::Destination>>,
    pub(crate) next_token: std::option::Option<std::string::String>,
    _request_id: Option<String>,
}
impl DescribeDestinationsOutputBuilder {
    /// Appends an item to `destinations`.
    ///
    /// To override the contents of this collection use [`set_destinations`](Self::set_destinations).
    ///
    /// <p>The destinations.</p>
    pub fn destinations(mut self, input: crate::types::Destination) -> Self {
        let mut v = self.destinations.unwrap_or_default();
        v.push(input);
        self.destinations = Some(v);
        self
    }
    /// <p>The destinations.</p>
    pub fn set_destinations(
        mut self,
        input: std::option::Option<std::vec::Vec<crate::types::Destination>>,
    ) -> Self {
        self.destinations = input;
        self
    }
    /// <p>The token for the next set of items to return. The token expires after 24 hours.</p>
    pub fn next_token(mut self, input: impl Into<std::string::String>) -> Self {
        self.next_token = Some(input.into());
        self
    }
    /// <p>The token for the next set of items to return. The token expires after 24 hours.</p>
    pub fn set_next_token(mut self, input: std::option::Option<std::string::String>) -> Self {
        self.next_token = input;
        self
    }
    pub(crate) fn _request_id(mut self, request_id: impl Into<String>) -> Self {
        self._request_id = Some(request_id.into());
        self
    }

    pub(crate) fn _set_request_id(&mut self, request_id: Option<String>) -> &mut Self {
        self._request_id = request_id;
        self
    }
    /// Consumes the builder and constructs a [`DescribeDestinationsOutput`](crate::operation::describe_destinations::DescribeDestinationsOutput).
    pub fn build(self) -> crate::operation::describe_destinations::DescribeDestinationsOutput {
        crate::operation::describe_destinations::DescribeDestinationsOutput {
            destinations: self.destinations,
            next_token: self.next_token,
            _request_id: self._request_id,
        }
    }
}