Skip to main content

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(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
120                InvokeEndpointParamsInterceptor,
121            ))
122            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
123                crate::operation::invoke::InvokeError,
124            >::new())
125            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
126                crate::operation::invoke::InvokeError,
127            >::new())
128            .with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
129                crate::operation::invoke::InvokeError,
130            >::new());
131
132        ::std::borrow::Cow::Owned(rcb)
133    }
134}
135
136#[derive(Debug)]
137struct InvokeResponseDeserializer;
138impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for InvokeResponseDeserializer {
139    fn deserialize_nonstreaming(
140        &self,
141        response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
142    ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
143        let (success, status) = (response.status().is_success(), response.status().as_u16());
144        let headers = response.headers();
145        let body = response.body().bytes().expect("body loaded");
146        #[allow(unused_mut)]
147        let mut force_error = false;
148        ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
149        let parse_result = if !success && status != 200 || force_error {
150            crate::protocol_serde::shape_invoke::de_invoke_http_error(status, headers, body)
151        } else {
152            crate::protocol_serde::shape_invoke::de_invoke_http_response(status, headers, body)
153        };
154        crate::protocol_serde::type_erase_result(parse_result)
155    }
156}
157#[derive(Debug)]
158struct InvokeRequestSerializer;
159impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for InvokeRequestSerializer {
160    #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
161    fn serialize_input(
162        &self,
163        input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
164        _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
165    ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
166        let input = input.downcast::<crate::operation::invoke::InvokeInput>().expect("correct type");
167        let _header_serialization_settings = _cfg
168            .load::<crate::serialization_settings::HeaderSerializationSettings>()
169            .cloned()
170            .unwrap_or_default();
171        let mut request_builder = {
172            #[allow(clippy::uninlined_format_args)]
173            fn uri_base(
174                _input: &crate::operation::invoke::InvokeInput,
175                output: &mut ::std::string::String,
176            ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
177                use ::std::fmt::Write as _;
178                let input_1 = &_input.function_name;
179                let input_1 = input_1
180                    .as_ref()
181                    .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("function_name", "cannot be empty or unset"))?;
182                let function_name = ::aws_smithy_http::label::fmt_string(input_1, ::aws_smithy_http::label::EncodingStrategy::Default);
183                if function_name.is_empty() {
184                    return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
185                        "function_name",
186                        "cannot be empty or unset",
187                    ));
188                }
189                ::std::write!(output, "/2015-03-31/functions/{FunctionName}/invocations", FunctionName = function_name)
190                    .expect("formatting should succeed");
191                ::std::result::Result::Ok(())
192            }
193            fn uri_query(
194                _input: &crate::operation::invoke::InvokeInput,
195                mut output: &mut ::std::string::String,
196            ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
197                let mut query = ::aws_smithy_http::query::Writer::new(output);
198                if let ::std::option::Option::Some(inner_2) = &_input.qualifier {
199                    {
200                        query.push_kv("Qualifier", &::aws_smithy_http::query::fmt_string(inner_2));
201                    }
202                }
203                ::std::result::Result::Ok(())
204            }
205            #[allow(clippy::unnecessary_wraps)]
206            fn update_http_builder(
207                input: &crate::operation::invoke::InvokeInput,
208                builder: ::http_1x::request::Builder,
209            ) -> ::std::result::Result<::http_1x::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
210                let mut uri = ::std::string::String::new();
211                uri_base(input, &mut uri)?;
212                uri_query(input, &mut uri)?;
213                let builder = crate::protocol_serde::shape_invoke::ser_invoke_headers(input, builder)?;
214                ::std::result::Result::Ok(builder.method("POST").uri(uri))
215            }
216            let mut builder = update_http_builder(&input, ::http_1x::request::Builder::new())?;
217            builder = _header_serialization_settings.set_default_header(builder, ::http_1x::header::CONTENT_TYPE, "application/octet-stream");
218            builder
219        };
220        let body = ::aws_smithy_types::body::SdkBody::from(crate::protocol_serde::shape_invoke_input::ser_payload_http_payload(input.payload)?);
221        if let Some(content_length) = body.content_length() {
222            let content_length = content_length.to_string();
223            request_builder = _header_serialization_settings.set_default_header(request_builder, ::http_1x::header::CONTENT_LENGTH, &content_length);
224        }
225        ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
226    }
227}
228#[derive(Debug)]
229struct InvokeEndpointParamsInterceptor;
230
231#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
232impl ::aws_smithy_runtime_api::client::interceptors::Intercept for InvokeEndpointParamsInterceptor {
233    fn name(&self) -> &'static str {
234        "InvokeEndpointParamsInterceptor"
235    }
236
237    fn read_before_execution(
238        &self,
239        context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
240            '_,
241            ::aws_smithy_runtime_api::client::interceptors::context::Input,
242            ::aws_smithy_runtime_api::client::interceptors::context::Output,
243            ::aws_smithy_runtime_api::client::interceptors::context::Error,
244        >,
245        cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
246    ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
247        let _input = context.input().downcast_ref::<InvokeInput>().ok_or("failed to downcast to InvokeInput")?;
248
249        let params = crate::config::endpoint::Params::builder()
250            .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
251            .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
252            .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
253            .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
254            .build()
255            .map_err(|err| {
256                ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
257            })?;
258        cfg.interceptor_state()
259            .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
260        ::std::result::Result::Ok(())
261    }
262}
263
264// The get_* functions below are generated from JMESPath expressions in the
265// operationContextParams trait. They target the operation's input shape.
266
267/// Error type for the `InvokeError` operation.
268#[non_exhaustive]
269#[derive(::std::fmt::Debug)]
270pub enum InvokeError {
271    /// <p>The durable execution with the specified name has already been started. Each durable execution name must be unique within the function. Use a different name or check the status of the existing execution.</p>
272    DurableExecutionAlreadyStartedException(crate::types::error::DurableExecutionAlreadyStartedException),
273    /// <p>Need additional permissions to configure VPC settings.</p>
274    Ec2AccessDeniedException(crate::types::error::Ec2AccessDeniedException),
275    /// <p>Amazon EC2 throttled Lambda during Lambda function initialization using the execution role provided for the function.</p>
276    Ec2ThrottledException(crate::types::error::Ec2ThrottledException),
277    /// <p>Lambda received an unexpected Amazon EC2 client exception while setting up for the Lambda function.</p>
278    Ec2UnexpectedException(crate::types::error::Ec2UnexpectedException),
279    /// <p>An error occurred when reading from or writing to a connected file system.</p>
280    EfsioException(crate::types::error::EfsioException),
281    /// <p>The Lambda function couldn't make a network connection to the configured file system.</p>
282    EfsMountConnectivityException(crate::types::error::EfsMountConnectivityException),
283    /// <p>The Lambda function couldn't mount the configured file system due to a permission or configuration issue.</p>
284    EfsMountFailureException(crate::types::error::EfsMountFailureException),
285    /// <p>The Lambda function made a network connection to the configured file system, but the mount operation timed out.</p>
286    EfsMountTimeoutException(crate::types::error::EfsMountTimeoutException),
287    /// <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>
288    EniLimitReachedException(crate::types::error::EniLimitReachedException),
289    /// <p>One of the parameters in the request is not valid.</p>
290    InvalidParameterValueException(crate::types::error::InvalidParameterValueException),
291    /// <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>
292    InvalidRequestContentException(crate::types::error::InvalidRequestContentException),
293    /// <p>The runtime or runtime version specified is not supported.</p>
294    InvalidRuntimeException(crate::types::error::InvalidRuntimeException),
295    /// <p>The security group ID provided in the Lambda function VPC configuration is not valid.</p>
296    InvalidSecurityGroupIdException(crate::types::error::InvalidSecurityGroupIdException),
297    /// <p>The subnet ID provided in the Lambda function VPC configuration is not valid.</p>
298    InvalidSubnetIdException(crate::types::error::InvalidSubnetIdException),
299    /// <p>Lambda could not unzip the deployment package.</p>
300    InvalidZipFileException(crate::types::error::InvalidZipFileException),
301    /// <p>Lambda couldn't decrypt the environment variables because KMS access was denied. Check the Lambda function's KMS permissions.</p>
302    KmsAccessDeniedException(crate::types::error::KmsAccessDeniedException),
303    /// <p>Lambda couldn't decrypt the environment variables because the KMS key used is disabled. Check the Lambda function's KMS key settings.</p>
304    KmsDisabledException(crate::types::error::KmsDisabledException),
305    /// <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>
306    KmsInvalidStateException(crate::types::error::KmsInvalidStateException),
307    /// <p>Lambda couldn't decrypt the environment variables because the KMS key was not found. Check the function's KMS key settings.</p>
308    KmsNotFoundException(crate::types::error::KmsNotFoundException),
309    /// <p>The function has no published versions available.</p>
310    NoPublishedVersionException(crate::types::error::NoPublishedVersionException),
311    /// <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>
312    RecursiveInvocationException(crate::types::error::RecursiveInvocationException),
313    /// <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>
314    RequestTooLargeException(crate::types::error::RequestTooLargeException),
315    /// <p>The resource already exists, or another operation is in progress.</p>
316    ResourceConflictException(crate::types::error::ResourceConflictException),
317    /// <p>The resource specified in the request does not exist.</p>
318    ResourceNotFoundException(crate::types::error::ResourceNotFoundException),
319    /// <p>The function is inactive and its VPC connection is no longer available. Wait for the VPC connection to reestablish and try again.</p>
320    ResourceNotReadyException(crate::types::error::ResourceNotReadyException),
321    /// <p>The Lambda function couldn't make a network connection to the configured S3 Files access point.</p>
322    S3FilesMountConnectivityException(crate::types::error::S3FilesMountConnectivityException),
323    /// <p>The Lambda function couldn't mount the configured S3 Files access point due to a permission or configuration issue.</p>
324    S3FilesMountFailureException(crate::types::error::S3FilesMountFailureException),
325    /// <p>The Lambda function made a network connection to the configured S3 Files access point, but the mount operation timed out.</p>
326    S3FilesMountTimeoutException(crate::types::error::S3FilesMountTimeoutException),
327    /// <p>The request payload exceeded the maximum allowed size for serialized request entities.</p>
328    SerializedRequestEntityTooLargeException(crate::types::error::SerializedRequestEntityTooLargeException),
329    /// <p>The Lambda service encountered an internal error.</p>
330    ServiceException(crate::types::error::ServiceException),
331    /// <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>
332    SnapStartException(crate::types::error::SnapStartException),
333    /// <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>
334    SnapStartNotReadyException(crate::types::error::SnapStartNotReadyException),
335    /// <p>Lambda couldn't restore the snapshot within the timeout limit.</p>
336    SnapStartTimeoutException(crate::types::error::SnapStartTimeoutException),
337    /// <p>Lambda couldn't set up VPC access for the Lambda function because one or more configured subnets has no available IP addresses.</p>
338    SubnetIpAddressLimitReachedException(crate::types::error::SubnetIpAddressLimitReachedException),
339    /// <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>
340    TooManyRequestsException(crate::types::error::TooManyRequestsException),
341    /// <p>The content type of the <code>Invoke</code> request body is not JSON.</p>
342    UnsupportedMediaTypeException(crate::types::error::UnsupportedMediaTypeException),
343    /// An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
344    #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
345    variable wildcard pattern and check `.code()`:
346     \
347    &nbsp;&nbsp;&nbsp;`err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
348     \
349    See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-InvokeError) for what information is available for the error.")]
350    Unhandled(crate::error::sealed_unhandled::Unhandled),
351}
352impl InvokeError {
353    /// Creates the `InvokeError::Unhandled` variant from any error type.
354    pub fn unhandled(
355        err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
356    ) -> Self {
357        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
358            source: err.into(),
359            meta: ::std::default::Default::default(),
360        })
361    }
362
363    /// Creates the `InvokeError::Unhandled` variant from an [`ErrorMetadata`](::aws_smithy_types::error::ErrorMetadata).
364    pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
365        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
366            source: err.clone().into(),
367            meta: err,
368        })
369    }
370    ///
371    /// Returns error metadata, which includes the error code, message,
372    /// request ID, and potentially additional information.
373    ///
374    pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
375        match self {
376            Self::DurableExecutionAlreadyStartedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
377            Self::Ec2AccessDeniedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
378            Self::Ec2ThrottledException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
379            Self::Ec2UnexpectedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
380            Self::EfsioException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
381            Self::EfsMountConnectivityException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
382            Self::EfsMountFailureException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
383            Self::EfsMountTimeoutException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
384            Self::EniLimitReachedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
385            Self::InvalidParameterValueException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
386            Self::InvalidRequestContentException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
387            Self::InvalidRuntimeException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
388            Self::InvalidSecurityGroupIdException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
389            Self::InvalidSubnetIdException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
390            Self::InvalidZipFileException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
391            Self::KmsAccessDeniedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
392            Self::KmsDisabledException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
393            Self::KmsInvalidStateException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
394            Self::KmsNotFoundException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
395            Self::NoPublishedVersionException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
396            Self::RecursiveInvocationException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
397            Self::RequestTooLargeException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
398            Self::ResourceConflictException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
399            Self::ResourceNotFoundException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
400            Self::ResourceNotReadyException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
401            Self::S3FilesMountConnectivityException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
402            Self::S3FilesMountFailureException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
403            Self::S3FilesMountTimeoutException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
404            Self::SerializedRequestEntityTooLargeException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
405            Self::ServiceException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
406            Self::SnapStartException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
407            Self::SnapStartNotReadyException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
408            Self::SnapStartTimeoutException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
409            Self::SubnetIpAddressLimitReachedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
410            Self::TooManyRequestsException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
411            Self::UnsupportedMediaTypeException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
412            Self::Unhandled(e) => &e.meta,
413        }
414    }
415    /// Returns `true` if the error kind is `InvokeError::DurableExecutionAlreadyStartedException`.
416    pub fn is_durable_execution_already_started_exception(&self) -> bool {
417        matches!(self, Self::DurableExecutionAlreadyStartedException(_))
418    }
419    /// Returns `true` if the error kind is `InvokeError::Ec2AccessDeniedException`.
420    pub fn is_ec2_access_denied_exception(&self) -> bool {
421        matches!(self, Self::Ec2AccessDeniedException(_))
422    }
423    /// Returns `true` if the error kind is `InvokeError::Ec2ThrottledException`.
424    pub fn is_ec2_throttled_exception(&self) -> bool {
425        matches!(self, Self::Ec2ThrottledException(_))
426    }
427    /// Returns `true` if the error kind is `InvokeError::Ec2UnexpectedException`.
428    pub fn is_ec2_unexpected_exception(&self) -> bool {
429        matches!(self, Self::Ec2UnexpectedException(_))
430    }
431    /// Returns `true` if the error kind is `InvokeError::EfsioException`.
432    pub fn is_efsio_exception(&self) -> bool {
433        matches!(self, Self::EfsioException(_))
434    }
435    /// Returns `true` if the error kind is `InvokeError::EfsMountConnectivityException`.
436    pub fn is_efs_mount_connectivity_exception(&self) -> bool {
437        matches!(self, Self::EfsMountConnectivityException(_))
438    }
439    /// Returns `true` if the error kind is `InvokeError::EfsMountFailureException`.
440    pub fn is_efs_mount_failure_exception(&self) -> bool {
441        matches!(self, Self::EfsMountFailureException(_))
442    }
443    /// Returns `true` if the error kind is `InvokeError::EfsMountTimeoutException`.
444    pub fn is_efs_mount_timeout_exception(&self) -> bool {
445        matches!(self, Self::EfsMountTimeoutException(_))
446    }
447    /// Returns `true` if the error kind is `InvokeError::EniLimitReachedException`.
448    pub fn is_eni_limit_reached_exception(&self) -> bool {
449        matches!(self, Self::EniLimitReachedException(_))
450    }
451    /// Returns `true` if the error kind is `InvokeError::InvalidParameterValueException`.
452    pub fn is_invalid_parameter_value_exception(&self) -> bool {
453        matches!(self, Self::InvalidParameterValueException(_))
454    }
455    /// Returns `true` if the error kind is `InvokeError::InvalidRequestContentException`.
456    pub fn is_invalid_request_content_exception(&self) -> bool {
457        matches!(self, Self::InvalidRequestContentException(_))
458    }
459    /// Returns `true` if the error kind is `InvokeError::InvalidRuntimeException`.
460    pub fn is_invalid_runtime_exception(&self) -> bool {
461        matches!(self, Self::InvalidRuntimeException(_))
462    }
463    /// Returns `true` if the error kind is `InvokeError::InvalidSecurityGroupIdException`.
464    pub fn is_invalid_security_group_id_exception(&self) -> bool {
465        matches!(self, Self::InvalidSecurityGroupIdException(_))
466    }
467    /// Returns `true` if the error kind is `InvokeError::InvalidSubnetIdException`.
468    pub fn is_invalid_subnet_id_exception(&self) -> bool {
469        matches!(self, Self::InvalidSubnetIdException(_))
470    }
471    /// Returns `true` if the error kind is `InvokeError::InvalidZipFileException`.
472    pub fn is_invalid_zip_file_exception(&self) -> bool {
473        matches!(self, Self::InvalidZipFileException(_))
474    }
475    /// Returns `true` if the error kind is `InvokeError::KmsAccessDeniedException`.
476    pub fn is_kms_access_denied_exception(&self) -> bool {
477        matches!(self, Self::KmsAccessDeniedException(_))
478    }
479    /// Returns `true` if the error kind is `InvokeError::KmsDisabledException`.
480    pub fn is_kms_disabled_exception(&self) -> bool {
481        matches!(self, Self::KmsDisabledException(_))
482    }
483    /// Returns `true` if the error kind is `InvokeError::KmsInvalidStateException`.
484    pub fn is_kms_invalid_state_exception(&self) -> bool {
485        matches!(self, Self::KmsInvalidStateException(_))
486    }
487    /// Returns `true` if the error kind is `InvokeError::KmsNotFoundException`.
488    pub fn is_kms_not_found_exception(&self) -> bool {
489        matches!(self, Self::KmsNotFoundException(_))
490    }
491    /// Returns `true` if the error kind is `InvokeError::NoPublishedVersionException`.
492    pub fn is_no_published_version_exception(&self) -> bool {
493        matches!(self, Self::NoPublishedVersionException(_))
494    }
495    /// Returns `true` if the error kind is `InvokeError::RecursiveInvocationException`.
496    pub fn is_recursive_invocation_exception(&self) -> bool {
497        matches!(self, Self::RecursiveInvocationException(_))
498    }
499    /// Returns `true` if the error kind is `InvokeError::RequestTooLargeException`.
500    pub fn is_request_too_large_exception(&self) -> bool {
501        matches!(self, Self::RequestTooLargeException(_))
502    }
503    /// Returns `true` if the error kind is `InvokeError::ResourceConflictException`.
504    pub fn is_resource_conflict_exception(&self) -> bool {
505        matches!(self, Self::ResourceConflictException(_))
506    }
507    /// Returns `true` if the error kind is `InvokeError::ResourceNotFoundException`.
508    pub fn is_resource_not_found_exception(&self) -> bool {
509        matches!(self, Self::ResourceNotFoundException(_))
510    }
511    /// Returns `true` if the error kind is `InvokeError::ResourceNotReadyException`.
512    pub fn is_resource_not_ready_exception(&self) -> bool {
513        matches!(self, Self::ResourceNotReadyException(_))
514    }
515    /// Returns `true` if the error kind is `InvokeError::S3FilesMountConnectivityException`.
516    pub fn is_s3_files_mount_connectivity_exception(&self) -> bool {
517        matches!(self, Self::S3FilesMountConnectivityException(_))
518    }
519    /// Returns `true` if the error kind is `InvokeError::S3FilesMountFailureException`.
520    pub fn is_s3_files_mount_failure_exception(&self) -> bool {
521        matches!(self, Self::S3FilesMountFailureException(_))
522    }
523    /// Returns `true` if the error kind is `InvokeError::S3FilesMountTimeoutException`.
524    pub fn is_s3_files_mount_timeout_exception(&self) -> bool {
525        matches!(self, Self::S3FilesMountTimeoutException(_))
526    }
527    /// Returns `true` if the error kind is `InvokeError::SerializedRequestEntityTooLargeException`.
528    pub fn is_serialized_request_entity_too_large_exception(&self) -> bool {
529        matches!(self, Self::SerializedRequestEntityTooLargeException(_))
530    }
531    /// Returns `true` if the error kind is `InvokeError::ServiceException`.
532    pub fn is_service_exception(&self) -> bool {
533        matches!(self, Self::ServiceException(_))
534    }
535    /// Returns `true` if the error kind is `InvokeError::SnapStartException`.
536    pub fn is_snap_start_exception(&self) -> bool {
537        matches!(self, Self::SnapStartException(_))
538    }
539    /// Returns `true` if the error kind is `InvokeError::SnapStartNotReadyException`.
540    pub fn is_snap_start_not_ready_exception(&self) -> bool {
541        matches!(self, Self::SnapStartNotReadyException(_))
542    }
543    /// Returns `true` if the error kind is `InvokeError::SnapStartTimeoutException`.
544    pub fn is_snap_start_timeout_exception(&self) -> bool {
545        matches!(self, Self::SnapStartTimeoutException(_))
546    }
547    /// Returns `true` if the error kind is `InvokeError::SubnetIpAddressLimitReachedException`.
548    pub fn is_subnet_ip_address_limit_reached_exception(&self) -> bool {
549        matches!(self, Self::SubnetIpAddressLimitReachedException(_))
550    }
551    /// Returns `true` if the error kind is `InvokeError::TooManyRequestsException`.
552    pub fn is_too_many_requests_exception(&self) -> bool {
553        matches!(self, Self::TooManyRequestsException(_))
554    }
555    /// Returns `true` if the error kind is `InvokeError::UnsupportedMediaTypeException`.
556    pub fn is_unsupported_media_type_exception(&self) -> bool {
557        matches!(self, Self::UnsupportedMediaTypeException(_))
558    }
559}
560impl ::std::error::Error for InvokeError {
561    fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
562        match self {
563            Self::DurableExecutionAlreadyStartedException(_inner) => ::std::option::Option::Some(_inner),
564            Self::Ec2AccessDeniedException(_inner) => ::std::option::Option::Some(_inner),
565            Self::Ec2ThrottledException(_inner) => ::std::option::Option::Some(_inner),
566            Self::Ec2UnexpectedException(_inner) => ::std::option::Option::Some(_inner),
567            Self::EfsioException(_inner) => ::std::option::Option::Some(_inner),
568            Self::EfsMountConnectivityException(_inner) => ::std::option::Option::Some(_inner),
569            Self::EfsMountFailureException(_inner) => ::std::option::Option::Some(_inner),
570            Self::EfsMountTimeoutException(_inner) => ::std::option::Option::Some(_inner),
571            Self::EniLimitReachedException(_inner) => ::std::option::Option::Some(_inner),
572            Self::InvalidParameterValueException(_inner) => ::std::option::Option::Some(_inner),
573            Self::InvalidRequestContentException(_inner) => ::std::option::Option::Some(_inner),
574            Self::InvalidRuntimeException(_inner) => ::std::option::Option::Some(_inner),
575            Self::InvalidSecurityGroupIdException(_inner) => ::std::option::Option::Some(_inner),
576            Self::InvalidSubnetIdException(_inner) => ::std::option::Option::Some(_inner),
577            Self::InvalidZipFileException(_inner) => ::std::option::Option::Some(_inner),
578            Self::KmsAccessDeniedException(_inner) => ::std::option::Option::Some(_inner),
579            Self::KmsDisabledException(_inner) => ::std::option::Option::Some(_inner),
580            Self::KmsInvalidStateException(_inner) => ::std::option::Option::Some(_inner),
581            Self::KmsNotFoundException(_inner) => ::std::option::Option::Some(_inner),
582            Self::NoPublishedVersionException(_inner) => ::std::option::Option::Some(_inner),
583            Self::RecursiveInvocationException(_inner) => ::std::option::Option::Some(_inner),
584            Self::RequestTooLargeException(_inner) => ::std::option::Option::Some(_inner),
585            Self::ResourceConflictException(_inner) => ::std::option::Option::Some(_inner),
586            Self::ResourceNotFoundException(_inner) => ::std::option::Option::Some(_inner),
587            Self::ResourceNotReadyException(_inner) => ::std::option::Option::Some(_inner),
588            Self::S3FilesMountConnectivityException(_inner) => ::std::option::Option::Some(_inner),
589            Self::S3FilesMountFailureException(_inner) => ::std::option::Option::Some(_inner),
590            Self::S3FilesMountTimeoutException(_inner) => ::std::option::Option::Some(_inner),
591            Self::SerializedRequestEntityTooLargeException(_inner) => ::std::option::Option::Some(_inner),
592            Self::ServiceException(_inner) => ::std::option::Option::Some(_inner),
593            Self::SnapStartException(_inner) => ::std::option::Option::Some(_inner),
594            Self::SnapStartNotReadyException(_inner) => ::std::option::Option::Some(_inner),
595            Self::SnapStartTimeoutException(_inner) => ::std::option::Option::Some(_inner),
596            Self::SubnetIpAddressLimitReachedException(_inner) => ::std::option::Option::Some(_inner),
597            Self::TooManyRequestsException(_inner) => ::std::option::Option::Some(_inner),
598            Self::UnsupportedMediaTypeException(_inner) => ::std::option::Option::Some(_inner),
599            Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
600        }
601    }
602}
603impl ::std::fmt::Display for InvokeError {
604    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
605        match self {
606            Self::DurableExecutionAlreadyStartedException(_inner) => _inner.fmt(f),
607            Self::Ec2AccessDeniedException(_inner) => _inner.fmt(f),
608            Self::Ec2ThrottledException(_inner) => _inner.fmt(f),
609            Self::Ec2UnexpectedException(_inner) => _inner.fmt(f),
610            Self::EfsioException(_inner) => _inner.fmt(f),
611            Self::EfsMountConnectivityException(_inner) => _inner.fmt(f),
612            Self::EfsMountFailureException(_inner) => _inner.fmt(f),
613            Self::EfsMountTimeoutException(_inner) => _inner.fmt(f),
614            Self::EniLimitReachedException(_inner) => _inner.fmt(f),
615            Self::InvalidParameterValueException(_inner) => _inner.fmt(f),
616            Self::InvalidRequestContentException(_inner) => _inner.fmt(f),
617            Self::InvalidRuntimeException(_inner) => _inner.fmt(f),
618            Self::InvalidSecurityGroupIdException(_inner) => _inner.fmt(f),
619            Self::InvalidSubnetIdException(_inner) => _inner.fmt(f),
620            Self::InvalidZipFileException(_inner) => _inner.fmt(f),
621            Self::KmsAccessDeniedException(_inner) => _inner.fmt(f),
622            Self::KmsDisabledException(_inner) => _inner.fmt(f),
623            Self::KmsInvalidStateException(_inner) => _inner.fmt(f),
624            Self::KmsNotFoundException(_inner) => _inner.fmt(f),
625            Self::NoPublishedVersionException(_inner) => _inner.fmt(f),
626            Self::RecursiveInvocationException(_inner) => _inner.fmt(f),
627            Self::RequestTooLargeException(_inner) => _inner.fmt(f),
628            Self::ResourceConflictException(_inner) => _inner.fmt(f),
629            Self::ResourceNotFoundException(_inner) => _inner.fmt(f),
630            Self::ResourceNotReadyException(_inner) => _inner.fmt(f),
631            Self::S3FilesMountConnectivityException(_inner) => _inner.fmt(f),
632            Self::S3FilesMountFailureException(_inner) => _inner.fmt(f),
633            Self::S3FilesMountTimeoutException(_inner) => _inner.fmt(f),
634            Self::SerializedRequestEntityTooLargeException(_inner) => _inner.fmt(f),
635            Self::ServiceException(_inner) => _inner.fmt(f),
636            Self::SnapStartException(_inner) => _inner.fmt(f),
637            Self::SnapStartNotReadyException(_inner) => _inner.fmt(f),
638            Self::SnapStartTimeoutException(_inner) => _inner.fmt(f),
639            Self::SubnetIpAddressLimitReachedException(_inner) => _inner.fmt(f),
640            Self::TooManyRequestsException(_inner) => _inner.fmt(f),
641            Self::UnsupportedMediaTypeException(_inner) => _inner.fmt(f),
642            Self::Unhandled(_inner) => {
643                if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
644                    write!(f, "unhandled error ({code})")
645                } else {
646                    f.write_str("unhandled error")
647                }
648            }
649        }
650    }
651}
652impl ::aws_smithy_types::retry::ProvideErrorKind for InvokeError {
653    fn code(&self) -> ::std::option::Option<&str> {
654        ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
655    }
656    fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
657        ::std::option::Option::None
658    }
659}
660impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for InvokeError {
661    fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
662        match self {
663            Self::DurableExecutionAlreadyStartedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
664            Self::Ec2AccessDeniedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
665            Self::Ec2ThrottledException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
666            Self::Ec2UnexpectedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
667            Self::EfsioException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
668            Self::EfsMountConnectivityException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
669            Self::EfsMountFailureException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
670            Self::EfsMountTimeoutException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
671            Self::EniLimitReachedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
672            Self::InvalidParameterValueException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
673            Self::InvalidRequestContentException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
674            Self::InvalidRuntimeException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
675            Self::InvalidSecurityGroupIdException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
676            Self::InvalidSubnetIdException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
677            Self::InvalidZipFileException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
678            Self::KmsAccessDeniedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
679            Self::KmsDisabledException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
680            Self::KmsInvalidStateException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
681            Self::KmsNotFoundException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
682            Self::NoPublishedVersionException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
683            Self::RecursiveInvocationException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
684            Self::RequestTooLargeException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
685            Self::ResourceConflictException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
686            Self::ResourceNotFoundException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
687            Self::ResourceNotReadyException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
688            Self::S3FilesMountConnectivityException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
689            Self::S3FilesMountFailureException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
690            Self::S3FilesMountTimeoutException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
691            Self::SerializedRequestEntityTooLargeException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
692            Self::ServiceException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
693            Self::SnapStartException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
694            Self::SnapStartNotReadyException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
695            Self::SnapStartTimeoutException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
696            Self::SubnetIpAddressLimitReachedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
697            Self::TooManyRequestsException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
698            Self::UnsupportedMediaTypeException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
699            Self::Unhandled(_inner) => &_inner.meta,
700        }
701    }
702}
703impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for InvokeError {
704    fn create_unhandled_error(
705        source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
706        meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
707    ) -> Self {
708        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
709            source,
710            meta: meta.unwrap_or_default(),
711        })
712    }
713}
714impl ::aws_types::request_id::RequestId for crate::operation::invoke::InvokeError {
715    fn request_id(&self) -> Option<&str> {
716        self.meta().request_id()
717    }
718}
719
720pub use crate::operation::invoke::_invoke_input::InvokeInput;
721
722pub use crate::operation::invoke::_invoke_output::InvokeOutput;
723
724mod _invoke_input;
725
726mod _invoke_output;
727
728/// Builders
729pub mod builders;