File Coverage

blib/lib/Paws/SMS/Connector.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::SMS::Connector;
2 1     1   306 use Moose;
  1         2  
  1         5  
3             has AssociatedOn => (is => 'ro', isa => 'Str', request_name => 'associatedOn', traits => ['NameInRequest']);
4             has CapabilityList => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'item', request_name => 'capabilityList', traits => ['NameInRequest','NameInRequest']);
5             has ConnectorId => (is => 'ro', isa => 'Str', request_name => 'connectorId', traits => ['NameInRequest']);
6             has IpAddress => (is => 'ro', isa => 'Str', request_name => 'ipAddress', traits => ['NameInRequest']);
7             has MacAddress => (is => 'ro', isa => 'Str', request_name => 'macAddress', traits => ['NameInRequest']);
8             has Status => (is => 'ro', isa => 'Str', request_name => 'status', traits => ['NameInRequest']);
9             has Version => (is => 'ro', isa => 'Str', request_name => 'version', traits => ['NameInRequest']);
10             has VmManagerId => (is => 'ro', isa => 'Str', request_name => 'vmManagerId', traits => ['NameInRequest']);
11             has VmManagerName => (is => 'ro', isa => 'Str', request_name => 'vmManagerName', traits => ['NameInRequest']);
12             has VmManagerType => (is => 'ro', isa => 'Str', request_name => 'vmManagerType', traits => ['NameInRequest']);
13             1;
14              
15             ### main pod documentation begin ###
16              
17             =head1 NAME
18              
19             Paws::SMS::Connector
20              
21             =head1 USAGE
22              
23             This class represents one of two things:
24              
25             =head3 Arguments in a call to a service
26              
27             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
28             Each attribute should be used as a named argument in the calls that expect this type of object.
29              
30             As an example, if Att1 is expected to be a Paws::SMS::Connector object:
31              
32             $service_obj->Method(Att1 => { AssociatedOn => $value, ..., VmManagerType => $value });
33              
34             =head3 Results returned from an API call
35              
36             Use accessors for each attribute. If Att1 is expected to be an Paws::SMS::Connector object:
37              
38             $result = $service_obj->Method(...);
39             $result->Att1->AssociatedOn
40              
41             =head1 DESCRIPTION
42              
43             Object representing a Connector
44              
45             =head1 ATTRIBUTES
46              
47              
48             =head2 AssociatedOn => Str
49              
50            
51              
52              
53             =head2 CapabilityList => ArrayRef[Str|Undef]
54              
55            
56              
57              
58             =head2 ConnectorId => Str
59              
60            
61              
62              
63             =head2 IpAddress => Str
64              
65            
66              
67              
68             =head2 MacAddress => Str
69              
70            
71              
72              
73             =head2 Status => Str
74              
75            
76              
77              
78             =head2 Version => Str
79              
80            
81              
82              
83             =head2 VmManagerId => Str
84              
85            
86              
87              
88             =head2 VmManagerName => Str
89              
90            
91              
92              
93             =head2 VmManagerType => Str
94              
95            
96              
97              
98              
99             =head1 SEE ALSO
100              
101             This class forms part of L<Paws>, describing an object used in L<Paws::SMS>
102              
103             =head1 BUGS and CONTRIBUTIONS
104              
105             The source code is located here: https://github.com/pplu/aws-sdk-perl
106              
107             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
108              
109             =cut
110