aws_sdk_dataexchange/protocol_serde/
shape_action.rs1pub(crate) fn de_action<'a, I>(
3 tokens: &mut ::std::iter::Peekable<I>,
4 _value: &'a [u8],
5) -> ::std::result::Result<Option<crate::types::Action>, ::aws_smithy_json::deserialize::error::DeserializeError>
6where
7 I: Iterator<Item = Result<::aws_smithy_json::deserialize::Token<'a>, ::aws_smithy_json::deserialize::error::DeserializeError>>,
8{
9 match tokens.next().transpose()? {
10 Some(::aws_smithy_json::deserialize::Token::ValueNull { .. }) => Ok(None),
11 Some(::aws_smithy_json::deserialize::Token::StartObject { .. }) => {
12 #[allow(unused_mut)]
13 let mut builder = crate::types::builders::ActionBuilder::default();
14 loop {
15 match tokens.next().transpose()? {
16 Some(::aws_smithy_json::deserialize::Token::EndObject { .. }) => break,
17 Some(::aws_smithy_json::deserialize::Token::ObjectKey { key, .. }) => match key.to_unescaped()?.as_ref() {
18 "ExportRevisionToS3" => {
19 builder = builder.set_export_revision_to_s3(
20 crate::protocol_serde::shape_auto_export_revision_to_s3_request_details::de_auto_export_revision_to_s3_request_details(tokens, _value)?
21 );
22 }
23 _ => ::aws_smithy_json::deserialize::token::skip_value(tokens)?,
24 },
25 other => {
26 return Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(format!(
27 "expected object key or end object, found: {other:?}"
28 )))
29 }
30 }
31 }
32 Ok(Some(builder.build()))
33 }
34 _ => Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(
35 "expected start object or null",
36 )),
37 }
38}
39
40pub fn ser_action(
41 object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
42 input: &crate::types::Action,
43) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
44 if let Some(var_1) = &input.export_revision_to_s3 {
45 #[allow(unused_mut)]
46 let mut object_2 = object.key("ExportRevisionToS3").start_object();
47 crate::protocol_serde::shape_auto_export_revision_to_s3_request_details::ser_auto_export_revision_to_s3_request_details(
48 &mut object_2,
49 var_1,
50 )?;
51 object_2.finish();
52 }
53 Ok(())
54}