File Coverage

blib/lib/Paws/ELB/PolicyAttributeTypeDescription.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             package Paws::ELB::PolicyAttributeTypeDescription;
2 1     1   664 use Moose;
  1     1   3  
  1         11  
  1         821  
  1         4  
  1         9  
3             has AttributeName => (is => 'ro', isa => 'Str');
4             has AttributeType => (is => 'ro', isa => 'Str');
5             has Cardinality => (is => 'ro', isa => 'Str');
6             has DefaultValue => (is => 'ro', isa => 'Str');
7             has Description => (is => 'ro', isa => 'Str');
8             1;
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::ELB::PolicyAttributeTypeDescription
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::ELB::PolicyAttributeTypeDescription object:
26              
27             $service_obj->Method(Att1 => { AttributeName => $value, ..., Description => $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::ELB::PolicyAttributeTypeDescription object:
32              
33             $result = $service_obj->Method(...);
34             $result->Att1->AttributeName
35              
36             =head1 DESCRIPTION
37              
38             Information about a policy attribute type.
39              
40             =head1 ATTRIBUTES
41              
42              
43             =head2 AttributeName => Str
44              
45             The name of the attribute.
46              
47              
48             =head2 AttributeType => Str
49              
50             The type of the attribute. For example, C<Boolean> or C<Integer>.
51              
52              
53             =head2 Cardinality => Str
54              
55             The cardinality of the attribute.
56              
57             Valid values:
58              
59             =over
60              
61             =item *
62              
63             ONE(1) : Single value required
64              
65             =item *
66              
67             ZERO_OR_ONE(0..1) : Up to one value is allowed
68              
69             =item *
70              
71             ZERO_OR_MORE(0..*) : Optional. Multiple values are allowed
72              
73             =item *
74              
75             ONE_OR_MORE(1..*0) : Required. Multiple values are allowed
76              
77             =back
78              
79              
80              
81             =head2 DefaultValue => Str
82              
83             The default value of the attribute, if applicable.
84              
85              
86             =head2 Description => Str
87              
88             A description of the attribute.
89              
90              
91              
92             =head1 SEE ALSO
93              
94             This class forms part of L<Paws>, describing an object used in L<Paws::ELB>
95              
96             =head1 BUGS and CONTRIBUTIONS
97              
98             The source code is located here: https://github.com/pplu/aws-sdk-perl
99              
100             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
101              
102             =cut
103