#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct Label {
pub name: ::std::string::String,
}
impl Label {
pub fn name(&self) -> &str {
use std::ops::Deref;
self.name.deref()
}
}
impl Label {
pub fn builder() -> crate::types::builders::LabelBuilder {
crate::types::builders::LabelBuilder::default()
}
}
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
pub struct LabelBuilder {
pub(crate) name: ::std::option::Option<::std::string::String>,
}
impl LabelBuilder {
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 build(self) -> ::std::result::Result<crate::types::Label, ::aws_smithy_types::error::operation::BuildError> {
::std::result::Result::Ok(crate::types::Label {
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 Label",
)
})?,
})
}
}