#[non_exhaustive]pub struct UpdateStateMachineAliasInput {
pub state_machine_alias_arn: Option<String>,
pub description: 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.state_machine_alias_arn: Option<String>The Amazon Resource Name (ARN) of the state machine alias.
description: Option<String>A description of the state machine alias.
routing_configuration: Option<Vec<RoutingConfigurationListItem>>The routing configuration of the state machine alias.
An array of RoutingConfig objects that specifies up to two state machine versions that the alias starts executions for.
Implementations§
source§impl UpdateStateMachineAliasInput
impl UpdateStateMachineAliasInput
sourcepub fn state_machine_alias_arn(&self) -> Option<&str>
pub fn state_machine_alias_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the state machine alias.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the state machine alias.
sourcepub fn routing_configuration(&self) -> &[RoutingConfigurationListItem]
pub fn routing_configuration(&self) -> &[RoutingConfigurationListItem]
The routing configuration of the state machine alias.
An array of RoutingConfig objects that specifies up to two state machine versions that the alias starts executions for.
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 UpdateStateMachineAliasInput
impl UpdateStateMachineAliasInput
sourcepub fn builder() -> UpdateStateMachineAliasInputBuilder
pub fn builder() -> UpdateStateMachineAliasInputBuilder
Creates a new builder-style object to manufacture UpdateStateMachineAliasInput.
Trait Implementations§
source§impl Clone for UpdateStateMachineAliasInput
impl Clone for UpdateStateMachineAliasInput
source§fn clone(&self) -> UpdateStateMachineAliasInput
fn clone(&self) -> UpdateStateMachineAliasInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateStateMachineAliasInput
impl Debug for UpdateStateMachineAliasInput
source§impl PartialEq for UpdateStateMachineAliasInput
impl PartialEq for UpdateStateMachineAliasInput
source§fn eq(&self, other: &UpdateStateMachineAliasInput) -> bool
fn eq(&self, other: &UpdateStateMachineAliasInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateStateMachineAliasInput
Auto Trait Implementations§
impl Freeze for UpdateStateMachineAliasInput
impl RefUnwindSafe for UpdateStateMachineAliasInput
impl Send for UpdateStateMachineAliasInput
impl Sync for UpdateStateMachineAliasInput
impl Unpin for UpdateStateMachineAliasInput
impl UnwindSafe for UpdateStateMachineAliasInput
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