File Coverage

blib/lib/Paws/Glue/Connection.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::Glue::Connection;
2 1     1   471 use Moose;
  1         3  
  1         8  
3             has ConnectionProperties => (is => 'ro', isa => 'Paws::Glue::ConnectionProperties');
4             has ConnectionType => (is => 'ro', isa => 'Str');
5             has CreationTime => (is => 'ro', isa => 'Str');
6             has Description => (is => 'ro', isa => 'Str');
7             has LastUpdatedBy => (is => 'ro', isa => 'Str');
8             has LastUpdatedTime => (is => 'ro', isa => 'Str');
9             has MatchCriteria => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
10             has Name => (is => 'ro', isa => 'Str');
11             has PhysicalConnectionRequirements => (is => 'ro', isa => 'Paws::Glue::PhysicalConnectionRequirements');
12             1;
13              
14             ### main pod documentation begin ###
15              
16             =head1 NAME
17              
18             Paws::Glue::Connection
19              
20             =head1 USAGE
21              
22             This class represents one of two things:
23              
24             =head3 Arguments in a call to a service
25              
26             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
27             Each attribute should be used as a named argument in the calls that expect this type of object.
28              
29             As an example, if Att1 is expected to be a Paws::Glue::Connection object:
30              
31             $service_obj->Method(Att1 => { ConnectionProperties => $value, ..., PhysicalConnectionRequirements => $value });
32              
33             =head3 Results returned from an API call
34              
35             Use accessors for each attribute. If Att1 is expected to be an Paws::Glue::Connection object:
36              
37             $result = $service_obj->Method(...);
38             $result->Att1->ConnectionProperties
39              
40             =head1 DESCRIPTION
41              
42             Defines a connection to a data source.
43              
44             =head1 ATTRIBUTES
45              
46              
47             =head2 ConnectionProperties => L<Paws::Glue::ConnectionProperties>
48              
49             A list of key-value pairs used as parameters for this connection.
50              
51              
52             =head2 ConnectionType => Str
53              
54             The type of the connection.
55              
56              
57             =head2 CreationTime => Str
58              
59             The time this connection definition was created.
60              
61              
62             =head2 Description => Str
63              
64             Description of the connection.
65              
66              
67             =head2 LastUpdatedBy => Str
68              
69             The user, group or role that last updated this connection definition.
70              
71              
72             =head2 LastUpdatedTime => Str
73              
74             The last time this connection definition was updated.
75              
76              
77             =head2 MatchCriteria => ArrayRef[Str|Undef]
78              
79             A list of criteria that can be used in selecting this connection.
80              
81              
82             =head2 Name => Str
83              
84             The name of the connection definition.
85              
86              
87             =head2 PhysicalConnectionRequirements => L<Paws::Glue::PhysicalConnectionRequirements>
88              
89             A map of physical connection requirements, such as VPC and
90             SecurityGroup, needed for making this connection successfully.
91              
92              
93              
94             =head1 SEE ALSO
95              
96             This class forms part of L<Paws>, describing an object used in L<Paws::Glue>
97              
98             =head1 BUGS and CONTRIBUTIONS
99              
100             The source code is located here: https://github.com/pplu/aws-sdk-perl
101              
102             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
103              
104             =cut
105