Class: Aws::ApplicationInsights::Types::ListComponentsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationInsights::Types::ListComponentsRequest
- Defined in:
- gems/aws-sdk-applicationinsights/lib/aws-sdk-applicationinsights/types.rb
Overview
Note:
When making an API call, you may pass ListComponentsRequest data as a hash:
{
resource_group_name: "ResourceGroupName", # required
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.
-
#resource_group_name ⇒ String
The name of the resource group.
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.
850 851 852 853 854 855 856 |
# File 'gems/aws-sdk-applicationinsights/lib/aws-sdk-applicationinsights/types.rb', line 850 class ListComponentsRequest < Struct.new( :resource_group_name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token to request the next page of results.
850 851 852 853 854 855 856 |
# File 'gems/aws-sdk-applicationinsights/lib/aws-sdk-applicationinsights/types.rb', line 850 class ListComponentsRequest < Struct.new( :resource_group_name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#resource_group_name ⇒ String
The name of the resource group.
850 851 852 853 854 855 856 |
# File 'gems/aws-sdk-applicationinsights/lib/aws-sdk-applicationinsights/types.rb', line 850 class ListComponentsRequest < Struct.new( :resource_group_name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |