Class: Aws::WorkLink::Types::ListDevicesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WorkLink::Types::ListDevicesRequest
- Defined in:
- gems/aws-sdk-worklink/lib/aws-sdk-worklink/types.rb
Overview
Note:
When making an API call, you may pass ListDevicesRequest data as a hash:
{
fleet_arn: "FleetArn", # required
next_token: "NextToken",
max_results: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#fleet_arn ⇒ String
The ARN of the fleet.
-
#max_results ⇒ Integer
The maximum number of results to be included in the next page.
-
#next_token ⇒ String
The pagination token used to retrieve the next page of results for this operation.
Instance Attribute Details
#fleet_arn ⇒ String
The ARN of the fleet.
850 851 852 853 854 855 856 |
# File 'gems/aws-sdk-worklink/lib/aws-sdk-worklink/types.rb', line 850 class ListDevicesRequest < Struct.new( :fleet_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to be included in the next page.
850 851 852 853 854 855 856 |
# File 'gems/aws-sdk-worklink/lib/aws-sdk-worklink/types.rb', line 850 class ListDevicesRequest < Struct.new( :fleet_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The pagination token used to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.
850 851 852 853 854 855 856 |
# File 'gems/aws-sdk-worklink/lib/aws-sdk-worklink/types.rb', line 850 class ListDevicesRequest < Struct.new( :fleet_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |