1#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct Invoke;
6impl Invoke {
7 pub fn new() -> Self {
9 Self
10 }
11 pub(crate) async fn orchestrate(
12 runtime_plugins: &::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
13 input: crate::operation::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 .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 #[allow(clippy::uninlined_format_args)]
171 fn uri_base(
172 _input: &crate::operation::invoke::InvokeInput,
173 output: &mut ::std::string::String,
174 ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
175 use ::std::fmt::Write as _;
176 let input_1 = &_input.function_name;
177 let input_1 = input_1
178 .as_ref()
179 .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("function_name", "cannot be empty or unset"))?;
180 let function_name = ::aws_smithy_http::label::fmt_string(input_1, ::aws_smithy_http::label::EncodingStrategy::Default);
181 if function_name.is_empty() {
182 return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
183 "function_name",
184 "cannot be empty or unset",
185 ));
186 }
187 ::std::write!(output, "/2015-03-31/functions/{FunctionName}/invocations", FunctionName = function_name)
188 .expect("formatting should succeed");
189 ::std::result::Result::Ok(())
190 }
191 fn uri_query(
192 _input: &crate::operation::invoke::InvokeInput,
193 mut output: &mut ::std::string::String,
194 ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
195 let mut query = ::aws_smithy_http::query::Writer::new(output);
196 if let ::std::option::Option::Some(inner_2) = &_input.qualifier {
197 {
198 query.push_kv("Qualifier", &::aws_smithy_http::query::fmt_string(inner_2));
199 }
200 }
201 ::std::result::Result::Ok(())
202 }
203 #[allow(clippy::unnecessary_wraps)]
204 fn update_http_builder(
205 input: &crate::operation::invoke::InvokeInput,
206 builder: ::http_1x::request::Builder,
207 ) -> ::std::result::Result<::http_1x::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
208 let mut uri = ::std::string::String::new();
209 uri_base(input, &mut uri)?;
210 uri_query(input, &mut uri)?;
211 let builder = crate::protocol_serde::shape_invoke::ser_invoke_headers(input, builder)?;
212 ::std::result::Result::Ok(builder.method("POST").uri(uri))
213 }
214 let mut builder = update_http_builder(&input, ::http_1x::request::Builder::new())?;
215 builder = _header_serialization_settings.set_default_header(builder, ::http_1x::header::CONTENT_TYPE, "application/octet-stream");
216 builder
217 };
218 let body = ::aws_smithy_types::body::SdkBody::from(crate::protocol_serde::shape_invoke_input::ser_payload_http_payload(input.payload)?);
219 if let Some(content_length) = body.content_length() {
220 let content_length = content_length.to_string();
221 request_builder = _header_serialization_settings.set_default_header(request_builder, ::http_1x::header::CONTENT_LENGTH, &content_length);
222 }
223 ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
224 }
225}
226#[derive(Debug)]
227struct InvokeEndpointParamsInterceptor;
228
229impl ::aws_smithy_runtime_api::client::interceptors::Intercept for InvokeEndpointParamsInterceptor {
230 fn name(&self) -> &'static str {
231 "InvokeEndpointParamsInterceptor"
232 }
233
234 fn read_before_execution(
235 &self,
236 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
237 '_,
238 ::aws_smithy_runtime_api::client::interceptors::context::Input,
239 ::aws_smithy_runtime_api::client::interceptors::context::Output,
240 ::aws_smithy_runtime_api::client::interceptors::context::Error,
241 >,
242 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
243 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
244 let _input = context.input().downcast_ref::<InvokeInput>().ok_or("failed to downcast to InvokeInput")?;
245
246 let params = crate::config::endpoint::Params::builder()
247 .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
248 .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
249 .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
250 .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
251 .build()
252 .map_err(|err| {
253 ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
254 })?;
255 cfg.interceptor_state()
256 .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
257 ::std::result::Result::Ok(())
258 }
259}
260
261#[non_exhaustive]
266#[derive(::std::fmt::Debug)]
267pub enum InvokeError {
268 DurableExecutionAlreadyStartedException(crate::types::error::DurableExecutionAlreadyStartedException),
270 Ec2AccessDeniedException(crate::types::error::Ec2AccessDeniedException),
272 Ec2ThrottledException(crate::types::error::Ec2ThrottledException),
274 Ec2UnexpectedException(crate::types::error::Ec2UnexpectedException),
276 EfsioException(crate::types::error::EfsioException),
278 EfsMountConnectivityException(crate::types::error::EfsMountConnectivityException),
280 EfsMountFailureException(crate::types::error::EfsMountFailureException),
282 EfsMountTimeoutException(crate::types::error::EfsMountTimeoutException),
284 EniLimitReachedException(crate::types::error::EniLimitReachedException),
286 InvalidParameterValueException(crate::types::error::InvalidParameterValueException),
288 InvalidRequestContentException(crate::types::error::InvalidRequestContentException),
290 InvalidRuntimeException(crate::types::error::InvalidRuntimeException),
292 InvalidSecurityGroupIdException(crate::types::error::InvalidSecurityGroupIdException),
294 InvalidSubnetIdException(crate::types::error::InvalidSubnetIdException),
296 InvalidZipFileException(crate::types::error::InvalidZipFileException),
298 KmsAccessDeniedException(crate::types::error::KmsAccessDeniedException),
300 KmsDisabledException(crate::types::error::KmsDisabledException),
302 KmsInvalidStateException(crate::types::error::KmsInvalidStateException),
304 KmsNotFoundException(crate::types::error::KmsNotFoundException),
306 NoPublishedVersionException(crate::types::error::NoPublishedVersionException),
308 RecursiveInvocationException(crate::types::error::RecursiveInvocationException),
310 RequestTooLargeException(crate::types::error::RequestTooLargeException),
312 ResourceConflictException(crate::types::error::ResourceConflictException),
314 ResourceNotFoundException(crate::types::error::ResourceNotFoundException),
316 ResourceNotReadyException(crate::types::error::ResourceNotReadyException),
318 S3FilesMountConnectivityException(crate::types::error::S3FilesMountConnectivityException),
320 S3FilesMountFailureException(crate::types::error::S3FilesMountFailureException),
322 S3FilesMountTimeoutException(crate::types::error::S3FilesMountTimeoutException),
324 SerializedRequestEntityTooLargeException(crate::types::error::SerializedRequestEntityTooLargeException),
326 ServiceException(crate::types::error::ServiceException),
328 SnapStartException(crate::types::error::SnapStartException),
330 SnapStartNotReadyException(crate::types::error::SnapStartNotReadyException),
332 SnapStartTimeoutException(crate::types::error::SnapStartTimeoutException),
334 SubnetIpAddressLimitReachedException(crate::types::error::SubnetIpAddressLimitReachedException),
336 TooManyRequestsException(crate::types::error::TooManyRequestsException),
338 UnsupportedMediaTypeException(crate::types::error::UnsupportedMediaTypeException),
340 #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
342 variable wildcard pattern and check `.code()`:
343 \
344 `err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
345 \
346 See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-InvokeError) for what information is available for the error.")]
347 Unhandled(crate::error::sealed_unhandled::Unhandled),
348}
349impl InvokeError {
350 pub fn unhandled(
352 err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
353 ) -> Self {
354 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
355 source: err.into(),
356 meta: ::std::default::Default::default(),
357 })
358 }
359
360 pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
362 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
363 source: err.clone().into(),
364 meta: err,
365 })
366 }
367 pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
372 match self {
373 Self::DurableExecutionAlreadyStartedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
374 Self::Ec2AccessDeniedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
375 Self::Ec2ThrottledException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
376 Self::Ec2UnexpectedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
377 Self::EfsioException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
378 Self::EfsMountConnectivityException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
379 Self::EfsMountFailureException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
380 Self::EfsMountTimeoutException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
381 Self::EniLimitReachedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
382 Self::InvalidParameterValueException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
383 Self::InvalidRequestContentException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
384 Self::InvalidRuntimeException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
385 Self::InvalidSecurityGroupIdException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
386 Self::InvalidSubnetIdException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
387 Self::InvalidZipFileException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
388 Self::KmsAccessDeniedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
389 Self::KmsDisabledException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
390 Self::KmsInvalidStateException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
391 Self::KmsNotFoundException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
392 Self::NoPublishedVersionException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
393 Self::RecursiveInvocationException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
394 Self::RequestTooLargeException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
395 Self::ResourceConflictException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
396 Self::ResourceNotFoundException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
397 Self::ResourceNotReadyException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
398 Self::S3FilesMountConnectivityException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
399 Self::S3FilesMountFailureException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
400 Self::S3FilesMountTimeoutException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
401 Self::SerializedRequestEntityTooLargeException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
402 Self::ServiceException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
403 Self::SnapStartException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
404 Self::SnapStartNotReadyException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
405 Self::SnapStartTimeoutException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
406 Self::SubnetIpAddressLimitReachedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
407 Self::TooManyRequestsException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
408 Self::UnsupportedMediaTypeException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
409 Self::Unhandled(e) => &e.meta,
410 }
411 }
412 pub fn is_durable_execution_already_started_exception(&self) -> bool {
414 matches!(self, Self::DurableExecutionAlreadyStartedException(_))
415 }
416 pub fn is_ec2_access_denied_exception(&self) -> bool {
418 matches!(self, Self::Ec2AccessDeniedException(_))
419 }
420 pub fn is_ec2_throttled_exception(&self) -> bool {
422 matches!(self, Self::Ec2ThrottledException(_))
423 }
424 pub fn is_ec2_unexpected_exception(&self) -> bool {
426 matches!(self, Self::Ec2UnexpectedException(_))
427 }
428 pub fn is_efsio_exception(&self) -> bool {
430 matches!(self, Self::EfsioException(_))
431 }
432 pub fn is_efs_mount_connectivity_exception(&self) -> bool {
434 matches!(self, Self::EfsMountConnectivityException(_))
435 }
436 pub fn is_efs_mount_failure_exception(&self) -> bool {
438 matches!(self, Self::EfsMountFailureException(_))
439 }
440 pub fn is_efs_mount_timeout_exception(&self) -> bool {
442 matches!(self, Self::EfsMountTimeoutException(_))
443 }
444 pub fn is_eni_limit_reached_exception(&self) -> bool {
446 matches!(self, Self::EniLimitReachedException(_))
447 }
448 pub fn is_invalid_parameter_value_exception(&self) -> bool {
450 matches!(self, Self::InvalidParameterValueException(_))
451 }
452 pub fn is_invalid_request_content_exception(&self) -> bool {
454 matches!(self, Self::InvalidRequestContentException(_))
455 }
456 pub fn is_invalid_runtime_exception(&self) -> bool {
458 matches!(self, Self::InvalidRuntimeException(_))
459 }
460 pub fn is_invalid_security_group_id_exception(&self) -> bool {
462 matches!(self, Self::InvalidSecurityGroupIdException(_))
463 }
464 pub fn is_invalid_subnet_id_exception(&self) -> bool {
466 matches!(self, Self::InvalidSubnetIdException(_))
467 }
468 pub fn is_invalid_zip_file_exception(&self) -> bool {
470 matches!(self, Self::InvalidZipFileException(_))
471 }
472 pub fn is_kms_access_denied_exception(&self) -> bool {
474 matches!(self, Self::KmsAccessDeniedException(_))
475 }
476 pub fn is_kms_disabled_exception(&self) -> bool {
478 matches!(self, Self::KmsDisabledException(_))
479 }
480 pub fn is_kms_invalid_state_exception(&self) -> bool {
482 matches!(self, Self::KmsInvalidStateException(_))
483 }
484 pub fn is_kms_not_found_exception(&self) -> bool {
486 matches!(self, Self::KmsNotFoundException(_))
487 }
488 pub fn is_no_published_version_exception(&self) -> bool {
490 matches!(self, Self::NoPublishedVersionException(_))
491 }
492 pub fn is_recursive_invocation_exception(&self) -> bool {
494 matches!(self, Self::RecursiveInvocationException(_))
495 }
496 pub fn is_request_too_large_exception(&self) -> bool {
498 matches!(self, Self::RequestTooLargeException(_))
499 }
500 pub fn is_resource_conflict_exception(&self) -> bool {
502 matches!(self, Self::ResourceConflictException(_))
503 }
504 pub fn is_resource_not_found_exception(&self) -> bool {
506 matches!(self, Self::ResourceNotFoundException(_))
507 }
508 pub fn is_resource_not_ready_exception(&self) -> bool {
510 matches!(self, Self::ResourceNotReadyException(_))
511 }
512 pub fn is_s3_files_mount_connectivity_exception(&self) -> bool {
514 matches!(self, Self::S3FilesMountConnectivityException(_))
515 }
516 pub fn is_s3_files_mount_failure_exception(&self) -> bool {
518 matches!(self, Self::S3FilesMountFailureException(_))
519 }
520 pub fn is_s3_files_mount_timeout_exception(&self) -> bool {
522 matches!(self, Self::S3FilesMountTimeoutException(_))
523 }
524 pub fn is_serialized_request_entity_too_large_exception(&self) -> bool {
526 matches!(self, Self::SerializedRequestEntityTooLargeException(_))
527 }
528 pub fn is_service_exception(&self) -> bool {
530 matches!(self, Self::ServiceException(_))
531 }
532 pub fn is_snap_start_exception(&self) -> bool {
534 matches!(self, Self::SnapStartException(_))
535 }
536 pub fn is_snap_start_not_ready_exception(&self) -> bool {
538 matches!(self, Self::SnapStartNotReadyException(_))
539 }
540 pub fn is_snap_start_timeout_exception(&self) -> bool {
542 matches!(self, Self::SnapStartTimeoutException(_))
543 }
544 pub fn is_subnet_ip_address_limit_reached_exception(&self) -> bool {
546 matches!(self, Self::SubnetIpAddressLimitReachedException(_))
547 }
548 pub fn is_too_many_requests_exception(&self) -> bool {
550 matches!(self, Self::TooManyRequestsException(_))
551 }
552 pub fn is_unsupported_media_type_exception(&self) -> bool {
554 matches!(self, Self::UnsupportedMediaTypeException(_))
555 }
556}
557impl ::std::error::Error for InvokeError {
558 fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
559 match self {
560 Self::DurableExecutionAlreadyStartedException(_inner) => ::std::option::Option::Some(_inner),
561 Self::Ec2AccessDeniedException(_inner) => ::std::option::Option::Some(_inner),
562 Self::Ec2ThrottledException(_inner) => ::std::option::Option::Some(_inner),
563 Self::Ec2UnexpectedException(_inner) => ::std::option::Option::Some(_inner),
564 Self::EfsioException(_inner) => ::std::option::Option::Some(_inner),
565 Self::EfsMountConnectivityException(_inner) => ::std::option::Option::Some(_inner),
566 Self::EfsMountFailureException(_inner) => ::std::option::Option::Some(_inner),
567 Self::EfsMountTimeoutException(_inner) => ::std::option::Option::Some(_inner),
568 Self::EniLimitReachedException(_inner) => ::std::option::Option::Some(_inner),
569 Self::InvalidParameterValueException(_inner) => ::std::option::Option::Some(_inner),
570 Self::InvalidRequestContentException(_inner) => ::std::option::Option::Some(_inner),
571 Self::InvalidRuntimeException(_inner) => ::std::option::Option::Some(_inner),
572 Self::InvalidSecurityGroupIdException(_inner) => ::std::option::Option::Some(_inner),
573 Self::InvalidSubnetIdException(_inner) => ::std::option::Option::Some(_inner),
574 Self::InvalidZipFileException(_inner) => ::std::option::Option::Some(_inner),
575 Self::KmsAccessDeniedException(_inner) => ::std::option::Option::Some(_inner),
576 Self::KmsDisabledException(_inner) => ::std::option::Option::Some(_inner),
577 Self::KmsInvalidStateException(_inner) => ::std::option::Option::Some(_inner),
578 Self::KmsNotFoundException(_inner) => ::std::option::Option::Some(_inner),
579 Self::NoPublishedVersionException(_inner) => ::std::option::Option::Some(_inner),
580 Self::RecursiveInvocationException(_inner) => ::std::option::Option::Some(_inner),
581 Self::RequestTooLargeException(_inner) => ::std::option::Option::Some(_inner),
582 Self::ResourceConflictException(_inner) => ::std::option::Option::Some(_inner),
583 Self::ResourceNotFoundException(_inner) => ::std::option::Option::Some(_inner),
584 Self::ResourceNotReadyException(_inner) => ::std::option::Option::Some(_inner),
585 Self::S3FilesMountConnectivityException(_inner) => ::std::option::Option::Some(_inner),
586 Self::S3FilesMountFailureException(_inner) => ::std::option::Option::Some(_inner),
587 Self::S3FilesMountTimeoutException(_inner) => ::std::option::Option::Some(_inner),
588 Self::SerializedRequestEntityTooLargeException(_inner) => ::std::option::Option::Some(_inner),
589 Self::ServiceException(_inner) => ::std::option::Option::Some(_inner),
590 Self::SnapStartException(_inner) => ::std::option::Option::Some(_inner),
591 Self::SnapStartNotReadyException(_inner) => ::std::option::Option::Some(_inner),
592 Self::SnapStartTimeoutException(_inner) => ::std::option::Option::Some(_inner),
593 Self::SubnetIpAddressLimitReachedException(_inner) => ::std::option::Option::Some(_inner),
594 Self::TooManyRequestsException(_inner) => ::std::option::Option::Some(_inner),
595 Self::UnsupportedMediaTypeException(_inner) => ::std::option::Option::Some(_inner),
596 Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
597 }
598 }
599}
600impl ::std::fmt::Display for InvokeError {
601 fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
602 match self {
603 Self::DurableExecutionAlreadyStartedException(_inner) => _inner.fmt(f),
604 Self::Ec2AccessDeniedException(_inner) => _inner.fmt(f),
605 Self::Ec2ThrottledException(_inner) => _inner.fmt(f),
606 Self::Ec2UnexpectedException(_inner) => _inner.fmt(f),
607 Self::EfsioException(_inner) => _inner.fmt(f),
608 Self::EfsMountConnectivityException(_inner) => _inner.fmt(f),
609 Self::EfsMountFailureException(_inner) => _inner.fmt(f),
610 Self::EfsMountTimeoutException(_inner) => _inner.fmt(f),
611 Self::EniLimitReachedException(_inner) => _inner.fmt(f),
612 Self::InvalidParameterValueException(_inner) => _inner.fmt(f),
613 Self::InvalidRequestContentException(_inner) => _inner.fmt(f),
614 Self::InvalidRuntimeException(_inner) => _inner.fmt(f),
615 Self::InvalidSecurityGroupIdException(_inner) => _inner.fmt(f),
616 Self::InvalidSubnetIdException(_inner) => _inner.fmt(f),
617 Self::InvalidZipFileException(_inner) => _inner.fmt(f),
618 Self::KmsAccessDeniedException(_inner) => _inner.fmt(f),
619 Self::KmsDisabledException(_inner) => _inner.fmt(f),
620 Self::KmsInvalidStateException(_inner) => _inner.fmt(f),
621 Self::KmsNotFoundException(_inner) => _inner.fmt(f),
622 Self::NoPublishedVersionException(_inner) => _inner.fmt(f),
623 Self::RecursiveInvocationException(_inner) => _inner.fmt(f),
624 Self::RequestTooLargeException(_inner) => _inner.fmt(f),
625 Self::ResourceConflictException(_inner) => _inner.fmt(f),
626 Self::ResourceNotFoundException(_inner) => _inner.fmt(f),
627 Self::ResourceNotReadyException(_inner) => _inner.fmt(f),
628 Self::S3FilesMountConnectivityException(_inner) => _inner.fmt(f),
629 Self::S3FilesMountFailureException(_inner) => _inner.fmt(f),
630 Self::S3FilesMountTimeoutException(_inner) => _inner.fmt(f),
631 Self::SerializedRequestEntityTooLargeException(_inner) => _inner.fmt(f),
632 Self::ServiceException(_inner) => _inner.fmt(f),
633 Self::SnapStartException(_inner) => _inner.fmt(f),
634 Self::SnapStartNotReadyException(_inner) => _inner.fmt(f),
635 Self::SnapStartTimeoutException(_inner) => _inner.fmt(f),
636 Self::SubnetIpAddressLimitReachedException(_inner) => _inner.fmt(f),
637 Self::TooManyRequestsException(_inner) => _inner.fmt(f),
638 Self::UnsupportedMediaTypeException(_inner) => _inner.fmt(f),
639 Self::Unhandled(_inner) => {
640 if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
641 write!(f, "unhandled error ({code})")
642 } else {
643 f.write_str("unhandled error")
644 }
645 }
646 }
647 }
648}
649impl ::aws_smithy_types::retry::ProvideErrorKind for InvokeError {
650 fn code(&self) -> ::std::option::Option<&str> {
651 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
652 }
653 fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
654 ::std::option::Option::None
655 }
656}
657impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for InvokeError {
658 fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
659 match self {
660 Self::DurableExecutionAlreadyStartedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
661 Self::Ec2AccessDeniedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
662 Self::Ec2ThrottledException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
663 Self::Ec2UnexpectedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
664 Self::EfsioException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
665 Self::EfsMountConnectivityException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
666 Self::EfsMountFailureException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
667 Self::EfsMountTimeoutException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
668 Self::EniLimitReachedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
669 Self::InvalidParameterValueException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
670 Self::InvalidRequestContentException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
671 Self::InvalidRuntimeException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
672 Self::InvalidSecurityGroupIdException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
673 Self::InvalidSubnetIdException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
674 Self::InvalidZipFileException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
675 Self::KmsAccessDeniedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
676 Self::KmsDisabledException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
677 Self::KmsInvalidStateException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
678 Self::KmsNotFoundException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
679 Self::NoPublishedVersionException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
680 Self::RecursiveInvocationException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
681 Self::RequestTooLargeException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
682 Self::ResourceConflictException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
683 Self::ResourceNotFoundException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
684 Self::ResourceNotReadyException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
685 Self::S3FilesMountConnectivityException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
686 Self::S3FilesMountFailureException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
687 Self::S3FilesMountTimeoutException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
688 Self::SerializedRequestEntityTooLargeException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
689 Self::ServiceException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
690 Self::SnapStartException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
691 Self::SnapStartNotReadyException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
692 Self::SnapStartTimeoutException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
693 Self::SubnetIpAddressLimitReachedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
694 Self::TooManyRequestsException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
695 Self::UnsupportedMediaTypeException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
696 Self::Unhandled(_inner) => &_inner.meta,
697 }
698 }
699}
700impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for InvokeError {
701 fn create_unhandled_error(
702 source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
703 meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
704 ) -> Self {
705 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
706 source,
707 meta: meta.unwrap_or_default(),
708 })
709 }
710}
711impl ::aws_types::request_id::RequestId for crate::operation::invoke::InvokeError {
712 fn request_id(&self) -> Option<&str> {
713 self.meta().request_id()
714 }
715}
716
717pub use crate::operation::invoke::_invoke_input::InvokeInput;
718
719pub use crate::operation::invoke::_invoke_output::InvokeOutput;
720
721mod _invoke_input;
722
723mod _invoke_output;
724
725pub mod builders;