Class: Aws::Kinesis::Types::UpdateStreamModeInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kinesis::Types::UpdateStreamModeInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kinesis/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#stream_arn ⇒ String
Specifies the ARN of the data stream whose capacity mode you want to update.
-
#stream_mode_details ⇒ Types::StreamModeDetails
Specifies the capacity mode to which you want to set your data stream.
Instance Attribute Details
#stream_arn ⇒ String
Specifies the ARN of the data stream whose capacity mode you want to update.
2553 2554 2555 2556 2557 2558 |
# File 'lib/aws-sdk-kinesis/types.rb', line 2553 class UpdateStreamModeInput < Struct.new( :stream_arn, :stream_mode_details) SENSITIVE = [] include Aws::Structure end |
#stream_mode_details ⇒ Types::StreamModeDetails
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.
2553 2554 2555 2556 2557 2558 |
# File 'lib/aws-sdk-kinesis/types.rb', line 2553 class UpdateStreamModeInput < Struct.new( :stream_arn, :stream_mode_details) SENSITIVE = [] include Aws::Structure end |