Class: Aws::CodeGuruProfiler::Types::Recommendation

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-codeguruprofiler/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

Instance Attribute Details

#all_matches_countInteger

How many different places in the profile graph triggered a match.

Returns:

  • (Integer)


1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
# File 'gems/aws-sdk-codeguruprofiler/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_sumFloat

How much of the total sample count is potentially affected.

Returns:

  • (Float)


1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
# File 'gems/aws-sdk-codeguruprofiler/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_timeTime

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.

Returns:

  • (Time)


1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
# File 'gems/aws-sdk-codeguruprofiler/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

#patternTypes::Pattern

The pattern that analysis recognized in the profile to make this recommendation.

Returns:



1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
# File 'gems/aws-sdk-codeguruprofiler/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_timeTime

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.

Returns:

  • (Time)


1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
# File 'gems/aws-sdk-codeguruprofiler/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_matchesArray<Types::Match>

List of the matches with most impact.

Returns:



1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
# File 'gems/aws-sdk-codeguruprofiler/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