Class: Aws::Transfer::Types::ListServersResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::ListServersResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-transfer/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
When you can get additional results from the ‘ListServers` operation, a `NextToken` parameter is returned in the output.
-
#servers ⇒ Array<Types::ListedServer>
An array of servers that were listed.
Instance Attribute Details
#next_token ⇒ String
When you can get additional results from the ‘ListServers` operation, a `NextToken` parameter is returned in the output. In a following command, you can pass in the `NextToken` parameter to continue listing additional servers.
4066 4067 4068 4069 4070 4071 |
# File 'lib/aws-sdk-transfer/types.rb', line 4066 class ListServersResponse < Struct.new( :next_token, :servers) SENSITIVE = [] include Aws::Structure end |
#servers ⇒ Array<Types::ListedServer>
An array of servers that were listed.
4066 4067 4068 4069 4070 4071 |
# File 'lib/aws-sdk-transfer/types.rb', line 4066 class ListServersResponse < Struct.new( :next_token, :servers) SENSITIVE = [] include Aws::Structure end |