class Amazonite::Kinesis::UpdateStreamModeInput

Included Modules

Defined in:

kinesis/update_stream_mode_input.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(stream_arn : String, stream_mode_details : StreamModeDetails, stream_id : String | Nil = nil, warm_throughput_mi_bps : Int32 | Nil = nil) #

[View source]
def self.new(pull : JSON::PullParser) #

[View source]
def self.new(*, __pull_for_json_serializable pull : JSON::PullParser) #

[View source]

Instance Method Detail

def ==(other : self) #
Description copied from class Reference

Returns true if this reference is the same as other. Invokes same?.


def hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def stream_arn : String #

Specifies the ARN of the data stream whose capacity mode you want to update.


[View source]
def stream_arn=(stream_arn : String) #

Specifies the ARN of the data stream whose capacity mode you want to update.


[View source]
def stream_id : String | Nil #

Not Implemented. Reserved for future use.


[View source]
def stream_id=(stream_id : String | Nil) #

Not Implemented. Reserved for future use.


[View source]
def stream_mode_details : 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.


[View source]
def stream_mode_details=(stream_mode_details : 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.


[View source]
def validate! : Nil #

[View source]
def warm_throughput_mi_bps : Int32 | Nil #

The target warm throughput in MB/s that the stream should be scaled to handle. This represents the throughput capacity that will be immediately available for write operations. This field is only valid when the stream mode is being updated to on-demand.


[View source]
def warm_throughput_mi_bps=(warm_throughput_mi_bps : Int32 | Nil) #

The target warm throughput in MB/s that the stream should be scaled to handle. This represents the throughput capacity that will be immediately available for write operations. This field is only valid when the stream mode is being updated to on-demand.


[View source]