pub struct StateMachine {Show 13 fields
pub name: String,
pub arn: String,
pub definition: String,
pub role_arn: String,
pub machine_type: StateMachineType,
pub status: StateMachineStatus,
pub creation_date: DateTime<Utc>,
pub update_date: DateTime<Utc>,
pub tags: HashMap<String, String>,
pub revision_id: String,
pub logging_configuration: Option<Value>,
pub tracing_configuration: Option<Value>,
pub description: String,
}Fields§
§name: String§arn: String§definition: String§role_arn: String§machine_type: StateMachineType§status: StateMachineStatus§creation_date: DateTime<Utc>§update_date: DateTime<Utc>§revision_id: String§logging_configuration: Option<Value>§tracing_configuration: Option<Value>§description: StringTrait Implementations§
Source§impl Clone for StateMachine
impl Clone for StateMachine
Source§fn clone(&self) -> StateMachine
fn clone(&self) -> StateMachine
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for StateMachine
impl RefUnwindSafe for StateMachine
impl Send for StateMachine
impl Sync for StateMachine
impl Unpin for StateMachine
impl UnsafeUnpin for StateMachine
impl UnwindSafe for StateMachine
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