1#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct StartExecution;
6impl StartExecution {
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::start_execution::StartExecutionInput,
14 ) -> ::std::result::Result<
15 crate::operation::start_execution::StartExecutionOutput,
16 ::aws_smithy_runtime_api::client::result::SdkError<
17 crate::operation::start_execution::StartExecutionError,
18 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
19 >,
20 > {
21 let map_err = |err: ::aws_smithy_runtime_api::client::result::SdkError<
22 ::aws_smithy_runtime_api::client::interceptors::context::Error,
23 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
24 >| {
25 err.map_service_error(|err| {
26 err.downcast::<crate::operation::start_execution::StartExecutionError>()
27 .expect("correct error type")
28 })
29 };
30 let context = Self::orchestrate_with_stop_point(runtime_plugins, input, ::aws_smithy_runtime::client::orchestrator::StopPoint::None)
31 .await
32 .map_err(map_err)?;
33 let output = context.finalize().map_err(map_err)?;
34 ::std::result::Result::Ok(
35 output
36 .downcast::<crate::operation::start_execution::StartExecutionOutput>()
37 .expect("correct output type"),
38 )
39 }
40
41 pub(crate) async fn orchestrate_with_stop_point(
42 runtime_plugins: &::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
43 input: crate::operation::start_execution::StartExecutionInput,
44 stop_point: ::aws_smithy_runtime::client::orchestrator::StopPoint,
45 ) -> ::std::result::Result<
46 ::aws_smithy_runtime_api::client::interceptors::context::InterceptorContext,
47 ::aws_smithy_runtime_api::client::result::SdkError<
48 ::aws_smithy_runtime_api::client::interceptors::context::Error,
49 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
50 >,
51 > {
52 let input = ::aws_smithy_runtime_api::client::interceptors::context::Input::erase(input);
53 use ::tracing::Instrument;
54 ::aws_smithy_runtime::client::orchestrator::invoke_with_stop_point("SFN", "StartExecution", input, runtime_plugins, stop_point)
55 .instrument(::tracing::debug_span!(
58 "SFN.StartExecution",
59 "rpc.service" = "SFN",
60 "rpc.method" = "StartExecution",
61 "sdk_invocation_id" = ::fastrand::u32(1_000_000..10_000_000),
62 "rpc.system" = "aws-api",
63 ))
64 .await
65 }
66
67 pub(crate) fn operation_runtime_plugins(
68 client_runtime_plugins: ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
69 client_config: &crate::config::Config,
70 config_override: ::std::option::Option<crate::config::Builder>,
71 ) -> ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins {
72 let mut runtime_plugins = client_runtime_plugins.with_operation_plugin(Self::new());
73
74 if let ::std::option::Option::Some(config_override) = config_override {
75 for plugin in config_override.runtime_plugins.iter().cloned() {
76 runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
77 }
78 runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
79 config_override,
80 client_config.config.clone(),
81 &client_config.runtime_components,
82 ));
83 }
84 runtime_plugins
85 }
86}
87impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for StartExecution {
88 fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
89 let mut cfg = ::aws_smithy_types::config_bag::Layer::new("StartExecution");
90
91 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
92 StartExecutionRequestSerializer,
93 ));
94 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
95 StartExecutionResponseDeserializer,
96 ));
97
98 cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
99 crate::config::auth::Params::builder()
100 .operation_name("StartExecution")
101 .build()
102 .expect("required fields set"),
103 ));
104
105 cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new("StartExecution", "SFN"));
106 let mut signing_options = ::aws_runtime::auth::SigningOptions::default();
107 signing_options.double_uri_encode = true;
108 signing_options.content_sha256_header = false;
109 signing_options.normalize_uri_path = true;
110 signing_options.payload_override = None;
111
112 cfg.store_put(::aws_runtime::auth::SigV4OperationSigningConfig {
113 signing_options,
114 ..::std::default::Default::default()
115 });
116
117 ::std::option::Option::Some(cfg.freeze())
118 }
119
120 fn runtime_components(
121 &self,
122 _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
123 ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
124 #[allow(unused_mut)]
125 let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("StartExecution")
126 .with_interceptor(::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default())
127 .with_interceptor(StartExecutionEndpointParamsInterceptor)
128 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
129 crate::operation::start_execution::StartExecutionError,
130 >::new())
131 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
132 crate::operation::start_execution::StartExecutionError,
133 >::new())
134 .with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
135 crate::operation::start_execution::StartExecutionError,
136 >::new());
137
138 ::std::borrow::Cow::Owned(rcb)
139 }
140}
141
142#[derive(Debug)]
143struct StartExecutionResponseDeserializer;
144impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for StartExecutionResponseDeserializer {
145 fn deserialize_nonstreaming(
146 &self,
147 response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
148 ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
149 let (success, status) = (response.status().is_success(), response.status().as_u16());
150 let headers = response.headers();
151 let body = response.body().bytes().expect("body loaded");
152 #[allow(unused_mut)]
153 let mut force_error = false;
154 ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
155 let parse_result = if !success && status != 200 || force_error {
156 crate::protocol_serde::shape_start_execution::de_start_execution_http_error(status, headers, body)
157 } else {
158 crate::protocol_serde::shape_start_execution::de_start_execution_http_response(status, headers, body)
159 };
160 crate::protocol_serde::type_erase_result(parse_result)
161 }
162}
163#[derive(Debug)]
164struct StartExecutionRequestSerializer;
165impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for StartExecutionRequestSerializer {
166 #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
167 fn serialize_input(
168 &self,
169 input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
170 _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
171 ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
172 let input = input
173 .downcast::<crate::operation::start_execution::StartExecutionInput>()
174 .expect("correct type");
175 let _header_serialization_settings = _cfg
176 .load::<crate::serialization_settings::HeaderSerializationSettings>()
177 .cloned()
178 .unwrap_or_default();
179 let mut request_builder = {
180 fn uri_base(
181 _input: &crate::operation::start_execution::StartExecutionInput,
182 output: &mut ::std::string::String,
183 ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
184 use ::std::fmt::Write as _;
185 ::std::write!(output, "/").expect("formatting should succeed");
186 ::std::result::Result::Ok(())
187 }
188 #[allow(clippy::unnecessary_wraps)]
189 fn update_http_builder(
190 input: &crate::operation::start_execution::StartExecutionInput,
191 builder: ::http::request::Builder,
192 ) -> ::std::result::Result<::http::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
193 let mut uri = ::std::string::String::new();
194 uri_base(input, &mut uri)?;
195 ::std::result::Result::Ok(builder.method("POST").uri(uri))
196 }
197 let mut builder = update_http_builder(&input, ::http::request::Builder::new())?;
198 builder = _header_serialization_settings.set_default_header(builder, ::http::header::CONTENT_TYPE, "application/x-amz-json-1.0");
199 builder = _header_serialization_settings.set_default_header(
200 builder,
201 ::http::header::HeaderName::from_static("x-amz-target"),
202 "AWSStepFunctions.StartExecution",
203 );
204 builder
205 };
206 let body = ::aws_smithy_types::body::SdkBody::from(crate::protocol_serde::shape_start_execution::ser_start_execution_input(&input)?);
207 if let Some(content_length) = body.content_length() {
208 let content_length = content_length.to_string();
209 request_builder = _header_serialization_settings.set_default_header(request_builder, ::http::header::CONTENT_LENGTH, &content_length);
210 }
211 ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
212 }
213}
214#[derive(Debug)]
215struct StartExecutionEndpointParamsInterceptor;
216
217impl ::aws_smithy_runtime_api::client::interceptors::Intercept for StartExecutionEndpointParamsInterceptor {
218 fn name(&self) -> &'static str {
219 "StartExecutionEndpointParamsInterceptor"
220 }
221
222 fn read_before_execution(
223 &self,
224 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
225 '_,
226 ::aws_smithy_runtime_api::client::interceptors::context::Input,
227 ::aws_smithy_runtime_api::client::interceptors::context::Output,
228 ::aws_smithy_runtime_api::client::interceptors::context::Error,
229 >,
230 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
231 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
232 let _input = context
233 .input()
234 .downcast_ref::<StartExecutionInput>()
235 .ok_or("failed to downcast to StartExecutionInput")?;
236
237 let params = crate::config::endpoint::Params::builder()
238 .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
239 .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
240 .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
241 .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
242 .build()
243 .map_err(|err| {
244 ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
245 })?;
246 cfg.interceptor_state()
247 .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
248 ::std::result::Result::Ok(())
249 }
250}
251
252#[non_exhaustive]
257#[derive(::std::fmt::Debug)]
258pub enum StartExecutionError {
259 ExecutionAlreadyExists(crate::types::error::ExecutionAlreadyExists),
263 ExecutionLimitExceeded(crate::types::error::ExecutionLimitExceeded),
265 InvalidArn(crate::types::error::InvalidArn),
267 InvalidExecutionInput(crate::types::error::InvalidExecutionInput),
269 InvalidName(crate::types::error::InvalidName),
271 KmsAccessDeniedException(crate::types::error::KmsAccessDeniedException),
273 KmsInvalidStateException(crate::types::error::KmsInvalidStateException),
275 KmsThrottlingException(crate::types::error::KmsThrottlingException),
277 StateMachineDeleting(crate::types::error::StateMachineDeleting),
279 StateMachineDoesNotExist(crate::types::error::StateMachineDoesNotExist),
281 ValidationException(crate::types::error::ValidationException),
283 #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
285 variable wildcard pattern and check `.code()`:
286 \
287 `err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
288 \
289 See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-StartExecutionError) for what information is available for the error.")]
290 Unhandled(crate::error::sealed_unhandled::Unhandled),
291}
292impl StartExecutionError {
293 pub fn unhandled(
295 err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
296 ) -> Self {
297 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
298 source: err.into(),
299 meta: ::std::default::Default::default(),
300 })
301 }
302
303 pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
305 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
306 source: err.clone().into(),
307 meta: err,
308 })
309 }
310 pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
315 match self {
316 Self::ExecutionAlreadyExists(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
317 Self::ExecutionLimitExceeded(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
318 Self::InvalidArn(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
319 Self::InvalidExecutionInput(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
320 Self::InvalidName(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
321 Self::KmsAccessDeniedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
322 Self::KmsInvalidStateException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
323 Self::KmsThrottlingException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
324 Self::StateMachineDeleting(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
325 Self::StateMachineDoesNotExist(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
326 Self::ValidationException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
327 Self::Unhandled(e) => &e.meta,
328 }
329 }
330 pub fn is_execution_already_exists(&self) -> bool {
332 matches!(self, Self::ExecutionAlreadyExists(_))
333 }
334 pub fn is_execution_limit_exceeded(&self) -> bool {
336 matches!(self, Self::ExecutionLimitExceeded(_))
337 }
338 pub fn is_invalid_arn(&self) -> bool {
340 matches!(self, Self::InvalidArn(_))
341 }
342 pub fn is_invalid_execution_input(&self) -> bool {
344 matches!(self, Self::InvalidExecutionInput(_))
345 }
346 pub fn is_invalid_name(&self) -> bool {
348 matches!(self, Self::InvalidName(_))
349 }
350 pub fn is_kms_access_denied_exception(&self) -> bool {
352 matches!(self, Self::KmsAccessDeniedException(_))
353 }
354 pub fn is_kms_invalid_state_exception(&self) -> bool {
356 matches!(self, Self::KmsInvalidStateException(_))
357 }
358 pub fn is_kms_throttling_exception(&self) -> bool {
360 matches!(self, Self::KmsThrottlingException(_))
361 }
362 pub fn is_state_machine_deleting(&self) -> bool {
364 matches!(self, Self::StateMachineDeleting(_))
365 }
366 pub fn is_state_machine_does_not_exist(&self) -> bool {
368 matches!(self, Self::StateMachineDoesNotExist(_))
369 }
370 pub fn is_validation_exception(&self) -> bool {
372 matches!(self, Self::ValidationException(_))
373 }
374}
375impl ::std::error::Error for StartExecutionError {
376 fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
377 match self {
378 Self::ExecutionAlreadyExists(_inner) => ::std::option::Option::Some(_inner),
379 Self::ExecutionLimitExceeded(_inner) => ::std::option::Option::Some(_inner),
380 Self::InvalidArn(_inner) => ::std::option::Option::Some(_inner),
381 Self::InvalidExecutionInput(_inner) => ::std::option::Option::Some(_inner),
382 Self::InvalidName(_inner) => ::std::option::Option::Some(_inner),
383 Self::KmsAccessDeniedException(_inner) => ::std::option::Option::Some(_inner),
384 Self::KmsInvalidStateException(_inner) => ::std::option::Option::Some(_inner),
385 Self::KmsThrottlingException(_inner) => ::std::option::Option::Some(_inner),
386 Self::StateMachineDeleting(_inner) => ::std::option::Option::Some(_inner),
387 Self::StateMachineDoesNotExist(_inner) => ::std::option::Option::Some(_inner),
388 Self::ValidationException(_inner) => ::std::option::Option::Some(_inner),
389 Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
390 }
391 }
392}
393impl ::std::fmt::Display for StartExecutionError {
394 fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
395 match self {
396 Self::ExecutionAlreadyExists(_inner) => _inner.fmt(f),
397 Self::ExecutionLimitExceeded(_inner) => _inner.fmt(f),
398 Self::InvalidArn(_inner) => _inner.fmt(f),
399 Self::InvalidExecutionInput(_inner) => _inner.fmt(f),
400 Self::InvalidName(_inner) => _inner.fmt(f),
401 Self::KmsAccessDeniedException(_inner) => _inner.fmt(f),
402 Self::KmsInvalidStateException(_inner) => _inner.fmt(f),
403 Self::KmsThrottlingException(_inner) => _inner.fmt(f),
404 Self::StateMachineDeleting(_inner) => _inner.fmt(f),
405 Self::StateMachineDoesNotExist(_inner) => _inner.fmt(f),
406 Self::ValidationException(_inner) => _inner.fmt(f),
407 Self::Unhandled(_inner) => {
408 if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
409 write!(f, "unhandled error ({code})")
410 } else {
411 f.write_str("unhandled error")
412 }
413 }
414 }
415 }
416}
417impl ::aws_smithy_types::retry::ProvideErrorKind for StartExecutionError {
418 fn code(&self) -> ::std::option::Option<&str> {
419 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
420 }
421 fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
422 ::std::option::Option::None
423 }
424}
425impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for StartExecutionError {
426 fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
427 match self {
428 Self::ExecutionAlreadyExists(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
429 Self::ExecutionLimitExceeded(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
430 Self::InvalidArn(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
431 Self::InvalidExecutionInput(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
432 Self::InvalidName(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
433 Self::KmsAccessDeniedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
434 Self::KmsInvalidStateException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
435 Self::KmsThrottlingException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
436 Self::StateMachineDeleting(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
437 Self::StateMachineDoesNotExist(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
438 Self::ValidationException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
439 Self::Unhandled(_inner) => &_inner.meta,
440 }
441 }
442}
443impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for StartExecutionError {
444 fn create_unhandled_error(
445 source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
446 meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
447 ) -> Self {
448 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
449 source,
450 meta: meta.unwrap_or_default(),
451 })
452 }
453}
454impl ::aws_types::request_id::RequestId for crate::operation::start_execution::StartExecutionError {
455 fn request_id(&self) -> Option<&str> {
456 self.meta().request_id()
457 }
458}
459
460pub use crate::operation::start_execution::_start_execution_output::StartExecutionOutput;
461
462pub use crate::operation::start_execution::_start_execution_input::StartExecutionInput;
463
464mod _start_execution_input;
465
466mod _start_execution_output;
467
468pub mod builders;