Class: Aws::Transfer::Types::ListAccessesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::ListAccessesResponse
- Defined in:
- gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#accesses ⇒ Array<Types::ListedAccess>
Returns the accesses and their properties for the
ServerId
value that you specify. -
#next_token ⇒ String
When you can get additional results from the
ListAccesses
call, aNextToken
parameter is returned in the output. -
#server_id ⇒ String
A system-assigned unique identifier for a server that has users assigned to it.
Instance Attribute Details
#accesses ⇒ Array<Types::ListedAccess>
Returns the accesses and their properties for the ServerId
value
that you specify.
3908 3909 3910 3911 3912 3913 3914 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3908 class ListAccessesResponse < Struct.new( :next_token, :server_id, :accesses) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
When you can get additional results from the ListAccesses
call, a
NextToken
parameter is returned in the output. You can then pass
in a subsequent command to the NextToken
parameter to continue
listing additional accesses.
3908 3909 3910 3911 3912 3913 3914 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3908 class ListAccessesResponse < Struct.new( :next_token, :server_id, :accesses) SENSITIVE = [] include Aws::Structure end |
#server_id ⇒ String
A system-assigned unique identifier for a server that has users assigned to it.
3908 3909 3910 3911 3912 3913 3914 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3908 class ListAccessesResponse < Struct.new( :next_token, :server_id, :accesses) SENSITIVE = [] include Aws::Structure end |