#[allow(missing_docs)] #[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct DescribeTrackerInput {
    pub tracker_name: ::std::option::Option<::std::string::String>,
}
impl DescribeTrackerInput {
    pub fn tracker_name(&self) -> ::std::option::Option<&str> {
        self.tracker_name.as_deref()
    }
}
impl DescribeTrackerInput {
    pub fn builder() -> crate::operation::describe_tracker::builders::DescribeTrackerInputBuilder {
        crate::operation::describe_tracker::builders::DescribeTrackerInputBuilder::default()
    }
}
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
pub struct DescribeTrackerInputBuilder {
    pub(crate) tracker_name: ::std::option::Option<::std::string::String>,
}
impl DescribeTrackerInputBuilder {
    pub fn tracker_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.tracker_name = ::std::option::Option::Some(input.into());
        self
    }
    pub fn set_tracker_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.tracker_name = input;
        self
    }
    pub fn get_tracker_name(&self) -> &::std::option::Option<::std::string::String> {
        &self.tracker_name
    }
    pub fn build(
        self,
    ) -> ::std::result::Result<crate::operation::describe_tracker::DescribeTrackerInput, ::aws_smithy_http::operation::error::BuildError> {
        ::std::result::Result::Ok(crate::operation::describe_tracker::DescribeTrackerInput {
            tracker_name: self.tracker_name,
        })
    }
}