Class: Aws::SSM::Types::ListNodesResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::ListNodesResult
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ssm/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
The token to use when requesting the next set of items.
-
#nodes ⇒ Array<Types::Node>
A list of managed nodes that match the specified filter criteria.
Instance Attribute Details
#next_token ⇒ String
The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.
12101 12102 12103 12104 12105 12106 |
# File 'lib/aws-sdk-ssm/types.rb', line 12101 class ListNodesResult < Struct.new( :nodes, :next_token) SENSITIVE = [] include Aws::Structure end |
#nodes ⇒ Array<Types::Node>
A list of managed nodes that match the specified filter criteria.
12101 12102 12103 12104 12105 12106 |
# File 'lib/aws-sdk-ssm/types.rb', line 12101 class ListNodesResult < Struct.new( :nodes, :next_token) SENSITIVE = [] include Aws::Structure end |