pub struct UpdateStateMachineInput {
pub definition: Option<String>,
pub logging_configuration: Option<LoggingConfiguration>,
pub role_arn: Option<String>,
pub state_machine_arn: String,
}
Fields§
§definition: Option<String>
The Amazon States Language definition of the state machine. See Amazon States Language.
logging_configuration: Option<LoggingConfiguration>
The LoggingConfiguration
data type is used to set CloudWatch Logs options.
role_arn: Option<String>
The Amazon Resource Name (ARN) of the IAM role of the state machine.
state_machine_arn: String
The Amazon Resource Name (ARN) of the state machine.
Trait Implementations§
Source§impl Clone for UpdateStateMachineInput
impl Clone for UpdateStateMachineInput
Source§fn clone(&self) -> UpdateStateMachineInput
fn clone(&self) -> UpdateStateMachineInput
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for UpdateStateMachineInput
impl Debug for UpdateStateMachineInput
Source§impl Default for UpdateStateMachineInput
impl Default for UpdateStateMachineInput
Source§fn default() -> UpdateStateMachineInput
fn default() -> UpdateStateMachineInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateStateMachineInput
impl PartialEq for UpdateStateMachineInput
Source§impl Serialize for UpdateStateMachineInput
impl Serialize for UpdateStateMachineInput
impl StructuralPartialEq for UpdateStateMachineInput
Auto Trait Implementations§
impl Freeze for UpdateStateMachineInput
impl RefUnwindSafe for UpdateStateMachineInput
impl Send for UpdateStateMachineInput
impl Sync for UpdateStateMachineInput
impl Unpin for UpdateStateMachineInput
impl UnwindSafe for UpdateStateMachineInput
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
Mutably borrows from an owned value. Read more