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