1#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct GetRoute;
6impl GetRoute {
7 pub fn new() -> Self {
9 Self
10 }
11 pub(crate) async fn orchestrate(
12 runtime_plugins: &::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
13 input: crate::operation::get_route::GetRouteInput,
14 ) -> ::std::result::Result<
15 crate::operation::get_route::GetRouteOutput,
16 ::aws_smithy_runtime_api::client::result::SdkError<
17 crate::operation::get_route::GetRouteError,
18 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
19 >,
20 > {
21 let map_err =
22 |err: ::aws_smithy_runtime_api::client::result::SdkError<
23 ::aws_smithy_runtime_api::client::interceptors::context::Error,
24 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
25 >| { err.map_service_error(|err| err.downcast::<crate::operation::get_route::GetRouteError>().expect("correct error type")) };
26 let context = Self::orchestrate_with_stop_point(runtime_plugins, input, ::aws_smithy_runtime::client::orchestrator::StopPoint::None)
27 .await
28 .map_err(map_err)?;
29 let output = context.finalize().map_err(map_err)?;
30 ::std::result::Result::Ok(
31 output
32 .downcast::<crate::operation::get_route::GetRouteOutput>()
33 .expect("correct output type"),
34 )
35 }
36
37 pub(crate) async fn orchestrate_with_stop_point(
38 runtime_plugins: &::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
39 input: crate::operation::get_route::GetRouteInput,
40 stop_point: ::aws_smithy_runtime::client::orchestrator::StopPoint,
41 ) -> ::std::result::Result<
42 ::aws_smithy_runtime_api::client::interceptors::context::InterceptorContext,
43 ::aws_smithy_runtime_api::client::result::SdkError<
44 ::aws_smithy_runtime_api::client::interceptors::context::Error,
45 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
46 >,
47 > {
48 let input = ::aws_smithy_runtime_api::client::interceptors::context::Input::erase(input);
49 use ::tracing::Instrument;
50 ::aws_smithy_runtime::client::orchestrator::invoke_with_stop_point(
51 "Migration Hub Refactor Spaces",
52 "GetRoute",
53 input,
54 runtime_plugins,
55 stop_point,
56 )
57 .instrument(::tracing::debug_span!(
60 "Migration Hub Refactor Spaces.GetRoute",
61 "rpc.service" = "Migration Hub Refactor Spaces",
62 "rpc.method" = "GetRoute",
63 "sdk_invocation_id" = ::fastrand::u32(1_000_000..10_000_000),
64 "rpc.system" = "aws-api",
65 ))
66 .await
67 }
68
69 pub(crate) fn operation_runtime_plugins(
70 client_runtime_plugins: ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
71 client_config: &crate::config::Config,
72 config_override: ::std::option::Option<crate::config::Builder>,
73 ) -> ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins {
74 let mut runtime_plugins = client_runtime_plugins.with_operation_plugin(Self::new());
75
76 if let ::std::option::Option::Some(config_override) = config_override {
77 for plugin in config_override.runtime_plugins.iter().cloned() {
78 runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
79 }
80 runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
81 config_override,
82 client_config.config.clone(),
83 &client_config.runtime_components,
84 ));
85 }
86 runtime_plugins
87 }
88}
89impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for GetRoute {
90 fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
91 let mut cfg = ::aws_smithy_types::config_bag::Layer::new("GetRoute");
92
93 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
94 GetRouteRequestSerializer,
95 ));
96 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
97 GetRouteResponseDeserializer,
98 ));
99
100 cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
101 crate::config::auth::Params::builder()
102 .operation_name("GetRoute")
103 .build()
104 .expect("required fields set"),
105 ));
106
107 cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::SensitiveOutput);
108 cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new(
109 "GetRoute",
110 "Migration Hub Refactor Spaces",
111 ));
112 let mut signing_options = ::aws_runtime::auth::SigningOptions::default();
113 signing_options.double_uri_encode = true;
114 signing_options.content_sha256_header = false;
115 signing_options.normalize_uri_path = true;
116 signing_options.payload_override = None;
117
118 cfg.store_put(::aws_runtime::auth::SigV4OperationSigningConfig {
119 signing_options,
120 ..::std::default::Default::default()
121 });
122
123 ::std::option::Option::Some(cfg.freeze())
124 }
125
126 fn runtime_components(
127 &self,
128 _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
129 ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
130 #[allow(unused_mut)]
131 let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("GetRoute")
132 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
133 GetRouteTelemetryInputCaptureInterceptor,
134 ))
135 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
136 ::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default(),
137 ))
138 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
139 GetRouteEndpointParamsInterceptor,
140 ))
141 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
142 crate::operation::get_route::GetRouteError,
143 >::new())
144 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
145 crate::operation::get_route::GetRouteError,
146 >::new())
147 .with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
148 crate::operation::get_route::GetRouteError,
149 >::new());
150
151 ::std::borrow::Cow::Owned(rcb)
152 }
153}
154
155#[derive(Debug)]
156struct GetRouteTelemetryInputCaptureInterceptor;
157
158#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
159impl ::aws_smithy_runtime_api::client::interceptors::Intercept for GetRouteTelemetryInputCaptureInterceptor {
160 fn name(&self) -> &'static str {
161 "GetRouteTelemetryInputCaptureInterceptor"
162 }
163
164 fn read_before_execution(
165 &self,
166 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
167 '_,
168 ::aws_smithy_runtime_api::client::interceptors::context::Input,
169 ::aws_smithy_runtime_api::client::interceptors::context::Output,
170 ::aws_smithy_runtime_api::client::interceptors::context::Error,
171 >,
172 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
173 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
174 let ::std::option::Option::Some(requested) = cfg
176 .load::<::aws_smithy_types::telemetry::RequestedTelemetryAttributes>()
177 .filter(|r| !r.is_empty())
178 else {
179 return ::std::result::Result::Ok(());
180 };
181
182 let ::std::option::Option::Some(input) = context.input().downcast_ref::<GetRouteInput>() else {
183 return ::std::result::Result::Ok(());
185 };
186
187 let mut captured = ::aws_smithy_types::telemetry::CapturedTelemetryAttributes::default();
188 if requested.should_capture("EnvironmentIdentifier") {
189 if let ::std::option::Option::Some(value) = input.environment_identifier.as_deref() {
190 captured.insert("EnvironmentIdentifier", value);
191 }
192 }
193 if requested.should_capture("ApplicationIdentifier") {
194 if let ::std::option::Option::Some(value) = input.application_identifier.as_deref() {
195 captured.insert("ApplicationIdentifier", value);
196 }
197 }
198 if requested.should_capture("RouteIdentifier") {
199 if let ::std::option::Option::Some(value) = input.route_identifier.as_deref() {
200 captured.insert("RouteIdentifier", value);
201 }
202 }
203
204 cfg.interceptor_state().store_put(captured);
205 ::std::result::Result::Ok(())
206 }
207}
208#[derive(Debug)]
209struct GetRouteResponseDeserializer;
210impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for GetRouteResponseDeserializer {
211 fn deserialize_nonstreaming_with_config(
212 &self,
213 response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
214 _cfg: &::aws_smithy_types::config_bag::ConfigBag,
215 ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
216 let (success, status) = (response.status().is_success(), response.status().as_u16());
217 let headers = response.headers();
218 let body = response.body().bytes().expect("body loaded");
219 #[allow(unused_mut)]
220 let mut force_error = false;
221 ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
222 let parse_result = if !success && status != 200 || force_error {
223 crate::protocol_serde::shape_get_route::de_get_route_http_error(status, headers, body)
224 } else {
225 crate::protocol_serde::shape_get_route::de_get_route_http_response(status, headers, body)
226 };
227 crate::protocol_serde::type_erase_result(parse_result)
228 }
229}
230#[derive(Debug)]
231struct GetRouteRequestSerializer;
232impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for GetRouteRequestSerializer {
233 #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
234 fn serialize_input(
235 &self,
236 input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
237 _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
238 ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
239 let input = input.downcast::<crate::operation::get_route::GetRouteInput>().expect("correct type");
240 let _header_serialization_settings = _cfg
241 .load::<crate::serialization_settings::HeaderSerializationSettings>()
242 .cloned()
243 .unwrap_or_default();
244 let mut request_builder = {
245 #[allow(clippy::uninlined_format_args)]
246 fn uri_base(
247 _input: &crate::operation::get_route::GetRouteInput,
248 output: &mut ::std::string::String,
249 ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
250 use ::std::fmt::Write as _;
251 let input_1 = &_input.environment_identifier;
252 let input_1 = input_1.as_ref().ok_or_else(|| {
253 ::aws_smithy_types::error::operation::BuildError::missing_field("environment_identifier", "cannot be empty or unset")
254 })?;
255 let environment_identifier = ::aws_smithy_http::label::fmt_string(input_1, ::aws_smithy_http::label::EncodingStrategy::Default);
256 if environment_identifier.is_empty() {
257 return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
258 "environment_identifier",
259 "cannot be empty or unset",
260 ));
261 }
262 let input_2 = &_input.application_identifier;
263 let input_2 = input_2.as_ref().ok_or_else(|| {
264 ::aws_smithy_types::error::operation::BuildError::missing_field("application_identifier", "cannot be empty or unset")
265 })?;
266 let application_identifier = ::aws_smithy_http::label::fmt_string(input_2, ::aws_smithy_http::label::EncodingStrategy::Default);
267 if application_identifier.is_empty() {
268 return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
269 "application_identifier",
270 "cannot be empty or unset",
271 ));
272 }
273 let input_3 = &_input.route_identifier;
274 let input_3 = input_3
275 .as_ref()
276 .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("route_identifier", "cannot be empty or unset"))?;
277 let route_identifier = ::aws_smithy_http::label::fmt_string(input_3, ::aws_smithy_http::label::EncodingStrategy::Default);
278 if route_identifier.is_empty() {
279 return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
280 "route_identifier",
281 "cannot be empty or unset",
282 ));
283 }
284 ::std::write!(
285 output,
286 "/environments/{EnvironmentIdentifier}/applications/{ApplicationIdentifier}/routes/{RouteIdentifier}",
287 EnvironmentIdentifier = environment_identifier,
288 ApplicationIdentifier = application_identifier,
289 RouteIdentifier = route_identifier
290 )
291 .expect("formatting should succeed");
292 ::std::result::Result::Ok(())
293 }
294 #[allow(clippy::unnecessary_wraps)]
295 fn update_http_builder(
296 input: &crate::operation::get_route::GetRouteInput,
297 builder: ::http_1x::request::Builder,
298 ) -> ::std::result::Result<::http_1x::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
299 let mut uri = ::std::string::String::new();
300 uri_base(input, &mut uri)?;
301 ::std::result::Result::Ok(builder.method("GET").uri(uri))
302 }
303 let mut builder = update_http_builder(&input, ::http_1x::request::Builder::new())?;
304 builder
305 };
306 let body = ::aws_smithy_types::body::SdkBody::from("");
307
308 ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
309 }
310}
311#[derive(Debug)]
312struct GetRouteEndpointParamsInterceptor;
313
314#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
315impl ::aws_smithy_runtime_api::client::interceptors::Intercept for GetRouteEndpointParamsInterceptor {
316 fn name(&self) -> &'static str {
317 "GetRouteEndpointParamsInterceptor"
318 }
319
320 fn read_before_execution(
321 &self,
322 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
323 '_,
324 ::aws_smithy_runtime_api::client::interceptors::context::Input,
325 ::aws_smithy_runtime_api::client::interceptors::context::Output,
326 ::aws_smithy_runtime_api::client::interceptors::context::Error,
327 >,
328 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
329 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
330 let _input = context
331 .input()
332 .downcast_ref::<GetRouteInput>()
333 .ok_or("failed to downcast to GetRouteInput")?;
334
335 let params = crate::config::endpoint::Params::builder()
336 .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
337 .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
338 .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
339 .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
340 .build()
341 .map_err(|err| {
342 ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
343 })?;
344 cfg.interceptor_state()
345 .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
346 ::std::result::Result::Ok(())
347 }
348}
349
350#[non_exhaustive]
355#[derive(::std::fmt::Debug)]
356pub enum GetRouteError {
357 AccessDeniedException(crate::types::error::AccessDeniedException),
359 InternalServerException(crate::types::error::InternalServerException),
361 ResourceNotFoundException(crate::types::error::ResourceNotFoundException),
363 ThrottlingException(crate::types::error::ThrottlingException),
365 ValidationException(crate::types::error::ValidationException),
367 #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
369 variable wildcard pattern and check `.code()`:
370 \
371 `err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
372 \
373 See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-GetRouteError) for what information is available for the error.")]
374 Unhandled(crate::error::sealed_unhandled::Unhandled),
375}
376impl GetRouteError {
377 pub fn unhandled(
379 err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
380 ) -> Self {
381 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
382 source: err.into(),
383 meta: ::std::default::Default::default(),
384 })
385 }
386
387 pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
389 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
390 source: err.clone().into(),
391 meta: err,
392 })
393 }
394 pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
399 match self {
400 Self::AccessDeniedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
401 Self::InternalServerException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
402 Self::ResourceNotFoundException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
403 Self::ThrottlingException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
404 Self::ValidationException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
405 Self::Unhandled(e) => &e.meta,
406 }
407 }
408 pub fn is_access_denied_exception(&self) -> bool {
410 matches!(self, Self::AccessDeniedException(_))
411 }
412 pub fn is_internal_server_exception(&self) -> bool {
414 matches!(self, Self::InternalServerException(_))
415 }
416 pub fn is_resource_not_found_exception(&self) -> bool {
418 matches!(self, Self::ResourceNotFoundException(_))
419 }
420 pub fn is_throttling_exception(&self) -> bool {
422 matches!(self, Self::ThrottlingException(_))
423 }
424 pub fn is_validation_exception(&self) -> bool {
426 matches!(self, Self::ValidationException(_))
427 }
428}
429impl ::std::error::Error for GetRouteError {
430 fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
431 match self {
432 Self::AccessDeniedException(_inner) => ::std::option::Option::Some(_inner),
433 Self::InternalServerException(_inner) => ::std::option::Option::Some(_inner),
434 Self::ResourceNotFoundException(_inner) => ::std::option::Option::Some(_inner),
435 Self::ThrottlingException(_inner) => ::std::option::Option::Some(_inner),
436 Self::ValidationException(_inner) => ::std::option::Option::Some(_inner),
437 Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
438 }
439 }
440}
441impl ::std::fmt::Display for GetRouteError {
442 fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
443 match self {
444 Self::AccessDeniedException(_inner) => _inner.fmt(f),
445 Self::InternalServerException(_inner) => _inner.fmt(f),
446 Self::ResourceNotFoundException(_inner) => _inner.fmt(f),
447 Self::ThrottlingException(_inner) => _inner.fmt(f),
448 Self::ValidationException(_inner) => _inner.fmt(f),
449 Self::Unhandled(_inner) => {
450 if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
451 write!(f, "unhandled error ({code})")
452 } else {
453 f.write_str("unhandled error")
454 }
455 }
456 }
457 }
458}
459impl ::aws_smithy_types::retry::ProvideErrorKind for GetRouteError {
460 fn code(&self) -> ::std::option::Option<&str> {
461 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
462 }
463 fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
464 ::std::option::Option::None
465 }
466}
467impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for GetRouteError {
468 fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
469 match self {
470 Self::AccessDeniedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
471 Self::InternalServerException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
472 Self::ResourceNotFoundException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
473 Self::ThrottlingException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
474 Self::ValidationException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
475 Self::Unhandled(_inner) => &_inner.meta,
476 }
477 }
478}
479impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for GetRouteError {
480 fn create_unhandled_error(
481 source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
482 meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
483 ) -> Self {
484 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
485 source,
486 meta: meta.unwrap_or_default(),
487 })
488 }
489}
490impl ::aws_types::request_id::RequestId for crate::operation::get_route::GetRouteError {
491 fn request_id(&self) -> Option<&str> {
492 self.meta().request_id()
493 }
494}
495
496pub use crate::operation::get_route::_get_route_input::GetRouteInput;
497
498pub use crate::operation::get_route::_get_route_output::GetRouteOutput;
499
500mod _get_route_input;
501
502mod _get_route_output;
503
504pub mod builders;