#[non_exhaustive]pub struct PipeTargetStateMachineParametersBuilder { /* private fields */ }
Expand description
A builder for PipeTargetStateMachineParameters
.
Implementations§
source§impl PipeTargetStateMachineParametersBuilder
impl PipeTargetStateMachineParametersBuilder
sourcepub fn invocation_type(self, input: PipeTargetInvocationType) -> Self
pub fn invocation_type(self, input: PipeTargetInvocationType) -> Self
Specify whether to invoke the Step Functions state machine synchronously or asynchronously.
-
REQUEST_RESPONSE
(default) - Invoke synchronously. For more information, see StartSyncExecution in the Step Functions API Reference.REQUEST_RESPONSE
is not supported forSTANDARD
state machine workflows. -
FIRE_AND_FORGET
- Invoke asynchronously. For more information, see StartExecution in the Step Functions API Reference.
For more information, see Invocation types in the Amazon EventBridge User Guide.
sourcepub fn set_invocation_type(
self,
input: Option<PipeTargetInvocationType>
) -> Self
pub fn set_invocation_type( self, input: Option<PipeTargetInvocationType> ) -> Self
Specify whether to invoke the Step Functions state machine synchronously or asynchronously.
-
REQUEST_RESPONSE
(default) - Invoke synchronously. For more information, see StartSyncExecution in the Step Functions API Reference.REQUEST_RESPONSE
is not supported forSTANDARD
state machine workflows. -
FIRE_AND_FORGET
- Invoke asynchronously. For more information, see StartExecution in the Step Functions API Reference.
For more information, see Invocation types in the Amazon EventBridge User Guide.
sourcepub fn get_invocation_type(&self) -> &Option<PipeTargetInvocationType>
pub fn get_invocation_type(&self) -> &Option<PipeTargetInvocationType>
Specify whether to invoke the Step Functions state machine synchronously or asynchronously.
-
REQUEST_RESPONSE
(default) - Invoke synchronously. For more information, see StartSyncExecution in the Step Functions API Reference.REQUEST_RESPONSE
is not supported forSTANDARD
state machine workflows. -
FIRE_AND_FORGET
- Invoke asynchronously. For more information, see StartExecution in the Step Functions API Reference.
For more information, see Invocation types in the Amazon EventBridge User Guide.
sourcepub fn build(self) -> PipeTargetStateMachineParameters
pub fn build(self) -> PipeTargetStateMachineParameters
Consumes the builder and constructs a PipeTargetStateMachineParameters
.
Trait Implementations§
source§impl Clone for PipeTargetStateMachineParametersBuilder
impl Clone for PipeTargetStateMachineParametersBuilder
source§fn clone(&self) -> PipeTargetStateMachineParametersBuilder
fn clone(&self) -> PipeTargetStateMachineParametersBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for PipeTargetStateMachineParametersBuilder
impl Default for PipeTargetStateMachineParametersBuilder
source§fn default() -> PipeTargetStateMachineParametersBuilder
fn default() -> PipeTargetStateMachineParametersBuilder
source§impl PartialEq for PipeTargetStateMachineParametersBuilder
impl PartialEq for PipeTargetStateMachineParametersBuilder
source§fn eq(&self, other: &PipeTargetStateMachineParametersBuilder) -> bool
fn eq(&self, other: &PipeTargetStateMachineParametersBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.