pub(crate) fn de_direct_connect_gateway_association<'a, I>(
tokens: &mut ::std::iter::Peekable<I>,
_value: &'a [u8],
depth: u32,
) -> ::std::result::Result<Option<crate::types::DirectConnectGatewayAssociation>, ::aws_smithy_json::deserialize::error::DeserializeError>
where
I: Iterator<Item = Result<::aws_smithy_json::deserialize::Token<'a>, ::aws_smithy_json::deserialize::error::DeserializeError>>,
{
if depth >= 128u32 {
return Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(
"maximum nesting depth exceeded",
));
}
match tokens.next().transpose()? {
Some(::aws_smithy_json::deserialize::Token::ValueNull { .. }) => Ok(None),
Some(::aws_smithy_json::deserialize::Token::StartObject { .. }) => {
#[allow(unused_mut)]
let mut builder = crate::types::builders::DirectConnectGatewayAssociationBuilder::default();
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() {
"directConnectGatewayId" => {
builder = builder.set_direct_connect_gateway_id(
::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
"directConnectGatewayOwnerAccount" => {
builder = builder.set_direct_connect_gateway_owner_account(
::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
"associationState" => {
builder = builder.set_association_state(
::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
.map(|s| {
s.to_unescaped()
.map(|u| crate::types::DirectConnectGatewayAssociationState::from(u.as_ref()))
})
.transpose()?,
);
}
"stateChangeError" => {
builder = builder.set_state_change_error(
::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
"associatedGateway" => {
builder = builder.set_associated_gateway(crate::protocol_serde::shape_associated_gateway::de_associated_gateway(
tokens,
_value,
depth + 1,
)?);
}
"associationId" => {
builder = builder.set_association_id(
::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
"allowedPrefixesToDirectConnectGateway" => {
builder = builder.set_allowed_prefixes_to_direct_connect_gateway(
crate::protocol_serde::shape_route_filter_prefix_list::de_route_filter_prefix_list(tokens, _value, depth + 1)?,
);
}
"associatedCoreNetwork" => {
builder = builder.set_associated_core_network(
crate::protocol_serde::shape_associated_core_network::de_associated_core_network(tokens, _value, depth + 1)?,
);
}
"virtualGatewayId" => {
builder = builder.set_virtual_gateway_id(
::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
"virtualGatewayRegion" => {
builder = builder.set_virtual_gateway_region(
::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
"virtualGatewayOwnerAccount" => {
builder = builder.set_virtual_gateway_owner_account(
::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:?}"
)))
}
}
}
Ok(Some(builder.build()))
}
_ => Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(
"expected start object or null",
)),
}
}