Class: Aws::Kinesis::Types::CreateStreamInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kinesis::Types::CreateStreamInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kinesis/types.rb
Overview
Represents the input for ‘CreateStream`.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#shard_count ⇒ Integer
The number of shards that the stream will use.
-
#stream_mode_details ⇒ Types::StreamModeDetails
Indicates the capacity mode of the data stream.
-
#stream_name ⇒ String
A name to identify the stream.
-
#tags ⇒ Hash<String,String>
A set of up to 10 key-value pairs to use to create the tags.
Instance Attribute Details
#shard_count ⇒ Integer
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.
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_details ⇒ Types::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_name ⇒ String
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.
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 |
#tags ⇒ Hash<String,String>
A set of up to 10 key-value pairs to use to create the tags.
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 |