File Coverage

blib/lib/Paws/Glue/DevEndpoint.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::DevEndpoint;
2 1     1   316 use Moose;
  1         2  
  1         6  
3             has AvailabilityZone => (is => 'ro', isa => 'Str');
4             has CreatedTimestamp => (is => 'ro', isa => 'Str');
5             has EndpointName => (is => 'ro', isa => 'Str');
6             has ExtraJarsS3Path => (is => 'ro', isa => 'Str');
7             has ExtraPythonLibsS3Path => (is => 'ro', isa => 'Str');
8             has FailureReason => (is => 'ro', isa => 'Str');
9             has LastModifiedTimestamp => (is => 'ro', isa => 'Str');
10             has LastUpdateStatus => (is => 'ro', isa => 'Str');
11             has NumberOfNodes => (is => 'ro', isa => 'Int');
12             has PublicAddress => (is => 'ro', isa => 'Str');
13             has PublicKey => (is => 'ro', isa => 'Str');
14             has RoleArn => (is => 'ro', isa => 'Str');
15             has SecurityGroupIds => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
16             has Status => (is => 'ro', isa => 'Str');
17             has SubnetId => (is => 'ro', isa => 'Str');
18             has VpcId => (is => 'ro', isa => 'Str');
19             has YarnEndpointAddress => (is => 'ro', isa => 'Str');
20             1;
21              
22             ### main pod documentation begin ###
23              
24             =head1 NAME
25              
26             Paws::Glue::DevEndpoint
27              
28             =head1 USAGE
29              
30             This class represents one of two things:
31              
32             =head3 Arguments in a call to a service
33              
34             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
35             Each attribute should be used as a named argument in the calls that expect this type of object.
36              
37             As an example, if Att1 is expected to be a Paws::Glue::DevEndpoint object:
38              
39             $service_obj->Method(Att1 => { AvailabilityZone => $value, ..., YarnEndpointAddress => $value });
40              
41             =head3 Results returned from an API call
42              
43             Use accessors for each attribute. If Att1 is expected to be an Paws::Glue::DevEndpoint object:
44              
45             $result = $service_obj->Method(...);
46             $result->Att1->AvailabilityZone
47              
48             =head1 DESCRIPTION
49              
50             A development endpoint where a developer can remotely debug ETL
51             scripts.
52              
53             =head1 ATTRIBUTES
54              
55              
56             =head2 AvailabilityZone => Str
57              
58             The AWS availability zone where this DevEndpoint is located.
59              
60              
61             =head2 CreatedTimestamp => Str
62              
63             The point in time at which this DevEndpoint was created.
64              
65              
66             =head2 EndpointName => Str
67              
68             The name of the DevEndpoint.
69              
70              
71             =head2 ExtraJarsS3Path => Str
72              
73             Path to one or more Java Jars in an S3 bucket that should be loaded in
74             your DevEndpoint.
75              
76              
77             =head2 ExtraPythonLibsS3Path => Str
78              
79             Path to one or more Python libraries in an S3 bucket that should be
80             loaded in your DevEndpoint.
81              
82              
83             =head2 FailureReason => Str
84              
85             The reason for a current failure in this DevEndpoint.
86              
87              
88             =head2 LastModifiedTimestamp => Str
89              
90             The point in time at which this DevEndpoint was last modified.
91              
92              
93             =head2 LastUpdateStatus => Str
94              
95             The status of the last update.
96              
97              
98             =head2 NumberOfNodes => Int
99              
100             The number of nodes used by this DevEndpoint.
101              
102              
103             =head2 PublicAddress => Str
104              
105             The public address used by this DevEndpoint.
106              
107              
108             =head2 PublicKey => Str
109              
110             The public key to be used by this DevEndpoint for authentication.
111              
112              
113             =head2 RoleArn => Str
114              
115             The AWS ARN of the IAM role used in this DevEndpoint.
116              
117              
118             =head2 SecurityGroupIds => ArrayRef[Str|Undef]
119              
120             A list of security group identifiers used in this DevEndpoint.
121              
122              
123             =head2 Status => Str
124              
125             The current status of this DevEndpoint.
126              
127              
128             =head2 SubnetId => Str
129              
130             The subnet ID for this DevEndpoint.
131              
132              
133             =head2 VpcId => Str
134              
135             The ID of the virtual private cloud (VPC) used by this DevEndpoint.
136              
137              
138             =head2 YarnEndpointAddress => Str
139              
140             The YARN endpoint address used by this DevEndpoint.
141              
142              
143              
144             =head1 SEE ALSO
145              
146             This class forms part of L<Paws>, describing an object used in L<Paws::Glue>
147              
148             =head1 BUGS and CONTRIBUTIONS
149              
150             The source code is located here: https://github.com/pplu/aws-sdk-perl
151              
152             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
153              
154             =cut
155