line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::MachineLearning::RealtimeEndpointInfo; |
2
|
1
|
|
|
1
|
|
418
|
use Moose; |
|
1
|
|
|
1
|
|
4
|
|
|
1
|
|
|
|
|
7
|
|
|
1
|
|
|
|
|
434
|
|
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
3
|
|
|
|
|
|
|
has CreatedAt => (is => 'ro', isa => 'Str'); |
4
|
|
|
|
|
|
|
has EndpointStatus => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has EndpointUrl => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has PeakRequestsPerSecond => (is => 'ro', isa => 'Int'); |
7
|
|
|
|
|
|
|
1; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
### main pod documentation begin ### |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Paws::MachineLearning::RealtimeEndpointInfo |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 USAGE |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
This class represents one of two things: |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
22
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::MachineLearning::RealtimeEndpointInfo object: |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { CreatedAt => $value, ..., PeakRequestsPerSecond => $value }); |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head3 Results returned from an API call |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::MachineLearning::RealtimeEndpointInfo object: |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
33
|
|
|
|
|
|
|
$result->Att1->CreatedAt |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 DESCRIPTION |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
Describes the real-time endpoint information for an C<MLModel>. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head2 CreatedAt => Str |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
The time that the request to create the real-time endpoint for the |
45
|
|
|
|
|
|
|
C<MLModel> was received. The time is expressed in epoch time. |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head2 EndpointStatus => Str |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
The current status of the real-time endpoint for the C<MLModel>. This |
51
|
|
|
|
|
|
|
element can have one of the following values: |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=over |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=item * C<NONE> - Endpoint does not exist or was previously deleted. |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=item * C<READY> - Endpoint is ready to be used for real-time |
58
|
|
|
|
|
|
|
predictions. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=item * C<UPDATING> - Updating/creating the endpoint. |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=back |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=head2 EndpointUrl => Str |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
The URI that specifies where to send real-time prediction requests for |
69
|
|
|
|
|
|
|
the C<MLModel>. |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
The application must wait until the real-time endpoint is ready before |
72
|
|
|
|
|
|
|
using this URI. |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
=head2 PeakRequestsPerSecond => Int |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
The maximum processing rate for the real-time endpoint for C<MLModel>, |
78
|
|
|
|
|
|
|
measured in incoming requests per second. |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
=head1 SEE ALSO |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::MachineLearning> |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
=cut |
93
|
|
|
|
|
|
|
|