1#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct Rerank;
6impl Rerank {
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::rerank::RerankInput,
14 ) -> ::std::result::Result<
15 crate::operation::rerank::RerankOutput,
16 ::aws_smithy_runtime_api::client::result::SdkError<
17 crate::operation::rerank::RerankError,
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::rerank::RerankError>().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::rerank::RerankOutput>().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::rerank::RerankInput,
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("Bedrock Agent Runtime", "Rerank", input, runtime_plugins, stop_point)
47 .instrument(::tracing::debug_span!(
50 "Bedrock Agent Runtime.Rerank",
51 "rpc.service" = "Bedrock Agent Runtime",
52 "rpc.method" = "Rerank",
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
66 if let ::std::option::Option::Some(config_override) = config_override {
67 for plugin in config_override.runtime_plugins.iter().cloned() {
68 runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
69 }
70 runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
71 config_override,
72 client_config.config.clone(),
73 &client_config.runtime_components,
74 ));
75 }
76 runtime_plugins
77 }
78}
79impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for Rerank {
80 fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
81 let mut cfg = ::aws_smithy_types::config_bag::Layer::new("Rerank");
82
83 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
84 RerankRequestSerializer,
85 ));
86 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
87 RerankResponseDeserializer,
88 ));
89
90 cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
91 crate::config::auth::Params::builder()
92 .operation_name("Rerank")
93 .build()
94 .expect("required fields set"),
95 ));
96
97 cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::SensitiveOutput);
98 cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new(
99 "Rerank",
100 "Bedrock Agent Runtime",
101 ));
102 let mut signing_options = ::aws_runtime::auth::SigningOptions::default();
103 signing_options.double_uri_encode = true;
104 signing_options.content_sha256_header = false;
105 signing_options.normalize_uri_path = true;
106 signing_options.payload_override = None;
107
108 cfg.store_put(::aws_runtime::auth::SigV4OperationSigningConfig {
109 signing_options,
110 ..::std::default::Default::default()
111 });
112
113 ::std::option::Option::Some(cfg.freeze())
114 }
115
116 fn runtime_components(
117 &self,
118 _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
119 ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
120 #[allow(unused_mut)]
121 let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("Rerank")
122 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
123 RerankTelemetryInputCaptureInterceptor,
124 ))
125 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
126 ::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default(),
127 ))
128 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
129 RerankEndpointParamsInterceptor,
130 ))
131 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
132 crate::operation::rerank::RerankError,
133 >::new())
134 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
135 crate::operation::rerank::RerankError,
136 >::new())
137 .with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
138 crate::operation::rerank::RerankError,
139 >::new())
140 .with_retry_classifier(::aws_runtime::service_clock_skew::ServiceClockSkewClassifier::<
141 crate::operation::rerank::RerankError,
142 >::new());
143
144 ::std::borrow::Cow::Owned(rcb)
145 }
146}
147
148#[derive(Debug)]
149struct RerankTelemetryInputCaptureInterceptor;
150
151#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
152impl ::aws_smithy_runtime_api::client::interceptors::Intercept for RerankTelemetryInputCaptureInterceptor {
153 fn name(&self) -> &'static str {
154 "RerankTelemetryInputCaptureInterceptor"
155 }
156
157 fn read_before_execution(
158 &self,
159 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
160 '_,
161 ::aws_smithy_runtime_api::client::interceptors::context::Input,
162 ::aws_smithy_runtime_api::client::interceptors::context::Output,
163 ::aws_smithy_runtime_api::client::interceptors::context::Error,
164 >,
165 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
166 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
167 let ::std::option::Option::Some(requested) = cfg
169 .load::<::aws_smithy_types::telemetry::RequestedTelemetryAttributes>()
170 .filter(|r| !r.is_empty())
171 else {
172 return ::std::result::Result::Ok(());
173 };
174
175 let ::std::option::Option::Some(input) = context.input().downcast_ref::<RerankInput>() else {
176 return ::std::result::Result::Ok(());
178 };
179
180 let mut captured = ::aws_smithy_types::telemetry::CapturedTelemetryAttributes::default();
181 if requested.should_capture("nextToken") {
182 if let ::std::option::Option::Some(value) = input.next_token.as_deref() {
183 captured.insert("nextToken", value);
184 }
185 }
186
187 cfg.interceptor_state().store_put(captured);
188 ::std::result::Result::Ok(())
189 }
190}
191#[derive(Debug)]
192struct RerankResponseDeserializer;
193impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for RerankResponseDeserializer {
194 fn deserialize_nonstreaming_with_config(
195 &self,
196 response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
197 _cfg: &::aws_smithy_types::config_bag::ConfigBag,
198 ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
199 let (success, status) = (response.status().is_success(), response.status().as_u16());
200 let headers = response.headers();
201 let body = response.body().bytes().expect("body loaded");
202 #[allow(unused_mut)]
203 let mut force_error = false;
204 ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
205 let parse_result = if !success && status != 200 || force_error {
206 crate::protocol_serde::shape_rerank::de_rerank_http_error(status, headers, body)
207 } else {
208 crate::protocol_serde::shape_rerank::de_rerank_http_response(status, headers, body)
209 };
210 crate::protocol_serde::type_erase_result(parse_result)
211 }
212}
213#[derive(Debug)]
214struct RerankRequestSerializer;
215impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for RerankRequestSerializer {
216 #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
217 fn serialize_input(
218 &self,
219 input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
220 _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
221 ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
222 let input = input.downcast::<crate::operation::rerank::RerankInput>().expect("correct type");
223 let _header_serialization_settings = _cfg
224 .load::<crate::serialization_settings::HeaderSerializationSettings>()
225 .cloned()
226 .unwrap_or_default();
227 let mut request_builder = {
228 #[allow(clippy::uninlined_format_args)]
229 fn uri_base(
230 _input: &crate::operation::rerank::RerankInput,
231 output: &mut ::std::string::String,
232 ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
233 use ::std::fmt::Write as _;
234 ::std::write!(output, "/rerank").expect("formatting should succeed");
235 ::std::result::Result::Ok(())
236 }
237 #[allow(clippy::unnecessary_wraps)]
238 fn update_http_builder(
239 input: &crate::operation::rerank::RerankInput,
240 builder: ::http_1x::request::Builder,
241 ) -> ::std::result::Result<::http_1x::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
242 let mut uri = ::std::string::String::new();
243 uri_base(input, &mut uri)?;
244 ::std::result::Result::Ok(builder.method("POST").uri(uri))
245 }
246 let mut builder = update_http_builder(&input, ::http_1x::request::Builder::new())?;
247 builder = _header_serialization_settings.set_default_header(builder, ::http_1x::header::CONTENT_TYPE, "application/json");
248 builder
249 };
250 let body = ::aws_smithy_types::body::SdkBody::from(crate::protocol_serde::shape_rerank::ser_rerank_input(&input)?);
251 if let Some(content_length) = body.content_length() {
252 let content_length = content_length.to_string();
253 request_builder = _header_serialization_settings.set_default_header(request_builder, ::http_1x::header::CONTENT_LENGTH, &content_length);
254 }
255 ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
256 }
257}
258#[derive(Debug)]
259struct RerankEndpointParamsInterceptor;
260
261#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
262impl ::aws_smithy_runtime_api::client::interceptors::Intercept for RerankEndpointParamsInterceptor {
263 fn name(&self) -> &'static str {
264 "RerankEndpointParamsInterceptor"
265 }
266
267 fn read_before_execution(
268 &self,
269 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
270 '_,
271 ::aws_smithy_runtime_api::client::interceptors::context::Input,
272 ::aws_smithy_runtime_api::client::interceptors::context::Output,
273 ::aws_smithy_runtime_api::client::interceptors::context::Error,
274 >,
275 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
276 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
277 let _input = context.input().downcast_ref::<RerankInput>().ok_or("failed to downcast to RerankInput")?;
278
279 let params = crate::config::endpoint::Params::builder()
280 .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
281 .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
282 .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
283 .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
284 .build()
285 .map_err(|err| {
286 ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
287 })?;
288 cfg.interceptor_state()
289 .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
290 ::std::result::Result::Ok(())
291 }
292}
293
294#[non_exhaustive]
299#[derive(::std::fmt::Debug)]
300pub enum RerankError {
301 AccessDeniedException(crate::types::error::AccessDeniedException),
303 BadGatewayException(crate::types::error::BadGatewayException),
305 ConflictException(crate::types::error::ConflictException),
307 DependencyFailedException(crate::types::error::DependencyFailedException),
309 InternalServerException(crate::types::error::InternalServerException),
311 ResourceNotFoundException(crate::types::error::ResourceNotFoundException),
313 ServiceQuotaExceededException(crate::types::error::ServiceQuotaExceededException),
315 ThrottlingException(crate::types::error::ThrottlingException),
317 ValidationException(crate::types::error::ValidationException),
319 #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
321 variable wildcard pattern and check `.code()`:
322 \
323 `err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
324 \
325 See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-RerankError) for what information is available for the error.")]
326 Unhandled(crate::error::sealed_unhandled::Unhandled),
327}
328impl RerankError {
329 pub fn unhandled(
331 err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
332 ) -> Self {
333 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
334 source: err.into(),
335 meta: ::std::default::Default::default(),
336 })
337 }
338
339 pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
341 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
342 source: err.clone().into(),
343 meta: err,
344 })
345 }
346 pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
351 match self {
352 Self::AccessDeniedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
353 Self::BadGatewayException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
354 Self::ConflictException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
355 Self::DependencyFailedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
356 Self::InternalServerException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
357 Self::ResourceNotFoundException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
358 Self::ServiceQuotaExceededException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
359 Self::ThrottlingException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
360 Self::ValidationException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
361 Self::Unhandled(e) => &e.meta,
362 }
363 }
364 pub fn is_access_denied_exception(&self) -> bool {
366 matches!(self, Self::AccessDeniedException(_))
367 }
368 pub fn is_bad_gateway_exception(&self) -> bool {
370 matches!(self, Self::BadGatewayException(_))
371 }
372 pub fn is_conflict_exception(&self) -> bool {
374 matches!(self, Self::ConflictException(_))
375 }
376 pub fn is_dependency_failed_exception(&self) -> bool {
378 matches!(self, Self::DependencyFailedException(_))
379 }
380 pub fn is_internal_server_exception(&self) -> bool {
382 matches!(self, Self::InternalServerException(_))
383 }
384 pub fn is_resource_not_found_exception(&self) -> bool {
386 matches!(self, Self::ResourceNotFoundException(_))
387 }
388 pub fn is_service_quota_exceeded_exception(&self) -> bool {
390 matches!(self, Self::ServiceQuotaExceededException(_))
391 }
392 pub fn is_throttling_exception(&self) -> bool {
394 matches!(self, Self::ThrottlingException(_))
395 }
396 pub fn is_validation_exception(&self) -> bool {
398 matches!(self, Self::ValidationException(_))
399 }
400}
401impl ::std::error::Error for RerankError {
402 fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
403 match self {
404 Self::AccessDeniedException(_inner) => ::std::option::Option::Some(_inner),
405 Self::BadGatewayException(_inner) => ::std::option::Option::Some(_inner),
406 Self::ConflictException(_inner) => ::std::option::Option::Some(_inner),
407 Self::DependencyFailedException(_inner) => ::std::option::Option::Some(_inner),
408 Self::InternalServerException(_inner) => ::std::option::Option::Some(_inner),
409 Self::ResourceNotFoundException(_inner) => ::std::option::Option::Some(_inner),
410 Self::ServiceQuotaExceededException(_inner) => ::std::option::Option::Some(_inner),
411 Self::ThrottlingException(_inner) => ::std::option::Option::Some(_inner),
412 Self::ValidationException(_inner) => ::std::option::Option::Some(_inner),
413 Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
414 }
415 }
416}
417impl ::std::fmt::Display for RerankError {
418 fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
419 match self {
420 Self::AccessDeniedException(_inner) => _inner.fmt(f),
421 Self::BadGatewayException(_inner) => _inner.fmt(f),
422 Self::ConflictException(_inner) => _inner.fmt(f),
423 Self::DependencyFailedException(_inner) => _inner.fmt(f),
424 Self::InternalServerException(_inner) => _inner.fmt(f),
425 Self::ResourceNotFoundException(_inner) => _inner.fmt(f),
426 Self::ServiceQuotaExceededException(_inner) => _inner.fmt(f),
427 Self::ThrottlingException(_inner) => _inner.fmt(f),
428 Self::ValidationException(_inner) => _inner.fmt(f),
429 Self::Unhandled(_inner) => {
430 if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
431 write!(f, "unhandled error ({code})")
432 } else {
433 f.write_str("unhandled error")
434 }
435 }
436 }
437 }
438}
439impl ::aws_smithy_types::retry::ProvideErrorKind for RerankError {
440 fn code(&self) -> ::std::option::Option<&str> {
441 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
442 }
443 fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
444 ::std::option::Option::None
445 }
446}
447impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for RerankError {
448 fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
449 match self {
450 Self::AccessDeniedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
451 Self::BadGatewayException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
452 Self::ConflictException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
453 Self::DependencyFailedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
454 Self::InternalServerException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
455 Self::ResourceNotFoundException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
456 Self::ServiceQuotaExceededException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
457 Self::ThrottlingException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
458 Self::ValidationException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
459 Self::Unhandled(_inner) => &_inner.meta,
460 }
461 }
462}
463impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for RerankError {
464 fn create_unhandled_error(
465 source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
466 meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
467 ) -> Self {
468 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
469 source,
470 meta: meta.unwrap_or_default(),
471 })
472 }
473}
474impl ::aws_types::request_id::RequestId for crate::operation::rerank::RerankError {
475 fn request_id(&self) -> Option<&str> {
476 self.meta().request_id()
477 }
478}
479
480pub use crate::operation::rerank::_rerank_input::RerankInput;
481
482pub use crate::operation::rerank::_rerank_output::RerankOutput;
483
484mod _rerank_input;
485
486mod _rerank_output;
487
488pub mod builders;
490
491pub mod paginator;