aws_sdk_resourceexplorer2/operation/
search.rs1#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct Search;
6impl Search {
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::search::SearchInput,
14 ) -> ::std::result::Result<
15 crate::operation::search::SearchOutput,
16 ::aws_smithy_runtime_api::client::result::SdkError<
17 crate::operation::search::SearchError,
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::search::SearchError>().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(output.downcast::<crate::operation::search::SearchOutput>().expect("correct output type"))
31 }
32
33 pub(crate) async fn orchestrate_with_stop_point(
34 runtime_plugins: &::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
35 input: crate::operation::search::SearchInput,
36 stop_point: ::aws_smithy_runtime::client::orchestrator::StopPoint,
37 ) -> ::std::result::Result<
38 ::aws_smithy_runtime_api::client::interceptors::context::InterceptorContext,
39 ::aws_smithy_runtime_api::client::result::SdkError<
40 ::aws_smithy_runtime_api::client::interceptors::context::Error,
41 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
42 >,
43 > {
44 let input = ::aws_smithy_runtime_api::client::interceptors::context::Input::erase(input);
45 use ::tracing::Instrument;
46 ::aws_smithy_runtime::client::orchestrator::invoke_with_stop_point("Resource Explorer 2", "Search", input, runtime_plugins, stop_point)
47 .instrument(::tracing::debug_span!(
50 "Resource Explorer 2.Search",
51 "rpc.service" = "Resource Explorer 2",
52 "rpc.method" = "Search",
53 "sdk_invocation_id" = ::fastrand::u32(1_000_000..10_000_000),
54 "rpc.system" = "aws-api",
55 ))
56 .await
57 }
58
59 pub(crate) fn operation_runtime_plugins(
60 client_runtime_plugins: ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
61 client_config: &crate::config::Config,
62 config_override: ::std::option::Option<crate::config::Builder>,
63 ) -> ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins {
64 let mut runtime_plugins = client_runtime_plugins.with_operation_plugin(Self::new());
65 runtime_plugins = runtime_plugins.with_client_plugin(crate::auth_plugin::DefaultAuthOptionsPlugin::new(vec![
66 ::aws_runtime::auth::sigv4::SCHEME_ID,
67 ]));
68 if let ::std::option::Option::Some(config_override) = config_override {
69 for plugin in config_override.runtime_plugins.iter().cloned() {
70 runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
71 }
72 runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
73 config_override,
74 client_config.config.clone(),
75 &client_config.runtime_components,
76 ));
77 }
78 runtime_plugins
79 }
80}
81impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for Search {
82 fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
83 let mut cfg = ::aws_smithy_types::config_bag::Layer::new("Search");
84
85 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
86 SearchRequestSerializer,
87 ));
88 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
89 SearchResponseDeserializer,
90 ));
91
92 cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
93 ::aws_smithy_runtime_api::client::auth::static_resolver::StaticAuthSchemeOptionResolverParams::new(),
94 ));
95
96 cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new(
97 "Search",
98 "Resource Explorer 2",
99 ));
100 let mut signing_options = ::aws_runtime::auth::SigningOptions::default();
101 signing_options.double_uri_encode = true;
102 signing_options.content_sha256_header = false;
103 signing_options.normalize_uri_path = true;
104 signing_options.payload_override = None;
105
106 cfg.store_put(::aws_runtime::auth::SigV4OperationSigningConfig {
107 signing_options,
108 ..::std::default::Default::default()
109 });
110
111 ::std::option::Option::Some(cfg.freeze())
112 }
113
114 fn runtime_components(
115 &self,
116 _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
117 ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
118 #[allow(unused_mut)]
119 let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("Search")
120 .with_interceptor(::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default())
121 .with_interceptor(SearchEndpointParamsInterceptor)
122 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
123 crate::operation::search::SearchError,
124 >::new())
125 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
126 crate::operation::search::SearchError,
127 >::new())
128 .with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
129 crate::operation::search::SearchError,
130 >::new());
131
132 ::std::borrow::Cow::Owned(rcb)
133 }
134}
135
136#[derive(Debug)]
137struct SearchResponseDeserializer;
138impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for SearchResponseDeserializer {
139 fn deserialize_nonstreaming(
140 &self,
141 response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
142 ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
143 let (success, status) = (response.status().is_success(), response.status().as_u16());
144 let headers = response.headers();
145 let body = response.body().bytes().expect("body loaded");
146 #[allow(unused_mut)]
147 let mut force_error = false;
148 ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
149 let parse_result = if !success && status != 200 || force_error {
150 crate::protocol_serde::shape_search::de_search_http_error(status, headers, body)
151 } else {
152 crate::protocol_serde::shape_search::de_search_http_response(status, headers, body)
153 };
154 crate::protocol_serde::type_erase_result(parse_result)
155 }
156}
157#[derive(Debug)]
158struct SearchRequestSerializer;
159impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for SearchRequestSerializer {
160 #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
161 fn serialize_input(
162 &self,
163 input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
164 _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
165 ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
166 let input = input.downcast::<crate::operation::search::SearchInput>().expect("correct type");
167 let _header_serialization_settings = _cfg
168 .load::<crate::serialization_settings::HeaderSerializationSettings>()
169 .cloned()
170 .unwrap_or_default();
171 let mut request_builder = {
172 fn uri_base(
173 _input: &crate::operation::search::SearchInput,
174 output: &mut ::std::string::String,
175 ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
176 use ::std::fmt::Write as _;
177 ::std::write!(output, "/Search").expect("formatting should succeed");
178 ::std::result::Result::Ok(())
179 }
180 #[allow(clippy::unnecessary_wraps)]
181 fn update_http_builder(
182 input: &crate::operation::search::SearchInput,
183 builder: ::http::request::Builder,
184 ) -> ::std::result::Result<::http::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
185 let mut uri = ::std::string::String::new();
186 uri_base(input, &mut uri)?;
187 ::std::result::Result::Ok(builder.method("POST").uri(uri))
188 }
189 let mut builder = update_http_builder(&input, ::http::request::Builder::new())?;
190 builder = _header_serialization_settings.set_default_header(builder, ::http::header::CONTENT_TYPE, "application/json");
191 builder
192 };
193 let body = ::aws_smithy_types::body::SdkBody::from(crate::protocol_serde::shape_search::ser_search_input(&input)?);
194 if let Some(content_length) = body.content_length() {
195 let content_length = content_length.to_string();
196 request_builder = _header_serialization_settings.set_default_header(request_builder, ::http::header::CONTENT_LENGTH, &content_length);
197 }
198 ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
199 }
200}
201#[derive(Debug)]
202struct SearchEndpointParamsInterceptor;
203
204impl ::aws_smithy_runtime_api::client::interceptors::Intercept for SearchEndpointParamsInterceptor {
205 fn name(&self) -> &'static str {
206 "SearchEndpointParamsInterceptor"
207 }
208
209 fn read_before_execution(
210 &self,
211 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
212 '_,
213 ::aws_smithy_runtime_api::client::interceptors::context::Input,
214 ::aws_smithy_runtime_api::client::interceptors::context::Output,
215 ::aws_smithy_runtime_api::client::interceptors::context::Error,
216 >,
217 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
218 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
219 let _input = context.input().downcast_ref::<SearchInput>().ok_or("failed to downcast to SearchInput")?;
220
221 let params = crate::config::endpoint::Params::builder()
222 .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
223 .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
224 .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
225 .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
226 .build()
227 .map_err(|err| {
228 ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
229 })?;
230 cfg.interceptor_state()
231 .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
232 ::std::result::Result::Ok(())
233 }
234}
235
236#[non_exhaustive]
241#[derive(::std::fmt::Debug)]
242pub enum SearchError {
243 AccessDeniedException(crate::types::error::AccessDeniedException),
245 InternalServerException(crate::types::error::InternalServerException),
247 ResourceNotFoundException(crate::types::error::ResourceNotFoundException),
249 ThrottlingException(crate::types::error::ThrottlingException),
251 UnauthorizedException(crate::types::error::UnauthorizedException),
253 ValidationException(crate::types::error::ValidationException),
255 #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
257 variable wildcard pattern and check `.code()`:
258 \
259 `err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
260 \
261 See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-SearchError) for what information is available for the error.")]
262 Unhandled(crate::error::sealed_unhandled::Unhandled),
263}
264impl SearchError {
265 pub fn unhandled(
267 err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
268 ) -> Self {
269 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
270 source: err.into(),
271 meta: ::std::default::Default::default(),
272 })
273 }
274
275 pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
277 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
278 source: err.clone().into(),
279 meta: err,
280 })
281 }
282 pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
287 match self {
288 Self::AccessDeniedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
289 Self::InternalServerException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
290 Self::ResourceNotFoundException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
291 Self::ThrottlingException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
292 Self::UnauthorizedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
293 Self::ValidationException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
294 Self::Unhandled(e) => &e.meta,
295 }
296 }
297 pub fn is_access_denied_exception(&self) -> bool {
299 matches!(self, Self::AccessDeniedException(_))
300 }
301 pub fn is_internal_server_exception(&self) -> bool {
303 matches!(self, Self::InternalServerException(_))
304 }
305 pub fn is_resource_not_found_exception(&self) -> bool {
307 matches!(self, Self::ResourceNotFoundException(_))
308 }
309 pub fn is_throttling_exception(&self) -> bool {
311 matches!(self, Self::ThrottlingException(_))
312 }
313 pub fn is_unauthorized_exception(&self) -> bool {
315 matches!(self, Self::UnauthorizedException(_))
316 }
317 pub fn is_validation_exception(&self) -> bool {
319 matches!(self, Self::ValidationException(_))
320 }
321}
322impl ::std::error::Error for SearchError {
323 fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
324 match self {
325 Self::AccessDeniedException(_inner) => ::std::option::Option::Some(_inner),
326 Self::InternalServerException(_inner) => ::std::option::Option::Some(_inner),
327 Self::ResourceNotFoundException(_inner) => ::std::option::Option::Some(_inner),
328 Self::ThrottlingException(_inner) => ::std::option::Option::Some(_inner),
329 Self::UnauthorizedException(_inner) => ::std::option::Option::Some(_inner),
330 Self::ValidationException(_inner) => ::std::option::Option::Some(_inner),
331 Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
332 }
333 }
334}
335impl ::std::fmt::Display for SearchError {
336 fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
337 match self {
338 Self::AccessDeniedException(_inner) => _inner.fmt(f),
339 Self::InternalServerException(_inner) => _inner.fmt(f),
340 Self::ResourceNotFoundException(_inner) => _inner.fmt(f),
341 Self::ThrottlingException(_inner) => _inner.fmt(f),
342 Self::UnauthorizedException(_inner) => _inner.fmt(f),
343 Self::ValidationException(_inner) => _inner.fmt(f),
344 Self::Unhandled(_inner) => {
345 if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
346 write!(f, "unhandled error ({code})")
347 } else {
348 f.write_str("unhandled error")
349 }
350 }
351 }
352 }
353}
354impl ::aws_smithy_types::retry::ProvideErrorKind for SearchError {
355 fn code(&self) -> ::std::option::Option<&str> {
356 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
357 }
358 fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
359 ::std::option::Option::None
360 }
361}
362impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for SearchError {
363 fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
364 match self {
365 Self::AccessDeniedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
366 Self::InternalServerException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
367 Self::ResourceNotFoundException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
368 Self::ThrottlingException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
369 Self::UnauthorizedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
370 Self::ValidationException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
371 Self::Unhandled(_inner) => &_inner.meta,
372 }
373 }
374}
375impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for SearchError {
376 fn create_unhandled_error(
377 source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
378 meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
379 ) -> Self {
380 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
381 source,
382 meta: meta.unwrap_or_default(),
383 })
384 }
385}
386impl ::aws_types::request_id::RequestId for crate::operation::search::SearchError {
387 fn request_id(&self) -> Option<&str> {
388 self.meta().request_id()
389 }
390}
391
392pub use crate::operation::search::_search_output::SearchOutput;
393
394pub use crate::operation::search::_search_input::SearchInput;
395
396mod _search_input;
397
398mod _search_output;
399
400pub mod builders;
402
403pub mod paginator;