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_with_config(
150 &self,
151 response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
152 _cfg: &::aws_smithy_types::config_bag::ConfigBag,
153 ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
154 let (success, status) = (response.status().is_success(), response.status().as_u16());
155 let headers = response.headers();
156 let body = response.body().bytes().expect("body loaded");
157 #[allow(unused_mut)]
158 let mut force_error = false;
159 ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
160 let parse_result = if !success && status != 200 || force_error {
161 crate::protocol_serde::shape_post_text::de_post_text_http_error(status, headers, body)
162 } else {
163 crate::protocol_serde::shape_post_text::de_post_text_http_response(status, headers, body)
164 };
165 crate::protocol_serde::type_erase_result(parse_result)
166 }
167}
168#[derive(Debug)]
169struct PostTextRequestSerializer;
170impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for PostTextRequestSerializer {
171 #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
172 fn serialize_input(
173 &self,
174 input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
175 _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
176 ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
177 let input = input.downcast::<crate::operation::post_text::PostTextInput>().expect("correct type");
178 let _header_serialization_settings = _cfg
179 .load::<crate::serialization_settings::HeaderSerializationSettings>()
180 .cloned()
181 .unwrap_or_default();
182 let mut request_builder = {
183 #[allow(clippy::uninlined_format_args)]
184 fn uri_base(
185 _input: &crate::operation::post_text::PostTextInput,
186 output: &mut ::std::string::String,
187 ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
188 use ::std::fmt::Write as _;
189 let input_1 = &_input.bot_name;
190 let input_1 = input_1
191 .as_ref()
192 .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("bot_name", "cannot be empty or unset"))?;
193 let bot_name = ::aws_smithy_http::label::fmt_string(input_1, ::aws_smithy_http::label::EncodingStrategy::Default);
194 if bot_name.is_empty() {
195 return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
196 "bot_name",
197 "cannot be empty or unset",
198 ));
199 }
200 let input_2 = &_input.bot_alias;
201 let input_2 = input_2
202 .as_ref()
203 .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("bot_alias", "cannot be empty or unset"))?;
204 let bot_alias = ::aws_smithy_http::label::fmt_string(input_2, ::aws_smithy_http::label::EncodingStrategy::Default);
205 if bot_alias.is_empty() {
206 return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
207 "bot_alias",
208 "cannot be empty or unset",
209 ));
210 }
211 let input_3 = &_input.user_id;
212 let input_3 = input_3
213 .as_ref()
214 .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("user_id", "cannot be empty or unset"))?;
215 let user_id = ::aws_smithy_http::label::fmt_string(input_3, ::aws_smithy_http::label::EncodingStrategy::Default);
216 if user_id.is_empty() {
217 return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
218 "user_id",
219 "cannot be empty or unset",
220 ));
221 }
222 ::std::write!(
223 output,
224 "/bot/{botName}/alias/{botAlias}/user/{userId}/text",
225 botName = bot_name,
226 botAlias = bot_alias,
227 userId = user_id
228 )
229 .expect("formatting should succeed");
230 ::std::result::Result::Ok(())
231 }
232 #[allow(clippy::unnecessary_wraps)]
233 fn update_http_builder(
234 input: &crate::operation::post_text::PostTextInput,
235 builder: ::http_1x::request::Builder,
236 ) -> ::std::result::Result<::http_1x::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
237 let mut uri = ::std::string::String::new();
238 uri_base(input, &mut uri)?;
239 ::std::result::Result::Ok(builder.method("POST").uri(uri))
240 }
241 let mut builder = update_http_builder(&input, ::http_1x::request::Builder::new())?;
242 builder = _header_serialization_settings.set_default_header(builder, ::http_1x::header::CONTENT_TYPE, "application/json");
243 builder
244 };
245 let body = ::aws_smithy_types::body::SdkBody::from(crate::protocol_serde::shape_post_text::ser_post_text_input(&input)?);
246 if let Some(content_length) = body.content_length() {
247 let content_length = content_length.to_string();
248 request_builder = _header_serialization_settings.set_default_header(request_builder, ::http_1x::header::CONTENT_LENGTH, &content_length);
249 }
250 ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
251 }
252}
253#[derive(Debug)]
254struct PostTextEndpointParamsInterceptor;
255
256#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
257impl ::aws_smithy_runtime_api::client::interceptors::Intercept for PostTextEndpointParamsInterceptor {
258 fn name(&self) -> &'static str {
259 "PostTextEndpointParamsInterceptor"
260 }
261
262 fn read_before_execution(
263 &self,
264 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
265 '_,
266 ::aws_smithy_runtime_api::client::interceptors::context::Input,
267 ::aws_smithy_runtime_api::client::interceptors::context::Output,
268 ::aws_smithy_runtime_api::client::interceptors::context::Error,
269 >,
270 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
271 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
272 let _input = context
273 .input()
274 .downcast_ref::<PostTextInput>()
275 .ok_or("failed to downcast to PostTextInput")?;
276
277 let params = crate::config::endpoint::Params::builder()
278 .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
279 .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
280 .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
281 .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
282 .build()
283 .map_err(|err| {
284 ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
285 })?;
286 cfg.interceptor_state()
287 .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
288 ::std::result::Result::Ok(())
289 }
290}
291
292#[non_exhaustive]
297#[derive(::std::fmt::Debug)]
298pub enum PostTextError {
299 BadGatewayException(crate::types::error::BadGatewayException),
301 BadRequestException(crate::types::error::BadRequestException),
303 ConflictException(crate::types::error::ConflictException),
305 DependencyFailedException(crate::types::error::DependencyFailedException),
315 InternalFailureException(crate::types::error::InternalFailureException),
317 LimitExceededException(crate::types::error::LimitExceededException),
319 LoopDetectedException(crate::types::error::LoopDetectedException),
321 NotFoundException(crate::types::error::NotFoundException),
323 #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
325 variable wildcard pattern and check `.code()`:
326 \
327 `err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
328 \
329 See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-PostTextError) for what information is available for the error.")]
330 Unhandled(crate::error::sealed_unhandled::Unhandled),
331}
332impl PostTextError {
333 pub fn unhandled(
335 err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
336 ) -> Self {
337 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
338 source: err.into(),
339 meta: ::std::default::Default::default(),
340 })
341 }
342
343 pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
345 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
346 source: err.clone().into(),
347 meta: err,
348 })
349 }
350 pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
355 match self {
356 Self::BadGatewayException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
357 Self::BadRequestException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
358 Self::ConflictException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
359 Self::DependencyFailedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
360 Self::InternalFailureException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
361 Self::LimitExceededException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
362 Self::LoopDetectedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
363 Self::NotFoundException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
364 Self::Unhandled(e) => &e.meta,
365 }
366 }
367 pub fn is_bad_gateway_exception(&self) -> bool {
369 matches!(self, Self::BadGatewayException(_))
370 }
371 pub fn is_bad_request_exception(&self) -> bool {
373 matches!(self, Self::BadRequestException(_))
374 }
375 pub fn is_conflict_exception(&self) -> bool {
377 matches!(self, Self::ConflictException(_))
378 }
379 pub fn is_dependency_failed_exception(&self) -> bool {
381 matches!(self, Self::DependencyFailedException(_))
382 }
383 pub fn is_internal_failure_exception(&self) -> bool {
385 matches!(self, Self::InternalFailureException(_))
386 }
387 pub fn is_limit_exceeded_exception(&self) -> bool {
389 matches!(self, Self::LimitExceededException(_))
390 }
391 pub fn is_loop_detected_exception(&self) -> bool {
393 matches!(self, Self::LoopDetectedException(_))
394 }
395 pub fn is_not_found_exception(&self) -> bool {
397 matches!(self, Self::NotFoundException(_))
398 }
399}
400impl ::std::error::Error for PostTextError {
401 fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
402 match self {
403 Self::BadGatewayException(_inner) => ::std::option::Option::Some(_inner),
404 Self::BadRequestException(_inner) => ::std::option::Option::Some(_inner),
405 Self::ConflictException(_inner) => ::std::option::Option::Some(_inner),
406 Self::DependencyFailedException(_inner) => ::std::option::Option::Some(_inner),
407 Self::InternalFailureException(_inner) => ::std::option::Option::Some(_inner),
408 Self::LimitExceededException(_inner) => ::std::option::Option::Some(_inner),
409 Self::LoopDetectedException(_inner) => ::std::option::Option::Some(_inner),
410 Self::NotFoundException(_inner) => ::std::option::Option::Some(_inner),
411 Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
412 }
413 }
414}
415impl ::std::fmt::Display for PostTextError {
416 fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
417 match self {
418 Self::BadGatewayException(_inner) => _inner.fmt(f),
419 Self::BadRequestException(_inner) => _inner.fmt(f),
420 Self::ConflictException(_inner) => _inner.fmt(f),
421 Self::DependencyFailedException(_inner) => _inner.fmt(f),
422 Self::InternalFailureException(_inner) => _inner.fmt(f),
423 Self::LimitExceededException(_inner) => _inner.fmt(f),
424 Self::LoopDetectedException(_inner) => _inner.fmt(f),
425 Self::NotFoundException(_inner) => _inner.fmt(f),
426 Self::Unhandled(_inner) => {
427 if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
428 write!(f, "unhandled error ({code})")
429 } else {
430 f.write_str("unhandled error")
431 }
432 }
433 }
434 }
435}
436impl ::aws_smithy_types::retry::ProvideErrorKind for PostTextError {
437 fn code(&self) -> ::std::option::Option<&str> {
438 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
439 }
440 fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
441 ::std::option::Option::None
442 }
443}
444impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for PostTextError {
445 fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
446 match self {
447 Self::BadGatewayException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
448 Self::BadRequestException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
449 Self::ConflictException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
450 Self::DependencyFailedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
451 Self::InternalFailureException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
452 Self::LimitExceededException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
453 Self::LoopDetectedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
454 Self::NotFoundException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
455 Self::Unhandled(_inner) => &_inner.meta,
456 }
457 }
458}
459impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for PostTextError {
460 fn create_unhandled_error(
461 source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
462 meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
463 ) -> Self {
464 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
465 source,
466 meta: meta.unwrap_or_default(),
467 })
468 }
469}
470impl ::aws_types::request_id::RequestId for crate::operation::post_text::PostTextError {
471 fn request_id(&self) -> Option<&str> {
472 self.meta().request_id()
473 }
474}
475
476pub use crate::operation::post_text::_post_text_input::PostTextInput;
477
478pub use crate::operation::post_text::_post_text_output::PostTextOutput;
479
480mod _post_text_input;
481
482mod _post_text_output;
483
484pub mod builders;