File Coverage

blib/lib/Paws/CloudDirectory/ListObjectAttributes.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::CloudDirectory::ListObjectAttributes;
3 1     1   426 use Moose;
  1         3  
  1         6  
4             has ConsistencyLevel => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'x-amz-consistency-level' );
5             has DirectoryArn => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'x-amz-data-partition' , required => 1);
6             has FacetFilter => (is => 'ro', isa => 'Paws::CloudDirectory::SchemaFacet');
7             has MaxResults => (is => 'ro', isa => 'Int');
8             has NextToken => (is => 'ro', isa => 'Str');
9             has ObjectReference => (is => 'ro', isa => 'Paws::CloudDirectory::ObjectReference', required => 1);
10              
11 1     1   6001 use MooseX::ClassAttribute;
  1         2  
  1         8  
12              
13             class_has _api_call => (isa => 'Str', is => 'ro', default => 'ListObjectAttributes');
14             class_has _api_uri => (isa => 'Str', is => 'ro', default => '/amazonclouddirectory/2017-01-11/object/attributes');
15             class_has _api_method => (isa => 'Str', is => 'ro', default => 'POST');
16             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::CloudDirectory::ListObjectAttributesResponse');
17             class_has _result_key => (isa => 'Str', is => 'ro');
18             1;
19              
20             ### main pod documentation begin ###
21              
22             =head1 NAME
23              
24             Paws::CloudDirectory::ListObjectAttributes - Arguments for method ListObjectAttributes on Paws::CloudDirectory
25              
26             =head1 DESCRIPTION
27              
28             This class represents the parameters used for calling the method ListObjectAttributes on the
29             Amazon CloudDirectory service. Use the attributes of this class
30             as arguments to method ListObjectAttributes.
31              
32             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ListObjectAttributes.
33              
34             As an example:
35              
36             $service_obj->ListObjectAttributes(Att1 => $value1, Att2 => $value2, ...);
37              
38             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.
39              
40             =head1 ATTRIBUTES
41              
42              
43             =head2 ConsistencyLevel => Str
44              
45             Represents the manner and timing in which the successful write or
46             update of an object is reflected in a subsequent read operation of that
47             same object.
48              
49             Valid values are: C<"SERIALIZABLE">, C<"EVENTUAL">
50              
51             =head2 B<REQUIRED> DirectoryArn => Str
52              
53             The Amazon Resource Name (ARN) that is associated with the Directory
54             where the object resides. For more information, see arns.
55              
56              
57              
58             =head2 FacetFilter => L<Paws::CloudDirectory::SchemaFacet>
59              
60             Used to filter the list of object attributes that are associated with a
61             certain facet.
62              
63              
64              
65             =head2 MaxResults => Int
66              
67             The maximum number of items to be retrieved in a single call. This is
68             an approximate number.
69              
70              
71              
72             =head2 NextToken => Str
73              
74             The pagination token.
75              
76              
77              
78             =head2 B<REQUIRED> ObjectReference => L<Paws::CloudDirectory::ObjectReference>
79              
80             The reference that identifies the object whose attributes will be
81             listed.
82              
83              
84              
85              
86             =head1 SEE ALSO
87              
88             This class forms part of L<Paws>, documenting arguments for method ListObjectAttributes in L<Paws::CloudDirectory>
89              
90             =head1 BUGS and CONTRIBUTIONS
91              
92             The source code is located here: https://github.com/pplu/aws-sdk-perl
93              
94             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
95              
96             =cut
97