pub struct ListActionExecutionsOutput {
pub action_execution_details: Option<Vec<ActionExecutionDetail>>,
pub next_token: Option<String>,
}
Fields§
§action_execution_details: Option<Vec<ActionExecutionDetail>>
The details for a list of recent executions, such as action execution ID.
next_token: Option<String>
If the amount of returned information is significantly large, an identifier is also returned and can be used in a subsequent ListActionExecutions
call to return the next set of action executions in the list.
Trait Implementations§
Source§impl Clone for ListActionExecutionsOutput
impl Clone for ListActionExecutionsOutput
Source§fn clone(&self) -> ListActionExecutionsOutput
fn clone(&self) -> ListActionExecutionsOutput
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 ListActionExecutionsOutput
impl Debug for ListActionExecutionsOutput
Source§impl Default for ListActionExecutionsOutput
impl Default for ListActionExecutionsOutput
Source§fn default() -> ListActionExecutionsOutput
fn default() -> ListActionExecutionsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListActionExecutionsOutput
impl<'de> Deserialize<'de> for ListActionExecutionsOutput
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 ListActionExecutionsOutput
Auto Trait Implementations§
impl Freeze for ListActionExecutionsOutput
impl RefUnwindSafe for ListActionExecutionsOutput
impl Send for ListActionExecutionsOutput
impl Sync for ListActionExecutionsOutput
impl Unpin for ListActionExecutionsOutput
impl UnwindSafe for ListActionExecutionsOutput
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