File Coverage

blib/lib/Paws/CloudDirectory/BatchListIncomingTypedLinks.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Paws::CloudDirectory::BatchListIncomingTypedLinks;
2 1     1   526 use Moose;
  1         5  
  1         9  
3             has FilterAttributeRanges => (is => 'ro', isa => 'ArrayRef[Paws::CloudDirectory::TypedLinkAttributeRange]');
4             has FilterTypedLink => (is => 'ro', isa => 'Paws::CloudDirectory::TypedLinkSchemaAndFacetName');
5             has MaxResults => (is => 'ro', isa => 'Int');
6             has NextToken => (is => 'ro', isa => 'Str');
7             has ObjectReference => (is => 'ro', isa => 'Paws::CloudDirectory::ObjectReference', required => 1);
8             1;
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::CloudDirectory::BatchListIncomingTypedLinks
15              
16             =head1 USAGE
17              
18             This class represents one of two things:
19              
20             =head3 Arguments in a call to a service
21              
22             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
23             Each attribute should be used as a named argument in the calls that expect this type of object.
24              
25             As an example, if Att1 is expected to be a Paws::CloudDirectory::BatchListIncomingTypedLinks object:
26              
27             $service_obj->Method(Att1 => { FilterAttributeRanges => $value, ..., ObjectReference => $value });
28              
29             =head3 Results returned from an API call
30              
31             Use accessors for each attribute. If Att1 is expected to be an Paws::CloudDirectory::BatchListIncomingTypedLinks object:
32              
33             $result = $service_obj->Method(...);
34             $result->Att1->FilterAttributeRanges
35              
36             =head1 DESCRIPTION
37              
38             Returns a paginated list of all the incoming TypedLinkSpecifier
39             information for an object inside a BatchRead operation. For more
40             information, see ListIncomingTypedLinks and
41             BatchReadRequest$Operations.
42              
43             =head1 ATTRIBUTES
44              
45              
46             =head2 FilterAttributeRanges => ArrayRef[L<Paws::CloudDirectory::TypedLinkAttributeRange>]
47              
48             Provides range filters for multiple attributes. When providing ranges
49             to typed link selection, any inexact ranges must be specified at the
50             end. Any attributes that do not have a range specified are presumed to
51             match the entire range.
52              
53              
54             =head2 FilterTypedLink => L<Paws::CloudDirectory::TypedLinkSchemaAndFacetName>
55              
56             Filters are interpreted in the order of the attributes on the typed
57             link facet, not the order in which they are supplied to any API calls.
58              
59              
60             =head2 MaxResults => Int
61              
62             The maximum number of results to retrieve.
63              
64              
65             =head2 NextToken => Str
66              
67             The pagination token.
68              
69              
70             =head2 B<REQUIRED> ObjectReference => L<Paws::CloudDirectory::ObjectReference>
71              
72             The reference that identifies the object whose attributes will be
73             listed.
74              
75              
76              
77             =head1 SEE ALSO
78              
79             This class forms part of L<Paws>, describing an object used in L<Paws::CloudDirectory>
80              
81             =head1 BUGS and CONTRIBUTIONS
82              
83             The source code is located here: https://github.com/pplu/aws-sdk-perl
84              
85             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
86              
87             =cut
88