Struct aws_sdk_managedblockchainquery::operation::list_transaction_events::ListTransactionEventsInput
source · #[non_exhaustive]pub struct ListTransactionEventsInput {
pub transaction_hash: Option<String>,
pub network: Option<QueryNetwork>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.transaction_hash: Option<String>
The hash of the transaction. It is generated whenever a transaction is verified and added to the blockchain.
network: Option<QueryNetwork>
The blockchain network where the transaction events occurred.
next_token: Option<String>
The pagination token that indicates the next set of results to retrieve.
max_results: Option<i32>
The maximum number of transaction events to list.
Even if additional results can be retrieved, the request can return less results than maxResults
or an empty array of results.
To retrieve the next set of results, make another request with the returned nextToken
value. The value of nextToken
is null
when there are no more results to return
Implementations§
source§impl ListTransactionEventsInput
impl ListTransactionEventsInput
sourcepub fn transaction_hash(&self) -> Option<&str>
pub fn transaction_hash(&self) -> Option<&str>
The hash of the transaction. It is generated whenever a transaction is verified and added to the blockchain.
sourcepub fn network(&self) -> Option<&QueryNetwork>
pub fn network(&self) -> Option<&QueryNetwork>
The blockchain network where the transaction events occurred.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The pagination token that indicates the next set of results to retrieve.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of transaction events to list.
Even if additional results can be retrieved, the request can return less results than maxResults
or an empty array of results.
To retrieve the next set of results, make another request with the returned nextToken
value. The value of nextToken
is null
when there are no more results to return
source§impl ListTransactionEventsInput
impl ListTransactionEventsInput
sourcepub fn builder() -> ListTransactionEventsInputBuilder
pub fn builder() -> ListTransactionEventsInputBuilder
Creates a new builder-style object to manufacture ListTransactionEventsInput
.
Trait Implementations§
source§impl Clone for ListTransactionEventsInput
impl Clone for ListTransactionEventsInput
source§fn clone(&self) -> ListTransactionEventsInput
fn clone(&self) -> ListTransactionEventsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListTransactionEventsInput
impl Debug for ListTransactionEventsInput
source§impl PartialEq<ListTransactionEventsInput> for ListTransactionEventsInput
impl PartialEq<ListTransactionEventsInput> for ListTransactionEventsInput
source§fn eq(&self, other: &ListTransactionEventsInput) -> bool
fn eq(&self, other: &ListTransactionEventsInput) -> bool
self
and other
values to be equal, and is used
by ==
.