#[non_exhaustive]pub struct CreateStateMachineAliasInput {
pub description: Option<String>,
pub name: Option<String>,
pub routing_configuration: Option<Vec<RoutingConfigurationListItem>>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.description: Option<String>A description for the state machine alias.
name: Option<String>The name of the state machine alias.
To avoid conflict with version ARNs, don't use an integer in the name of the alias.
routing_configuration: Option<Vec<RoutingConfigurationListItem>>The routing configuration of a state machine alias. The routing configuration shifts execution traffic between two state machine versions. routingConfiguration contains an array of RoutingConfig objects that specify up to two state machine versions. Step Functions then randomly choses which version to run an execution with based on the weight assigned to each RoutingConfig.
Implementations§
source§impl CreateStateMachineAliasInput
impl CreateStateMachineAliasInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description for the state machine alias.
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The name of the state machine alias.
To avoid conflict with version ARNs, don't use an integer in the name of the alias.
sourcepub fn routing_configuration(&self) -> &[RoutingConfigurationListItem]
pub fn routing_configuration(&self) -> &[RoutingConfigurationListItem]
The routing configuration of a state machine alias. The routing configuration shifts execution traffic between two state machine versions. routingConfiguration contains an array of RoutingConfig objects that specify up to two state machine versions. Step Functions then randomly choses which version to run an execution with based on the weight assigned to each RoutingConfig.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .routing_configuration.is_none().
source§impl CreateStateMachineAliasInput
impl CreateStateMachineAliasInput
sourcepub fn builder() -> CreateStateMachineAliasInputBuilder
pub fn builder() -> CreateStateMachineAliasInputBuilder
Creates a new builder-style object to manufacture CreateStateMachineAliasInput.
Trait Implementations§
source§impl Clone for CreateStateMachineAliasInput
impl Clone for CreateStateMachineAliasInput
source§fn clone(&self) -> CreateStateMachineAliasInput
fn clone(&self) -> CreateStateMachineAliasInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateStateMachineAliasInput
impl Debug for CreateStateMachineAliasInput
source§impl PartialEq for CreateStateMachineAliasInput
impl PartialEq for CreateStateMachineAliasInput
source§fn eq(&self, other: &CreateStateMachineAliasInput) -> bool
fn eq(&self, other: &CreateStateMachineAliasInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateStateMachineAliasInput
Auto Trait Implementations§
impl Freeze for CreateStateMachineAliasInput
impl RefUnwindSafe for CreateStateMachineAliasInput
impl Send for CreateStateMachineAliasInput
impl Sync for CreateStateMachineAliasInput
impl Unpin for CreateStateMachineAliasInput
impl UnwindSafe for CreateStateMachineAliasInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more