pub struct ListJournalKinesisStreamsForLedgerResponse {
pub next_token: Option<String>,
pub streams: Option<Vec<JournalKinesisStreamDescription>>,
}Fields§
§next_token: Option<String>-
If
NextTokenis empty, the last page of results has been processed and there are no more results to be retrieved. -
If
NextTokenis not empty, more results are available. To retrieve the next page of results, use the value ofNextTokenin a subsequentListJournalKinesisStreamsForLedgercall.
streams: Option<Vec<JournalKinesisStreamDescription>>The array of QLDB journal stream descriptors that are associated with the given ledger.
Trait Implementations§
Source§impl Clone for ListJournalKinesisStreamsForLedgerResponse
impl Clone for ListJournalKinesisStreamsForLedgerResponse
Source§fn clone(&self) -> ListJournalKinesisStreamsForLedgerResponse
fn clone(&self) -> ListJournalKinesisStreamsForLedgerResponse
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 moreSource§impl Default for ListJournalKinesisStreamsForLedgerResponse
impl Default for ListJournalKinesisStreamsForLedgerResponse
Source§fn default() -> ListJournalKinesisStreamsForLedgerResponse
fn default() -> ListJournalKinesisStreamsForLedgerResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListJournalKinesisStreamsForLedgerResponse
impl<'de> Deserialize<'de> for ListJournalKinesisStreamsForLedgerResponse
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
Source§impl PartialEq for ListJournalKinesisStreamsForLedgerResponse
impl PartialEq for ListJournalKinesisStreamsForLedgerResponse
Source§fn eq(&self, other: &ListJournalKinesisStreamsForLedgerResponse) -> bool
fn eq(&self, other: &ListJournalKinesisStreamsForLedgerResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListJournalKinesisStreamsForLedgerResponse
Auto Trait Implementations§
impl Freeze for ListJournalKinesisStreamsForLedgerResponse
impl RefUnwindSafe for ListJournalKinesisStreamsForLedgerResponse
impl Send for ListJournalKinesisStreamsForLedgerResponse
impl Sync for ListJournalKinesisStreamsForLedgerResponse
impl Unpin for ListJournalKinesisStreamsForLedgerResponse
impl UnwindSafe for ListJournalKinesisStreamsForLedgerResponse
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