pub struct JournalKinesisStreamDescription {
pub arn: Option<String>,
pub creation_time: Option<f64>,
pub error_cause: Option<String>,
pub exclusive_end_time: Option<f64>,
pub inclusive_start_time: Option<f64>,
pub kinesis_configuration: KinesisConfiguration,
pub ledger_name: String,
pub role_arn: String,
pub status: String,
pub stream_id: String,
pub stream_name: String,
}Expand description
The information about an Amazon QLDB journal stream, including the Amazon Resource Name (ARN), stream name, creation time, current status, and the parameters of your original stream creation request.
Fields§
§arn: Option<String>The Amazon Resource Name (ARN) of the QLDB journal stream.
creation_time: Option<f64>The date and time, in epoch time format, when the QLDB journal stream was created. (Epoch time format is the number of seconds elapsed since 12:00:00 AM January 1, 1970 UTC.)
error_cause: Option<String>The error message that describes the reason that a stream has a status of IMPAIRED or FAILED. This is not applicable to streams that have other status values.
exclusive_end_time: Option<f64>The exclusive date and time that specifies when the stream ends. If this parameter is blank, the stream runs indefinitely until you cancel it.
inclusive_start_time: Option<f64>The inclusive start date and time from which to start streaming journal data.
kinesis_configuration: KinesisConfigurationThe configuration settings of the Amazon Kinesis Data Streams destination for your QLDB journal stream.
ledger_name: StringThe name of the ledger.
role_arn: StringThe Amazon Resource Name (ARN) of the IAM role that grants QLDB permissions for a journal stream to write data records to a Kinesis Data Streams resource.
status: StringThe current state of the QLDB journal stream.
stream_id: StringThe unique ID that QLDB assigns to each QLDB journal stream.
stream_name: StringThe user-defined name of the QLDB journal stream.
Trait Implementations§
Source§impl Clone for JournalKinesisStreamDescription
impl Clone for JournalKinesisStreamDescription
Source§fn clone(&self) -> JournalKinesisStreamDescription
fn clone(&self) -> JournalKinesisStreamDescription
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for JournalKinesisStreamDescription
impl Default for JournalKinesisStreamDescription
Source§fn default() -> JournalKinesisStreamDescription
fn default() -> JournalKinesisStreamDescription
Source§impl<'de> Deserialize<'de> for JournalKinesisStreamDescription
impl<'de> Deserialize<'de> for JournalKinesisStreamDescription
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>,
Source§impl PartialEq for JournalKinesisStreamDescription
impl PartialEq for JournalKinesisStreamDescription
Source§fn eq(&self, other: &JournalKinesisStreamDescription) -> bool
fn eq(&self, other: &JournalKinesisStreamDescription) -> bool
self and other values to be equal, and is used by ==.