File Coverage

blib/lib/Paws/Glue/CreateDevEndpointResponse.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              
2             package Paws::Glue::CreateDevEndpointResponse;
3 1     1   446 use Moose;
  1         2  
  1         9  
4             has AvailabilityZone => (is => 'ro', isa => 'Str');
5             has CreatedTimestamp => (is => 'ro', isa => 'Str');
6             has EndpointName => (is => 'ro', isa => 'Str');
7             has ExtraJarsS3Path => (is => 'ro', isa => 'Str');
8             has ExtraPythonLibsS3Path => (is => 'ro', isa => 'Str');
9             has FailureReason => (is => 'ro', isa => 'Str');
10             has NumberOfNodes => (is => 'ro', isa => 'Int');
11             has RoleArn => (is => 'ro', isa => 'Str');
12             has SecurityGroupIds => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
13             has Status => (is => 'ro', isa => 'Str');
14             has SubnetId => (is => 'ro', isa => 'Str');
15             has VpcId => (is => 'ro', isa => 'Str');
16             has YarnEndpointAddress => (is => 'ro', isa => 'Str');
17              
18             has _request_id => (is => 'ro', isa => 'Str');
19              
20             ### main pod documentation begin ###
21              
22             =head1 NAME
23              
24             Paws::Glue::CreateDevEndpointResponse
25              
26             =head1 ATTRIBUTES
27              
28              
29             =head2 AvailabilityZone => Str
30              
31             The AWS availability zone where this DevEndpoint is located.
32              
33              
34             =head2 CreatedTimestamp => Str
35              
36             The point in time at which this DevEndpoint was created.
37              
38              
39             =head2 EndpointName => Str
40              
41             The name assigned to the new DevEndpoint.
42              
43              
44             =head2 ExtraJarsS3Path => Str
45              
46             Path to one or more Java Jars in an S3 bucket that will be loaded in
47             your DevEndpoint.
48              
49              
50             =head2 ExtraPythonLibsS3Path => Str
51              
52             Path to one or more Python libraries in an S3 bucket that will be
53             loaded in your DevEndpoint.
54              
55              
56             =head2 FailureReason => Str
57              
58             The reason for a current failure in this DevEndpoint.
59              
60              
61             =head2 NumberOfNodes => Int
62              
63             The number of nodes in this DevEndpoint.
64              
65              
66             =head2 RoleArn => Str
67              
68             The AWS ARN of the role assigned to the new DevEndpoint.
69              
70              
71             =head2 SecurityGroupIds => ArrayRef[Str|Undef]
72              
73             The security groups assigned to the new DevEndpoint.
74              
75              
76             =head2 Status => Str
77              
78             The current status of the new DevEndpoint.
79              
80              
81             =head2 SubnetId => Str
82              
83             The subnet ID assigned to the new DevEndpoint.
84              
85              
86             =head2 VpcId => Str
87              
88             The ID of the VPC used by this DevEndpoint.
89              
90              
91             =head2 YarnEndpointAddress => Str
92              
93             The address of the YARN endpoint used by this DevEndpoint.
94              
95              
96             =head2 _request_id => Str
97              
98              
99             =cut
100              
101             1;