pub struct Builder { /* private fields */ }
Expand description
A builder for CreateBrowserSettingsOutput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn browser_settings_arn(self, input: impl Into<String>) -> Self
pub fn browser_settings_arn(self, input: impl Into<String>) -> Self
The ARN of the browser settings.
sourcepub fn set_browser_settings_arn(self, input: Option<String>) -> Self
pub fn set_browser_settings_arn(self, input: Option<String>) -> Self
The ARN of the browser settings.
Examples found in repository?
src/json_deser.rs (lines 727-733)
709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756
pub(crate) fn deser_operation_crate_operation_create_browser_settings(
value: &[u8],
mut builder: crate::output::create_browser_settings_output::Builder,
) -> Result<
crate::output::create_browser_settings_output::Builder,
aws_smithy_json::deserialize::error::DeserializeError,
> {
let mut tokens_owned =
aws_smithy_json::deserialize::json_token_iter(crate::json_deser::or_empty_doc(value))
.peekable();
let tokens = &mut tokens_owned;
aws_smithy_json::deserialize::token::expect_start_object(tokens.next())?;
loop {
match tokens.next().transpose()? {
Some(aws_smithy_json::deserialize::Token::EndObject { .. }) => break,
Some(aws_smithy_json::deserialize::Token::ObjectKey { key, .. }) => {
match key.to_unescaped()?.as_ref() {
"browserSettingsArn" => {
builder = builder.set_browser_settings_arn(
aws_smithy_json::deserialize::token::expect_string_or_null(
tokens.next(),
)?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
_ => aws_smithy_json::deserialize::token::skip_value(tokens)?,
}
}
other => {
return Err(
aws_smithy_json::deserialize::error::DeserializeError::custom(format!(
"expected object key or end object, found: {:?}",
other
)),
)
}
}
}
if tokens.next().is_some() {
return Err(
aws_smithy_json::deserialize::error::DeserializeError::custom(
"found more JSON tokens after completing parsing",
),
);
}
Ok(builder)
}
sourcepub fn build(self) -> CreateBrowserSettingsOutput
pub fn build(self) -> CreateBrowserSettingsOutput
Consumes the builder and constructs a CreateBrowserSettingsOutput
.
Examples found in repository?
src/operation_deser.rs (line 765)
750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767
pub fn parse_create_browser_settings_response(
response: &http::Response<bytes::Bytes>,
) -> std::result::Result<
crate::output::CreateBrowserSettingsOutput,
crate::error::CreateBrowserSettingsError,
> {
Ok({
#[allow(unused_mut)]
let mut output = crate::output::create_browser_settings_output::Builder::default();
let _ = response;
output = crate::json_deser::deser_operation_crate_operation_create_browser_settings(
response.body().as_ref(),
output,
)
.map_err(crate::error::CreateBrowserSettingsError::unhandled)?;
output.build()
})
}