Struct aws_sdk_qldb::model::JournalKinesisStreamDescription [−][src]
#[non_exhaustive]pub struct JournalKinesisStreamDescription {
pub ledger_name: Option<String>,
pub creation_time: Option<DateTime>,
pub inclusive_start_time: Option<DateTime>,
pub exclusive_end_time: Option<DateTime>,
pub role_arn: Option<String>,
pub stream_id: Option<String>,
pub arn: Option<String>,
pub status: Option<StreamStatus>,
pub kinesis_configuration: Option<KinesisConfiguration>,
pub error_cause: Option<ErrorCause>,
pub stream_name: Option<String>,
}
Expand description
Information about an Amazon QLDB journal stream, including the Amazon Resource Name (ARN), stream name, creation time, current status, and the parameters of the original stream creation request.
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.ledger_name: Option<String>
The name of the ledger.
creation_time: Option<DateTime>
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.)
inclusive_start_time: Option<DateTime>
The inclusive start date and time from which to start streaming journal data.
exclusive_end_time: Option<DateTime>
The exclusive date and time that specifies when the stream ends. If this parameter is undefined, the stream runs indefinitely until you cancel it.
role_arn: Option<String>
The 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.
stream_id: Option<String>
The UUID (represented in Base62-encoded text) of the QLDB journal stream.
arn: Option<String>
The Amazon Resource Name (ARN) of the QLDB journal stream.
status: Option<StreamStatus>
The current state of the QLDB journal stream.
kinesis_configuration: Option<KinesisConfiguration>
The configuration settings of the Amazon Kinesis Data Streams destination for a QLDB journal stream.
error_cause: Option<ErrorCause>
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.
stream_name: Option<String>
The user-defined name of the QLDB journal stream.
Implementations
The name of the ledger.
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.)
The inclusive start date and time from which to start streaming journal data.
The exclusive date and time that specifies when the stream ends. If this parameter is undefined, the stream runs indefinitely until you cancel it.
The 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.
The UUID (represented in Base62-encoded text) of the QLDB journal stream.
The current state of the QLDB journal stream.
The configuration settings of the Amazon Kinesis Data Streams destination for a QLDB journal stream.
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.
The user-defined name of the QLDB journal stream.
Creates a new builder-style object to manufacture JournalKinesisStreamDescription
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for JournalKinesisStreamDescription
impl Sync for JournalKinesisStreamDescription
impl Unpin for JournalKinesisStreamDescription
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more