class Amazonite::Kinesis::DescribeStreamInput

Overview

Represents the input for DescribeStream.

Included Modules

Defined in:

kinesis/describe_stream_input.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(pull : JSON::PullParser) #

[View source]
def self.new(stream_name : String | Nil = nil, limit : Int32 | Nil = nil, exclusive_start_shard_id : String | Nil = nil, stream_arn : String | Nil = nil, stream_id : String | Nil = nil) #

[View source]

Instance Method Detail

def ==(other : self) #
Description copied from class Reference

Returns true if this reference is the same as other. Invokes same?.


def exclusive_start_shard_id : String | Nil #

The shard ID of the shard to start with.

Specify this parameter to indicate that you want to describe the stream starting with the shard whose ID immediately follows ExclusiveStartShardId.

If you don't specify this parameter, the default behavior for DescribeStream is to describe the stream starting with the first shard in the stream.


[View source]
def exclusive_start_shard_id=(exclusive_start_shard_id : String | Nil) #

The shard ID of the shard to start with.

Specify this parameter to indicate that you want to describe the stream starting with the shard whose ID immediately follows ExclusiveStartShardId.

If you don't specify this parameter, the default behavior for DescribeStream is to describe the stream starting with the first shard in the stream.


[View source]
def hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def limit : Int32 | Nil #

The maximum number of shards to return in a single call. The default value is 100. If you specify a value greater than 100, at most 100 results are returned.


[View source]
def limit=(limit : Int32 | Nil) #

The maximum number of shards to return in a single call. The default value is 100. If you specify a value greater than 100, at most 100 results are returned.


[View source]
def stream_arn : String | Nil #

The ARN of the stream.


[View source]
def stream_arn=(stream_arn : String | Nil) #

The ARN of the stream.


[View source]
def stream_id : String | Nil #

Not Implemented. Reserved for future use.


[View source]
def stream_id=(stream_id : String | Nil) #

Not Implemented. Reserved for future use.


[View source]
def stream_name : String | Nil #

The name of the stream to describe.


[View source]
def stream_name=(stream_name : String | Nil) #

The name of the stream to describe.


[View source]
def validate! : Nil #

[View source]