Class: Aws::Transfer::Types::ListProfilesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::ListProfilesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-transfer/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of profiles to return.
-
#next_token ⇒ String
When there are additional results that were not returned, a ‘NextToken` parameter is returned.
-
#profile_type ⇒ String
Indicates whether to list only ‘LOCAL` type profiles or only `PARTNER` type profiles.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of profiles to return.
3965 3966 3967 3968 3969 3970 3971 |
# File 'lib/aws-sdk-transfer/types.rb', line 3965 class ListProfilesRequest < Struct.new( :max_results, :next_token, :profile_type) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
When there are additional results that were not returned, a ‘NextToken` parameter is returned. You can use that value for a subsequent call to `ListProfiles` to continue listing results.
3965 3966 3967 3968 3969 3970 3971 |
# File 'lib/aws-sdk-transfer/types.rb', line 3965 class ListProfilesRequest < Struct.new( :max_results, :next_token, :profile_type) SENSITIVE = [] include Aws::Structure end |
#profile_type ⇒ String
Indicates whether to list only ‘LOCAL` type profiles or only `PARTNER` type profiles. If not supplied in the request, the command lists all types of profiles.
3965 3966 3967 3968 3969 3970 3971 |
# File 'lib/aws-sdk-transfer/types.rb', line 3965 class ListProfilesRequest < Struct.new( :max_results, :next_token, :profile_type) SENSITIVE = [] include Aws::Structure end |