aws_sdk_lambda/operation/
invoke.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2/// Orchestration and serialization glue logic for `Invoke`.
3#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct Invoke;
6impl Invoke {
7    /// Creates a new `Invoke`
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::InvokeInput,
14    ) -> ::std::result::Result<
15        crate::operation::invoke::InvokeOutput,
16        ::aws_smithy_runtime_api::client::result::SdkError<
17            crate::operation::invoke::InvokeError,
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::invoke::InvokeError>().expect("correct error type")) };
26        let context = Self::orchestrate_with_stop_point(runtime_plugins, input, ::aws_smithy_runtime::client::orchestrator::StopPoint::None)
27            .await
28            .map_err(map_err)?;
29        let output = context.finalize().map_err(map_err)?;
30        ::std::result::Result::Ok(output.downcast::<crate::operation::invoke::InvokeOutput>().expect("correct output type"))
31    }
32
33    pub(crate) async fn orchestrate_with_stop_point(
34        runtime_plugins: &::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
35        input: crate::operation::invoke::InvokeInput,
36        stop_point: ::aws_smithy_runtime::client::orchestrator::StopPoint,
37    ) -> ::std::result::Result<
38        ::aws_smithy_runtime_api::client::interceptors::context::InterceptorContext,
39        ::aws_smithy_runtime_api::client::result::SdkError<
40            ::aws_smithy_runtime_api::client::interceptors::context::Error,
41            ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
42        >,
43    > {
44        let input = ::aws_smithy_runtime_api::client::interceptors::context::Input::erase(input);
45        use ::tracing::Instrument;
46        ::aws_smithy_runtime::client::orchestrator::invoke_with_stop_point("Lambda", "Invoke", input, runtime_plugins, stop_point)
47            // Create a parent span for the entire operation. Includes a random, internal-only,
48            // seven-digit ID for the operation orchestration so that it can be correlated in the logs.
49            .instrument(::tracing::debug_span!(
50                "Lambda.Invoke",
51                "rpc.service" = "Lambda",
52                "rpc.method" = "Invoke",
53                "sdk_invocation_id" = ::fastrand::u32(1_000_000..10_000_000),
54                "rpc.system" = "aws-api",
55            ))
56            .await
57    }
58
59    pub(crate) fn operation_runtime_plugins(
60        client_runtime_plugins: ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
61        client_config: &crate::config::Config,
62        config_override: ::std::option::Option<crate::config::Builder>,
63    ) -> ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins {
64        let mut runtime_plugins = client_runtime_plugins.with_operation_plugin(Self::new());
65
66        if let ::std::option::Option::Some(config_override) = config_override {
67            for plugin in config_override.runtime_plugins.iter().cloned() {
68                runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
69            }
70            runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
71                config_override,
72                client_config.config.clone(),
73                &client_config.runtime_components,
74            ));
75        }
76        runtime_plugins
77    }
78}
79impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for Invoke {
80    fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
81        let mut cfg = ::aws_smithy_types::config_bag::Layer::new("Invoke");
82
83        cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
84            InvokeRequestSerializer,
85        ));
86        cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
87            InvokeResponseDeserializer,
88        ));
89
90        cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
91            crate::config::auth::Params::builder()
92                .operation_name("Invoke")
93                .build()
94                .expect("required fields set"),
95        ));
96
97        cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::SensitiveOutput);
98        cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new("Invoke", "Lambda"));
99        let mut signing_options = ::aws_runtime::auth::SigningOptions::default();
100        signing_options.double_uri_encode = true;
101        signing_options.content_sha256_header = false;
102        signing_options.normalize_uri_path = true;
103        signing_options.payload_override = None;
104
105        cfg.store_put(::aws_runtime::auth::SigV4OperationSigningConfig {
106            signing_options,
107            ..::std::default::Default::default()
108        });
109
110        ::std::option::Option::Some(cfg.freeze())
111    }
112
113    fn runtime_components(
114        &self,
115        _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
116    ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
117        #[allow(unused_mut)]
118        let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("Invoke")
119            .with_interceptor(InvokeEndpointParamsInterceptor)
120            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
121                crate::operation::invoke::InvokeError,
122            >::new())
123            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
124                crate::operation::invoke::InvokeError,
125            >::new())
126            .with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
127                crate::operation::invoke::InvokeError,
128            >::new());
129
130        ::std::borrow::Cow::Owned(rcb)
131    }
132}
133
134#[derive(Debug)]
135struct InvokeResponseDeserializer;
136impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for InvokeResponseDeserializer {
137    fn deserialize_nonstreaming(
138        &self,
139        response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
140    ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
141        let (success, status) = (response.status().is_success(), response.status().as_u16());
142        let headers = response.headers();
143        let body = response.body().bytes().expect("body loaded");
144        #[allow(unused_mut)]
145        let mut force_error = false;
146        ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
147        let parse_result = if !success && status != 200 || force_error {
148            crate::protocol_serde::shape_invoke::de_invoke_http_error(status, headers, body)
149        } else {
150            crate::protocol_serde::shape_invoke::de_invoke_http_response(status, headers, body)
151        };
152        crate::protocol_serde::type_erase_result(parse_result)
153    }
154}
155#[derive(Debug)]
156struct InvokeRequestSerializer;
157impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for InvokeRequestSerializer {
158    #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
159    fn serialize_input(
160        &self,
161        input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
162        _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
163    ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
164        let input = input.downcast::<crate::operation::invoke::InvokeInput>().expect("correct type");
165        let _header_serialization_settings = _cfg
166            .load::<crate::serialization_settings::HeaderSerializationSettings>()
167            .cloned()
168            .unwrap_or_default();
169        let mut request_builder = {
170            fn uri_base(
171                _input: &crate::operation::invoke::InvokeInput,
172                output: &mut ::std::string::String,
173            ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
174                use ::std::fmt::Write as _;
175                let input_1 = &_input.function_name;
176                let input_1 = input_1
177                    .as_ref()
178                    .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("function_name", "cannot be empty or unset"))?;
179                let function_name = ::aws_smithy_http::label::fmt_string(input_1, ::aws_smithy_http::label::EncodingStrategy::Default);
180                if function_name.is_empty() {
181                    return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
182                        "function_name",
183                        "cannot be empty or unset",
184                    ));
185                }
186                ::std::write!(output, "/2015-03-31/functions/{FunctionName}/invocations", FunctionName = function_name)
187                    .expect("formatting should succeed");
188                ::std::result::Result::Ok(())
189            }
190            fn uri_query(
191                _input: &crate::operation::invoke::InvokeInput,
192                mut output: &mut ::std::string::String,
193            ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
194                let mut query = ::aws_smithy_http::query::Writer::new(output);
195                if let ::std::option::Option::Some(inner_2) = &_input.qualifier {
196                    {
197                        query.push_kv("Qualifier", &::aws_smithy_http::query::fmt_string(inner_2));
198                    }
199                }
200                ::std::result::Result::Ok(())
201            }
202            #[allow(clippy::unnecessary_wraps)]
203            fn update_http_builder(
204                input: &crate::operation::invoke::InvokeInput,
205                builder: ::http::request::Builder,
206            ) -> ::std::result::Result<::http::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
207                let mut uri = ::std::string::String::new();
208                uri_base(input, &mut uri)?;
209                uri_query(input, &mut uri)?;
210                let builder = crate::protocol_serde::shape_invoke::ser_invoke_headers(input, builder)?;
211                ::std::result::Result::Ok(builder.method("POST").uri(uri))
212            }
213            let mut builder = update_http_builder(&input, ::http::request::Builder::new())?;
214            builder = _header_serialization_settings.set_default_header(builder, ::http::header::CONTENT_TYPE, "application/octet-stream");
215            builder
216        };
217        let body = ::aws_smithy_types::body::SdkBody::from(crate::protocol_serde::shape_invoke_input::ser_payload_http_payload(input.payload)?);
218        if let Some(content_length) = body.content_length() {
219            let content_length = content_length.to_string();
220            request_builder = _header_serialization_settings.set_default_header(request_builder, ::http::header::CONTENT_LENGTH, &content_length);
221        }
222        ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
223    }
224}
225#[derive(Debug)]
226struct InvokeEndpointParamsInterceptor;
227
228impl ::aws_smithy_runtime_api::client::interceptors::Intercept for InvokeEndpointParamsInterceptor {
229    fn name(&self) -> &'static str {
230        "InvokeEndpointParamsInterceptor"
231    }
232
233    fn read_before_execution(
234        &self,
235        context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
236            '_,
237            ::aws_smithy_runtime_api::client::interceptors::context::Input,
238            ::aws_smithy_runtime_api::client::interceptors::context::Output,
239            ::aws_smithy_runtime_api::client::interceptors::context::Error,
240        >,
241        cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
242    ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
243        let _input = context.input().downcast_ref::<InvokeInput>().ok_or("failed to downcast to InvokeInput")?;
244
245        let params = crate::config::endpoint::Params::builder()
246            .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
247            .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
248            .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
249            .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
250            .build()
251            .map_err(|err| {
252                ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
253            })?;
254        cfg.interceptor_state()
255            .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
256        ::std::result::Result::Ok(())
257    }
258}
259
260// The get_* functions below are generated from JMESPath expressions in the
261// operationContextParams trait. They target the operation's input shape.
262
263/// Error type for the `InvokeError` operation.
264#[non_exhaustive]
265#[derive(::std::fmt::Debug)]
266pub enum InvokeError {
267    /// <p>Need additional permissions to configure VPC settings.</p>
268    Ec2AccessDeniedException(crate::types::error::Ec2AccessDeniedException),
269    /// <p>Amazon EC2 throttled Lambda during Lambda function initialization using the execution role provided for the function.</p>
270    Ec2ThrottledException(crate::types::error::Ec2ThrottledException),
271    /// <p>Lambda received an unexpected Amazon EC2 client exception while setting up for the Lambda function.</p>
272    Ec2UnexpectedException(crate::types::error::Ec2UnexpectedException),
273    /// <p>An error occurred when reading from or writing to a connected file system.</p>
274    EfsioException(crate::types::error::EfsioException),
275    /// <p>The Lambda function couldn't make a network connection to the configured file system.</p>
276    EfsMountConnectivityException(crate::types::error::EfsMountConnectivityException),
277    /// <p>The Lambda function couldn't mount the configured file system due to a permission or configuration issue.</p>
278    EfsMountFailureException(crate::types::error::EfsMountFailureException),
279    /// <p>The Lambda function made a network connection to the configured file system, but the mount operation timed out.</p>
280    EfsMountTimeoutException(crate::types::error::EfsMountTimeoutException),
281    /// <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>
282    EniLimitReachedException(crate::types::error::EniLimitReachedException),
283    /// <p>One of the parameters in the request is not valid.</p>
284    InvalidParameterValueException(crate::types::error::InvalidParameterValueException),
285    /// <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>
286    InvalidRequestContentException(crate::types::error::InvalidRequestContentException),
287    /// <p>The runtime or runtime version specified is not supported.</p>
288    InvalidRuntimeException(crate::types::error::InvalidRuntimeException),
289    /// <p>The security group ID provided in the Lambda function VPC configuration is not valid.</p>
290    InvalidSecurityGroupIdException(crate::types::error::InvalidSecurityGroupIdException),
291    /// <p>The subnet ID provided in the Lambda function VPC configuration is not valid.</p>
292    InvalidSubnetIdException(crate::types::error::InvalidSubnetIdException),
293    /// <p>Lambda could not unzip the deployment package.</p>
294    InvalidZipFileException(crate::types::error::InvalidZipFileException),
295    /// <p>Lambda couldn't decrypt the environment variables because KMS access was denied. Check the Lambda function's KMS permissions.</p>
296    KmsAccessDeniedException(crate::types::error::KmsAccessDeniedException),
297    /// <p>Lambda couldn't decrypt the environment variables because the KMS key used is disabled. Check the Lambda function's KMS key settings.</p>
298    KmsDisabledException(crate::types::error::KmsDisabledException),
299    /// <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>
300    KmsInvalidStateException(crate::types::error::KmsInvalidStateException),
301    /// <p>Lambda couldn't decrypt the environment variables because the KMS key was not found. Check the function's KMS key settings.</p>
302    KmsNotFoundException(crate::types::error::KmsNotFoundException),
303    /// <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>
304    RecursiveInvocationException(crate::types::error::RecursiveInvocationException),
305    /// <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>
306    RequestTooLargeException(crate::types::error::RequestTooLargeException),
307    /// <p>The resource already exists, or another operation is in progress.</p>
308    ResourceConflictException(crate::types::error::ResourceConflictException),
309    /// <p>The resource specified in the request does not exist.</p>
310    ResourceNotFoundException(crate::types::error::ResourceNotFoundException),
311    /// <p>The function is inactive and its VPC connection is no longer available. Wait for the VPC connection to reestablish and try again.</p>
312    ResourceNotReadyException(crate::types::error::ResourceNotReadyException),
313    /// <p>The processed request payload exceeded the <code>Invoke</code> request body size limit for asynchronous invocations. While the event payload may be under 1 MB, the size after internal serialization exceeds the maximum allowed size for asynchronous invocations.</p>
314    SerializedRequestEntityTooLargeException(crate::types::error::SerializedRequestEntityTooLargeException),
315    /// <p>The Lambda service encountered an internal error.</p>
316    ServiceException(crate::types::error::ServiceException),
317    /// <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>
318    SnapStartException(crate::types::error::SnapStartException),
319    /// <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>
320    SnapStartNotReadyException(crate::types::error::SnapStartNotReadyException),
321    /// <p>Lambda couldn't restore the snapshot within the timeout limit.</p>
322    SnapStartTimeoutException(crate::types::error::SnapStartTimeoutException),
323    /// <p>Lambda couldn't set up VPC access for the Lambda function because one or more configured subnets has no available IP addresses.</p>
324    SubnetIpAddressLimitReachedException(crate::types::error::SubnetIpAddressLimitReachedException),
325    /// <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>
326    TooManyRequestsException(crate::types::error::TooManyRequestsException),
327    /// <p>The content type of the <code>Invoke</code> request body is not JSON.</p>
328    UnsupportedMediaTypeException(crate::types::error::UnsupportedMediaTypeException),
329    /// An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
330    #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
331    variable wildcard pattern and check `.code()`:
332     \
333    &nbsp;&nbsp;&nbsp;`err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
334     \
335    See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-InvokeError) for what information is available for the error.")]
336    Unhandled(crate::error::sealed_unhandled::Unhandled),
337}
338impl InvokeError {
339    /// Creates the `InvokeError::Unhandled` variant from any error type.
340    pub fn unhandled(
341        err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
342    ) -> Self {
343        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
344            source: err.into(),
345            meta: ::std::default::Default::default(),
346        })
347    }
348
349    /// Creates the `InvokeError::Unhandled` variant from an [`ErrorMetadata`](::aws_smithy_types::error::ErrorMetadata).
350    pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
351        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
352            source: err.clone().into(),
353            meta: err,
354        })
355    }
356    ///
357    /// Returns error metadata, which includes the error code, message,
358    /// request ID, and potentially additional information.
359    ///
360    pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
361        match self {
362            Self::Ec2AccessDeniedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
363            Self::Ec2ThrottledException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
364            Self::Ec2UnexpectedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
365            Self::EfsioException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
366            Self::EfsMountConnectivityException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
367            Self::EfsMountFailureException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
368            Self::EfsMountTimeoutException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
369            Self::EniLimitReachedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
370            Self::InvalidParameterValueException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
371            Self::InvalidRequestContentException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
372            Self::InvalidRuntimeException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
373            Self::InvalidSecurityGroupIdException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
374            Self::InvalidSubnetIdException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
375            Self::InvalidZipFileException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
376            Self::KmsAccessDeniedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
377            Self::KmsDisabledException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
378            Self::KmsInvalidStateException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
379            Self::KmsNotFoundException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
380            Self::RecursiveInvocationException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
381            Self::RequestTooLargeException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
382            Self::ResourceConflictException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
383            Self::ResourceNotFoundException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
384            Self::ResourceNotReadyException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
385            Self::SerializedRequestEntityTooLargeException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
386            Self::ServiceException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
387            Self::SnapStartException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
388            Self::SnapStartNotReadyException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
389            Self::SnapStartTimeoutException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
390            Self::SubnetIpAddressLimitReachedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
391            Self::TooManyRequestsException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
392            Self::UnsupportedMediaTypeException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
393            Self::Unhandled(e) => &e.meta,
394        }
395    }
396    /// Returns `true` if the error kind is `InvokeError::Ec2AccessDeniedException`.
397    pub fn is_ec2_access_denied_exception(&self) -> bool {
398        matches!(self, Self::Ec2AccessDeniedException(_))
399    }
400    /// Returns `true` if the error kind is `InvokeError::Ec2ThrottledException`.
401    pub fn is_ec2_throttled_exception(&self) -> bool {
402        matches!(self, Self::Ec2ThrottledException(_))
403    }
404    /// Returns `true` if the error kind is `InvokeError::Ec2UnexpectedException`.
405    pub fn is_ec2_unexpected_exception(&self) -> bool {
406        matches!(self, Self::Ec2UnexpectedException(_))
407    }
408    /// Returns `true` if the error kind is `InvokeError::EfsioException`.
409    pub fn is_efsio_exception(&self) -> bool {
410        matches!(self, Self::EfsioException(_))
411    }
412    /// Returns `true` if the error kind is `InvokeError::EfsMountConnectivityException`.
413    pub fn is_efs_mount_connectivity_exception(&self) -> bool {
414        matches!(self, Self::EfsMountConnectivityException(_))
415    }
416    /// Returns `true` if the error kind is `InvokeError::EfsMountFailureException`.
417    pub fn is_efs_mount_failure_exception(&self) -> bool {
418        matches!(self, Self::EfsMountFailureException(_))
419    }
420    /// Returns `true` if the error kind is `InvokeError::EfsMountTimeoutException`.
421    pub fn is_efs_mount_timeout_exception(&self) -> bool {
422        matches!(self, Self::EfsMountTimeoutException(_))
423    }
424    /// Returns `true` if the error kind is `InvokeError::EniLimitReachedException`.
425    pub fn is_eni_limit_reached_exception(&self) -> bool {
426        matches!(self, Self::EniLimitReachedException(_))
427    }
428    /// Returns `true` if the error kind is `InvokeError::InvalidParameterValueException`.
429    pub fn is_invalid_parameter_value_exception(&self) -> bool {
430        matches!(self, Self::InvalidParameterValueException(_))
431    }
432    /// Returns `true` if the error kind is `InvokeError::InvalidRequestContentException`.
433    pub fn is_invalid_request_content_exception(&self) -> bool {
434        matches!(self, Self::InvalidRequestContentException(_))
435    }
436    /// Returns `true` if the error kind is `InvokeError::InvalidRuntimeException`.
437    pub fn is_invalid_runtime_exception(&self) -> bool {
438        matches!(self, Self::InvalidRuntimeException(_))
439    }
440    /// Returns `true` if the error kind is `InvokeError::InvalidSecurityGroupIdException`.
441    pub fn is_invalid_security_group_id_exception(&self) -> bool {
442        matches!(self, Self::InvalidSecurityGroupIdException(_))
443    }
444    /// Returns `true` if the error kind is `InvokeError::InvalidSubnetIdException`.
445    pub fn is_invalid_subnet_id_exception(&self) -> bool {
446        matches!(self, Self::InvalidSubnetIdException(_))
447    }
448    /// Returns `true` if the error kind is `InvokeError::InvalidZipFileException`.
449    pub fn is_invalid_zip_file_exception(&self) -> bool {
450        matches!(self, Self::InvalidZipFileException(_))
451    }
452    /// Returns `true` if the error kind is `InvokeError::KmsAccessDeniedException`.
453    pub fn is_kms_access_denied_exception(&self) -> bool {
454        matches!(self, Self::KmsAccessDeniedException(_))
455    }
456    /// Returns `true` if the error kind is `InvokeError::KmsDisabledException`.
457    pub fn is_kms_disabled_exception(&self) -> bool {
458        matches!(self, Self::KmsDisabledException(_))
459    }
460    /// Returns `true` if the error kind is `InvokeError::KmsInvalidStateException`.
461    pub fn is_kms_invalid_state_exception(&self) -> bool {
462        matches!(self, Self::KmsInvalidStateException(_))
463    }
464    /// Returns `true` if the error kind is `InvokeError::KmsNotFoundException`.
465    pub fn is_kms_not_found_exception(&self) -> bool {
466        matches!(self, Self::KmsNotFoundException(_))
467    }
468    /// Returns `true` if the error kind is `InvokeError::RecursiveInvocationException`.
469    pub fn is_recursive_invocation_exception(&self) -> bool {
470        matches!(self, Self::RecursiveInvocationException(_))
471    }
472    /// Returns `true` if the error kind is `InvokeError::RequestTooLargeException`.
473    pub fn is_request_too_large_exception(&self) -> bool {
474        matches!(self, Self::RequestTooLargeException(_))
475    }
476    /// Returns `true` if the error kind is `InvokeError::ResourceConflictException`.
477    pub fn is_resource_conflict_exception(&self) -> bool {
478        matches!(self, Self::ResourceConflictException(_))
479    }
480    /// Returns `true` if the error kind is `InvokeError::ResourceNotFoundException`.
481    pub fn is_resource_not_found_exception(&self) -> bool {
482        matches!(self, Self::ResourceNotFoundException(_))
483    }
484    /// Returns `true` if the error kind is `InvokeError::ResourceNotReadyException`.
485    pub fn is_resource_not_ready_exception(&self) -> bool {
486        matches!(self, Self::ResourceNotReadyException(_))
487    }
488    /// Returns `true` if the error kind is `InvokeError::SerializedRequestEntityTooLargeException`.
489    pub fn is_serialized_request_entity_too_large_exception(&self) -> bool {
490        matches!(self, Self::SerializedRequestEntityTooLargeException(_))
491    }
492    /// Returns `true` if the error kind is `InvokeError::ServiceException`.
493    pub fn is_service_exception(&self) -> bool {
494        matches!(self, Self::ServiceException(_))
495    }
496    /// Returns `true` if the error kind is `InvokeError::SnapStartException`.
497    pub fn is_snap_start_exception(&self) -> bool {
498        matches!(self, Self::SnapStartException(_))
499    }
500    /// Returns `true` if the error kind is `InvokeError::SnapStartNotReadyException`.
501    pub fn is_snap_start_not_ready_exception(&self) -> bool {
502        matches!(self, Self::SnapStartNotReadyException(_))
503    }
504    /// Returns `true` if the error kind is `InvokeError::SnapStartTimeoutException`.
505    pub fn is_snap_start_timeout_exception(&self) -> bool {
506        matches!(self, Self::SnapStartTimeoutException(_))
507    }
508    /// Returns `true` if the error kind is `InvokeError::SubnetIpAddressLimitReachedException`.
509    pub fn is_subnet_ip_address_limit_reached_exception(&self) -> bool {
510        matches!(self, Self::SubnetIpAddressLimitReachedException(_))
511    }
512    /// Returns `true` if the error kind is `InvokeError::TooManyRequestsException`.
513    pub fn is_too_many_requests_exception(&self) -> bool {
514        matches!(self, Self::TooManyRequestsException(_))
515    }
516    /// Returns `true` if the error kind is `InvokeError::UnsupportedMediaTypeException`.
517    pub fn is_unsupported_media_type_exception(&self) -> bool {
518        matches!(self, Self::UnsupportedMediaTypeException(_))
519    }
520}
521impl ::std::error::Error for InvokeError {
522    fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
523        match self {
524            Self::Ec2AccessDeniedException(_inner) => ::std::option::Option::Some(_inner),
525            Self::Ec2ThrottledException(_inner) => ::std::option::Option::Some(_inner),
526            Self::Ec2UnexpectedException(_inner) => ::std::option::Option::Some(_inner),
527            Self::EfsioException(_inner) => ::std::option::Option::Some(_inner),
528            Self::EfsMountConnectivityException(_inner) => ::std::option::Option::Some(_inner),
529            Self::EfsMountFailureException(_inner) => ::std::option::Option::Some(_inner),
530            Self::EfsMountTimeoutException(_inner) => ::std::option::Option::Some(_inner),
531            Self::EniLimitReachedException(_inner) => ::std::option::Option::Some(_inner),
532            Self::InvalidParameterValueException(_inner) => ::std::option::Option::Some(_inner),
533            Self::InvalidRequestContentException(_inner) => ::std::option::Option::Some(_inner),
534            Self::InvalidRuntimeException(_inner) => ::std::option::Option::Some(_inner),
535            Self::InvalidSecurityGroupIdException(_inner) => ::std::option::Option::Some(_inner),
536            Self::InvalidSubnetIdException(_inner) => ::std::option::Option::Some(_inner),
537            Self::InvalidZipFileException(_inner) => ::std::option::Option::Some(_inner),
538            Self::KmsAccessDeniedException(_inner) => ::std::option::Option::Some(_inner),
539            Self::KmsDisabledException(_inner) => ::std::option::Option::Some(_inner),
540            Self::KmsInvalidStateException(_inner) => ::std::option::Option::Some(_inner),
541            Self::KmsNotFoundException(_inner) => ::std::option::Option::Some(_inner),
542            Self::RecursiveInvocationException(_inner) => ::std::option::Option::Some(_inner),
543            Self::RequestTooLargeException(_inner) => ::std::option::Option::Some(_inner),
544            Self::ResourceConflictException(_inner) => ::std::option::Option::Some(_inner),
545            Self::ResourceNotFoundException(_inner) => ::std::option::Option::Some(_inner),
546            Self::ResourceNotReadyException(_inner) => ::std::option::Option::Some(_inner),
547            Self::SerializedRequestEntityTooLargeException(_inner) => ::std::option::Option::Some(_inner),
548            Self::ServiceException(_inner) => ::std::option::Option::Some(_inner),
549            Self::SnapStartException(_inner) => ::std::option::Option::Some(_inner),
550            Self::SnapStartNotReadyException(_inner) => ::std::option::Option::Some(_inner),
551            Self::SnapStartTimeoutException(_inner) => ::std::option::Option::Some(_inner),
552            Self::SubnetIpAddressLimitReachedException(_inner) => ::std::option::Option::Some(_inner),
553            Self::TooManyRequestsException(_inner) => ::std::option::Option::Some(_inner),
554            Self::UnsupportedMediaTypeException(_inner) => ::std::option::Option::Some(_inner),
555            Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
556        }
557    }
558}
559impl ::std::fmt::Display for InvokeError {
560    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
561        match self {
562            Self::Ec2AccessDeniedException(_inner) => _inner.fmt(f),
563            Self::Ec2ThrottledException(_inner) => _inner.fmt(f),
564            Self::Ec2UnexpectedException(_inner) => _inner.fmt(f),
565            Self::EfsioException(_inner) => _inner.fmt(f),
566            Self::EfsMountConnectivityException(_inner) => _inner.fmt(f),
567            Self::EfsMountFailureException(_inner) => _inner.fmt(f),
568            Self::EfsMountTimeoutException(_inner) => _inner.fmt(f),
569            Self::EniLimitReachedException(_inner) => _inner.fmt(f),
570            Self::InvalidParameterValueException(_inner) => _inner.fmt(f),
571            Self::InvalidRequestContentException(_inner) => _inner.fmt(f),
572            Self::InvalidRuntimeException(_inner) => _inner.fmt(f),
573            Self::InvalidSecurityGroupIdException(_inner) => _inner.fmt(f),
574            Self::InvalidSubnetIdException(_inner) => _inner.fmt(f),
575            Self::InvalidZipFileException(_inner) => _inner.fmt(f),
576            Self::KmsAccessDeniedException(_inner) => _inner.fmt(f),
577            Self::KmsDisabledException(_inner) => _inner.fmt(f),
578            Self::KmsInvalidStateException(_inner) => _inner.fmt(f),
579            Self::KmsNotFoundException(_inner) => _inner.fmt(f),
580            Self::RecursiveInvocationException(_inner) => _inner.fmt(f),
581            Self::RequestTooLargeException(_inner) => _inner.fmt(f),
582            Self::ResourceConflictException(_inner) => _inner.fmt(f),
583            Self::ResourceNotFoundException(_inner) => _inner.fmt(f),
584            Self::ResourceNotReadyException(_inner) => _inner.fmt(f),
585            Self::SerializedRequestEntityTooLargeException(_inner) => _inner.fmt(f),
586            Self::ServiceException(_inner) => _inner.fmt(f),
587            Self::SnapStartException(_inner) => _inner.fmt(f),
588            Self::SnapStartNotReadyException(_inner) => _inner.fmt(f),
589            Self::SnapStartTimeoutException(_inner) => _inner.fmt(f),
590            Self::SubnetIpAddressLimitReachedException(_inner) => _inner.fmt(f),
591            Self::TooManyRequestsException(_inner) => _inner.fmt(f),
592            Self::UnsupportedMediaTypeException(_inner) => _inner.fmt(f),
593            Self::Unhandled(_inner) => {
594                if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
595                    write!(f, "unhandled error ({code})")
596                } else {
597                    f.write_str("unhandled error")
598                }
599            }
600        }
601    }
602}
603impl ::aws_smithy_types::retry::ProvideErrorKind for InvokeError {
604    fn code(&self) -> ::std::option::Option<&str> {
605        ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
606    }
607    fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
608        ::std::option::Option::None
609    }
610}
611impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for InvokeError {
612    fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
613        match self {
614            Self::Ec2AccessDeniedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
615            Self::Ec2ThrottledException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
616            Self::Ec2UnexpectedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
617            Self::EfsioException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
618            Self::EfsMountConnectivityException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
619            Self::EfsMountFailureException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
620            Self::EfsMountTimeoutException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
621            Self::EniLimitReachedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
622            Self::InvalidParameterValueException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
623            Self::InvalidRequestContentException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
624            Self::InvalidRuntimeException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
625            Self::InvalidSecurityGroupIdException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
626            Self::InvalidSubnetIdException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
627            Self::InvalidZipFileException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
628            Self::KmsAccessDeniedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
629            Self::KmsDisabledException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
630            Self::KmsInvalidStateException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
631            Self::KmsNotFoundException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
632            Self::RecursiveInvocationException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
633            Self::RequestTooLargeException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
634            Self::ResourceConflictException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
635            Self::ResourceNotFoundException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
636            Self::ResourceNotReadyException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
637            Self::SerializedRequestEntityTooLargeException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
638            Self::ServiceException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
639            Self::SnapStartException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
640            Self::SnapStartNotReadyException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
641            Self::SnapStartTimeoutException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
642            Self::SubnetIpAddressLimitReachedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
643            Self::TooManyRequestsException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
644            Self::UnsupportedMediaTypeException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
645            Self::Unhandled(_inner) => &_inner.meta,
646        }
647    }
648}
649impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for InvokeError {
650    fn create_unhandled_error(
651        source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
652        meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
653    ) -> Self {
654        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
655            source,
656            meta: meta.unwrap_or_default(),
657        })
658    }
659}
660impl ::aws_types::request_id::RequestId for crate::operation::invoke::InvokeError {
661    fn request_id(&self) -> Option<&str> {
662        self.meta().request_id()
663    }
664}
665
666pub use crate::operation::invoke::_invoke_output::InvokeOutput;
667
668pub use crate::operation::invoke::_invoke_input::InvokeInput;
669
670mod _invoke_input;
671
672mod _invoke_output;
673
674/// Builders
675pub mod builders;