83 92 | runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
|
84 93 | }
|
85 94 | runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
|
86 95 | config_override,
|
87 96 | client_config.config.clone(),
|
88 97 | &client_config.runtime_components,
|
89 98 | ));
|
90 99 | }
|
91 100 | runtime_plugins
|
92 101 | }
|
102 + | /* OperationGenerator.kt:85 */
|
93 103 | }
|
104 + | /* OperationRuntimePluginGenerator.kt:55 */
|
94 105 | impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for XmlMapsFlattenedNestedXmlNamespace {
|
95 106 | fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
|
96 107 | let mut cfg = ::aws_smithy_types::config_bag::Layer::new("XmlMapsFlattenedNestedXmlNamespace");
|
97 108 |
|
98 109 | cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
|
99 110 | XmlMapsFlattenedNestedXmlNamespaceRequestSerializer,
|
100 111 | ));
|
101 112 | cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
|
102 113 | XmlMapsFlattenedNestedXmlNamespaceResponseDeserializer,
|
103 114 | ));
|
104 115 |
|
105 116 | cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
|
106 117 | ::aws_smithy_runtime_api::client::auth::static_resolver::StaticAuthSchemeOptionResolverParams::new(),
|
107 118 | ));
|
108 119 |
|
109 120 | cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new(
|
110 121 | "XmlMapsFlattenedNestedXmlNamespace",
|
111 122 | "Rest XML Protocol",
|
112 123 | ));
|
113 124 |
|
114 125 | ::std::option::Option::Some(cfg.freeze())
|
115 126 | }
|
116 127 |
|
117 128 | fn runtime_components(
|
118 129 | &self,
|
119 130 | _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
|
120 131 | ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
|
121 132 | #[allow(unused_mut)]
|
122 133 | let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("XmlMapsFlattenedNestedXmlNamespace")
|
123 134 | .with_interceptor(::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default())
|
124 135 | .with_interceptor(XmlMapsFlattenedNestedXmlNamespaceEndpointParamsInterceptor)
|
125 136 | .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
|
126 137 | crate::operation::xml_maps_flattened_nested_xml_namespace::XmlMapsFlattenedNestedXmlNamespaceError,
|
127 138 | >::new())
|
128 139 | .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
|
129 140 | crate::operation::xml_maps_flattened_nested_xml_namespace::XmlMapsFlattenedNestedXmlNamespaceError,
|
130 141 | >::new());
|
131 142 |
|
132 143 | ::std::borrow::Cow::Owned(rcb)
|
133 144 | }
|
134 145 | }
|
135 146 |
|
147 + | /* ResponseDeserializerGenerator.kt:64 */
|
136 148 | #[derive(Debug)]
|
137 149 | struct XmlMapsFlattenedNestedXmlNamespaceResponseDeserializer;
|
138 150 | impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for XmlMapsFlattenedNestedXmlNamespaceResponseDeserializer {
|
139 151 | fn deserialize_nonstreaming(
|
140 152 | &self,
|
141 153 | response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
|
142 154 | ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
|
143 155 | let (success, status) = (response.status().is_success(), response.status().as_u16());
|
144 156 | let headers = response.headers();
|
145 157 | let body = response.body().bytes().expect("body loaded");
|
146 158 | #[allow(unused_mut)]
|
147 159 | let mut force_error = false;
|
148 160 |
|
149 161 | let parse_result = if !success && status != 200 || force_error {
|
150 162 | crate::protocol_serde::shape_xml_maps_flattened_nested_xml_namespace::de_xml_maps_flattened_nested_xml_namespace_http_error(
|
151 163 | status, headers, body,
|
152 164 | )
|
153 165 | } else {
|
154 166 | crate::protocol_serde::shape_xml_maps_flattened_nested_xml_namespace::de_xml_maps_flattened_nested_xml_namespace_http_response(
|
155 167 | status, headers, body,
|
156 168 | )
|
157 169 | };
|
158 170 | crate::protocol_serde::type_erase_result(parse_result)
|
159 171 | }
|
160 172 | }
|
173 + | /* RequestSerializerGenerator.kt:67 */
|
161 174 | #[derive(Debug)]
|
162 175 | struct XmlMapsFlattenedNestedXmlNamespaceRequestSerializer;
|
163 176 | impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for XmlMapsFlattenedNestedXmlNamespaceRequestSerializer {
|
164 177 | #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
|
165 178 | fn serialize_input(
|
166 179 | &self,
|
167 180 | input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
|
168 181 | _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
|
169 182 | ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
|
170 183 | let input = input
|
171 184 | .downcast::<crate::operation::xml_maps_flattened_nested_xml_namespace::XmlMapsFlattenedNestedXmlNamespaceInput>()
|
172 185 | .expect("correct type");
|
173 186 | let _header_serialization_settings = _cfg
|
174 187 | .load::<crate::serialization_settings::HeaderSerializationSettings>()
|
175 188 | .cloned()
|
176 189 | .unwrap_or_default();
|
177 190 | let mut request_builder = {
|
178 191 | fn uri_base(
|
179 192 | _input: &crate::operation::xml_maps_flattened_nested_xml_namespace::XmlMapsFlattenedNestedXmlNamespaceInput,
|
180 193 | output: &mut ::std::string::String,
|
181 194 | ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
|
182 195 | use ::std::fmt::Write as _;
|
183 196 | ::std::write!(output, "/XmlMapsFlattenedNestedXmlNamespace").expect("formatting should succeed");
|
184 197 | ::std::result::Result::Ok(())
|
185 198 | }
|
186 199 | #[allow(clippy::unnecessary_wraps)]
|
187 200 | fn update_http_builder(
|
188 201 | input: &crate::operation::xml_maps_flattened_nested_xml_namespace::XmlMapsFlattenedNestedXmlNamespaceInput,
|
189 202 | builder: ::http::request::Builder,
|
190 203 | ) -> ::std::result::Result<::http::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
|
191 204 | let mut uri = ::std::string::String::new();
|
192 205 | uri_base(input, &mut uri)?;
|
193 206 | ::std::result::Result::Ok(builder.method("POST").uri(uri))
|
194 207 | }
|
195 208 | let mut builder = update_http_builder(&input, ::http::request::Builder::new())?;
|
196 209 | builder = _header_serialization_settings.set_default_header(builder, ::http::header::CONTENT_TYPE, "application/xml");
|
197 210 | builder
|
198 211 | };
|
199 212 | let body = ::aws_smithy_types::body::SdkBody::from(
|
200 213 | crate::protocol_serde::shape_xml_maps_flattened_nested_xml_namespace::ser_xml_maps_flattened_nested_xml_namespace_op_input(&input)?,
|
201 214 | );
|
202 215 | if let Some(content_length) = body.content_length() {
|
203 216 | let content_length = content_length.to_string();
|
204 217 | request_builder = _header_serialization_settings.set_default_header(request_builder, ::http::header::CONTENT_LENGTH, &content_length);
|
205 218 | }
|
206 219 | ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
|
207 220 | }
|
208 221 | }
|
222 + | /* EndpointParamsInterceptorGenerator.kt:86 */
|
209 223 | #[derive(Debug)]
|
210 224 | struct XmlMapsFlattenedNestedXmlNamespaceEndpointParamsInterceptor;
|
211 225 |
|
212 226 | impl ::aws_smithy_runtime_api::client::interceptors::Intercept for XmlMapsFlattenedNestedXmlNamespaceEndpointParamsInterceptor {
|
213 227 | fn name(&self) -> &'static str {
|
214 228 | "XmlMapsFlattenedNestedXmlNamespaceEndpointParamsInterceptor"
|
215 229 | }
|
216 230 |
|
217 231 | fn read_before_execution(
|
218 232 | &self,
|
219 233 | context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
|
220 234 | '_,
|
221 235 | ::aws_smithy_runtime_api::client::interceptors::context::Input,
|
222 236 | ::aws_smithy_runtime_api::client::interceptors::context::Output,
|
223 237 | ::aws_smithy_runtime_api::client::interceptors::context::Error,
|
224 238 | >,
|
225 239 | cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
|
226 240 | ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
|
227 241 | let _input = context
|
228 242 | .input()
|
229 243 | .downcast_ref::<XmlMapsFlattenedNestedXmlNamespaceInput>()
|
230 244 | .ok_or("failed to downcast to XmlMapsFlattenedNestedXmlNamespaceInput")?;
|
231 245 |
|
232 246 | let params = crate::config::endpoint::Params::builder().build().map_err(|err| {
|
233 247 | ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
|
234 248 | })?;
|
235 249 | cfg.interceptor_state()
|
236 250 | .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
|
237 251 | ::std::result::Result::Ok(())
|
238 252 | }
|
239 253 | }
|
240 254 |
|
241 255 | // The get_* functions below are generated from JMESPath expressions in the
|
242 256 | // operationContextParams trait. They target the operation's input shape.
|
243 257 |
|
258 + | /* RustType.kt:516 */
|
244 259 | #[allow(unreachable_code, unused_variables)]
|
260 + | /* RustType.kt:516 */
|
245 261 | #[cfg(test)]
|
262 + | /* ProtocolTestGenerator.kt:98 */
|
246 263 | mod xml_maps_flattened_nested_xml_namespace_test {
|
247 264 |
|
248 265 | /// Test ID: DeserFlatNamespaceMaps
|
249 266 | #[::tokio::test]
|
250 267 | #[::tracing_test::traced_test]
|
251 268 | async fn deser_flat_namespace_maps_response() {
|
252 269 | let expected_output = crate::operation::xml_maps_flattened_nested_xml_namespace::XmlMapsFlattenedNestedXmlNamespaceOutput::builder()
|
253 270 | .set_my_map(::std::option::Option::Some({
|
254 271 | let mut ret = ::std::collections::HashMap::new();
|
255 272 | ret.insert("map2".to_owned(), {
|
256 273 | let mut ret = ::std::collections::HashMap::new();
|
257 274 | ret.insert("fourth".to_owned(), "onegai".to_owned());
|
258 275 | ret.insert("third".to_owned(), "plz".to_owned());
|
259 276 | ret
|
260 277 | });
|
261 278 | ret.insert("map1".to_owned(), {
|
262 279 | let mut ret = ::std::collections::HashMap::new();
|
263 280 | ret.insert("second".to_owned(), "konnichiwa".to_owned());
|
264 281 | ret.insert("first".to_owned(), "hi".to_owned());
|
265 282 | ret
|
266 283 | });
|
267 284 | ret
|
268 285 | }))
|
269 286 | .build();
|
270 287 | let mut http_response = ::aws_smithy_runtime_api::http::Response::try_from(::http::response::Builder::new()
|
271 288 | .status(200)
|
272 289 | .body(::aws_smithy_types::body::SdkBody::from("<XmlMapsFlattenedNestedXmlNamespaceInputOutput xmlns=\"http://aoo.com\"><myMap><yek xmlns=\"http://doo.com\">map2</yek><eulav xmlns=\"http://eoo.com\"><entry><K xmlns=\"http://goo.com\">third</K><V xmlns=\"http://hoo.com\">plz</V></entry><entry><K xmlns=\"http://goo.com\">fourth</K><V xmlns=\"http://hoo.com\">onegai</V></entry></eulav></myMap><myMap><yek xmlns=\"http://doo.com\">map1</yek><eulav xmlns=\"http://eoo.com\"><entry><K xmlns=\"http://goo.com\">second</K><V xmlns=\"http://hoo.com\">konnichiwa</V></entry><entry><K xmlns=\"http://goo.com\">first</K><V xmlns=\"http://hoo.com\">hi</V></entry></eulav></myMap></XmlMapsFlattenedNestedXmlNamespaceInput>"))
|
273 290 | .unwrap()
|
274 291 | ).unwrap();
|
275 292 | use ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin;
|
276 293 | use ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse;
|
277 294 |
|
278 295 | let op = crate::operation::xml_maps_flattened_nested_xml_namespace::XmlMapsFlattenedNestedXmlNamespace::new();
|
279 296 | let config = op.config().expect("the operation has config");
|
280 297 | let de = config
|
281 298 | .load::<::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer>()
|
282 299 | .expect("the config must have a deserializer");
|
283 300 |
|
284 301 | let parsed = de.deserialize_streaming(&mut http_response);
|
285 302 | let parsed = parsed.unwrap_or_else(|| {
|
286 303 | let http_response = http_response.map(|body| {
|
287 304 | ::aws_smithy_types::body::SdkBody::from(::bytes::Bytes::copy_from_slice(&::aws_smithy_protocol_test::decode_body_data(
|
288 305 | body.bytes().unwrap(),
|
289 306 | ::aws_smithy_protocol_test::MediaType::from("unknown"),
|
290 307 | )))
|
291 308 | });
|
292 309 | de.deserialize_nonstreaming(&http_response)
|
293 310 | });
|
294 311 | let parsed = parsed
|
295 312 | .expect("should be successful response")
|
296 313 | .downcast::<crate::operation::xml_maps_flattened_nested_xml_namespace::XmlMapsFlattenedNestedXmlNamespaceOutput>()
|
297 314 | .unwrap();
|
298 315 | ::pretty_assertions::assert_eq!(parsed.my_map, expected_output.my_map, "Unexpected value for `my_map`");
|
299 316 | }
|
317 + |
|
318 + | /* ProtocolTestGenerator.kt:98 */
|
300 319 | }
|
301 320 |
|
321 + | /* OperationErrorGenerator.kt:79 */
|
302 322 | /// Error type for the `XmlMapsFlattenedNestedXmlNamespaceError` operation.
|
323 + | /* RustType.kt:516 */
|
303 324 | #[non_exhaustive]
|
325 + | /* RustType.kt:516 */
|
304 326 | #[derive(::std::fmt::Debug)]
|
305 - | pub enum XmlMapsFlattenedNestedXmlNamespaceError {
|
327 + | pub /* OperationErrorGenerator.kt:81 */ enum XmlMapsFlattenedNestedXmlNamespaceError {
|
328 + | /* OperationErrorGenerator.kt:88 */
|
306 329 | /// An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
|
307 330 | #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
|
308 331 | variable wildcard pattern and check `.code()`:
|
309 332 | \
|
310 333 | `err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
|
311 334 | \
|
312 335 | See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-XmlMapsFlattenedNestedXmlNamespaceError) for what information is available for the error.")]
|
313 336 | Unhandled(crate::error::sealed_unhandled::Unhandled),
|
337 + | /* OperationErrorGenerator.kt:81 */
|
314 338 | }
|
339 + | /* OperationErrorGenerator.kt:218 */
|
315 340 | impl XmlMapsFlattenedNestedXmlNamespaceError {
|
341 + | /* OperationErrorGenerator.kt:219 */
|
316 342 | /// Creates the `XmlMapsFlattenedNestedXmlNamespaceError::Unhandled` variant from any error type.
|
317 343 | pub fn unhandled(
|
318 344 | err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
|
319 345 | ) -> Self {
|
320 346 | Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
|
321 347 | source: err.into(),
|
322 348 | meta: ::std::default::Default::default(),
|
323 349 | })
|
324 350 | }
|
325 351 |
|
326 352 | /// Creates the `XmlMapsFlattenedNestedXmlNamespaceError::Unhandled` variant from an [`ErrorMetadata`](::aws_smithy_types::error::ErrorMetadata).
|
327 353 | pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
|
328 354 | Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
|
329 355 | source: err.clone().into(),
|
330 356 | meta: err,
|
331 357 | })
|
332 358 | }
|
333 - | ///
|
359 + | /// /* OperationErrorGenerator.kt:236 */
|
334 360 | /// Returns error metadata, which includes the error code, message,
|
335 361 | /// request ID, and potentially additional information.
|
336 362 | ///
|
363 + | /* OperationErrorGenerator.kt:242 */
|
337 364 | pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
|
365 + | /* OperationErrorGenerator.kt:243 */
|
338 366 | match self {
|
339 - | Self::Unhandled(e) => &e.meta,
|
367 + | /* OperationErrorGenerator.kt:251 */ Self::Unhandled(e) => &e.meta,
|
368 + | /* OperationErrorGenerator.kt:243 */
|
340 369 | }
|
370 + | /* OperationErrorGenerator.kt:242 */
|
341 371 | }
|
372 + | /* OperationErrorGenerator.kt:218 */
|
342 373 | }
|
374 + | /* OperationErrorGenerator.kt:269 */
|
343 375 | impl ::std::error::Error for XmlMapsFlattenedNestedXmlNamespaceError {
|
376 + | /* OperationErrorGenerator.kt:270 */
|
344 377 | fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
|
378 + | /* OperationErrorGenerator.kt:318 */
|
345 379 | match self {
|
346 - | Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
|
380 + | /* OperationErrorGenerator.kt:326 */
|
381 + | Self::Unhandled(_inner) => {
|
382 + | /* OperationErrorGenerator.kt:279 */
|
383 + | ::std::option::Option::Some(&*_inner.source)
|
384 + | /* OperationErrorGenerator.kt:326 */
|
385 + | } /* OperationErrorGenerator.kt:318 */
|
347 386 | }
|
387 + | /* OperationErrorGenerator.kt:270 */
|
348 388 | }
|
389 + | /* OperationErrorGenerator.kt:269 */
|
349 390 | }
|
391 + | /* OperationErrorGenerator.kt:133 */
|
350 392 | impl ::std::fmt::Display for XmlMapsFlattenedNestedXmlNamespaceError {
|
393 + | /* OperationErrorGenerator.kt:134 */
|
351 394 | fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
395 + | /* OperationErrorGenerator.kt:318 */
|
352 396 | match self {
|
397 + | /* OperationErrorGenerator.kt:326 */
|
353 398 | Self::Unhandled(_inner) => {
|
399 + | /* OperationErrorGenerator.kt:139 */
|
354 400 | if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
|
355 401 | write!(f, "unhandled error ({code})")
|
356 402 | } else {
|
357 403 | f.write_str("unhandled error")
|
358 404 | }
|
405 + | /* OperationErrorGenerator.kt:326 */
|
406 + | } /* OperationErrorGenerator.kt:318 */
|
359 407 | }
|
408 + | /* OperationErrorGenerator.kt:134 */
|
360 409 | }
|
361 - | }
|
410 + | /* OperationErrorGenerator.kt:133 */
|
362 411 | }
|
412 + | /* OperationErrorGenerator.kt:182 */
|
363 413 | impl ::aws_smithy_types::retry::ProvideErrorKind for XmlMapsFlattenedNestedXmlNamespaceError {
|
414 + | /* OperationErrorGenerator.kt:186 */
|
364 415 | fn code(&self) -> ::std::option::Option<&str> {
|
416 + | /* OperationErrorGenerator.kt:187 */
|
365 417 | ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
|
418 + | /* OperationErrorGenerator.kt:186 */
|
366 419 | }
|
420 + | /* OperationErrorGenerator.kt:190 */
|
367 421 | fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
|
422 + | /* OperationErrorGenerator.kt:197 */
|
368 423 | ::std::option::Option::None
|
424 + | /* OperationErrorGenerator.kt:190 */
|
369 425 | }
|
426 + | /* OperationErrorGenerator.kt:182 */
|
370 427 | }
|
428 + | /* OperationErrorGenerator.kt:163 */
|
371 429 | impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for XmlMapsFlattenedNestedXmlNamespaceError {
|
430 + | /* OperationErrorGenerator.kt:164 */
|
372 431 | fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
|
432 + | /* OperationErrorGenerator.kt:318 */
|
373 433 | match self {
|
374 - | Self::Unhandled(_inner) => &_inner.meta,
|
434 + | /* OperationErrorGenerator.kt:326 */
|
435 + | Self::Unhandled(_inner) => {
|
436 + | /* OperationErrorGenerator.kt:168 */
|
437 + | &_inner.meta
|
438 + | /* OperationErrorGenerator.kt:326 */
|
439 + | } /* OperationErrorGenerator.kt:318 */
|
375 440 | }
|
441 + | /* OperationErrorGenerator.kt:164 */
|
376 442 | }
|
443 + | /* OperationErrorGenerator.kt:163 */
|
377 444 | }
|
445 + | /* OperationErrorGenerator.kt:109 */
|
378 446 | impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for XmlMapsFlattenedNestedXmlNamespaceError {
|
447 + | /* OperationErrorGenerator.kt:110 */
|
379 448 | fn create_unhandled_error(
|
380 449 | source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
|
381 450 | meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
|
382 451 | ) -> Self {
|
452 + | /* OperationErrorGenerator.kt:121 */
|
383 453 | Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
|
384 454 | source,
|
385 455 | meta: meta.unwrap_or_default(),
|
386 456 | })
|
457 + | /* OperationErrorGenerator.kt:110 */
|
387 458 | }
|
459 + | /* OperationErrorGenerator.kt:109 */
|
388 460 | }
|
389 461 |
|
462 + | /* CodegenDelegator.kt:255 */
|
390 463 | pub use crate::operation::xml_maps_flattened_nested_xml_namespace::_xml_maps_flattened_nested_xml_namespace_output::XmlMapsFlattenedNestedXmlNamespaceOutput;
|
391 464 |
|
465 + | /* CodegenDelegator.kt:255 */
|
392 466 | pub use crate::operation::xml_maps_flattened_nested_xml_namespace::_xml_maps_flattened_nested_xml_namespace_input::XmlMapsFlattenedNestedXmlNamespaceInput;
|
393 467 |
|
468 + | /* RustModule.kt:172 */
|
394 469 | mod _xml_maps_flattened_nested_xml_namespace_input;
|
395 470 |
|
471 + | /* RustModule.kt:172 */
|
396 472 | mod _xml_maps_flattened_nested_xml_namespace_output;
|
397 473 |
|
398 - | /// Builders
|
474 + | /// /* CodegenDelegator.kt:51 */Builders
|
399 475 | pub mod builders;
|