pub struct GetExecutionHistoryInput {
pub execution_arn: String,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub reverse_order: Option<bool>,
}
Fields§
§execution_arn: String
The Amazon Resource Name (ARN) of the execution.
max_results: Option<i64>
The maximum number of results that are returned per call. You can use nextToken
to obtain further pages of results. The default is 100 and the maximum allowed page size is 1000. A value of 0 uses the default.
This is only an upper limit. The actual number of results returned per call might be fewer than the specified maximum.
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.
reverse_order: Option<bool>
Lists events in descending order of their timeStamp
.
Trait Implementations§
Source§impl Clone for GetExecutionHistoryInput
impl Clone for GetExecutionHistoryInput
Source§fn clone(&self) -> GetExecutionHistoryInput
fn clone(&self) -> GetExecutionHistoryInput
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more