Class: Aws::Transfer::Types::ListServersResponse

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-transfer/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

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.

Returns:

  • (String)


3952
3953
3954
3955
3956
3957
# File 'lib/aws-sdk-transfer/types.rb', line 3952

class ListServersResponse < Struct.new(
  :next_token,
  :servers)
  SENSITIVE = []
  include Aws::Structure
end

#serversArray<Types::ListedServer>

An array of servers that were listed.

Returns:



3952
3953
3954
3955
3956
3957
# File 'lib/aws-sdk-transfer/types.rb', line 3952

class ListServersResponse < Struct.new(
  :next_token,
  :servers)
  SENSITIVE = []
  include Aws::Structure
end