Skip to main content

aws_sdk_bedrockagentruntime/operation/
invoke_inline_agent.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2/// Orchestration and serialization glue logic for `InvokeInlineAgent`.
3#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct InvokeInlineAgent;
6impl InvokeInlineAgent {
7    /// Creates a new `InvokeInlineAgent`
8    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::invoke_inline_agent::InvokeInlineAgentInput,
14    ) -> ::std::result::Result<
15        crate::operation::invoke_inline_agent::InvokeInlineAgentOutput,
16        ::aws_smithy_runtime_api::client::result::SdkError<
17            crate::operation::invoke_inline_agent::InvokeInlineAgentError,
18            ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
19        >,
20    > {
21        let map_err = |err: ::aws_smithy_runtime_api::client::result::SdkError<
22            ::aws_smithy_runtime_api::client::interceptors::context::Error,
23            ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
24        >| {
25            err.map_service_error(|err| {
26                err.downcast::<crate::operation::invoke_inline_agent::InvokeInlineAgentError>()
27                    .expect("correct error type")
28            })
29        };
30        let context = Self::orchestrate_with_stop_point(runtime_plugins, input, ::aws_smithy_runtime::client::orchestrator::StopPoint::None)
31            .await
32            .map_err(map_err)?;
33        let output = context.finalize().map_err(map_err)?;
34        ::std::result::Result::Ok(
35            output
36                .downcast::<crate::operation::invoke_inline_agent::InvokeInlineAgentOutput>()
37                .expect("correct output type"),
38        )
39    }
40
41    pub(crate) async fn orchestrate_with_stop_point(
42        runtime_plugins: &::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
43        input: crate::operation::invoke_inline_agent::InvokeInlineAgentInput,
44        stop_point: ::aws_smithy_runtime::client::orchestrator::StopPoint,
45    ) -> ::std::result::Result<
46        ::aws_smithy_runtime_api::client::interceptors::context::InterceptorContext,
47        ::aws_smithy_runtime_api::client::result::SdkError<
48            ::aws_smithy_runtime_api::client::interceptors::context::Error,
49            ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
50        >,
51    > {
52        let input = ::aws_smithy_runtime_api::client::interceptors::context::Input::erase(input);
53        use ::tracing::Instrument;
54        ::aws_smithy_runtime::client::orchestrator::invoke_with_stop_point(
55            "Bedrock Agent Runtime",
56            "InvokeInlineAgent",
57            input,
58            runtime_plugins,
59            stop_point,
60        )
61        // Create a parent span for the entire operation. Includes a random, internal-only,
62        // seven-digit ID for the operation orchestration so that it can be correlated in the logs.
63        .instrument(::tracing::debug_span!(
64            "Bedrock Agent Runtime.InvokeInlineAgent",
65            "rpc.service" = "Bedrock Agent Runtime",
66            "rpc.method" = "InvokeInlineAgent",
67            "sdk_invocation_id" = ::fastrand::u32(1_000_000..10_000_000),
68            "rpc.system" = "aws-api",
69        ))
70        .await
71    }
72
73    pub(crate) fn operation_runtime_plugins(
74        client_runtime_plugins: ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
75        client_config: &crate::config::Config,
76        config_override: ::std::option::Option<crate::config::Builder>,
77    ) -> ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins {
78        let mut runtime_plugins = client_runtime_plugins.with_operation_plugin(Self::new());
79
80        if let ::std::option::Option::Some(config_override) = config_override {
81            for plugin in config_override.runtime_plugins.iter().cloned() {
82                runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
83            }
84            runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
85                config_override,
86                client_config.config.clone(),
87                &client_config.runtime_components,
88            ));
89        }
90        runtime_plugins
91    }
92}
93impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for InvokeInlineAgent {
94    fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
95        let mut cfg = ::aws_smithy_types::config_bag::Layer::new("InvokeInlineAgent");
96
97        cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
98            InvokeInlineAgentRequestSerializer,
99        ));
100        cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
101            InvokeInlineAgentResponseDeserializer,
102        ));
103
104        cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
105            crate::config::auth::Params::builder()
106                .operation_name("InvokeInlineAgent")
107                .build()
108                .expect("required fields set"),
109        ));
110
111        cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::SensitiveOutput);
112        cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new(
113            "InvokeInlineAgent",
114            "Bedrock Agent Runtime",
115        ));
116        let mut signing_options = ::aws_runtime::auth::SigningOptions::default();
117        signing_options.double_uri_encode = true;
118        signing_options.content_sha256_header = false;
119        signing_options.normalize_uri_path = true;
120        signing_options.payload_override = None;
121
122        cfg.store_put(::aws_runtime::auth::SigV4OperationSigningConfig {
123            signing_options,
124            ..::std::default::Default::default()
125        });
126
127        ::std::option::Option::Some(cfg.freeze())
128    }
129
130    fn runtime_components(
131        &self,
132        _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
133    ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
134        #[allow(unused_mut)]
135        let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("InvokeInlineAgent")
136            .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
137                InvokeInlineAgentTelemetryInputCaptureInterceptor,
138            ))
139            .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
140                InvokeInlineAgentEndpointParamsInterceptor,
141            ))
142            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
143                crate::operation::invoke_inline_agent::InvokeInlineAgentError,
144            >::new())
145            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
146                crate::operation::invoke_inline_agent::InvokeInlineAgentError,
147            >::new())
148            .with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
149                crate::operation::invoke_inline_agent::InvokeInlineAgentError,
150            >::new());
151
152        ::std::borrow::Cow::Owned(rcb)
153    }
154}
155
156#[derive(Debug)]
157struct InvokeInlineAgentTelemetryInputCaptureInterceptor;
158
159#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
160impl ::aws_smithy_runtime_api::client::interceptors::Intercept for InvokeInlineAgentTelemetryInputCaptureInterceptor {
161    fn name(&self) -> &'static str {
162        "InvokeInlineAgentTelemetryInputCaptureInterceptor"
163    }
164
165    fn read_before_execution(
166        &self,
167        context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
168            '_,
169            ::aws_smithy_runtime_api::client::interceptors::context::Input,
170            ::aws_smithy_runtime_api::client::interceptors::context::Output,
171            ::aws_smithy_runtime_api::client::interceptors::context::Error,
172        >,
173        cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
174    ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
175        // Nothing to do unless the customer opted in by naming members to record.
176        let ::std::option::Option::Some(requested) = cfg
177            .load::<::aws_smithy_types::telemetry::RequestedTelemetryAttributes>()
178            .filter(|r| !r.is_empty())
179        else {
180            return ::std::result::Result::Ok(());
181        };
182
183        let ::std::option::Option::Some(input) = context.input().downcast_ref::<InvokeInlineAgentInput>() else {
184            // A mismatched input is not this interceptor's concern; skip quietly.
185            return ::std::result::Result::Ok(());
186        };
187
188        let mut captured = ::aws_smithy_types::telemetry::CapturedTelemetryAttributes::default();
189        if requested.should_capture("customerEncryptionKeyArn") {
190            if let ::std::option::Option::Some(value) = input.customer_encryption_key_arn.as_deref() {
191                captured.insert("customerEncryptionKeyArn", value);
192            }
193        }
194        if requested.should_capture("foundationModel") {
195            if let ::std::option::Option::Some(value) = input.foundation_model.as_deref() {
196                captured.insert("foundationModel", value);
197            }
198        }
199        if requested.should_capture("sessionId") {
200            if let ::std::option::Option::Some(value) = input.session_id.as_deref() {
201                captured.insert("sessionId", value);
202            }
203        }
204
205        cfg.interceptor_state().store_put(captured);
206        ::std::result::Result::Ok(())
207    }
208}
209#[derive(Debug)]
210struct InvokeInlineAgentResponseDeserializer;
211impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for InvokeInlineAgentResponseDeserializer {
212    fn deserialize_streaming(
213        &self,
214        response: &mut ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
215    ) -> ::std::option::Option<::aws_smithy_runtime_api::client::interceptors::context::OutputOrError> {
216        #[allow(unused_mut)]
217        let mut force_error = false;
218        ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
219
220        // If this is an error, defer to the non-streaming parser
221        if (!response.status().is_success() && response.status().as_u16() != 200) || force_error {
222            return ::std::option::Option::None;
223        }
224        ::std::option::Option::Some(crate::protocol_serde::type_erase_result(
225            crate::protocol_serde::shape_invoke_inline_agent::de_invoke_inline_agent_http_response(response),
226        ))
227    }
228
229    fn deserialize_nonstreaming_with_config(
230        &self,
231        response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
232        _cfg: &::aws_smithy_types::config_bag::ConfigBag,
233    ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
234        // For streaming operations, we only hit this case if its an error
235        let body = response.body().bytes().expect("body loaded");
236        crate::protocol_serde::type_erase_result(crate::protocol_serde::shape_invoke_inline_agent::de_invoke_inline_agent_http_error(
237            response.status().as_u16(),
238            response.headers(),
239            body,
240        ))
241    }
242}
243#[derive(Debug)]
244struct InvokeInlineAgentRequestSerializer;
245impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for InvokeInlineAgentRequestSerializer {
246    #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
247    fn serialize_input(
248        &self,
249        input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
250        _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
251    ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
252        let input = input
253            .downcast::<crate::operation::invoke_inline_agent::InvokeInlineAgentInput>()
254            .expect("correct type");
255        let _header_serialization_settings = _cfg
256            .load::<crate::serialization_settings::HeaderSerializationSettings>()
257            .cloned()
258            .unwrap_or_default();
259        let mut request_builder = {
260            #[allow(clippy::uninlined_format_args)]
261            fn uri_base(
262                _input: &crate::operation::invoke_inline_agent::InvokeInlineAgentInput,
263                output: &mut ::std::string::String,
264            ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
265                use ::std::fmt::Write as _;
266                let input_1 = &_input.session_id;
267                let input_1 = input_1
268                    .as_ref()
269                    .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("session_id", "cannot be empty or unset"))?;
270                let session_id = ::aws_smithy_http::label::fmt_string(input_1, ::aws_smithy_http::label::EncodingStrategy::Default);
271                if session_id.is_empty() {
272                    return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
273                        "session_id",
274                        "cannot be empty or unset",
275                    ));
276                }
277                ::std::write!(output, "/agents/{sessionId}", sessionId = session_id).expect("formatting should succeed");
278                ::std::result::Result::Ok(())
279            }
280            #[allow(clippy::unnecessary_wraps)]
281            fn update_http_builder(
282                input: &crate::operation::invoke_inline_agent::InvokeInlineAgentInput,
283                builder: ::http_1x::request::Builder,
284            ) -> ::std::result::Result<::http_1x::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
285                let mut uri = ::std::string::String::new();
286                uri_base(input, &mut uri)?;
287                ::std::result::Result::Ok(builder.method("POST").uri(uri))
288            }
289            let mut builder = update_http_builder(&input, ::http_1x::request::Builder::new())?;
290            builder = _header_serialization_settings.set_default_header(builder, ::http_1x::header::CONTENT_TYPE, "application/json");
291            builder
292        };
293        let body = ::aws_smithy_types::body::SdkBody::from(crate::protocol_serde::shape_invoke_inline_agent::ser_invoke_inline_agent_input(&input)?);
294        if let Some(content_length) = body.content_length() {
295            let content_length = content_length.to_string();
296            request_builder = _header_serialization_settings.set_default_header(request_builder, ::http_1x::header::CONTENT_LENGTH, &content_length);
297        }
298        ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
299    }
300}
301#[derive(Debug)]
302struct InvokeInlineAgentEndpointParamsInterceptor;
303
304#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
305impl ::aws_smithy_runtime_api::client::interceptors::Intercept for InvokeInlineAgentEndpointParamsInterceptor {
306    fn name(&self) -> &'static str {
307        "InvokeInlineAgentEndpointParamsInterceptor"
308    }
309
310    fn read_before_execution(
311        &self,
312        context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
313            '_,
314            ::aws_smithy_runtime_api::client::interceptors::context::Input,
315            ::aws_smithy_runtime_api::client::interceptors::context::Output,
316            ::aws_smithy_runtime_api::client::interceptors::context::Error,
317        >,
318        cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
319    ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
320        let _input = context
321            .input()
322            .downcast_ref::<InvokeInlineAgentInput>()
323            .ok_or("failed to downcast to InvokeInlineAgentInput")?;
324
325        let params = crate::config::endpoint::Params::builder()
326            .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
327            .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
328            .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
329            .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
330            .build()
331            .map_err(|err| {
332                ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
333            })?;
334        cfg.interceptor_state()
335            .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
336        ::std::result::Result::Ok(())
337    }
338}
339
340// The get_* functions below are generated from JMESPath expressions in the
341// operationContextParams trait. They target the operation's input shape.
342
343/// Error type for the `InvokeInlineAgentError` operation.
344#[non_exhaustive]
345#[derive(::std::fmt::Debug)]
346pub enum InvokeInlineAgentError {
347    /// <p>The request is denied because of missing access permissions. Check your permissions and retry your request.</p>
348    AccessDeniedException(crate::types::error::AccessDeniedException),
349    /// <p>There was an issue with a dependency due to a server issue. Retry your request.</p>
350    BadGatewayException(crate::types::error::BadGatewayException),
351    /// <p>There was a conflict performing an operation. Resolve the conflict and retry your request.</p>
352    ConflictException(crate::types::error::ConflictException),
353    /// <p>There was an issue with a dependency. Check the resource configurations and retry the request.</p>
354    DependencyFailedException(crate::types::error::DependencyFailedException),
355    /// <p>An internal server error occurred. Retry your request.</p>
356    InternalServerException(crate::types::error::InternalServerException),
357    /// <p>The specified resource Amazon Resource Name (ARN) was not found. Check the Amazon Resource Name (ARN) and try your request again.</p>
358    ResourceNotFoundException(crate::types::error::ResourceNotFoundException),
359    /// <p>The number of requests exceeds the service quota. Resubmit your request later.</p>
360    ServiceQuotaExceededException(crate::types::error::ServiceQuotaExceededException),
361    /// <p>The number of requests exceeds the limit. Resubmit your request later.</p>
362    ThrottlingException(crate::types::error::ThrottlingException),
363    /// <p>Input validation failed. Check your request parameters and retry the request.</p>
364    ValidationException(crate::types::error::ValidationException),
365    /// An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
366    #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
367    variable wildcard pattern and check `.code()`:
368     \
369    &nbsp;&nbsp;&nbsp;`err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
370     \
371    See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-InvokeInlineAgentError) for what information is available for the error.")]
372    Unhandled(crate::error::sealed_unhandled::Unhandled),
373}
374impl InvokeInlineAgentError {
375    /// Creates the `InvokeInlineAgentError::Unhandled` variant from any error type.
376    pub fn unhandled(
377        err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
378    ) -> Self {
379        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
380            source: err.into(),
381            meta: ::std::default::Default::default(),
382        })
383    }
384
385    /// Creates the `InvokeInlineAgentError::Unhandled` variant from an [`ErrorMetadata`](::aws_smithy_types::error::ErrorMetadata).
386    pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
387        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
388            source: err.clone().into(),
389            meta: err,
390        })
391    }
392    ///
393    /// Returns error metadata, which includes the error code, message,
394    /// request ID, and potentially additional information.
395    ///
396    pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
397        match self {
398            Self::AccessDeniedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
399            Self::BadGatewayException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
400            Self::ConflictException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
401            Self::DependencyFailedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
402            Self::InternalServerException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
403            Self::ResourceNotFoundException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
404            Self::ServiceQuotaExceededException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
405            Self::ThrottlingException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
406            Self::ValidationException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
407            Self::Unhandled(e) => &e.meta,
408        }
409    }
410    /// Returns `true` if the error kind is `InvokeInlineAgentError::AccessDeniedException`.
411    pub fn is_access_denied_exception(&self) -> bool {
412        matches!(self, Self::AccessDeniedException(_))
413    }
414    /// Returns `true` if the error kind is `InvokeInlineAgentError::BadGatewayException`.
415    pub fn is_bad_gateway_exception(&self) -> bool {
416        matches!(self, Self::BadGatewayException(_))
417    }
418    /// Returns `true` if the error kind is `InvokeInlineAgentError::ConflictException`.
419    pub fn is_conflict_exception(&self) -> bool {
420        matches!(self, Self::ConflictException(_))
421    }
422    /// Returns `true` if the error kind is `InvokeInlineAgentError::DependencyFailedException`.
423    pub fn is_dependency_failed_exception(&self) -> bool {
424        matches!(self, Self::DependencyFailedException(_))
425    }
426    /// Returns `true` if the error kind is `InvokeInlineAgentError::InternalServerException`.
427    pub fn is_internal_server_exception(&self) -> bool {
428        matches!(self, Self::InternalServerException(_))
429    }
430    /// Returns `true` if the error kind is `InvokeInlineAgentError::ResourceNotFoundException`.
431    pub fn is_resource_not_found_exception(&self) -> bool {
432        matches!(self, Self::ResourceNotFoundException(_))
433    }
434    /// Returns `true` if the error kind is `InvokeInlineAgentError::ServiceQuotaExceededException`.
435    pub fn is_service_quota_exceeded_exception(&self) -> bool {
436        matches!(self, Self::ServiceQuotaExceededException(_))
437    }
438    /// Returns `true` if the error kind is `InvokeInlineAgentError::ThrottlingException`.
439    pub fn is_throttling_exception(&self) -> bool {
440        matches!(self, Self::ThrottlingException(_))
441    }
442    /// Returns `true` if the error kind is `InvokeInlineAgentError::ValidationException`.
443    pub fn is_validation_exception(&self) -> bool {
444        matches!(self, Self::ValidationException(_))
445    }
446}
447impl ::std::error::Error for InvokeInlineAgentError {
448    fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
449        match self {
450            Self::AccessDeniedException(_inner) => ::std::option::Option::Some(_inner),
451            Self::BadGatewayException(_inner) => ::std::option::Option::Some(_inner),
452            Self::ConflictException(_inner) => ::std::option::Option::Some(_inner),
453            Self::DependencyFailedException(_inner) => ::std::option::Option::Some(_inner),
454            Self::InternalServerException(_inner) => ::std::option::Option::Some(_inner),
455            Self::ResourceNotFoundException(_inner) => ::std::option::Option::Some(_inner),
456            Self::ServiceQuotaExceededException(_inner) => ::std::option::Option::Some(_inner),
457            Self::ThrottlingException(_inner) => ::std::option::Option::Some(_inner),
458            Self::ValidationException(_inner) => ::std::option::Option::Some(_inner),
459            Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
460        }
461    }
462}
463impl ::std::fmt::Display for InvokeInlineAgentError {
464    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
465        match self {
466            Self::AccessDeniedException(_inner) => _inner.fmt(f),
467            Self::BadGatewayException(_inner) => _inner.fmt(f),
468            Self::ConflictException(_inner) => _inner.fmt(f),
469            Self::DependencyFailedException(_inner) => _inner.fmt(f),
470            Self::InternalServerException(_inner) => _inner.fmt(f),
471            Self::ResourceNotFoundException(_inner) => _inner.fmt(f),
472            Self::ServiceQuotaExceededException(_inner) => _inner.fmt(f),
473            Self::ThrottlingException(_inner) => _inner.fmt(f),
474            Self::ValidationException(_inner) => _inner.fmt(f),
475            Self::Unhandled(_inner) => {
476                if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
477                    write!(f, "unhandled error ({code})")
478                } else {
479                    f.write_str("unhandled error")
480                }
481            }
482        }
483    }
484}
485impl ::aws_smithy_types::retry::ProvideErrorKind for InvokeInlineAgentError {
486    fn code(&self) -> ::std::option::Option<&str> {
487        ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
488    }
489    fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
490        ::std::option::Option::None
491    }
492}
493impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for InvokeInlineAgentError {
494    fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
495        match self {
496            Self::AccessDeniedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
497            Self::BadGatewayException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
498            Self::ConflictException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
499            Self::DependencyFailedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
500            Self::InternalServerException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
501            Self::ResourceNotFoundException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
502            Self::ServiceQuotaExceededException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
503            Self::ThrottlingException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
504            Self::ValidationException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
505            Self::Unhandled(_inner) => &_inner.meta,
506        }
507    }
508}
509impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for InvokeInlineAgentError {
510    fn create_unhandled_error(
511        source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
512        meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
513    ) -> Self {
514        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
515            source,
516            meta: meta.unwrap_or_default(),
517        })
518    }
519}
520impl ::aws_types::request_id::RequestId for crate::operation::invoke_inline_agent::InvokeInlineAgentError {
521    fn request_id(&self) -> Option<&str> {
522        self.meta().request_id()
523    }
524}
525
526pub use crate::operation::invoke_inline_agent::_invoke_inline_agent_input::InvokeInlineAgentInput;
527
528pub use crate::operation::invoke_inline_agent::_invoke_inline_agent_output::InvokeInlineAgentOutput;
529
530mod _invoke_inline_agent_input;
531
532mod _invoke_inline_agent_output;
533
534/// Builders
535pub mod builders;