Class: Aws::Kinesis::Types::StreamModeDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kinesis::Types::StreamModeDetails
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kinesis/types.rb
Overview
Specifies the capacity mode to which you want to set your 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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#stream_mode ⇒ String
Specifies the capacity mode to which you want to set your data stream.
Instance Attribute Details
#stream_mode ⇒ String
Specifies the capacity mode to which you want to set your 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.
2330 2331 2332 2333 2334 |
# File 'lib/aws-sdk-kinesis/types.rb', line 2330 class StreamModeDetails < Struct.new( :stream_mode) SENSITIVE = [] include Aws::Structure end |