Class: Aws::CodeGuruProfiler::Types::Recommendation
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeGuruProfiler::Types::Recommendation
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codeguruprofiler/types.rb
Overview
A potential improvement that was found from analyzing the profiling data.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#all_matches_count ⇒ Integer
How many different places in the profile graph triggered a match.
-
#all_matches_sum ⇒ Float
How much of the total sample count is potentially affected.
-
#end_time ⇒ Time
End time of the profile that was used by this analysis.
-
#pattern ⇒ Types::Pattern
The pattern that analysis recognized in the profile to make this recommendation.
-
#start_time ⇒ Time
The start time of the profile that was used by this analysis.
-
#top_matches ⇒ Array<Types::Match>
List of the matches with most impact.
Instance Attribute Details
#all_matches_count ⇒ Integer
How many different places in the profile graph triggered a match.
1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 |
# File 'lib/aws-sdk-codeguruprofiler/types.rb', line 1698 class Recommendation < Struct.new( :all_matches_count, :all_matches_sum, :end_time, :pattern, :start_time, :top_matches) SENSITIVE = [] include Aws::Structure end |
#all_matches_sum ⇒ Float
How much of the total sample count is potentially affected.
1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 |
# File 'lib/aws-sdk-codeguruprofiler/types.rb', line 1698 class Recommendation < Struct.new( :all_matches_count, :all_matches_sum, :end_time, :pattern, :start_time, :top_matches) SENSITIVE = [] include Aws::Structure end |
#end_time ⇒ Time
End time of the profile that was used by this analysis. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z represents 1 millisecond past June 1, 2020 1:15:02 PM UTC.
1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 |
# File 'lib/aws-sdk-codeguruprofiler/types.rb', line 1698 class Recommendation < Struct.new( :all_matches_count, :all_matches_sum, :end_time, :pattern, :start_time, :top_matches) SENSITIVE = [] include Aws::Structure end |
#pattern ⇒ Types::Pattern
The pattern that analysis recognized in the profile to make this recommendation.
1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 |
# File 'lib/aws-sdk-codeguruprofiler/types.rb', line 1698 class Recommendation < Struct.new( :all_matches_count, :all_matches_sum, :end_time, :pattern, :start_time, :top_matches) SENSITIVE = [] include Aws::Structure end |
#start_time ⇒ Time
The start time of the profile that was used by this analysis. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z represents 1 millisecond past June 1, 2020 1:15:02 PM UTC.
1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 |
# File 'lib/aws-sdk-codeguruprofiler/types.rb', line 1698 class Recommendation < Struct.new( :all_matches_count, :all_matches_sum, :end_time, :pattern, :start_time, :top_matches) SENSITIVE = [] include Aws::Structure end |
#top_matches ⇒ Array<Types::Match>
List of the matches with most impact.
1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 |
# File 'lib/aws-sdk-codeguruprofiler/types.rb', line 1698 class Recommendation < Struct.new( :all_matches_count, :all_matches_sum, :end_time, :pattern, :start_time, :top_matches) SENSITIVE = [] include Aws::Structure end |