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
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 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 Amazon Resource Name (ARN) 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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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