Struct aws_sdk_appstream::output::delete_image_output::Builder
source · pub struct Builder { /* private fields */ }Expand description
A builder for DeleteImageOutput.
Implementations§
source§impl Builder
impl Builder
sourcepub fn set_image(self, input: Option<Image>) -> Self
pub fn set_image(self, input: Option<Image>) -> Self
Information about the image.
Examples found in repository?
src/json_deser.rs (lines 1440-1442)
1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465
pub(crate) fn deser_operation_crate_operation_delete_image(
value: &[u8],
mut builder: crate::output::delete_image_output::Builder,
) -> Result<
crate::output::delete_image_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() {
"Image" => {
builder = builder.set_image(
crate::json_deser::deser_structure_crate_model_image(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) -> DeleteImageOutput
pub fn build(self) -> DeleteImageOutput
Consumes the builder and constructs a DeleteImageOutput.
Examples found in repository?
src/operation_deser.rs (line 2837)
2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839
pub fn parse_delete_image_response(
response: &http::Response<bytes::Bytes>,
) -> std::result::Result<crate::output::DeleteImageOutput, crate::error::DeleteImageError> {
Ok({
#[allow(unused_mut)]
let mut output = crate::output::delete_image_output::Builder::default();
let _ = response;
output = crate::json_deser::deser_operation_crate_operation_delete_image(
response.body().as_ref(),
output,
)
.map_err(crate::error::DeleteImageError::unhandled)?;
output.build()
})
}