File Coverage

blib/lib/Paws/Discovery/CustomerConnectorInfo.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::Discovery::CustomerConnectorInfo;
2 1     1   590 use Moose;
  1         3  
  1         7  
3             has ActiveConnectors => (is => 'ro', isa => 'Int', request_name => 'activeConnectors', traits => ['NameInRequest'], required => 1);
4             has BlackListedConnectors => (is => 'ro', isa => 'Int', request_name => 'blackListedConnectors', traits => ['NameInRequest'], required => 1);
5             has HealthyConnectors => (is => 'ro', isa => 'Int', request_name => 'healthyConnectors', traits => ['NameInRequest'], required => 1);
6             has ShutdownConnectors => (is => 'ro', isa => 'Int', request_name => 'shutdownConnectors', traits => ['NameInRequest'], required => 1);
7             has TotalConnectors => (is => 'ro', isa => 'Int', request_name => 'totalConnectors', traits => ['NameInRequest'], required => 1);
8             has UnhealthyConnectors => (is => 'ro', isa => 'Int', request_name => 'unhealthyConnectors', traits => ['NameInRequest'], required => 1);
9             has UnknownConnectors => (is => 'ro', isa => 'Int', request_name => 'unknownConnectors', traits => ['NameInRequest'], required => 1);
10             1;
11              
12             ### main pod documentation begin ###
13              
14             =head1 NAME
15              
16             Paws::Discovery::CustomerConnectorInfo
17              
18             =head1 USAGE
19              
20             This class represents one of two things:
21              
22             =head3 Arguments in a call to a service
23              
24             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
25             Each attribute should be used as a named argument in the calls that expect this type of object.
26              
27             As an example, if Att1 is expected to be a Paws::Discovery::CustomerConnectorInfo object:
28              
29             $service_obj->Method(Att1 => { ActiveConnectors => $value, ..., UnknownConnectors => $value });
30              
31             =head3 Results returned from an API call
32              
33             Use accessors for each attribute. If Att1 is expected to be an Paws::Discovery::CustomerConnectorInfo object:
34              
35             $result = $service_obj->Method(...);
36             $result->Att1->ActiveConnectors
37              
38             =head1 DESCRIPTION
39              
40             Inventory data for installed discovery connectors.
41              
42             =head1 ATTRIBUTES
43              
44              
45             =head2 B<REQUIRED> ActiveConnectors => Int
46              
47             Number of active discovery connectors.
48              
49              
50             =head2 B<REQUIRED> BlackListedConnectors => Int
51              
52             Number of blacklisted discovery connectors.
53              
54              
55             =head2 B<REQUIRED> HealthyConnectors => Int
56              
57             Number of healthy discovery connectors.
58              
59              
60             =head2 B<REQUIRED> ShutdownConnectors => Int
61              
62             Number of discovery connectors with status SHUTDOWN,
63              
64              
65             =head2 B<REQUIRED> TotalConnectors => Int
66              
67             Total number of discovery connectors.
68              
69              
70             =head2 B<REQUIRED> UnhealthyConnectors => Int
71              
72             Number of unhealthy discovery connectors.
73              
74              
75             =head2 B<REQUIRED> UnknownConnectors => Int
76              
77             Number of unknown discovery connectors.
78              
79              
80              
81             =head1 SEE ALSO
82              
83             This class forms part of L<Paws>, describing an object used in L<Paws::Discovery>
84              
85             =head1 BUGS and CONTRIBUTIONS
86              
87             The source code is located here: https://github.com/pplu/aws-sdk-perl
88              
89             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
90              
91             =cut
92