Class: Aws::Transfer::Types::ListServersResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::ListServersResponse
- Defined in:
- gems/aws-sdk-transfer/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
ListServersoperation, aNextTokenparameter 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.
4916 4917 4918 4919 4920 4921 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4916 class ListServersResponse < Struct.new( :next_token, :servers) SENSITIVE = [] include Aws::Structure end |
#servers ⇒ Array<Types::ListedServer>
An array of servers that were listed.
4916 4917 4918 4919 4920 4921 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4916 class ListServersResponse < Struct.new( :next_token, :servers) SENSITIVE = [] include Aws::Structure end |