This section provides documentation for the Amazon CodeGuru Reviewer API operations. CodeGuru Reviewer is a service that uses program analysis and machine learning to detect potential defects that are difficult for developers to find and recommends fixes in your Java and Python code.
By proactively detecting and providing recommendations for addressing code defects and implementing best practices, CodeGuru Reviewer improves the overall quality and maintainability of your code base during the code review stage. For more information about CodeGuru Reviewer, see the AmazonCodeGuru Reviewer User Guide.
credentials: Optional credentials shorthand for the config parameter
creds :
access_key_id : AWS access key ID
secret_access_key : AWS secret access key
session_token : AWS temporary session token
profile : The name of a profile to use. If not given, then the default profile is used.
anonymous : Set anonymous credentials.
endpoint: Optional shorthand for complete URL to use for the constructed client.
region: Optional shorthand for AWS Region used in instantiating the client.
Returns
A client for the service. You can call the service's operations using syntax like svc$operation(...), where svc is the name you've assigned to the client. The available operations are listed in the Operations section.
Use to associate an Amazon Web Services CodeCommit repository or a repository managed by Amazon Web Services CodeStar Connections with Amazon CodeGuru Reviewer
create_code_review
Use to create a code review with a CodeReviewType of RepositoryAnalysis
describe_code_review
Returns the metadata associated with the code review along with its status
describe_recommendation_feedback
Describes the customer feedback for a CodeGuru Reviewer recommendation
describe_repository_association
Returns a RepositoryAssociation object that contains information about the requested repository association
disassociate_repository
Removes the association between Amazon CodeGuru Reviewer and a repository
list_code_reviews
Lists all the code reviews that the customer has created in the past 90 days
list_recommendation_feedback
Returns a list of RecommendationFeedbackSummary objects that contain customer recommendation feedback for all CodeGuru Reviewer users
list_recommendations
Returns the list of all recommendations for a completed code review
list_repository_associations
Returns a list of RepositoryAssociationSummary objects that contain summary information about a repository association
list_tags_for_resource
Returns the list of tags associated with an associated repository resource
put_recommendation_feedback
Stores customer feedback for a CodeGuru Reviewer recommendation
tag_resource
Adds one or more tags to an associated repository
untag_resource
Removes a tag from an associated repository
Examples
## Not run:svc <- codegurureviewer()svc$associate_repository( Foo =123)## End(Not run)