#[allow(missing_docs)] #[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct GetDevicesInput {
pub global_network_id: ::std::option::Option<::std::string::String>,
pub device_ids: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
pub site_id: ::std::option::Option<::std::string::String>,
pub max_results: ::std::option::Option<i32>,
pub next_token: ::std::option::Option<::std::string::String>,
}
impl GetDevicesInput {
pub fn global_network_id(&self) -> ::std::option::Option<&str> {
self.global_network_id.as_deref()
}
pub fn device_ids(&self) -> &[::std::string::String] {
self.device_ids.as_deref().unwrap_or_default()
}
pub fn site_id(&self) -> ::std::option::Option<&str> {
self.site_id.as_deref()
}
pub fn max_results(&self) -> ::std::option::Option<i32> {
self.max_results
}
pub fn next_token(&self) -> ::std::option::Option<&str> {
self.next_token.as_deref()
}
}
impl GetDevicesInput {
pub fn builder() -> crate::operation::get_devices::builders::GetDevicesInputBuilder {
crate::operation::get_devices::builders::GetDevicesInputBuilder::default()
}
}
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct GetDevicesInputBuilder {
pub(crate) global_network_id: ::std::option::Option<::std::string::String>,
pub(crate) device_ids: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
pub(crate) site_id: ::std::option::Option<::std::string::String>,
pub(crate) max_results: ::std::option::Option<i32>,
pub(crate) next_token: ::std::option::Option<::std::string::String>,
}
impl GetDevicesInputBuilder {
pub fn global_network_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.global_network_id = ::std::option::Option::Some(input.into());
self
}
pub fn set_global_network_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.global_network_id = input;
self
}
pub fn get_global_network_id(&self) -> &::std::option::Option<::std::string::String> {
&self.global_network_id
}
pub fn device_ids(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
let mut v = self.device_ids.unwrap_or_default();
v.push(input.into());
self.device_ids = ::std::option::Option::Some(v);
self
}
pub fn set_device_ids(mut self, input: ::std::option::Option<::std::vec::Vec<::std::string::String>>) -> Self {
self.device_ids = input;
self
}
pub fn get_device_ids(&self) -> &::std::option::Option<::std::vec::Vec<::std::string::String>> {
&self.device_ids
}
pub fn site_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.site_id = ::std::option::Option::Some(input.into());
self
}
pub fn set_site_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.site_id = input;
self
}
pub fn get_site_id(&self) -> &::std::option::Option<::std::string::String> {
&self.site_id
}
pub fn max_results(mut self, input: i32) -> Self {
self.max_results = ::std::option::Option::Some(input);
self
}
pub fn set_max_results(mut self, input: ::std::option::Option<i32>) -> Self {
self.max_results = input;
self
}
pub fn get_max_results(&self) -> &::std::option::Option<i32> {
&self.max_results
}
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 build(self) -> ::std::result::Result<crate::operation::get_devices::GetDevicesInput, ::aws_smithy_types::error::operation::BuildError> {
::std::result::Result::Ok(crate::operation::get_devices::GetDevicesInput {
global_network_id: self.global_network_id,
device_ids: self.device_ids,
site_id: self.site_id,
max_results: self.max_results,
next_token: self.next_token,
})
}
}