Class: Aws::Kinesis::Types::CreateStreamInput

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

Overview

Represents the input for ‘CreateStream`.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#shard_countInteger

The number of shards that the stream will use. The throughput of the stream is a function of the number of shards; more shards are required for greater provisioned throughput.

Returns:

  • (Integer)


186
187
188
189
190
191
192
193
# File 'lib/aws-sdk-kinesis/types.rb', line 186

class CreateStreamInput < Struct.new(
  :stream_name,
  :shard_count,
  :stream_mode_details,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#stream_mode_detailsTypes::StreamModeDetails

Indicates the capacity mode of the data stream. Currently, in Kinesis Data Streams, you can choose between an on-demand capacity mode and a provisioned capacity mode for your data streams.



186
187
188
189
190
191
192
193
# File 'lib/aws-sdk-kinesis/types.rb', line 186

class CreateStreamInput < Struct.new(
  :stream_name,
  :shard_count,
  :stream_mode_details,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#stream_nameString

A name to identify the stream. The stream name is scoped to the Amazon Web Services account used by the application that creates the stream. It is also scoped by Amazon Web Services Region. That is, two streams in two different Amazon Web Services accounts can have the same name. Two streams in the same Amazon Web Services account but in two different Regions can also have the same name.

Returns:

  • (String)


186
187
188
189
190
191
192
193
# File 'lib/aws-sdk-kinesis/types.rb', line 186

class CreateStreamInput < Struct.new(
  :stream_name,
  :shard_count,
  :stream_mode_details,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#tagsHash<String,String>

A set of up to 10 key-value pairs to use to create the tags.

Returns:

  • (Hash<String,String>)


186
187
188
189
190
191
192
193
# File 'lib/aws-sdk-kinesis/types.rb', line 186

class CreateStreamInput < Struct.new(
  :stream_name,
  :shard_count,
  :stream_mode_details,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end