Class: Aws::ApplicationInsights::Types::ListApplicationsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationInsights::Types::ListApplicationsRequest
- Defined in:
- gems/aws-sdk-applicationinsights/lib/aws-sdk-applicationinsights/types.rb
Overview
Note:
When making an API call, you may pass ListApplicationsRequest data as a hash:
{
max_results: 1,
next_token: "PaginationToken",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of results to return in a single call.
-
#next_token ⇒ String
The token to request the next page of results.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of results to return in a single call. To
retrieve the remaining results, make another call with the returned
NextToken
value.
800 801 802 803 804 805 |
# File 'gems/aws-sdk-applicationinsights/lib/aws-sdk-applicationinsights/types.rb', line 800 class ListApplicationsRequest < Struct.new( :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token to request the next page of results.
800 801 802 803 804 805 |
# File 'gems/aws-sdk-applicationinsights/lib/aws-sdk-applicationinsights/types.rb', line 800 class ListApplicationsRequest < Struct.new( :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |