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