1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00
fog--fog-aws/lib/fog/aws/requests/kinesis/get_shard_iterator.rb
2015-07-02 12:02:38 -04:00

42 lines
1.5 KiB
Ruby

module Fog
module AWS
class Kinesis
class Real
# Gets a shard iterator.
#
# ==== Options
# * ShardId<~String>: The shard ID of the shard to get the iterator for.
# * ShardIteratorType<~String>: Determines how the shard iterator is used to start reading data records from the shard.
# * StartingSequenceNumber<~String>: The sequence number of the data record in the shard from which to start reading from.
# * StreamName<~String>: A name to identify the stream.
# ==== Returns
# * response<~Excon::Response>:
#
# ==== See Also
# https://docs.aws.amazon.com/kinesis/latest/APIReference/API_GetShardIterator.html
#
def get_shard_iterator(options={})
body = {
"ShardId" => options.delete("ShardId"),
"ShardIteratorType" => options.delete("ShardIteratorType"),
"StartingSequenceNumber" => options.delete("StartingSequenceNumber"),
"StreamName" => options.delete("StreamName")
}.reject{ |_,v| v.nil? }
response = request({
'X-Amz-Target' => 'Kinesis_20131202.GetShardIterator',
:body => body,
}.merge(options))
response.body = Fog::JSON.decode(response.body) unless response.body.nil?
response
end
end
class Mock
def get_shard_iterator(options={})
raise Fog::Mock::NotImplementedError
end
end
end
end
end