Class: Aws::IoTWireless::Types::ListDeviceProfilesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTWireless::Types::ListDeviceProfilesRequest
- Defined in:
- gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb
Overview
Note:
When making an API call, you may pass ListDeviceProfilesRequest data as a hash:
{
next_token: "NextToken",
max_results: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of results to return in this operation.
-
#next_token ⇒ String
To retrieve the next set of results, the
nextToken
value from a previous response; otherwise null to receive the first set of results.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of results to return in this operation.
2914 2915 2916 2917 2918 2919 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 2914 class ListDeviceProfilesRequest < Struct.new( :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
To retrieve the next set of results, the nextToken
value from a
previous response; otherwise null to receive the first set of
results.
2914 2915 2916 2917 2918 2919 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 2914 class ListDeviceProfilesRequest < Struct.new( :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |