NAME
Paws::Kinesis::MemoryCaller - A Paws Caller with in-memory Kinesis.
SYNOPSIS
my $kinesis = Paws->service('Kinesis',
region => 'N/A',
caller => Paws::Kinesis::MemoryCaller->new(),
credentials => Paws::Credential::Environment->new(),
);
# or simply...
my $kinesis = Paws::Kinesis::MemoryCaller->new_kinesis();
# Then use $kinesis as you would normally, for example:
# Put multiple records on a stream...
$kinesis->PutRecords(%args);
# Get records from a stream...
$kinesis->GetRecords(%args);
DESCRIPTION
Paws::Kinesis::MemoryCaller implements Paws::Net::CallerRole which simulates its own streams, shards and records in memory.
The following methods have been implemented:
CreateStream
DescribeStream
GetRecords
GetShardIterator
PutRecord
PutRecords
METHODS
new_kinesis
Shortcut method to create a new Kinesis service instance that uses this caller. Equivalent to:
Paws->service('Kinesis',
caller => Paws::Kinesis::MemoryCaller->new(),
credentials => Paws::Credential::Environment->new(),
region => "N/A",
);
LICENSE
Copyright (C) Keith Broughton.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
DEVELOPMENT
Author
Keith Broughton <keithbro [AT] cpan.org>
Bug reports
Please report any bugs or feature requests on GitHub:
https://github.com/keithbro/Paws-Kinesis-MemoryCaller/issues.