Struct aws_sdk_appstream::output::create_app_block_output::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for CreateAppBlockOutput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn set_app_block(self, input: Option<AppBlock>) -> Self
pub fn set_app_block(self, input: Option<AppBlock>) -> Self
The app block.
Examples found in repository?
src/json_deser.rs (lines 700-702)
682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725
pub(crate) fn deser_operation_crate_operation_create_app_block(
value: &[u8],
mut builder: crate::output::create_app_block_output::Builder,
) -> Result<
crate::output::create_app_block_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() {
"AppBlock" => {
builder = builder.set_app_block(
crate::json_deser::deser_structure_crate_model_app_block(tokens)?,
);
}
_ => 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) -> CreateAppBlockOutput
pub fn build(self) -> CreateAppBlockOutput
Consumes the builder and constructs a CreateAppBlockOutput
.
Examples found in repository?
src/operation_deser.rs (line 737)
725 726 727 728 729 730 731 732 733 734 735 736 737 738 739
pub fn parse_create_app_block_response(
response: &http::Response<bytes::Bytes>,
) -> std::result::Result<crate::output::CreateAppBlockOutput, crate::error::CreateAppBlockError> {
Ok({
#[allow(unused_mut)]
let mut output = crate::output::create_app_block_output::Builder::default();
let _ = response;
output = crate::json_deser::deser_operation_crate_operation_create_app_block(
response.body().as_ref(),
output,
)
.map_err(crate::error::CreateAppBlockError::unhandled)?;
output.build()
})
}