aws_sdk_connect/operation/create_vocabulary/
_create_vocabulary_output.rs#[allow(missing_docs)] #[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct CreateVocabularyOutput {
pub vocabulary_arn: ::std::string::String,
pub vocabulary_id: ::std::string::String,
pub state: crate::types::VocabularyState,
_request_id: Option<String>,
}
impl CreateVocabularyOutput {
pub fn vocabulary_arn(&self) -> &str {
use std::ops::Deref;
self.vocabulary_arn.deref()
}
pub fn vocabulary_id(&self) -> &str {
use std::ops::Deref;
self.vocabulary_id.deref()
}
pub fn state(&self) -> &crate::types::VocabularyState {
&self.state
}
}
impl ::aws_types::request_id::RequestId for CreateVocabularyOutput {
fn request_id(&self) -> Option<&str> {
self._request_id.as_deref()
}
}
impl CreateVocabularyOutput {
pub fn builder() -> crate::operation::create_vocabulary::builders::CreateVocabularyOutputBuilder {
crate::operation::create_vocabulary::builders::CreateVocabularyOutputBuilder::default()
}
}
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct CreateVocabularyOutputBuilder {
pub(crate) vocabulary_arn: ::std::option::Option<::std::string::String>,
pub(crate) vocabulary_id: ::std::option::Option<::std::string::String>,
pub(crate) state: ::std::option::Option<crate::types::VocabularyState>,
_request_id: Option<String>,
}
impl CreateVocabularyOutputBuilder {
pub fn vocabulary_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.vocabulary_arn = ::std::option::Option::Some(input.into());
self
}
pub fn set_vocabulary_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.vocabulary_arn = input;
self
}
pub fn get_vocabulary_arn(&self) -> &::std::option::Option<::std::string::String> {
&self.vocabulary_arn
}
pub fn vocabulary_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.vocabulary_id = ::std::option::Option::Some(input.into());
self
}
pub fn set_vocabulary_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.vocabulary_id = input;
self
}
pub fn get_vocabulary_id(&self) -> &::std::option::Option<::std::string::String> {
&self.vocabulary_id
}
pub fn state(mut self, input: crate::types::VocabularyState) -> Self {
self.state = ::std::option::Option::Some(input);
self
}
pub fn set_state(mut self, input: ::std::option::Option<crate::types::VocabularyState>) -> Self {
self.state = input;
self
}
pub fn get_state(&self) -> &::std::option::Option<crate::types::VocabularyState> {
&self.state
}
pub(crate) fn _request_id(mut self, request_id: impl Into<String>) -> Self {
self._request_id = Some(request_id.into());
self
}
pub(crate) fn _set_request_id(&mut self, request_id: Option<String>) -> &mut Self {
self._request_id = request_id;
self
}
pub fn build(
self,
) -> ::std::result::Result<crate::operation::create_vocabulary::CreateVocabularyOutput, ::aws_smithy_types::error::operation::BuildError> {
::std::result::Result::Ok(crate::operation::create_vocabulary::CreateVocabularyOutput {
vocabulary_arn: self.vocabulary_arn.ok_or_else(|| {
::aws_smithy_types::error::operation::BuildError::missing_field(
"vocabulary_arn",
"vocabulary_arn was not specified but it is required when building CreateVocabularyOutput",
)
})?,
vocabulary_id: self.vocabulary_id.ok_or_else(|| {
::aws_smithy_types::error::operation::BuildError::missing_field(
"vocabulary_id",
"vocabulary_id was not specified but it is required when building CreateVocabularyOutput",
)
})?,
state: self.state.ok_or_else(|| {
::aws_smithy_types::error::operation::BuildError::missing_field(
"state",
"state was not specified but it is required when building CreateVocabularyOutput",
)
})?,
_request_id: self._request_id,
})
}
}