Class: Aws::ApplicationDiscoveryService::Types::ListServerNeighborsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationDiscoveryService::Types::ListServerNeighborsResponse
- Defined in:
- gems/aws-sdk-applicationdiscoveryservice/lib/aws-sdk-applicationdiscoveryservice/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#known_dependency_count ⇒ Integer
Count of distinct servers that are one hop away from the given server.
-
#neighbors ⇒ Array<Types::NeighborConnectionDetail>
List of distinct servers that are one hop away from the given server.
-
#next_token ⇒ String
Token to retrieve the next set of results.
Instance Attribute Details
#known_dependency_count ⇒ Integer
Count of distinct servers that are one hop away from the given server.
1731 1732 1733 1734 1735 1736 1737 |
# File 'gems/aws-sdk-applicationdiscoveryservice/lib/aws-sdk-applicationdiscoveryservice/types.rb', line 1731 class ListServerNeighborsResponse < Struct.new( :neighbors, :next_token, :known_dependency_count) SENSITIVE = [] include Aws::Structure end |
#neighbors ⇒ Array<Types::NeighborConnectionDetail>
List of distinct servers that are one hop away from the given server.
1731 1732 1733 1734 1735 1736 1737 |
# File 'gems/aws-sdk-applicationdiscoveryservice/lib/aws-sdk-applicationdiscoveryservice/types.rb', line 1731 class ListServerNeighborsResponse < Struct.new( :neighbors, :next_token, :known_dependency_count) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
Token to retrieve the next set of results. For example, if you
specified 100 IDs for
ListServerNeighborsRequest$neighborConfigurationIds
but set
ListServerNeighborsRequest$maxResults
to 10, you received a set of
10 results along with this token. Use this token in the next query
to retrieve the next set of 10.
1731 1732 1733 1734 1735 1736 1737 |
# File 'gems/aws-sdk-applicationdiscoveryservice/lib/aws-sdk-applicationdiscoveryservice/types.rb', line 1731 class ListServerNeighborsResponse < Struct.new( :neighbors, :next_token, :known_dependency_count) SENSITIVE = [] include Aws::Structure end |