List Recommendations
codegurureviewer_list_recommendations | R Documentation |
Returns the list of all recommendations for a completed code review¶
Description¶
Returns the list of all recommendations for a completed code review.
Usage¶
Arguments¶
NextToken
Pagination token.
MaxResults
The maximum number of results that are returned per call. The default is 100.
CodeReviewArn
[required] The Amazon Resource Name (ARN) of the CodeReview object.
Value¶
A list with the following syntax:
list(
RecommendationSummaries = list(
list(
FilePath = "string",
RecommendationId = "string",
StartLine = 123,
EndLine = 123,
Description = "string",
RecommendationCategory = "AWSBestPractices"|"AWSCloudFormationIssues"|"DuplicateCode"|"CodeMaintenanceIssues"|"ConcurrencyIssues"|"InputValidations"|"PythonBestPractices"|"JavaBestPractices"|"ResourceLeaks"|"SecurityIssues"|"CodeInconsistencies",
RuleMetadata = list(
RuleId = "string",
RuleName = "string",
ShortDescription = "string",
LongDescription = "string",
RuleTags = list(
"string"
)
),
Severity = "Info"|"Low"|"Medium"|"High"|"Critical"
)
),
NextToken = "string"
)