aws_sdk_cloudwatchlogs/operation/describe_deliveries/
_describe_deliveries_input.rs#[allow(missing_docs)] #[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct DescribeDeliveriesInput {
pub next_token: ::std::option::Option<::std::string::String>,
pub limit: ::std::option::Option<i32>,
}
impl DescribeDeliveriesInput {
pub fn next_token(&self) -> ::std::option::Option<&str> {
self.next_token.as_deref()
}
pub fn limit(&self) -> ::std::option::Option<i32> {
self.limit
}
}
impl DescribeDeliveriesInput {
pub fn builder() -> crate::operation::describe_deliveries::builders::DescribeDeliveriesInputBuilder {
crate::operation::describe_deliveries::builders::DescribeDeliveriesInputBuilder::default()
}
}
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct DescribeDeliveriesInputBuilder {
pub(crate) next_token: ::std::option::Option<::std::string::String>,
pub(crate) limit: ::std::option::Option<i32>,
}
impl DescribeDeliveriesInputBuilder {
pub fn next_token(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.next_token = ::std::option::Option::Some(input.into());
self
}
pub fn set_next_token(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.next_token = input;
self
}
pub fn get_next_token(&self) -> &::std::option::Option<::std::string::String> {
&self.next_token
}
pub fn limit(mut self, input: i32) -> Self {
self.limit = ::std::option::Option::Some(input);
self
}
pub fn set_limit(mut self, input: ::std::option::Option<i32>) -> Self {
self.limit = input;
self
}
pub fn get_limit(&self) -> &::std::option::Option<i32> {
&self.limit
}
pub fn build(
self,
) -> ::std::result::Result<crate::operation::describe_deliveries::DescribeDeliveriesInput, ::aws_smithy_types::error::operation::BuildError> {
::std::result::Result::Ok(crate::operation::describe_deliveries::DescribeDeliveriesInput {
next_token: self.next_token,
limit: self.limit,
})
}
}