RecommendationSummary

public struct RecommendationSummary : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • A description of the recommendation generated by CodeGuru Reviewer for the lines of code between the start line and the end line.

    Declaration

    Swift

    public let description: String?
  • Last line where the recommendation is applicable in the source commit or source branch. For a single line comment the start line and end line values are the same.

    Declaration

    Swift

    public let endLine: Int?
  • Name of the file on which a recommendation is provided.

    Declaration

    Swift

    public let filePath: String?
  • The recommendation ID that can be used to track the provided recommendations. Later on it can be used to collect the feedback.

    Declaration

    Swift

    public let recommendationId: String?
  • Start line from where the recommendation is applicable in the source commit or source branch.

    Declaration

    Swift

    public let startLine: Int?
  • Undocumented

    Declaration

    Swift

    public init(description: String? = nil, endLine: Int? = nil, filePath: String? = nil, recommendationId: String? = nil, startLine: Int? = nil)