Class: Aws::Kinesis::Types::DescribeStreamInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-kinesis/types.rb

Overview

Represents the input for ‘DescribeStream`.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#exclusive_start_shard_idString

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.

Returns:

  • (String)


391
392
393
394
395
396
397
398
# File 'lib/aws-sdk-kinesis/types.rb', line 391

class DescribeStreamInput < Struct.new(
  :stream_name,
  :limit,
  :exclusive_start_shard_id,
  :stream_arn)
  SENSITIVE = []
  include Aws::Structure
end

#limitInteger

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.

Returns:

  • (Integer)


391
392
393
394
395
396
397
398
# File 'lib/aws-sdk-kinesis/types.rb', line 391

class DescribeStreamInput < Struct.new(
  :stream_name,
  :limit,
  :exclusive_start_shard_id,
  :stream_arn)
  SENSITIVE = []
  include Aws::Structure
end

#stream_arnString

The ARN of the stream.

Returns:

  • (String)


391
392
393
394
395
396
397
398
# File 'lib/aws-sdk-kinesis/types.rb', line 391

class DescribeStreamInput < Struct.new(
  :stream_name,
  :limit,
  :exclusive_start_shard_id,
  :stream_arn)
  SENSITIVE = []
  include Aws::Structure
end

#stream_nameString

The name of the stream to describe.

Returns:

  • (String)


391
392
393
394
395
396
397
398
# File 'lib/aws-sdk-kinesis/types.rb', line 391

class DescribeStreamInput < Struct.new(
  :stream_name,
  :limit,
  :exclusive_start_shard_id,
  :stream_arn)
  SENSITIVE = []
  include Aws::Structure
end