File Coverage

blib/lib/Paws/Discovery/ListServerNeighborsResponse.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::Discovery::ListServerNeighborsResponse;
3 1     1   557 use Moose;
  1         3  
  1         9  
4             has KnownDependencyCount => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'knownDependencyCount' );
5             has Neighbors => (is => 'ro', isa => 'ArrayRef[Paws::Discovery::NeighborConnectionDetail]', traits => ['NameInRequest'], request_name => 'neighbors' , required => 1);
6             has NextToken => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'nextToken' );
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::Discovery::ListServerNeighborsResponse
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 KnownDependencyCount => Int
20              
21             Count of distinct servers that are one hop away from the given server.
22              
23              
24             =head2 B<REQUIRED> Neighbors => ArrayRef[L<Paws::Discovery::NeighborConnectionDetail>]
25              
26             List of distinct servers that are one hop away from the given server.
27              
28              
29             =head2 NextToken => Str
30              
31             Token to retrieve the next set of results. For example, if you
32             specified 100 IDs for
33             C<ListServerNeighborsRequest$neighborConfigurationIds> but set
34             C<ListServerNeighborsRequest$maxResults> to 10, you received a set of
35             10 results along with this token. Use this token in the next query to
36             retrieve the next set of 10.
37              
38              
39             =head2 _request_id => Str
40              
41              
42             =cut
43              
44             1;