Skip to main content

aws_sdk_lambda/operation/
invoke_with_response_stream.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2/// Orchestration and serialization glue logic for `InvokeWithResponseStream`.
3#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct InvokeWithResponseStream;
6impl InvokeWithResponseStream {
7    /// Creates a new `InvokeWithResponseStream`
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_with_response_stream::InvokeWithResponseStreamInput,
14    ) -> ::std::result::Result<
15        crate::operation::invoke_with_response_stream::InvokeWithResponseStreamOutput,
16        ::aws_smithy_runtime_api::client::result::SdkError<
17            crate::operation::invoke_with_response_stream::InvokeWithResponseStreamError,
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_with_response_stream::InvokeWithResponseStreamError>()
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_with_response_stream::InvokeWithResponseStreamOutput>()
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_with_response_stream::InvokeWithResponseStreamInput,
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("Lambda", "InvokeWithResponseStream", input, runtime_plugins, stop_point)
55            // Create a parent span for the entire operation. Includes a random, internal-only,
56            // seven-digit ID for the operation orchestration so that it can be correlated in the logs.
57            .instrument(::tracing::debug_span!(
58                "Lambda.InvokeWithResponseStream",
59                "rpc.service" = "Lambda",
60                "rpc.method" = "InvokeWithResponseStream",
61                "sdk_invocation_id" = ::fastrand::u32(1_000_000..10_000_000),
62                "rpc.system" = "aws-api",
63            ))
64            .await
65    }
66
67    pub(crate) fn operation_runtime_plugins(
68        client_runtime_plugins: ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
69        client_config: &crate::config::Config,
70        config_override: ::std::option::Option<crate::config::Builder>,
71    ) -> ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins {
72        let mut runtime_plugins = client_runtime_plugins.with_operation_plugin(Self::new());
73
74        if let ::std::option::Option::Some(config_override) = config_override {
75            for plugin in config_override.runtime_plugins.iter().cloned() {
76                runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
77            }
78            runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
79                config_override,
80                client_config.config.clone(),
81                &client_config.runtime_components,
82            ));
83        }
84        runtime_plugins
85    }
86}
87impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for InvokeWithResponseStream {
88    fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
89        let mut cfg = ::aws_smithy_types::config_bag::Layer::new("InvokeWithResponseStream");
90
91        cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
92            InvokeWithResponseStreamRequestSerializer,
93        ));
94        cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
95            InvokeWithResponseStreamResponseDeserializer,
96        ));
97
98        cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
99            crate::config::auth::Params::builder()
100                .operation_name("InvokeWithResponseStream")
101                .build()
102                .expect("required fields set"),
103        ));
104
105        cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::SensitiveOutput);
106        cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new(
107            "InvokeWithResponseStream",
108            "Lambda",
109        ));
110        let mut signing_options = ::aws_runtime::auth::SigningOptions::default();
111        signing_options.double_uri_encode = true;
112        signing_options.content_sha256_header = false;
113        signing_options.normalize_uri_path = true;
114        signing_options.payload_override = None;
115
116        cfg.store_put(::aws_runtime::auth::SigV4OperationSigningConfig {
117            signing_options,
118            ..::std::default::Default::default()
119        });
120
121        ::std::option::Option::Some(cfg.freeze())
122    }
123
124    fn runtime_components(
125        &self,
126        _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
127    ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
128        #[allow(unused_mut)]
129        let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("InvokeWithResponseStream")
130            .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
131                InvokeWithResponseStreamTelemetryInputCaptureInterceptor,
132            ))
133            .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
134                InvokeWithResponseStreamEndpointParamsInterceptor,
135            ))
136            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
137                crate::operation::invoke_with_response_stream::InvokeWithResponseStreamError,
138            >::new())
139            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
140                crate::operation::invoke_with_response_stream::InvokeWithResponseStreamError,
141            >::new())
142            .with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
143                crate::operation::invoke_with_response_stream::InvokeWithResponseStreamError,
144            >::new());
145
146        ::std::borrow::Cow::Owned(rcb)
147    }
148}
149
150#[derive(Debug)]
151struct InvokeWithResponseStreamTelemetryInputCaptureInterceptor;
152
153#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
154impl ::aws_smithy_runtime_api::client::interceptors::Intercept for InvokeWithResponseStreamTelemetryInputCaptureInterceptor {
155    fn name(&self) -> &'static str {
156        "InvokeWithResponseStreamTelemetryInputCaptureInterceptor"
157    }
158
159    fn read_before_execution(
160        &self,
161        context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
162            '_,
163            ::aws_smithy_runtime_api::client::interceptors::context::Input,
164            ::aws_smithy_runtime_api::client::interceptors::context::Output,
165            ::aws_smithy_runtime_api::client::interceptors::context::Error,
166        >,
167        cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
168    ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
169        // Nothing to do unless the customer opted in by naming members to record.
170        let ::std::option::Option::Some(requested) = cfg
171            .load::<::aws_smithy_types::telemetry::RequestedTelemetryAttributes>()
172            .filter(|r| !r.is_empty())
173        else {
174            return ::std::result::Result::Ok(());
175        };
176
177        let ::std::option::Option::Some(input) = context.input().downcast_ref::<InvokeWithResponseStreamInput>() else {
178            // A mismatched input is not this interceptor's concern; skip quietly.
179            return ::std::result::Result::Ok(());
180        };
181
182        let mut captured = ::aws_smithy_types::telemetry::CapturedTelemetryAttributes::default();
183        if requested.should_capture("FunctionName") {
184            if let ::std::option::Option::Some(value) = input.function_name.as_deref() {
185                captured.insert("FunctionName", value);
186            }
187        }
188        if requested.should_capture("ClientContext") {
189            if let ::std::option::Option::Some(value) = input.client_context.as_deref() {
190                captured.insert("ClientContext", value);
191            }
192        }
193        if requested.should_capture("Qualifier") {
194            if let ::std::option::Option::Some(value) = input.qualifier.as_deref() {
195                captured.insert("Qualifier", value);
196            }
197        }
198        if requested.should_capture("TenantId") {
199            if let ::std::option::Option::Some(value) = input.tenant_id.as_deref() {
200                captured.insert("TenantId", value);
201            }
202        }
203
204        cfg.interceptor_state().store_put(captured);
205        ::std::result::Result::Ok(())
206    }
207}
208#[derive(Debug)]
209struct InvokeWithResponseStreamResponseDeserializer;
210impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for InvokeWithResponseStreamResponseDeserializer {
211    fn deserialize_streaming(
212        &self,
213        response: &mut ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
214    ) -> ::std::option::Option<::aws_smithy_runtime_api::client::interceptors::context::OutputOrError> {
215        #[allow(unused_mut)]
216        let mut force_error = false;
217        ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
218
219        // If this is an error, defer to the non-streaming parser
220        if (!response.status().is_success() && response.status().as_u16() != 200) || force_error {
221            return ::std::option::Option::None;
222        }
223        ::std::option::Option::Some(crate::protocol_serde::type_erase_result(
224            crate::protocol_serde::shape_invoke_with_response_stream::de_invoke_with_response_stream_http_response(response),
225        ))
226    }
227
228    fn deserialize_nonstreaming_with_config(
229        &self,
230        response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
231        _cfg: &::aws_smithy_types::config_bag::ConfigBag,
232    ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
233        // For streaming operations, we only hit this case if its an error
234        let body = response.body().bytes().expect("body loaded");
235        crate::protocol_serde::type_erase_result(
236            crate::protocol_serde::shape_invoke_with_response_stream::de_invoke_with_response_stream_http_error(
237                response.status().as_u16(),
238                response.headers(),
239                body,
240            ),
241        )
242    }
243}
244#[derive(Debug)]
245struct InvokeWithResponseStreamRequestSerializer;
246impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for InvokeWithResponseStreamRequestSerializer {
247    #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
248    fn serialize_input(
249        &self,
250        input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
251        _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
252    ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
253        let input = input
254            .downcast::<crate::operation::invoke_with_response_stream::InvokeWithResponseStreamInput>()
255            .expect("correct type");
256        let _header_serialization_settings = _cfg
257            .load::<crate::serialization_settings::HeaderSerializationSettings>()
258            .cloned()
259            .unwrap_or_default();
260        let mut request_builder = {
261            #[allow(clippy::uninlined_format_args)]
262            fn uri_base(
263                _input: &crate::operation::invoke_with_response_stream::InvokeWithResponseStreamInput,
264                output: &mut ::std::string::String,
265            ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
266                use ::std::fmt::Write as _;
267                let input_1 = &_input.function_name;
268                let input_1 = input_1
269                    .as_ref()
270                    .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("function_name", "cannot be empty or unset"))?;
271                let function_name = ::aws_smithy_http::label::fmt_string(input_1, ::aws_smithy_http::label::EncodingStrategy::Default);
272                if function_name.is_empty() {
273                    return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
274                        "function_name",
275                        "cannot be empty or unset",
276                    ));
277                }
278                ::std::write!(
279                    output,
280                    "/2021-11-15/functions/{FunctionName}/response-streaming-invocations",
281                    FunctionName = function_name
282                )
283                .expect("formatting should succeed");
284                ::std::result::Result::Ok(())
285            }
286            fn uri_query(
287                _input: &crate::operation::invoke_with_response_stream::InvokeWithResponseStreamInput,
288                mut output: &mut ::std::string::String,
289            ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
290                let mut query = ::aws_smithy_http::query::Writer::new(output);
291                if let ::std::option::Option::Some(inner_2) = &_input.qualifier {
292                    {
293                        query.push_kv("Qualifier", &::aws_smithy_http::query::fmt_string(inner_2));
294                    }
295                }
296                ::std::result::Result::Ok(())
297            }
298            #[allow(clippy::unnecessary_wraps)]
299            fn update_http_builder(
300                input: &crate::operation::invoke_with_response_stream::InvokeWithResponseStreamInput,
301                builder: ::http_1x::request::Builder,
302            ) -> ::std::result::Result<::http_1x::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
303                let mut uri = ::std::string::String::new();
304                uri_base(input, &mut uri)?;
305                uri_query(input, &mut uri)?;
306                let builder = crate::protocol_serde::shape_invoke_with_response_stream::ser_invoke_with_response_stream_headers(input, builder)?;
307                ::std::result::Result::Ok(builder.method("POST").uri(uri))
308            }
309            let mut builder = update_http_builder(&input, ::http_1x::request::Builder::new())?;
310            builder = _header_serialization_settings.set_default_header(builder, ::http_1x::header::CONTENT_TYPE, "application/octet-stream");
311            builder
312        };
313        let body = ::aws_smithy_types::body::SdkBody::from(crate::protocol_serde::shape_invoke_with_response_stream_input::ser_payload_http_payload(
314            input.payload,
315        )?);
316        if let Some(content_length) = body.content_length() {
317            let content_length = content_length.to_string();
318            request_builder = _header_serialization_settings.set_default_header(request_builder, ::http_1x::header::CONTENT_LENGTH, &content_length);
319        }
320        ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
321    }
322}
323#[derive(Debug)]
324struct InvokeWithResponseStreamEndpointParamsInterceptor;
325
326#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
327impl ::aws_smithy_runtime_api::client::interceptors::Intercept for InvokeWithResponseStreamEndpointParamsInterceptor {
328    fn name(&self) -> &'static str {
329        "InvokeWithResponseStreamEndpointParamsInterceptor"
330    }
331
332    fn read_before_execution(
333        &self,
334        context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
335            '_,
336            ::aws_smithy_runtime_api::client::interceptors::context::Input,
337            ::aws_smithy_runtime_api::client::interceptors::context::Output,
338            ::aws_smithy_runtime_api::client::interceptors::context::Error,
339        >,
340        cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
341    ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
342        let _input = context
343            .input()
344            .downcast_ref::<InvokeWithResponseStreamInput>()
345            .ok_or("failed to downcast to InvokeWithResponseStreamInput")?;
346
347        let params = crate::config::endpoint::Params::builder()
348            .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
349            .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
350            .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
351            .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
352            .build()
353            .map_err(|err| {
354                ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
355            })?;
356        cfg.interceptor_state()
357            .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
358        ::std::result::Result::Ok(())
359    }
360}
361
362// The get_* functions below are generated from JMESPath expressions in the
363// operationContextParams trait. They target the operation's input shape.
364
365/// Error type for the `InvokeWithResponseStreamError` operation.
366#[non_exhaustive]
367#[derive(::std::fmt::Debug)]
368pub enum InvokeWithResponseStreamError {
369    /// <p>Need additional permissions to configure VPC settings.</p>
370    Ec2AccessDeniedException(crate::types::error::Ec2AccessDeniedException),
371    /// <p>Amazon EC2 throttled Lambda during Lambda function initialization using the execution role provided for the function.</p>
372    Ec2ThrottledException(crate::types::error::Ec2ThrottledException),
373    /// <p>Lambda received an unexpected Amazon EC2 client exception while setting up for the Lambda function.</p>
374    Ec2UnexpectedException(crate::types::error::Ec2UnexpectedException),
375    /// <p>An error occurred when reading from or writing to a connected file system.</p>
376    EfsioException(crate::types::error::EfsioException),
377    /// <p>The Lambda function couldn't make a network connection to the configured file system.</p>
378    EfsMountConnectivityException(crate::types::error::EfsMountConnectivityException),
379    /// <p>The Lambda function couldn't mount the configured file system due to a permission or configuration issue.</p>
380    EfsMountFailureException(crate::types::error::EfsMountFailureException),
381    /// <p>The Lambda function made a network connection to the configured file system, but the mount operation timed out.</p>
382    EfsMountTimeoutException(crate::types::error::EfsMountTimeoutException),
383    /// <p>Lambda couldn't create an elastic network interface in the VPC, specified as part of Lambda function configuration, because the limit for network interfaces has been reached. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html">Lambda quotas</a>.</p>
384    EniLimitReachedException(crate::types::error::EniLimitReachedException),
385    /// <p>One of the parameters in the request is not valid.</p>
386    InvalidParameterValueException(crate::types::error::InvalidParameterValueException),
387    /// <p>The request body could not be parsed as JSON, or a request header is invalid. For example, the 'x-amzn-RequestId' header is not a valid UUID string.</p>
388    InvalidRequestContentException(crate::types::error::InvalidRequestContentException),
389    /// <p>The runtime or runtime version specified is not supported.</p>
390    InvalidRuntimeException(crate::types::error::InvalidRuntimeException),
391    /// <p>The security group ID provided in the Lambda function VPC configuration is not valid.</p>
392    InvalidSecurityGroupIdException(crate::types::error::InvalidSecurityGroupIdException),
393    /// <p>The subnet ID provided in the Lambda function VPC configuration is not valid.</p>
394    InvalidSubnetIdException(crate::types::error::InvalidSubnetIdException),
395    /// <p>Lambda could not unzip the deployment package.</p>
396    InvalidZipFileException(crate::types::error::InvalidZipFileException),
397    /// <p>Lambda couldn't decrypt the environment variables because KMS access was denied. Check the Lambda function's KMS permissions.</p>
398    KmsAccessDeniedException(crate::types::error::KmsAccessDeniedException),
399    /// <p>Lambda couldn't decrypt the environment variables because the KMS key used is disabled. Check the Lambda function's KMS key settings.</p>
400    KmsDisabledException(crate::types::error::KmsDisabledException),
401    /// <p>Lambda couldn't decrypt the environment variables because the state of the KMS key used is not valid for Decrypt. Check the function's KMS key settings.</p>
402    KmsInvalidStateException(crate::types::error::KmsInvalidStateException),
403    /// <p>Lambda couldn't decrypt the environment variables because the KMS key was not found. Check the function's KMS key settings.</p>
404    KmsNotFoundException(crate::types::error::KmsNotFoundException),
405    /// <p>The function has no published versions available.</p>
406    NoPublishedVersionException(crate::types::error::NoPublishedVersionException),
407    /// <p>Lambda has detected your function being invoked in a recursive loop with other Amazon Web Services resources and stopped your function's invocation.</p>
408    RecursiveInvocationException(crate::types::error::RecursiveInvocationException),
409    /// <p>The request payload exceeded the <code>Invoke</code> request body JSON input quota. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html">Lambda quotas</a>.</p>
410    RequestTooLargeException(crate::types::error::RequestTooLargeException),
411    /// <p>The resource already exists, or another operation is in progress.</p>
412    ResourceConflictException(crate::types::error::ResourceConflictException),
413    /// <p>The resource specified in the request does not exist.</p>
414    ResourceNotFoundException(crate::types::error::ResourceNotFoundException),
415    /// <p>The function is inactive and its VPC connection is no longer available. Wait for the VPC connection to reestablish and try again.</p>
416    ResourceNotReadyException(crate::types::error::ResourceNotReadyException),
417    /// <p>The Lambda function couldn't make a network connection to the configured S3 Files access point.</p>
418    S3FilesMountConnectivityException(crate::types::error::S3FilesMountConnectivityException),
419    /// <p>The Lambda function couldn't mount the configured S3 Files access point due to a permission or configuration issue.</p>
420    S3FilesMountFailureException(crate::types::error::S3FilesMountFailureException),
421    /// <p>The Lambda function made a network connection to the configured S3 Files access point, but the mount operation timed out.</p>
422    S3FilesMountTimeoutException(crate::types::error::S3FilesMountTimeoutException),
423    /// <p>The request payload exceeded the maximum allowed size for serialized request entities.</p>
424    SerializedRequestEntityTooLargeException(crate::types::error::SerializedRequestEntityTooLargeException),
425    /// <p>The Lambda service encountered an internal error.</p>
426    ServiceException(crate::types::error::ServiceException),
427    /// <p>The request would exceed a service quota. For more information about Lambda service quotas, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html">Lambda quotas</a>. To request a quota increase, see <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/request-quota-increase.html">Requesting a quota increase</a> in the <i>Service Quotas User Guide</i>.</p>
428    ServiceQuotaExceededException(crate::types::error::ServiceQuotaExceededException),
429    /// <p>The <code>afterRestore()</code> <a href="https://docs.aws.amazon.com/lambda/latest/dg/snapstart-runtime-hooks.html">runtime hook</a> encountered an error. For more information, check the Amazon CloudWatch logs.</p>
430    SnapStartException(crate::types::error::SnapStartException),
431    /// <p>Lambda is initializing your function. You can invoke the function when the <a href="https://docs.aws.amazon.com/lambda/latest/dg/functions-states.html">function state</a> becomes <code>Active</code>.</p>
432    SnapStartNotReadyException(crate::types::error::SnapStartNotReadyException),
433    /// <p>Lambda couldn't regenerate the SnapStart snapshot for the function. SnapStart-enabled functions periodically regenerate snapshots when their underlying runtime or dependencies change; this regeneration failed. Wait for Lambda to retry, or update the function's configuration to trigger a new snapshot. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/snapstart.html">Lambda SnapStart</a>.</p>
434    SnapStartRegenerationFailureException(crate::types::error::SnapStartRegenerationFailureException),
435    /// <p>Lambda couldn't restore the snapshot within the timeout limit.</p>
436    SnapStartTimeoutException(crate::types::error::SnapStartTimeoutException),
437    /// <p>Lambda couldn't set up VPC access for the Lambda function because one or more configured subnets has no available IP addresses.</p>
438    SubnetIpAddressLimitReachedException(crate::types::error::SubnetIpAddressLimitReachedException),
439    /// <p>The request throughput limit was exceeded. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html#api-requests">Lambda quotas</a>.</p>
440    TooManyRequestsException(crate::types::error::TooManyRequestsException),
441    /// <p>The content type of the <code>Invoke</code> request body is not JSON.</p>
442    UnsupportedMediaTypeException(crate::types::error::UnsupportedMediaTypeException),
443    /// An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
444    #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
445    variable wildcard pattern and check `.code()`:
446     \
447    &nbsp;&nbsp;&nbsp;`err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
448     \
449    See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-InvokeWithResponseStreamError) for what information is available for the error.")]
450    Unhandled(crate::error::sealed_unhandled::Unhandled),
451}
452impl InvokeWithResponseStreamError {
453    /// Creates the `InvokeWithResponseStreamError::Unhandled` variant from any error type.
454    pub fn unhandled(
455        err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
456    ) -> Self {
457        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
458            source: err.into(),
459            meta: ::std::default::Default::default(),
460        })
461    }
462
463    /// Creates the `InvokeWithResponseStreamError::Unhandled` variant from an [`ErrorMetadata`](::aws_smithy_types::error::ErrorMetadata).
464    pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
465        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
466            source: err.clone().into(),
467            meta: err,
468        })
469    }
470    ///
471    /// Returns error metadata, which includes the error code, message,
472    /// request ID, and potentially additional information.
473    ///
474    pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
475        match self {
476            Self::Ec2AccessDeniedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
477            Self::Ec2ThrottledException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
478            Self::Ec2UnexpectedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
479            Self::EfsioException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
480            Self::EfsMountConnectivityException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
481            Self::EfsMountFailureException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
482            Self::EfsMountTimeoutException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
483            Self::EniLimitReachedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
484            Self::InvalidParameterValueException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
485            Self::InvalidRequestContentException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
486            Self::InvalidRuntimeException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
487            Self::InvalidSecurityGroupIdException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
488            Self::InvalidSubnetIdException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
489            Self::InvalidZipFileException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
490            Self::KmsAccessDeniedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
491            Self::KmsDisabledException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
492            Self::KmsInvalidStateException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
493            Self::KmsNotFoundException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
494            Self::NoPublishedVersionException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
495            Self::RecursiveInvocationException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
496            Self::RequestTooLargeException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
497            Self::ResourceConflictException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
498            Self::ResourceNotFoundException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
499            Self::ResourceNotReadyException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
500            Self::S3FilesMountConnectivityException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
501            Self::S3FilesMountFailureException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
502            Self::S3FilesMountTimeoutException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
503            Self::SerializedRequestEntityTooLargeException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
504            Self::ServiceException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
505            Self::ServiceQuotaExceededException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
506            Self::SnapStartException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
507            Self::SnapStartNotReadyException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
508            Self::SnapStartRegenerationFailureException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
509            Self::SnapStartTimeoutException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
510            Self::SubnetIpAddressLimitReachedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
511            Self::TooManyRequestsException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
512            Self::UnsupportedMediaTypeException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
513            Self::Unhandled(e) => &e.meta,
514        }
515    }
516    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::Ec2AccessDeniedException`.
517    pub fn is_ec2_access_denied_exception(&self) -> bool {
518        matches!(self, Self::Ec2AccessDeniedException(_))
519    }
520    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::Ec2ThrottledException`.
521    pub fn is_ec2_throttled_exception(&self) -> bool {
522        matches!(self, Self::Ec2ThrottledException(_))
523    }
524    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::Ec2UnexpectedException`.
525    pub fn is_ec2_unexpected_exception(&self) -> bool {
526        matches!(self, Self::Ec2UnexpectedException(_))
527    }
528    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::EfsioException`.
529    pub fn is_efsio_exception(&self) -> bool {
530        matches!(self, Self::EfsioException(_))
531    }
532    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::EfsMountConnectivityException`.
533    pub fn is_efs_mount_connectivity_exception(&self) -> bool {
534        matches!(self, Self::EfsMountConnectivityException(_))
535    }
536    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::EfsMountFailureException`.
537    pub fn is_efs_mount_failure_exception(&self) -> bool {
538        matches!(self, Self::EfsMountFailureException(_))
539    }
540    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::EfsMountTimeoutException`.
541    pub fn is_efs_mount_timeout_exception(&self) -> bool {
542        matches!(self, Self::EfsMountTimeoutException(_))
543    }
544    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::EniLimitReachedException`.
545    pub fn is_eni_limit_reached_exception(&self) -> bool {
546        matches!(self, Self::EniLimitReachedException(_))
547    }
548    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::InvalidParameterValueException`.
549    pub fn is_invalid_parameter_value_exception(&self) -> bool {
550        matches!(self, Self::InvalidParameterValueException(_))
551    }
552    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::InvalidRequestContentException`.
553    pub fn is_invalid_request_content_exception(&self) -> bool {
554        matches!(self, Self::InvalidRequestContentException(_))
555    }
556    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::InvalidRuntimeException`.
557    pub fn is_invalid_runtime_exception(&self) -> bool {
558        matches!(self, Self::InvalidRuntimeException(_))
559    }
560    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::InvalidSecurityGroupIdException`.
561    pub fn is_invalid_security_group_id_exception(&self) -> bool {
562        matches!(self, Self::InvalidSecurityGroupIdException(_))
563    }
564    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::InvalidSubnetIdException`.
565    pub fn is_invalid_subnet_id_exception(&self) -> bool {
566        matches!(self, Self::InvalidSubnetIdException(_))
567    }
568    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::InvalidZipFileException`.
569    pub fn is_invalid_zip_file_exception(&self) -> bool {
570        matches!(self, Self::InvalidZipFileException(_))
571    }
572    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::KmsAccessDeniedException`.
573    pub fn is_kms_access_denied_exception(&self) -> bool {
574        matches!(self, Self::KmsAccessDeniedException(_))
575    }
576    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::KmsDisabledException`.
577    pub fn is_kms_disabled_exception(&self) -> bool {
578        matches!(self, Self::KmsDisabledException(_))
579    }
580    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::KmsInvalidStateException`.
581    pub fn is_kms_invalid_state_exception(&self) -> bool {
582        matches!(self, Self::KmsInvalidStateException(_))
583    }
584    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::KmsNotFoundException`.
585    pub fn is_kms_not_found_exception(&self) -> bool {
586        matches!(self, Self::KmsNotFoundException(_))
587    }
588    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::NoPublishedVersionException`.
589    pub fn is_no_published_version_exception(&self) -> bool {
590        matches!(self, Self::NoPublishedVersionException(_))
591    }
592    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::RecursiveInvocationException`.
593    pub fn is_recursive_invocation_exception(&self) -> bool {
594        matches!(self, Self::RecursiveInvocationException(_))
595    }
596    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::RequestTooLargeException`.
597    pub fn is_request_too_large_exception(&self) -> bool {
598        matches!(self, Self::RequestTooLargeException(_))
599    }
600    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::ResourceConflictException`.
601    pub fn is_resource_conflict_exception(&self) -> bool {
602        matches!(self, Self::ResourceConflictException(_))
603    }
604    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::ResourceNotFoundException`.
605    pub fn is_resource_not_found_exception(&self) -> bool {
606        matches!(self, Self::ResourceNotFoundException(_))
607    }
608    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::ResourceNotReadyException`.
609    pub fn is_resource_not_ready_exception(&self) -> bool {
610        matches!(self, Self::ResourceNotReadyException(_))
611    }
612    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::S3FilesMountConnectivityException`.
613    pub fn is_s3_files_mount_connectivity_exception(&self) -> bool {
614        matches!(self, Self::S3FilesMountConnectivityException(_))
615    }
616    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::S3FilesMountFailureException`.
617    pub fn is_s3_files_mount_failure_exception(&self) -> bool {
618        matches!(self, Self::S3FilesMountFailureException(_))
619    }
620    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::S3FilesMountTimeoutException`.
621    pub fn is_s3_files_mount_timeout_exception(&self) -> bool {
622        matches!(self, Self::S3FilesMountTimeoutException(_))
623    }
624    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::SerializedRequestEntityTooLargeException`.
625    pub fn is_serialized_request_entity_too_large_exception(&self) -> bool {
626        matches!(self, Self::SerializedRequestEntityTooLargeException(_))
627    }
628    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::ServiceException`.
629    pub fn is_service_exception(&self) -> bool {
630        matches!(self, Self::ServiceException(_))
631    }
632    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::ServiceQuotaExceededException`.
633    pub fn is_service_quota_exceeded_exception(&self) -> bool {
634        matches!(self, Self::ServiceQuotaExceededException(_))
635    }
636    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::SnapStartException`.
637    pub fn is_snap_start_exception(&self) -> bool {
638        matches!(self, Self::SnapStartException(_))
639    }
640    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::SnapStartNotReadyException`.
641    pub fn is_snap_start_not_ready_exception(&self) -> bool {
642        matches!(self, Self::SnapStartNotReadyException(_))
643    }
644    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::SnapStartRegenerationFailureException`.
645    pub fn is_snap_start_regeneration_failure_exception(&self) -> bool {
646        matches!(self, Self::SnapStartRegenerationFailureException(_))
647    }
648    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::SnapStartTimeoutException`.
649    pub fn is_snap_start_timeout_exception(&self) -> bool {
650        matches!(self, Self::SnapStartTimeoutException(_))
651    }
652    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::SubnetIpAddressLimitReachedException`.
653    pub fn is_subnet_ip_address_limit_reached_exception(&self) -> bool {
654        matches!(self, Self::SubnetIpAddressLimitReachedException(_))
655    }
656    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::TooManyRequestsException`.
657    pub fn is_too_many_requests_exception(&self) -> bool {
658        matches!(self, Self::TooManyRequestsException(_))
659    }
660    /// Returns `true` if the error kind is `InvokeWithResponseStreamError::UnsupportedMediaTypeException`.
661    pub fn is_unsupported_media_type_exception(&self) -> bool {
662        matches!(self, Self::UnsupportedMediaTypeException(_))
663    }
664}
665impl ::std::error::Error for InvokeWithResponseStreamError {
666    fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
667        match self {
668            Self::Ec2AccessDeniedException(_inner) => ::std::option::Option::Some(_inner),
669            Self::Ec2ThrottledException(_inner) => ::std::option::Option::Some(_inner),
670            Self::Ec2UnexpectedException(_inner) => ::std::option::Option::Some(_inner),
671            Self::EfsioException(_inner) => ::std::option::Option::Some(_inner),
672            Self::EfsMountConnectivityException(_inner) => ::std::option::Option::Some(_inner),
673            Self::EfsMountFailureException(_inner) => ::std::option::Option::Some(_inner),
674            Self::EfsMountTimeoutException(_inner) => ::std::option::Option::Some(_inner),
675            Self::EniLimitReachedException(_inner) => ::std::option::Option::Some(_inner),
676            Self::InvalidParameterValueException(_inner) => ::std::option::Option::Some(_inner),
677            Self::InvalidRequestContentException(_inner) => ::std::option::Option::Some(_inner),
678            Self::InvalidRuntimeException(_inner) => ::std::option::Option::Some(_inner),
679            Self::InvalidSecurityGroupIdException(_inner) => ::std::option::Option::Some(_inner),
680            Self::InvalidSubnetIdException(_inner) => ::std::option::Option::Some(_inner),
681            Self::InvalidZipFileException(_inner) => ::std::option::Option::Some(_inner),
682            Self::KmsAccessDeniedException(_inner) => ::std::option::Option::Some(_inner),
683            Self::KmsDisabledException(_inner) => ::std::option::Option::Some(_inner),
684            Self::KmsInvalidStateException(_inner) => ::std::option::Option::Some(_inner),
685            Self::KmsNotFoundException(_inner) => ::std::option::Option::Some(_inner),
686            Self::NoPublishedVersionException(_inner) => ::std::option::Option::Some(_inner),
687            Self::RecursiveInvocationException(_inner) => ::std::option::Option::Some(_inner),
688            Self::RequestTooLargeException(_inner) => ::std::option::Option::Some(_inner),
689            Self::ResourceConflictException(_inner) => ::std::option::Option::Some(_inner),
690            Self::ResourceNotFoundException(_inner) => ::std::option::Option::Some(_inner),
691            Self::ResourceNotReadyException(_inner) => ::std::option::Option::Some(_inner),
692            Self::S3FilesMountConnectivityException(_inner) => ::std::option::Option::Some(_inner),
693            Self::S3FilesMountFailureException(_inner) => ::std::option::Option::Some(_inner),
694            Self::S3FilesMountTimeoutException(_inner) => ::std::option::Option::Some(_inner),
695            Self::SerializedRequestEntityTooLargeException(_inner) => ::std::option::Option::Some(_inner),
696            Self::ServiceException(_inner) => ::std::option::Option::Some(_inner),
697            Self::ServiceQuotaExceededException(_inner) => ::std::option::Option::Some(_inner),
698            Self::SnapStartException(_inner) => ::std::option::Option::Some(_inner),
699            Self::SnapStartNotReadyException(_inner) => ::std::option::Option::Some(_inner),
700            Self::SnapStartRegenerationFailureException(_inner) => ::std::option::Option::Some(_inner),
701            Self::SnapStartTimeoutException(_inner) => ::std::option::Option::Some(_inner),
702            Self::SubnetIpAddressLimitReachedException(_inner) => ::std::option::Option::Some(_inner),
703            Self::TooManyRequestsException(_inner) => ::std::option::Option::Some(_inner),
704            Self::UnsupportedMediaTypeException(_inner) => ::std::option::Option::Some(_inner),
705            Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
706        }
707    }
708}
709impl ::std::fmt::Display for InvokeWithResponseStreamError {
710    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
711        match self {
712            Self::Ec2AccessDeniedException(_inner) => _inner.fmt(f),
713            Self::Ec2ThrottledException(_inner) => _inner.fmt(f),
714            Self::Ec2UnexpectedException(_inner) => _inner.fmt(f),
715            Self::EfsioException(_inner) => _inner.fmt(f),
716            Self::EfsMountConnectivityException(_inner) => _inner.fmt(f),
717            Self::EfsMountFailureException(_inner) => _inner.fmt(f),
718            Self::EfsMountTimeoutException(_inner) => _inner.fmt(f),
719            Self::EniLimitReachedException(_inner) => _inner.fmt(f),
720            Self::InvalidParameterValueException(_inner) => _inner.fmt(f),
721            Self::InvalidRequestContentException(_inner) => _inner.fmt(f),
722            Self::InvalidRuntimeException(_inner) => _inner.fmt(f),
723            Self::InvalidSecurityGroupIdException(_inner) => _inner.fmt(f),
724            Self::InvalidSubnetIdException(_inner) => _inner.fmt(f),
725            Self::InvalidZipFileException(_inner) => _inner.fmt(f),
726            Self::KmsAccessDeniedException(_inner) => _inner.fmt(f),
727            Self::KmsDisabledException(_inner) => _inner.fmt(f),
728            Self::KmsInvalidStateException(_inner) => _inner.fmt(f),
729            Self::KmsNotFoundException(_inner) => _inner.fmt(f),
730            Self::NoPublishedVersionException(_inner) => _inner.fmt(f),
731            Self::RecursiveInvocationException(_inner) => _inner.fmt(f),
732            Self::RequestTooLargeException(_inner) => _inner.fmt(f),
733            Self::ResourceConflictException(_inner) => _inner.fmt(f),
734            Self::ResourceNotFoundException(_inner) => _inner.fmt(f),
735            Self::ResourceNotReadyException(_inner) => _inner.fmt(f),
736            Self::S3FilesMountConnectivityException(_inner) => _inner.fmt(f),
737            Self::S3FilesMountFailureException(_inner) => _inner.fmt(f),
738            Self::S3FilesMountTimeoutException(_inner) => _inner.fmt(f),
739            Self::SerializedRequestEntityTooLargeException(_inner) => _inner.fmt(f),
740            Self::ServiceException(_inner) => _inner.fmt(f),
741            Self::ServiceQuotaExceededException(_inner) => _inner.fmt(f),
742            Self::SnapStartException(_inner) => _inner.fmt(f),
743            Self::SnapStartNotReadyException(_inner) => _inner.fmt(f),
744            Self::SnapStartRegenerationFailureException(_inner) => _inner.fmt(f),
745            Self::SnapStartTimeoutException(_inner) => _inner.fmt(f),
746            Self::SubnetIpAddressLimitReachedException(_inner) => _inner.fmt(f),
747            Self::TooManyRequestsException(_inner) => _inner.fmt(f),
748            Self::UnsupportedMediaTypeException(_inner) => _inner.fmt(f),
749            Self::Unhandled(_inner) => {
750                if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
751                    write!(f, "unhandled error ({code})")
752                } else {
753                    f.write_str("unhandled error")
754                }
755            }
756        }
757    }
758}
759impl ::aws_smithy_types::retry::ProvideErrorKind for InvokeWithResponseStreamError {
760    fn code(&self) -> ::std::option::Option<&str> {
761        ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
762    }
763    fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
764        ::std::option::Option::None
765    }
766}
767impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for InvokeWithResponseStreamError {
768    fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
769        match self {
770            Self::Ec2AccessDeniedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
771            Self::Ec2ThrottledException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
772            Self::Ec2UnexpectedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
773            Self::EfsioException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
774            Self::EfsMountConnectivityException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
775            Self::EfsMountFailureException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
776            Self::EfsMountTimeoutException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
777            Self::EniLimitReachedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
778            Self::InvalidParameterValueException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
779            Self::InvalidRequestContentException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
780            Self::InvalidRuntimeException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
781            Self::InvalidSecurityGroupIdException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
782            Self::InvalidSubnetIdException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
783            Self::InvalidZipFileException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
784            Self::KmsAccessDeniedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
785            Self::KmsDisabledException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
786            Self::KmsInvalidStateException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
787            Self::KmsNotFoundException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
788            Self::NoPublishedVersionException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
789            Self::RecursiveInvocationException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
790            Self::RequestTooLargeException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
791            Self::ResourceConflictException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
792            Self::ResourceNotFoundException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
793            Self::ResourceNotReadyException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
794            Self::S3FilesMountConnectivityException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
795            Self::S3FilesMountFailureException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
796            Self::S3FilesMountTimeoutException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
797            Self::SerializedRequestEntityTooLargeException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
798            Self::ServiceException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
799            Self::ServiceQuotaExceededException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
800            Self::SnapStartException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
801            Self::SnapStartNotReadyException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
802            Self::SnapStartRegenerationFailureException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
803            Self::SnapStartTimeoutException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
804            Self::SubnetIpAddressLimitReachedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
805            Self::TooManyRequestsException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
806            Self::UnsupportedMediaTypeException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
807            Self::Unhandled(_inner) => &_inner.meta,
808        }
809    }
810}
811impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for InvokeWithResponseStreamError {
812    fn create_unhandled_error(
813        source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
814        meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
815    ) -> Self {
816        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
817            source,
818            meta: meta.unwrap_or_default(),
819        })
820    }
821}
822impl ::aws_types::request_id::RequestId for crate::operation::invoke_with_response_stream::InvokeWithResponseStreamError {
823    fn request_id(&self) -> Option<&str> {
824        self.meta().request_id()
825    }
826}
827
828pub use crate::operation::invoke_with_response_stream::_invoke_with_response_stream_input::InvokeWithResponseStreamInput;
829
830pub use crate::operation::invoke_with_response_stream::_invoke_with_response_stream_output::InvokeWithResponseStreamOutput;
831
832mod _invoke_with_response_stream_input;
833
834mod _invoke_with_response_stream_output;
835
836/// Builders
837pub mod builders;