aws_sdk_ioteventsdata/types/
_variable.rs#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct Variable {
pub name: ::std::string::String,
pub value: ::std::string::String,
}
impl Variable {
pub fn name(&self) -> &str {
use std::ops::Deref;
self.name.deref()
}
pub fn value(&self) -> &str {
use std::ops::Deref;
self.value.deref()
}
}
impl Variable {
pub fn builder() -> crate::types::builders::VariableBuilder {
crate::types::builders::VariableBuilder::default()
}
}
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct VariableBuilder {
pub(crate) name: ::std::option::Option<::std::string::String>,
pub(crate) value: ::std::option::Option<::std::string::String>,
}
impl VariableBuilder {
pub fn name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.name = ::std::option::Option::Some(input.into());
self
}
pub fn set_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.name = input;
self
}
pub fn get_name(&self) -> &::std::option::Option<::std::string::String> {
&self.name
}
pub fn value(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.value = ::std::option::Option::Some(input.into());
self
}
pub fn set_value(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.value = input;
self
}
pub fn get_value(&self) -> &::std::option::Option<::std::string::String> {
&self.value
}
pub fn build(self) -> ::std::result::Result<crate::types::Variable, ::aws_smithy_types::error::operation::BuildError> {
::std::result::Result::Ok(crate::types::Variable {
name: self.name.ok_or_else(|| {
::aws_smithy_types::error::operation::BuildError::missing_field(
"name",
"name was not specified but it is required when building Variable",
)
})?,
value: self.value.ok_or_else(|| {
::aws_smithy_types::error::operation::BuildError::missing_field(
"value",
"value was not specified but it is required when building Variable",
)
})?,
})
}
}