File Coverage

blib/lib/Paws/Firehose/ListDeliveryStreams.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::Firehose::ListDeliveryStreams;
3 1     1   502 use Moose;
  1         4  
  1         7  
4             has DeliveryStreamType => (is => 'ro', isa => 'Str');
5             has ExclusiveStartDeliveryStreamName => (is => 'ro', isa => 'Str');
6             has Limit => (is => 'ro', isa => 'Int');
7              
8 1     1   6347 use MooseX::ClassAttribute;
  1         4  
  1         12  
9              
10             class_has _api_call => (isa => 'Str', is => 'ro', default => 'ListDeliveryStreams');
11             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::Firehose::ListDeliveryStreamsOutput');
12             class_has _result_key => (isa => 'Str', is => 'ro');
13             1;
14              
15             ### main pod documentation begin ###
16              
17             =head1 NAME
18              
19             Paws::Firehose::ListDeliveryStreams - Arguments for method ListDeliveryStreams on Paws::Firehose
20              
21             =head1 DESCRIPTION
22              
23             This class represents the parameters used for calling the method ListDeliveryStreams on the
24             Amazon Kinesis Firehose service. Use the attributes of this class
25             as arguments to method ListDeliveryStreams.
26              
27             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ListDeliveryStreams.
28              
29             As an example:
30              
31             $service_obj->ListDeliveryStreams(Att1 => $value1, Att2 => $value2, ...);
32              
33             Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object.
34              
35             =head1 ATTRIBUTES
36              
37              
38             =head2 DeliveryStreamType => Str
39              
40             The delivery stream type. This can be one of the following values:
41              
42             =over
43              
44             =item *
45              
46             C<DirectPut>: Provider applications access the delivery stream
47             directly.
48              
49             =item *
50              
51             C<KinesisStreamAsSource>: The delivery stream uses a Kinesis stream as
52             a source.
53              
54             =back
55              
56             This parameter is optional. If this parameter is omitted, delivery
57             streams of all types are returned.
58              
59             Valid values are: C<"DirectPut">, C<"KinesisStreamAsSource">
60              
61             =head2 ExclusiveStartDeliveryStreamName => Str
62              
63             The name of the delivery stream to start the list with.
64              
65              
66              
67             =head2 Limit => Int
68              
69             The maximum number of delivery streams to list.
70              
71              
72              
73              
74             =head1 SEE ALSO
75              
76             This class forms part of L<Paws>, documenting arguments for method ListDeliveryStreams in L<Paws::Firehose>
77              
78             =head1 BUGS and CONTRIBUTIONS
79              
80             The source code is located here: https://github.com/pplu/aws-sdk-perl
81              
82             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
83              
84             =cut
85