1#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct PostText;
6impl PostText {
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::post_text::PostTextInput,
14 ) -> ::std::result::Result<
15 crate::operation::post_text::PostTextOutput,
16 ::aws_smithy_runtime_api::client::result::SdkError<
17 crate::operation::post_text::PostTextError,
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::post_text::PostTextError>().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::post_text::PostTextOutput>()
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::post_text::PostTextInput,
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("Lex Runtime Service", "PostText", input, runtime_plugins, stop_point)
51 .instrument(::tracing::debug_span!(
54 "Lex Runtime Service.PostText",
55 "rpc.service" = "Lex Runtime Service",
56 "rpc.method" = "PostText",
57 "sdk_invocation_id" = ::fastrand::u32(1_000_000..10_000_000),
58 "rpc.system" = "aws-api",
59 ))
60 .await
61 }
62
63 pub(crate) fn operation_runtime_plugins(
64 client_runtime_plugins: ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
65 client_config: &crate::config::Config,
66 config_override: ::std::option::Option<crate::config::Builder>,
67 ) -> ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins {
68 let mut runtime_plugins = client_runtime_plugins.with_operation_plugin(Self::new());
69
70 if let ::std::option::Option::Some(config_override) = config_override {
71 for plugin in config_override.runtime_plugins.iter().cloned() {
72 runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
73 }
74 runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
75 config_override,
76 client_config.config.clone(),
77 &client_config.runtime_components,
78 ));
79 }
80 runtime_plugins
81 }
82}
83impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for PostText {
84 fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
85 let mut cfg = ::aws_smithy_types::config_bag::Layer::new("PostText");
86
87 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
88 PostTextRequestSerializer,
89 ));
90 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
91 PostTextResponseDeserializer,
92 ));
93
94 cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
95 crate::config::auth::Params::builder()
96 .operation_name("PostText")
97 .build()
98 .expect("required fields set"),
99 ));
100
101 cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::SensitiveOutput);
102 cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new(
103 "PostText",
104 "Lex Runtime Service",
105 ));
106 let mut signing_options = ::aws_runtime::auth::SigningOptions::default();
107 signing_options.double_uri_encode = true;
108 signing_options.content_sha256_header = false;
109 signing_options.normalize_uri_path = true;
110 signing_options.payload_override = None;
111
112 cfg.store_put(::aws_runtime::auth::SigV4OperationSigningConfig {
113 signing_options,
114 ..::std::default::Default::default()
115 });
116
117 ::std::option::Option::Some(cfg.freeze())
118 }
119
120 fn runtime_components(
121 &self,
122 _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
123 ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
124 #[allow(unused_mut)]
125 let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("PostText")
126 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
127 ::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default(),
128 ))
129 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
130 PostTextEndpointParamsInterceptor,
131 ))
132 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
133 crate::operation::post_text::PostTextError,
134 >::new())
135 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
136 crate::operation::post_text::PostTextError,
137 >::new())
138 .with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
139 crate::operation::post_text::PostTextError,
140 >::new());
141
142 ::std::borrow::Cow::Owned(rcb)
143 }
144}
145
146#[derive(Debug)]
147struct PostTextResponseDeserializer;
148impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for PostTextResponseDeserializer {
149 fn deserialize_nonstreaming(
150 &self,
151 response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
152 ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
153 let (success, status) = (response.status().is_success(), response.status().as_u16());
154 let headers = response.headers();
155 let body = response.body().bytes().expect("body loaded");
156 #[allow(unused_mut)]
157 let mut force_error = false;
158 ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
159 let parse_result = if !success && status != 200 || force_error {
160 crate::protocol_serde::shape_post_text::de_post_text_http_error(status, headers, body)
161 } else {
162 crate::protocol_serde::shape_post_text::de_post_text_http_response(status, headers, body)
163 };
164 crate::protocol_serde::type_erase_result(parse_result)
165 }
166}
167#[derive(Debug)]
168struct PostTextRequestSerializer;
169impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for PostTextRequestSerializer {
170 #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
171 fn serialize_input(
172 &self,
173 input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
174 _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
175 ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
176 let input = input.downcast::<crate::operation::post_text::PostTextInput>().expect("correct type");
177 let _header_serialization_settings = _cfg
178 .load::<crate::serialization_settings::HeaderSerializationSettings>()
179 .cloned()
180 .unwrap_or_default();
181 let mut request_builder = {
182 #[allow(clippy::uninlined_format_args)]
183 fn uri_base(
184 _input: &crate::operation::post_text::PostTextInput,
185 output: &mut ::std::string::String,
186 ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
187 use ::std::fmt::Write as _;
188 let input_1 = &_input.bot_name;
189 let input_1 = input_1
190 .as_ref()
191 .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("bot_name", "cannot be empty or unset"))?;
192 let bot_name = ::aws_smithy_http::label::fmt_string(input_1, ::aws_smithy_http::label::EncodingStrategy::Default);
193 if bot_name.is_empty() {
194 return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
195 "bot_name",
196 "cannot be empty or unset",
197 ));
198 }
199 let input_2 = &_input.bot_alias;
200 let input_2 = input_2
201 .as_ref()
202 .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("bot_alias", "cannot be empty or unset"))?;
203 let bot_alias = ::aws_smithy_http::label::fmt_string(input_2, ::aws_smithy_http::label::EncodingStrategy::Default);
204 if bot_alias.is_empty() {
205 return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
206 "bot_alias",
207 "cannot be empty or unset",
208 ));
209 }
210 let input_3 = &_input.user_id;
211 let input_3 = input_3
212 .as_ref()
213 .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("user_id", "cannot be empty or unset"))?;
214 let user_id = ::aws_smithy_http::label::fmt_string(input_3, ::aws_smithy_http::label::EncodingStrategy::Default);
215 if user_id.is_empty() {
216 return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
217 "user_id",
218 "cannot be empty or unset",
219 ));
220 }
221 ::std::write!(
222 output,
223 "/bot/{botName}/alias/{botAlias}/user/{userId}/text",
224 botName = bot_name,
225 botAlias = bot_alias,
226 userId = user_id
227 )
228 .expect("formatting should succeed");
229 ::std::result::Result::Ok(())
230 }
231 #[allow(clippy::unnecessary_wraps)]
232 fn update_http_builder(
233 input: &crate::operation::post_text::PostTextInput,
234 builder: ::http_1x::request::Builder,
235 ) -> ::std::result::Result<::http_1x::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
236 let mut uri = ::std::string::String::new();
237 uri_base(input, &mut uri)?;
238 ::std::result::Result::Ok(builder.method("POST").uri(uri))
239 }
240 let mut builder = update_http_builder(&input, ::http_1x::request::Builder::new())?;
241 builder = _header_serialization_settings.set_default_header(builder, ::http_1x::header::CONTENT_TYPE, "application/json");
242 builder
243 };
244 let body = ::aws_smithy_types::body::SdkBody::from(crate::protocol_serde::shape_post_text::ser_post_text_input(&input)?);
245 if let Some(content_length) = body.content_length() {
246 let content_length = content_length.to_string();
247 request_builder = _header_serialization_settings.set_default_header(request_builder, ::http_1x::header::CONTENT_LENGTH, &content_length);
248 }
249 ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
250 }
251}
252#[derive(Debug)]
253struct PostTextEndpointParamsInterceptor;
254
255#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
256impl ::aws_smithy_runtime_api::client::interceptors::Intercept for PostTextEndpointParamsInterceptor {
257 fn name(&self) -> &'static str {
258 "PostTextEndpointParamsInterceptor"
259 }
260
261 fn read_before_execution(
262 &self,
263 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
264 '_,
265 ::aws_smithy_runtime_api::client::interceptors::context::Input,
266 ::aws_smithy_runtime_api::client::interceptors::context::Output,
267 ::aws_smithy_runtime_api::client::interceptors::context::Error,
268 >,
269 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
270 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
271 let _input = context
272 .input()
273 .downcast_ref::<PostTextInput>()
274 .ok_or("failed to downcast to PostTextInput")?;
275
276 let params = crate::config::endpoint::Params::builder()
277 .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
278 .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
279 .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
280 .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
281 .build()
282 .map_err(|err| {
283 ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
284 })?;
285 cfg.interceptor_state()
286 .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
287 ::std::result::Result::Ok(())
288 }
289}
290
291#[non_exhaustive]
296#[derive(::std::fmt::Debug)]
297pub enum PostTextError {
298 BadGatewayException(crate::types::error::BadGatewayException),
300 BadRequestException(crate::types::error::BadRequestException),
302 ConflictException(crate::types::error::ConflictException),
304 DependencyFailedException(crate::types::error::DependencyFailedException),
314 InternalFailureException(crate::types::error::InternalFailureException),
316 LimitExceededException(crate::types::error::LimitExceededException),
318 LoopDetectedException(crate::types::error::LoopDetectedException),
320 NotFoundException(crate::types::error::NotFoundException),
322 #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
324 variable wildcard pattern and check `.code()`:
325 \
326 `err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
327 \
328 See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-PostTextError) for what information is available for the error.")]
329 Unhandled(crate::error::sealed_unhandled::Unhandled),
330}
331impl PostTextError {
332 pub fn unhandled(
334 err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
335 ) -> Self {
336 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
337 source: err.into(),
338 meta: ::std::default::Default::default(),
339 })
340 }
341
342 pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
344 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
345 source: err.clone().into(),
346 meta: err,
347 })
348 }
349 pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
354 match self {
355 Self::BadGatewayException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
356 Self::BadRequestException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
357 Self::ConflictException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
358 Self::DependencyFailedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
359 Self::InternalFailureException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
360 Self::LimitExceededException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
361 Self::LoopDetectedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
362 Self::NotFoundException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
363 Self::Unhandled(e) => &e.meta,
364 }
365 }
366 pub fn is_bad_gateway_exception(&self) -> bool {
368 matches!(self, Self::BadGatewayException(_))
369 }
370 pub fn is_bad_request_exception(&self) -> bool {
372 matches!(self, Self::BadRequestException(_))
373 }
374 pub fn is_conflict_exception(&self) -> bool {
376 matches!(self, Self::ConflictException(_))
377 }
378 pub fn is_dependency_failed_exception(&self) -> bool {
380 matches!(self, Self::DependencyFailedException(_))
381 }
382 pub fn is_internal_failure_exception(&self) -> bool {
384 matches!(self, Self::InternalFailureException(_))
385 }
386 pub fn is_limit_exceeded_exception(&self) -> bool {
388 matches!(self, Self::LimitExceededException(_))
389 }
390 pub fn is_loop_detected_exception(&self) -> bool {
392 matches!(self, Self::LoopDetectedException(_))
393 }
394 pub fn is_not_found_exception(&self) -> bool {
396 matches!(self, Self::NotFoundException(_))
397 }
398}
399impl ::std::error::Error for PostTextError {
400 fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
401 match self {
402 Self::BadGatewayException(_inner) => ::std::option::Option::Some(_inner),
403 Self::BadRequestException(_inner) => ::std::option::Option::Some(_inner),
404 Self::ConflictException(_inner) => ::std::option::Option::Some(_inner),
405 Self::DependencyFailedException(_inner) => ::std::option::Option::Some(_inner),
406 Self::InternalFailureException(_inner) => ::std::option::Option::Some(_inner),
407 Self::LimitExceededException(_inner) => ::std::option::Option::Some(_inner),
408 Self::LoopDetectedException(_inner) => ::std::option::Option::Some(_inner),
409 Self::NotFoundException(_inner) => ::std::option::Option::Some(_inner),
410 Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
411 }
412 }
413}
414impl ::std::fmt::Display for PostTextError {
415 fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
416 match self {
417 Self::BadGatewayException(_inner) => _inner.fmt(f),
418 Self::BadRequestException(_inner) => _inner.fmt(f),
419 Self::ConflictException(_inner) => _inner.fmt(f),
420 Self::DependencyFailedException(_inner) => _inner.fmt(f),
421 Self::InternalFailureException(_inner) => _inner.fmt(f),
422 Self::LimitExceededException(_inner) => _inner.fmt(f),
423 Self::LoopDetectedException(_inner) => _inner.fmt(f),
424 Self::NotFoundException(_inner) => _inner.fmt(f),
425 Self::Unhandled(_inner) => {
426 if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
427 write!(f, "unhandled error ({code})")
428 } else {
429 f.write_str("unhandled error")
430 }
431 }
432 }
433 }
434}
435impl ::aws_smithy_types::retry::ProvideErrorKind for PostTextError {
436 fn code(&self) -> ::std::option::Option<&str> {
437 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
438 }
439 fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
440 ::std::option::Option::None
441 }
442}
443impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for PostTextError {
444 fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
445 match self {
446 Self::BadGatewayException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
447 Self::BadRequestException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
448 Self::ConflictException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
449 Self::DependencyFailedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
450 Self::InternalFailureException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
451 Self::LimitExceededException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
452 Self::LoopDetectedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
453 Self::NotFoundException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
454 Self::Unhandled(_inner) => &_inner.meta,
455 }
456 }
457}
458impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for PostTextError {
459 fn create_unhandled_error(
460 source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
461 meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
462 ) -> Self {
463 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
464 source,
465 meta: meta.unwrap_or_default(),
466 })
467 }
468}
469impl ::aws_types::request_id::RequestId for crate::operation::post_text::PostTextError {
470 fn request_id(&self) -> Option<&str> {
471 self.meta().request_id()
472 }
473}
474
475pub use crate::operation::post_text::_post_text_input::PostTextInput;
476
477pub use crate::operation::post_text::_post_text_output::PostTextOutput;
478
479mod _post_text_input;
480
481mod _post_text_output;
482
483pub mod builders;