pub struct GetExecutionHistoryOutput {
pub events: Vec<HistoryEvent>,
pub next_token: Option<String>,
}
Fields§
§events: Vec<HistoryEvent>
The list of events that occurred in the execution.
next_token: Option<String>
If nextToken
is returned, there are more results available. The value of nextToken
is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an HTTP 400 InvalidToken error.
Trait Implementations§
Source§impl Clone for GetExecutionHistoryOutput
impl Clone for GetExecutionHistoryOutput
Source§fn clone(&self) -> GetExecutionHistoryOutput
fn clone(&self) -> GetExecutionHistoryOutput
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 GetExecutionHistoryOutput
impl Debug for GetExecutionHistoryOutput
Source§impl Default for GetExecutionHistoryOutput
impl Default for GetExecutionHistoryOutput
Source§fn default() -> GetExecutionHistoryOutput
fn default() -> GetExecutionHistoryOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetExecutionHistoryOutput
impl<'de> Deserialize<'de> for GetExecutionHistoryOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for GetExecutionHistoryOutput
Auto Trait Implementations§
impl Freeze for GetExecutionHistoryOutput
impl RefUnwindSafe for GetExecutionHistoryOutput
impl Send for GetExecutionHistoryOutput
impl Sync for GetExecutionHistoryOutput
impl Unpin for GetExecutionHistoryOutput
impl UnwindSafe for GetExecutionHistoryOutput
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