Struct rusoto_kinesis::StreamDescription [] [src]

pub struct StreamDescription {
    pub enhanced_monitoring: EnhancedMonitoringList,
    pub has_more_shards: BooleanObject,
    pub retention_period_hours: PositiveIntegerObject,
    pub shards: ShardList,
    pub stream_arn: StreamARN,
    pub stream_creation_timestamp: Timestamp,
    pub stream_name: StreamName,
    pub stream_status: StreamStatus,
}

Represents the output for DescribeStream.

Fields

Represents the current enhanced monitoring settings of the stream.

If set to true, more shards in the stream are available to describe.

The current retention period, in hours.

The shards that comprise the stream.

The Amazon Resource Name (ARN) for the stream being described.

The approximate time that the stream was created.

The name of the stream being described.

The current status of the stream being described. The stream status is one of the following states:

  • CREATING - The stream is being created. Amazon Kinesis immediately returns and sets StreamStatus to CREATING.

  • DELETING - The stream is being deleted. The specified stream is in the DELETING state until Amazon Kinesis completes the deletion.

  • ACTIVE - The stream exists and is ready for read and write operations or deletion. You should perform read and write operations only on an ACTIVE stream.

  • UPDATING - Shards in the stream are being merged or split. Read and write operations continue to work while the stream is in the UPDATING state.

Trait Implementations

impl Default for StreamDescription
[src]

Returns the "default value" for a type. Read more

impl Debug for StreamDescription
[src]

Formats the value using the given formatter.

impl Clone for StreamDescription
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more