File Coverage

blib/lib/Paws/WorkDocs/DescribeActivities.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::WorkDocs::DescribeActivities;
3 1     1   600 use Moose;
  1         3  
  1         9  
4             has AuthenticationToken => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'Authentication' );
5             has EndTime => (is => 'ro', isa => 'Str', traits => ['ParamInQuery'], query_name => 'endTime' );
6             has Limit => (is => 'ro', isa => 'Int', traits => ['ParamInQuery'], query_name => 'limit' );
7             has Marker => (is => 'ro', isa => 'Str', traits => ['ParamInQuery'], query_name => 'marker' );
8             has OrganizationId => (is => 'ro', isa => 'Str', traits => ['ParamInQuery'], query_name => 'organizationId' );
9             has StartTime => (is => 'ro', isa => 'Str', traits => ['ParamInQuery'], query_name => 'startTime' );
10             has UserId => (is => 'ro', isa => 'Str', traits => ['ParamInQuery'], query_name => 'userId' );
11              
12 1     1   8416 use MooseX::ClassAttribute;
  1         3  
  1         10  
13              
14             class_has _api_call => (isa => 'Str', is => 'ro', default => 'DescribeActivities');
15             class_has _api_uri => (isa => 'Str', is => 'ro', default => '/api/v1/activities');
16             class_has _api_method => (isa => 'Str', is => 'ro', default => 'GET');
17             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::WorkDocs::DescribeActivitiesResponse');
18             class_has _result_key => (isa => 'Str', is => 'ro');
19             1;
20              
21             ### main pod documentation begin ###
22              
23             =head1 NAME
24              
25             Paws::WorkDocs::DescribeActivities - Arguments for method DescribeActivities on Paws::WorkDocs
26              
27             =head1 DESCRIPTION
28              
29             This class represents the parameters used for calling the method DescribeActivities on the
30             Amazon WorkDocs service. Use the attributes of this class
31             as arguments to method DescribeActivities.
32              
33             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to DescribeActivities.
34              
35             As an example:
36              
37             $service_obj->DescribeActivities(Att1 => $value1, Att2 => $value2, ...);
38              
39             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.
40              
41             =head1 ATTRIBUTES
42              
43              
44             =head2 AuthenticationToken => Str
45              
46             Amazon WorkDocs authentication token. This field should not be set when
47             using administrative API actions, as in accessing the API using AWS
48             credentials.
49              
50              
51              
52             =head2 EndTime => Str
53              
54             The timestamp that determines the end time of the activities; the
55             response includes the activities performed before the specified
56             timestamp.
57              
58              
59              
60             =head2 Limit => Int
61              
62             The maximum number of items to return.
63              
64              
65              
66             =head2 Marker => Str
67              
68             The marker for the next set of results. (You received this marker from
69             a previous call.)
70              
71              
72              
73             =head2 OrganizationId => Str
74              
75             The ID of the organization. This is a mandatory parameter when using
76             administrative API (SigV4) requests.
77              
78              
79              
80             =head2 StartTime => Str
81              
82             The timestamp that determines the starting time of the activities; the
83             response includes the activities performed after the specified
84             timestamp.
85              
86              
87              
88             =head2 UserId => Str
89              
90             The ID of the user who performed the action. The response includes
91             activities pertaining to this user. This is an optional parameter and
92             is only applicable for administrative API (SigV4) requests.
93              
94              
95              
96              
97             =head1 SEE ALSO
98              
99             This class forms part of L<Paws>, documenting arguments for method DescribeActivities in L<Paws::WorkDocs>
100              
101             =head1 BUGS and CONTRIBUTIONS
102              
103             The source code is located here: https://github.com/pplu/aws-sdk-perl
104              
105             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
106              
107             =cut
108