Class: Aws::ApplicationInsights::Types::ListProblemsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationInsights::Types::ListProblemsRequest
- Defined in:
- gems/aws-sdk-applicationinsights/lib/aws-sdk-applicationinsights/types.rb
Overview
When making an API call, you may pass ListProblemsRequest data as a hash:
{
resource_group_name: "ResourceGroupName",
start_time: Time.now,
end_time: Time.now,
max_results: 1,
next_token: "PaginationToken",
component_name: "ComponentName",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#component_name ⇒ String
-
#end_time ⇒ Time
The time when the problem ended, in epoch seconds.
-
#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.
-
#start_time ⇒ Time
The time when the problem was detected, in epoch seconds.
Instance Attribute Details
#component_name ⇒ String
1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 |
# File 'gems/aws-sdk-applicationinsights/lib/aws-sdk-applicationinsights/types.rb', line 1118 class ListProblemsRequest < Struct.new( :resource_group_name, :start_time, :end_time, :max_results, :next_token, :component_name) SENSITIVE = [] include Aws::Structure end |
#end_time ⇒ Time
The time when the problem ended, in epoch seconds. If not specified, problems within the past seven days are returned.
1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 |
# File 'gems/aws-sdk-applicationinsights/lib/aws-sdk-applicationinsights/types.rb', line 1118 class ListProblemsRequest < Struct.new( :resource_group_name, :start_time, :end_time, :max_results, :next_token, :component_name) SENSITIVE = [] include Aws::Structure end |
#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.
1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 |
# File 'gems/aws-sdk-applicationinsights/lib/aws-sdk-applicationinsights/types.rb', line 1118 class ListProblemsRequest < Struct.new( :resource_group_name, :start_time, :end_time, :max_results, :next_token, :component_name) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token to request the next page of results.
1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 |
# File 'gems/aws-sdk-applicationinsights/lib/aws-sdk-applicationinsights/types.rb', line 1118 class ListProblemsRequest < Struct.new( :resource_group_name, :start_time, :end_time, :max_results, :next_token, :component_name) SENSITIVE = [] include Aws::Structure end |
#resource_group_name ⇒ String
The name of the resource group.
1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 |
# File 'gems/aws-sdk-applicationinsights/lib/aws-sdk-applicationinsights/types.rb', line 1118 class ListProblemsRequest < Struct.new( :resource_group_name, :start_time, :end_time, :max_results, :next_token, :component_name) SENSITIVE = [] include Aws::Structure end |
#start_time ⇒ Time
The time when the problem was detected, in epoch seconds. If you don't specify a time frame for the request, problems within the past seven days are returned.
1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 |
# File 'gems/aws-sdk-applicationinsights/lib/aws-sdk-applicationinsights/types.rb', line 1118 class ListProblemsRequest < Struct.new( :resource_group_name, :start_time, :end_time, :max_results, :next_token, :component_name) SENSITIVE = [] include Aws::Structure end |