We announced the upcoming end-of-support for AWS SDK for JavaScript v2.
We recommend that you migrate to AWS SDK for JavaScript v3. For dates, additional details, and information on how to migrate, please refer to the linked announcement.

Class: AWS.CodeGuruReviewer

Inherits:
AWS.Service show all
Identifier:
codegurureviewer
API Version:
2019-09-19
Defined in:
(unknown)

Overview

Constructs a service interface object. Each API operation is exposed as a function on service.

Service Description

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 Amazon CodeGuru Reviewer User Guide.

To improve the security of your CodeGuru Reviewer API calls, you can establish a private connection between your VPC and CodeGuru Reviewer by creating an interface VPC endpoint. For more information, see CodeGuru Reviewer and interface VPC endpoints (Amazon Web Services PrivateLink) in the Amazon CodeGuru Reviewer User Guide.

Sending a Request Using CodeGuruReviewer

var codegurureviewer = new AWS.CodeGuruReviewer();
codegurureviewer.associateRepository(params, function (err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Locking the API Version

In order to ensure that the CodeGuruReviewer object uses this specific API, you can construct the object by passing the apiVersion option to the constructor:

var codegurureviewer = new AWS.CodeGuruReviewer({apiVersion: '2019-09-19'});

You can also set the API version globally in AWS.config.apiVersions using the codegurureviewer service identifier:

AWS.config.apiVersions = {
  codegurureviewer: '2019-09-19',
  // other service API versions
};

var codegurureviewer = new AWS.CodeGuruReviewer();

Version:

  • 2019-09-19

Waiter Resource States

This service supports a list of resource states that can be polled using the waitFor() method. The resource states are:

repositoryAssociationSucceeded, codeReviewCompleted

Constructor Summary collapse

Property Summary collapse

Properties inherited from AWS.Service

apiVersions

Method Summary collapse

Methods inherited from AWS.Service

makeRequest, makeUnauthenticatedRequest, setupRequestListeners, defineService

Constructor Details

new AWS.CodeGuruReviewer(options = {}) ⇒ Object

Constructs a service object. This object has one method for each API operation.

Examples:

Constructing a CodeGuruReviewer object

var codegurureviewer = new AWS.CodeGuruReviewer({apiVersion: '2019-09-19'});

Options Hash (options):

  • params (map)

    An optional map of parameters to bind to every request sent by this service object. For more information on bound parameters, see "Working with Services" in the Getting Started Guide.

  • endpoint (String|AWS.Endpoint)

    The endpoint URI to send requests to. The default endpoint is built from the configured region. The endpoint should be a string like 'https://{service}.{region}.amazonaws.com' or an Endpoint object.

  • accessKeyId (String)

    your AWS access key ID.

  • secretAccessKey (String)

    your AWS secret access key.

  • sessionToken (AWS.Credentials)

    the optional AWS session token to sign requests with.

  • credentials (AWS.Credentials)

    the AWS credentials to sign requests with. You can either specify this object, or specify the accessKeyId and secretAccessKey options directly.

  • credentialProvider (AWS.CredentialProviderChain)

    the provider chain used to resolve credentials if no static credentials property is set.

  • region (String)

    the region to send service requests to. See AWS.CodeGuruReviewer.region for more information.

  • maxRetries (Integer)

    the maximum amount of retries to attempt with a request. See AWS.CodeGuruReviewer.maxRetries for more information.

  • maxRedirects (Integer)

    the maximum amount of redirects to follow with a request. See AWS.CodeGuruReviewer.maxRedirects for more information.

  • sslEnabled (Boolean)

    whether to enable SSL for requests.

  • paramValidation (Boolean|map)

    whether input parameters should be validated against the operation description before sending the request. Defaults to true. Pass a map to enable any of the following specific validation features:

    • min [Boolean] — Validates that a value meets the min constraint. This is enabled by default when paramValidation is set to true.
    • max [Boolean] — Validates that a value meets the max constraint.
    • pattern [Boolean] — Validates that a string value matches a regular expression.
    • enum [Boolean] — Validates that a string value matches one of the allowable enum values.
  • computeChecksums (Boolean)

    whether to compute checksums for payload bodies when the service accepts it (currently supported in S3 only)

  • convertResponseTypes (Boolean)

    whether types are converted when parsing response data. Currently only supported for JSON based services. Turning this off may improve performance on large response payloads. Defaults to true.

  • correctClockSkew (Boolean)

    whether to apply a clock skew correction and retry requests that fail because of an skewed client clock. Defaults to false.

  • s3ForcePathStyle (Boolean)

    whether to force path style URLs for S3 objects.

  • s3BucketEndpoint (Boolean)

    whether the provided endpoint addresses an individual bucket (false if it addresses the root API endpoint). Note that setting this configuration option requires an endpoint to be provided explicitly to the service constructor.

  • s3DisableBodySigning (Boolean)

    whether S3 body signing should be disabled when using signature version v4. Body signing can only be disabled when using https. Defaults to true.

  • s3UsEast1RegionalEndpoint ('legacy'|'regional')

    when region is set to 'us-east-1', whether to send s3 request to global endpoints or 'us-east-1' regional endpoints. This config is only applicable to S3 client. Defaults to legacy

  • s3UseArnRegion (Boolean)

    whether to override the request region with the region inferred from requested resource's ARN. Only available for S3 buckets Defaults to true

  • retryDelayOptions (map)

    A set of options to configure the retry delay on retryable errors. Currently supported options are:

    • base [Integer] — The base number of milliseconds to use in the exponential backoff for operation retries. Defaults to 100 ms for all services except DynamoDB, where it defaults to 50ms.
    • customBackoff [function] — A custom function that accepts a retry count and error and returns the amount of time to delay in milliseconds. If the result is a non-zero negative value, no further retry attempts will be made. The base option will be ignored if this option is supplied. The function is only called for retryable errors.
  • httpOptions (map)

    A set of options to pass to the low-level HTTP request. Currently supported options are:

    • proxy [String] — the URL to proxy requests through
    • agent [http.Agent, https.Agent] — the Agent object to perform HTTP requests with. Used for connection pooling. Defaults to the global agent (http.globalAgent) for non-SSL connections. Note that for SSL connections, a special Agent object is used in order to enable peer certificate verification. This feature is only available in the Node.js environment.
    • connectTimeout [Integer] — Sets the socket to timeout after failing to establish a connection with the server after connectTimeout milliseconds. This timeout has no effect once a socket connection has been established.
    • timeout [Integer] — Sets the socket to timeout after timeout milliseconds of inactivity on the socket. Defaults to two minutes (120000).
    • xhrAsync [Boolean] — Whether the SDK will send asynchronous HTTP requests. Used in the browser environment only. Set to false to send requests synchronously. Defaults to true (async on).
    • xhrWithCredentials [Boolean] — Sets the "withCredentials" property of an XMLHttpRequest object. Used in the browser environment only. Defaults to false.
  • apiVersion (String, Date)

    a String in YYYY-MM-DD format (or a date) that represents the latest possible API version that can be used in all services (unless overridden by apiVersions). Specify 'latest' to use the latest possible version.

  • apiVersions (map<String, String|Date>)

    a map of service identifiers (the lowercase service class name) with the API version to use when instantiating a service. Specify 'latest' for each individual that can use the latest available version.

  • logger (#write, #log)

    an object that responds to .write() (like a stream) or .log() (like the console object) in order to log information about requests

  • systemClockOffset (Number)

    an offset value in milliseconds to apply to all signing times. Use this to compensate for clock skew when your system may be out of sync with the service time. Note that this configuration option can only be applied to the global AWS.config object and cannot be overridden in service-specific configuration. Defaults to 0 milliseconds.

  • signatureVersion (String)

    the signature version to sign requests with (overriding the API configuration). Possible values are: 'v2', 'v3', 'v4'.

  • signatureCache (Boolean)

    whether the signature to sign requests with (overriding the API configuration) is cached. Only applies to the signature version 'v4'. Defaults to true.

  • dynamoDbCrc32 (Boolean)

    whether to validate the CRC32 checksum of HTTP response bodies returned by DynamoDB. Default: true.

  • useAccelerateEndpoint (Boolean)

    Whether to use the S3 Transfer Acceleration endpoint with the S3 service. Default: false.

  • clientSideMonitoring (Boolean)

    whether to collect and publish this client's performance metrics of all its API requests.

  • endpointDiscoveryEnabled (Boolean|undefined)

    whether to call operations with endpoints given by service dynamically. Setting this

  • endpointCacheSize (Number)

    the size of the global cache storing endpoints from endpoint discovery operations. Once endpoint cache is created, updating this setting cannot change existing cache size. Defaults to 1000

  • hostPrefixEnabled (Boolean)

    whether to marshal request parameters to the prefix of hostname. Defaults to true.

  • stsRegionalEndpoints ('legacy'|'regional')

    whether to send sts request to global endpoints or regional endpoints. Defaults to 'legacy'.

  • useFipsEndpoint (Boolean)

    Enables FIPS compatible endpoints. Defaults to false.

  • useDualstackEndpoint (Boolean)

    Enables IPv6 dualstack endpoint. Defaults to false.

Property Details

endpointAWS.Endpoint (readwrite)

Returns an Endpoint object representing the endpoint URL for service requests.

Returns:

  • (AWS.Endpoint)

    an Endpoint object representing the endpoint URL for service requests.

Method Details

associateRepository(params = {}, callback) ⇒ AWS.Request

Use to associate an Amazon Web Services CodeCommit repository or a repository managed by Amazon Web Services CodeStar Connections with Amazon CodeGuru Reviewer. When you associate a repository, CodeGuru Reviewer reviews source code changes in the repository's pull requests and provides automatic recommendations. You can view recommendations using the CodeGuru Reviewer console. For more information, see Recommendations in Amazon CodeGuru Reviewer in the Amazon CodeGuru Reviewer User Guide.

If you associate a CodeCommit or S3 repository, it must be in the same Amazon Web Services Region and Amazon Web Services account where its CodeGuru Reviewer code reviews are configured.

Bitbucket and GitHub Enterprise Server repositories are managed by Amazon Web Services CodeStar Connections to connect to CodeGuru Reviewer. For more information, see Associate a repository in the Amazon CodeGuru Reviewer User Guide.

Note: You cannot use the CodeGuru Reviewer SDK or the Amazon Web Services CLI to associate a GitHub repository with Amazon CodeGuru Reviewer. To associate a GitHub repository, use the console. For more information, see Getting started with CodeGuru Reviewer in the CodeGuru Reviewer User Guide.

Service Reference:

Examples:

Calling the associateRepository operation

var params = {
  Repository: { /* required */
    Bitbucket: {
      ConnectionArn: 'STRING_VALUE', /* required */
      Name: 'STRING_VALUE', /* required */
      Owner: 'STRING_VALUE' /* required */
    },
    CodeCommit: {
      Name: 'STRING_VALUE' /* required */
    },
    GitHubEnterpriseServer: {
      ConnectionArn: 'STRING_VALUE', /* required */
      Name: 'STRING_VALUE', /* required */
      Owner: 'STRING_VALUE' /* required */
    },
    S3Bucket: {
      BucketName: 'STRING_VALUE', /* required */
      Name: 'STRING_VALUE' /* required */
    }
  },
  ClientRequestToken: 'STRING_VALUE',
  KMSKeyDetails: {
    EncryptionOption: AWS_OWNED_CMK | CUSTOMER_MANAGED_CMK,
    KMSKeyId: 'STRING_VALUE'
  },
  Tags: {
    '<TagKey>': 'STRING_VALUE',
    /* '<TagKey>': ... */
  }
};
codegurureviewer.associateRepository(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Repository — (map)

      The repository to associate.

      • CodeCommit — (map)

        Information about an Amazon Web Services CodeCommit repository.

        • Namerequired — (String)

          The name of the Amazon Web Services CodeCommit repository. For more information, see repositoryName in the Amazon Web Services CodeCommit API Reference.

      • Bitbucket — (map)

        Information about a Bitbucket repository.

        • Namerequired — (String)

          The name of the third party source repository.

        • ConnectionArnrequired — (String)

          The Amazon Resource Name (ARN) of an Amazon Web Services CodeStar Connections connection. Its format is arn:aws:codestar-connections:region-id:aws-account_id:connection/connection-id. For more information, see Connection in the Amazon Web Services CodeStar Connections API Reference.

        • Ownerrequired — (String)

          The owner of the repository. For a GitHub, GitHub Enterprise, or Bitbucket repository, this is the username for the account that owns the repository. For an S3 repository, this can be the username or Amazon Web Services account ID

      • GitHubEnterpriseServer — (map)

        Information about a GitHub Enterprise Server repository.

        • Namerequired — (String)

          The name of the third party source repository.

        • ConnectionArnrequired — (String)

          The Amazon Resource Name (ARN) of an Amazon Web Services CodeStar Connections connection. Its format is arn:aws:codestar-connections:region-id:aws-account_id:connection/connection-id. For more information, see Connection in the Amazon Web Services CodeStar Connections API Reference.

        • Ownerrequired — (String)

          The owner of the repository. For a GitHub, GitHub Enterprise, or Bitbucket repository, this is the username for the account that owns the repository. For an S3 repository, this can be the username or Amazon Web Services account ID

      • S3Bucket — (map)

        Information about a repository in an S3 bucket.

        • Namerequired — (String)

          The name of the repository in the S3 bucket.

        • BucketNamerequired — (String)

          The name of the S3 bucket used for associating a new S3 repository. It must begin with codeguru-reviewer-.

    • ClientRequestToken — (String)

      Amazon CodeGuru Reviewer uses this value to prevent the accidental creation of duplicate repository associations if there are failures and retries.

      If a token is not provided, the SDK will use a version 4 UUID.
    • Tags — (map<String>)

      An array of key-value pairs used to tag an associated repository. A tag is a custom attribute label with two parts:

      • A tag key (for example, CostCenter, Environment, Project, or Secret). Tag keys are case sensitive.

      • An optional field known as a tag value (for example, 111122223333, Production, or a team name). Omitting the tag value is the same as using an empty string. Like tag keys, tag values are case sensitive.

    • KMSKeyDetails — (map)

      A KMSKeyDetails object that contains:

      • The encryption option for this repository association. It is either owned by Amazon Web Services Key Management Service (KMS) (AWS_OWNED_CMK) or customer managed (CUSTOMER_MANAGED_CMK).

      • The ID of the Amazon Web Services KMS key that is associated with this repository association.

      • KMSKeyId — (String)

        The ID of the Amazon Web Services KMS key that is associated with a repository association.

      • EncryptionOption — (String)

        The encryption option for a repository association. It is either owned by Amazon Web Services Key Management Service (KMS) (AWS_OWNED_CMK) or customer managed (CUSTOMER_MANAGED_CMK).

        Possible values include:
        • "AWS_OWNED_CMK"
        • "CUSTOMER_MANAGED_CMK"

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • RepositoryAssociation — (map)

        Information about the repository association.

        • AssociationId — (String)

          The ID of the repository association.

        • AssociationArn — (String)

          The Amazon Resource Name (ARN) identifying the repository association.

        • ConnectionArn — (String)

          The Amazon Resource Name (ARN) of an Amazon Web Services CodeStar Connections connection. Its format is arn:aws:codestar-connections:region-id:aws-account_id:connection/connection-id. For more information, see Connection in the Amazon Web Services CodeStar Connections API Reference.

        • Name — (String)

          The name of the repository.

        • Owner — (String)

          The owner of the repository. For an Amazon Web Services CodeCommit repository, this is the Amazon Web Services account ID of the account that owns the repository. For a GitHub, GitHub Enterprise Server, or Bitbucket repository, this is the username for the account that owns the repository. For an S3 repository, it can be the username or Amazon Web Services account ID.

        • ProviderType — (String)

          The provider type of the repository association.

          Possible values include:
          • "CodeCommit"
          • "GitHub"
          • "Bitbucket"
          • "GitHubEnterpriseServer"
          • "S3Bucket"
        • State — (String)

          The state of the repository association.

          The valid repository association states are:

          • Associated: The repository association is complete.

          • Associating: CodeGuru Reviewer is:

            • Setting up pull request notifications. This is required for pull requests to trigger a CodeGuru Reviewer review.

              Note: If your repository ProviderType is GitHub, GitHub Enterprise Server, or Bitbucket, CodeGuru Reviewer creates webhooks in your repository to trigger CodeGuru Reviewer reviews. If you delete these webhooks, reviews of code in your repository cannot be triggered.
            • Setting up source code access. This is required for CodeGuru Reviewer to securely clone code in your repository.

          • Failed: The repository failed to associate or disassociate.

          • Disassociating: CodeGuru Reviewer is removing the repository's pull request notifications and source code access.

          • Disassociated: CodeGuru Reviewer successfully disassociated the repository. You can create a new association with this repository if you want to review source code in it later. You can control access to code reviews created in anassociated repository with tags after it has been disassociated. For more information, see Using tags to control access to associated repositories in the Amazon CodeGuru Reviewer User Guide.

          Possible values include:
          • "Associated"
          • "Associating"
          • "Failed"
          • "Disassociating"
          • "Disassociated"
        • StateReason — (String)

          A description of why the repository association is in the current state.

        • LastUpdatedTimeStamp — (Date)

          The time, in milliseconds since the epoch, when the repository association was last updated.

        • CreatedTimeStamp — (Date)

          The time, in milliseconds since the epoch, when the repository association was created.

        • KMSKeyDetails — (map)

          A KMSKeyDetails object that contains:

          • The encryption option for this repository association. It is either owned by Amazon Web Services Key Management Service (KMS) (AWS_OWNED_CMK) or customer managed (CUSTOMER_MANAGED_CMK).

          • The ID of the Amazon Web Services KMS key that is associated with this repository association.

          • KMSKeyId — (String)

            The ID of the Amazon Web Services KMS key that is associated with a repository association.

          • EncryptionOption — (String)

            The encryption option for a repository association. It is either owned by Amazon Web Services Key Management Service (KMS) (AWS_OWNED_CMK) or customer managed (CUSTOMER_MANAGED_CMK).

            Possible values include:
            • "AWS_OWNED_CMK"
            • "CUSTOMER_MANAGED_CMK"
        • S3RepositoryDetails — (map)

          Specifies the name of an S3 bucket and a CodeArtifacts object that contains the S3 object keys for a source code .zip file and for a build artifacts .zip file that contains .jar or .class files.

          • BucketName — (String)

            The name of the S3 bucket used for associating a new S3 repository. It must begin with codeguru-reviewer-.

          • CodeArtifacts — (map)

            A CodeArtifacts object. The CodeArtifacts object includes the S3 object key for a source code .zip file and for a build artifacts .zip file that contains .jar or .class files.

            • SourceCodeArtifactsObjectKeyrequired — (String)

              The S3 object key for a source code .zip file. This is required for all code reviews.

            • BuildArtifactsObjectKey — (String)

              The S3 object key for a build artifacts .zip file that contains .jar or .class files. This is required for a code review with security analysis. For more information, see Create code reviews with GitHub Actions in the Amazon CodeGuru Reviewer User Guide.

      • Tags — (map<String>)

        An array of key-value pairs used to tag an associated repository. A tag is a custom attribute label with two parts:

        • A tag key (for example, CostCenter, Environment, Project, or Secret). Tag keys are case sensitive.

        • An optional field known as a tag value (for example, 111122223333, Production, or a team name). Omitting the tag value is the same as using an empty string. Like tag keys, tag values are case sensitive.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createCodeReview(params = {}, callback) ⇒ AWS.Request

Use to create a code review with a CodeReviewType of RepositoryAnalysis. This type of code review analyzes all code under a specified branch in an associated repository. PullRequest code reviews are automatically triggered by a pull request.

Service Reference:

Examples:

Calling the createCodeReview operation

var params = {
  Name: 'STRING_VALUE', /* required */
  RepositoryAssociationArn: 'STRING_VALUE', /* required */
  Type: { /* required */
    RepositoryAnalysis: { /* required */
      RepositoryHead: {
        BranchName: 'STRING_VALUE' /* required */
      },
      SourceCodeType: {
        BranchDiff: {
          DestinationBranchName: 'STRING_VALUE', /* required */
          SourceBranchName: 'STRING_VALUE' /* required */
        },
        CommitDiff: {
          DestinationCommit: 'STRING_VALUE',
          MergeBaseCommit: 'STRING_VALUE',
          SourceCommit: 'STRING_VALUE'
        },
        RepositoryHead: {
          BranchName: 'STRING_VALUE' /* required */
        },
        RequestMetadata: {
          EventInfo: {
            Name: 'STRING_VALUE',
            State: 'STRING_VALUE'
          },
          RequestId: 'STRING_VALUE',
          Requester: 'STRING_VALUE',
          VendorName: GitHub | GitLab | NativeS3
        },
        S3BucketRepository: {
          Name: 'STRING_VALUE', /* required */
          Details: {
            BucketName: 'STRING_VALUE',
            CodeArtifacts: {
              SourceCodeArtifactsObjectKey: 'STRING_VALUE', /* required */
              BuildArtifactsObjectKey: 'STRING_VALUE'
            }
          }
        }
      }
    },
    AnalysisTypes: [
      Security | CodeQuality,
      /* more items */
    ]
  },
  ClientRequestToken: 'STRING_VALUE'
};
codegurureviewer.createCodeReview(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • Name — (String)

      The name of the code review. The name of each code review in your Amazon Web Services account must be unique.

    • RepositoryAssociationArn — (String)

      The Amazon Resource Name (ARN) of the RepositoryAssociation object. You can retrieve this ARN by calling ListRepositoryAssociations.

      A code review can only be created on an associated repository. This is the ARN of the associated repository.

    • Type — (map)

      The type of code review to create. This is specified using a CodeReviewType object. You can create a code review only of type RepositoryAnalysis.

      • RepositoryAnalysisrequired — (map)

        A code review that analyzes all code under a specified branch in an associated repository. The associated repository is specified using its ARN in CreateCodeReview.

        • RepositoryHead — (map)

          A SourceCodeType that specifies the tip of a branch in an associated repository.

          • BranchNamerequired — (String)

            The name of the branch in an associated repository. The RepositoryHeadSourceCodeType specifies the tip of this branch.

        • SourceCodeType — (map)

          Specifies the source code that is analyzed in a code review.

          • CommitDiff — (map)

            A SourceCodeType that specifies a commit diff created by a pull request on an associated repository.

            • SourceCommit — (String)

              The SHA of the source commit used to generate a commit diff. This field is required for a pull request code review.

            • DestinationCommit — (String)

              The SHA of the destination commit used to generate a commit diff. This field is required for a pull request code review.

            • MergeBaseCommit — (String)

              The SHA of the merge base of a commit.

          • RepositoryHead — (map)

            A SourceCodeType that specifies the tip of a branch in an associated repository.

            • BranchNamerequired — (String)

              The name of the branch in an associated repository. The RepositoryHeadSourceCodeType specifies the tip of this branch.

          • BranchDiff — (map)

            A type of SourceCodeType that specifies a source branch name and a destination branch name in an associated repository.

            • SourceBranchNamerequired — (String)

              The source branch for a diff in an associated repository.

            • DestinationBranchNamerequired — (String)

              The destination branch for a diff in an associated repository.

          • S3BucketRepository — (map)

            Information about an associated repository in an S3 bucket that includes its name and an S3RepositoryDetails object. The S3RepositoryDetails object includes the name of an S3 bucket, an S3 key for a source code .zip file, and an S3 key for a build artifacts .zip file. S3BucketRepository is required in SourceCodeType for S3BucketRepository based code reviews.

            • Namerequired — (String)

              The name of the repository when the ProviderType is S3Bucket.

            • Details — (map)

              An S3RepositoryDetails object that specifies the name of an S3 bucket and a CodeArtifacts object. The CodeArtifacts object includes the S3 object keys for a source code .zip file and for a build artifacts .zip file.

              • BucketName — (String)

                The name of the S3 bucket used for associating a new S3 repository. It must begin with codeguru-reviewer-.

              • CodeArtifacts — (map)

                A CodeArtifacts object. The CodeArtifacts object includes the S3 object key for a source code .zip file and for a build artifacts .zip file that contains .jar or .class files.

                • SourceCodeArtifactsObjectKeyrequired — (String)

                  The S3 object key for a source code .zip file. This is required for all code reviews.

                • BuildArtifactsObjectKey — (String)

                  The S3 object key for a build artifacts .zip file that contains .jar or .class files. This is required for a code review with security analysis. For more information, see Create code reviews with GitHub Actions in the Amazon CodeGuru Reviewer User Guide.

          • RequestMetadata — (map)

            Metadata that is associated with a code review. This applies to any type of code review supported by CodeGuru Reviewer. The RequestMetadaa field captures any event metadata. For example, it might capture metadata associated with an event trigger, such as a push or a pull request.

            • RequestId — (String)

              The ID of the request. This is required for a pull request code review.

            • Requester — (String)

              An identifier, such as a name or account ID, that is associated with the requester. The Requester is used to capture the author/actor name of the event request.

            • EventInfo — (map)

              Information about the event associated with a code review.

              • Name — (String)

                The name of the event. The possible names are pull_request, workflow_dispatch, schedule, and push

              • State — (String)

                The state of an event. The state might be open, closed, or another state.

            • VendorName — (String)

              The name of the repository vendor used to upload code to an S3 bucket for a CI/CD code review. For example, if code and artifacts are uploaded to an S3 bucket for a CI/CD code review by GitHub scripts from a GitHub repository, then the repository association's ProviderType is S3Bucket and the CI/CD repository vendor name is GitHub. For more information, see the definition for ProviderType in RepositoryAssociation.

              Possible values include:
              • "GitHub"
              • "GitLab"
              • "NativeS3"
      • AnalysisTypes — (Array<String>)

        They types of analysis performed during a repository analysis or a pull request review. You can specify either Security, CodeQuality, or both.

    • ClientRequestToken — (String)

      Amazon CodeGuru Reviewer uses this value to prevent the accidental creation of duplicate code reviews if there are failures and retries.

      If a token is not provided, the SDK will use a version 4 UUID.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • CodeReview — (map)

        Information about a code review. A code review belongs to the associated repository that contains the reviewed code.

        • Name — (String)

          The name of the code review.

        • CodeReviewArn — (String)

          The Amazon Resource Name (ARN) of the CodeReview object.

        • RepositoryName — (String)

          The name of the repository.

        • Owner — (String)

          The owner of the repository. For an Amazon Web Services CodeCommit repository, this is the Amazon Web Services account ID of the account that owns the repository. For a GitHub, GitHub Enterprise Server, or Bitbucket repository, this is the username for the account that owns the repository. For an S3 repository, it can be the username or Amazon Web Services account ID.

        • ProviderType — (String)

          The type of repository that contains the reviewed code (for example, GitHub or Bitbucket).

          Possible values include:
          • "CodeCommit"
          • "GitHub"
          • "Bitbucket"
          • "GitHubEnterpriseServer"
          • "S3Bucket"
        • State — (String)

          The valid code review states are:

          • Completed: The code review is complete.

          • Pending: The code review started and has not completed or failed.

          • Failed: The code review failed.

          • Deleting: The code review is being deleted.

          Possible values include:
          • "Completed"
          • "Pending"
          • "Failed"
          • "Deleting"
        • StateReason — (String)

          The reason for the state of the code review.

        • CreatedTimeStamp — (Date)

          The time, in milliseconds since the epoch, when the code review was created.

        • LastUpdatedTimeStamp — (Date)

          The time, in milliseconds since the epoch, when the code review was last updated.

        • Type — (String)

          The type of code review.

          Possible values include:
          • "PullRequest"
          • "RepositoryAnalysis"
        • PullRequestId — (String)

          The pull request ID for the code review.

        • SourceCodeType — (map)

          The type of the source code for the code review.

          • CommitDiff — (map)

            A SourceCodeType that specifies a commit diff created by a pull request on an associated repository.

            • SourceCommit — (String)

              The SHA of the source commit used to generate a commit diff. This field is required for a pull request code review.

            • DestinationCommit — (String)

              The SHA of the destination commit used to generate a commit diff. This field is required for a pull request code review.

            • MergeBaseCommit — (String)

              The SHA of the merge base of a commit.

          • RepositoryHead — (map)

            A SourceCodeType that specifies the tip of a branch in an associated repository.

            • BranchNamerequired — (String)

              The name of the branch in an associated repository. The RepositoryHeadSourceCodeType specifies the tip of this branch.

          • BranchDiff — (map)

            A type of SourceCodeType that specifies a source branch name and a destination branch name in an associated repository.

            • SourceBranchNamerequired — (String)

              The source branch for a diff in an associated repository.

            • DestinationBranchNamerequired — (String)

              The destination branch for a diff in an associated repository.

          • S3BucketRepository — (map)

            Information about an associated repository in an S3 bucket that includes its name and an S3RepositoryDetails object. The S3RepositoryDetails object includes the name of an S3 bucket, an S3 key for a source code .zip file, and an S3 key for a build artifacts .zip file. S3BucketRepository is required in SourceCodeType for S3BucketRepository based code reviews.

            • Namerequired — (String)

              The name of the repository when the ProviderType is S3Bucket.

            • Details — (map)

              An S3RepositoryDetails object that specifies the name of an S3 bucket and a CodeArtifacts object. The CodeArtifacts object includes the S3 object keys for a source code .zip file and for a build artifacts .zip file.

              • BucketName — (String)

                The name of the S3 bucket used for associating a new S3 repository. It must begin with codeguru-reviewer-.

              • CodeArtifacts — (map)

                A CodeArtifacts object. The CodeArtifacts object includes the S3 object key for a source code .zip file and for a build artifacts .zip file that contains .jar or .class files.

                • SourceCodeArtifactsObjectKeyrequired — (String)

                  The S3 object key for a source code .zip file. This is required for all code reviews.

                • BuildArtifactsObjectKey — (String)

                  The S3 object key for a build artifacts .zip file that contains .jar or .class files. This is required for a code review with security analysis. For more information, see Create code reviews with GitHub Actions in the Amazon CodeGuru Reviewer User Guide.

          • RequestMetadata — (map)

            Metadata that is associated with a code review. This applies to any type of code review supported by CodeGuru Reviewer. The RequestMetadaa field captures any event metadata. For example, it might capture metadata associated with an event trigger, such as a push or a pull request.

            • RequestId — (String)

              The ID of the request. This is required for a pull request code review.

            • Requester — (String)

              An identifier, such as a name or account ID, that is associated with the requester. The Requester is used to capture the author/actor name of the event request.

            • EventInfo — (map)

              Information about the event associated with a code review.

              • Name — (String)

                The name of the event. The possible names are pull_request, workflow_dispatch, schedule, and push

              • State — (String)

                The state of an event. The state might be open, closed, or another state.

            • VendorName — (String)

              The name of the repository vendor used to upload code to an S3 bucket for a CI/CD code review. For example, if code and artifacts are uploaded to an S3 bucket for a CI/CD code review by GitHub scripts from a GitHub repository, then the repository association's ProviderType is S3Bucket and the CI/CD repository vendor name is GitHub. For more information, see the definition for ProviderType in RepositoryAssociation.

              Possible values include:
              • "GitHub"
              • "GitLab"
              • "NativeS3"
        • AssociationArn — (String)

          The Amazon Resource Name (ARN) of the RepositoryAssociation that contains the reviewed source code. You can retrieve associated repository ARNs by calling ListRepositoryAssociations.

        • Metrics — (map)

          The statistics from the code review.

          • MeteredLinesOfCodeCount — (Integer)

            MeteredLinesOfCodeCount is the number of lines of code in the repository where the code review happened. This does not include non-code lines such as comments and blank lines.

          • SuppressedLinesOfCodeCount — (Integer)

            SuppressedLinesOfCodeCount is the number of lines of code in the repository where the code review happened that CodeGuru Reviewer did not analyze. The lines suppressed in the analysis is based on the excludeFiles variable in the aws-codeguru-reviewer.yml file. This number does not include non-code lines such as comments and blank lines.

          • FindingsCount — (Integer)

            Total number of recommendations found in the code review.

        • AnalysisTypes — (Array<String>)

          The types of analysis performed during a repository analysis or a pull request review. You can specify either Security, CodeQuality, or both.

        • ConfigFileState — (String)

          The state of the aws-codeguru-reviewer.yml configuration file that allows the configuration of the CodeGuru Reviewer analysis. The file either exists, doesn't exist, or exists with errors at the root directory of your repository.

          Possible values include:
          • "Present"
          • "Absent"
          • "PresentWithErrors"

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

describeCodeReview(params = {}, callback) ⇒ AWS.Request

Returns the metadata associated with the code review along with its status.

Service Reference:

Examples:

Calling the describeCodeReview operation

var params = {
  CodeReviewArn: 'STRING_VALUE' /* required */
};
codegurureviewer.describeCodeReview(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CodeReviewArn — (String)

      The Amazon Resource Name (ARN) of the CodeReview object.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • CodeReview — (map)

        Information about the code review.

        • Name — (String)

          The name of the code review.

        • CodeReviewArn — (String)

          The Amazon Resource Name (ARN) of the CodeReview object.

        • RepositoryName — (String)

          The name of the repository.

        • Owner — (String)

          The owner of the repository. For an Amazon Web Services CodeCommit repository, this is the Amazon Web Services account ID of the account that owns the repository. For a GitHub, GitHub Enterprise Server, or Bitbucket repository, this is the username for the account that owns the repository. For an S3 repository, it can be the username or Amazon Web Services account ID.

        • ProviderType — (String)

          The type of repository that contains the reviewed code (for example, GitHub or Bitbucket).

          Possible values include:
          • "CodeCommit"
          • "GitHub"
          • "Bitbucket"
          • "GitHubEnterpriseServer"
          • "S3Bucket"
        • State — (String)

          The valid code review states are:

          • Completed: The code review is complete.

          • Pending: The code review started and has not completed or failed.

          • Failed: The code review failed.

          • Deleting: The code review is being deleted.

          Possible values include:
          • "Completed"
          • "Pending"
          • "Failed"
          • "Deleting"
        • StateReason — (String)

          The reason for the state of the code review.

        • CreatedTimeStamp — (Date)

          The time, in milliseconds since the epoch, when the code review was created.

        • LastUpdatedTimeStamp — (Date)

          The time, in milliseconds since the epoch, when the code review was last updated.

        • Type — (String)

          The type of code review.

          Possible values include:
          • "PullRequest"
          • "RepositoryAnalysis"
        • PullRequestId — (String)

          The pull request ID for the code review.

        • SourceCodeType — (map)

          The type of the source code for the code review.

          • CommitDiff — (map)

            A SourceCodeType that specifies a commit diff created by a pull request on an associated repository.

            • SourceCommit — (String)

              The SHA of the source commit used to generate a commit diff. This field is required for a pull request code review.

            • DestinationCommit — (String)

              The SHA of the destination commit used to generate a commit diff. This field is required for a pull request code review.

            • MergeBaseCommit — (String)

              The SHA of the merge base of a commit.

          • RepositoryHead — (map)

            A SourceCodeType that specifies the tip of a branch in an associated repository.

            • BranchNamerequired — (String)

              The name of the branch in an associated repository. The RepositoryHeadSourceCodeType specifies the tip of this branch.

          • BranchDiff — (map)

            A type of SourceCodeType that specifies a source branch name and a destination branch name in an associated repository.

            • SourceBranchNamerequired — (String)

              The source branch for a diff in an associated repository.

            • DestinationBranchNamerequired — (String)

              The destination branch for a diff in an associated repository.

          • S3BucketRepository — (map)

            Information about an associated repository in an S3 bucket that includes its name and an S3RepositoryDetails object. The S3RepositoryDetails object includes the name of an S3 bucket, an S3 key for a source code .zip file, and an S3 key for a build artifacts .zip file. S3BucketRepository is required in SourceCodeType for S3BucketRepository based code reviews.

            • Namerequired — (String)

              The name of the repository when the ProviderType is S3Bucket.

            • Details — (map)

              An S3RepositoryDetails object that specifies the name of an S3 bucket and a CodeArtifacts object. The CodeArtifacts object includes the S3 object keys for a source code .zip file and for a build artifacts .zip file.

              • BucketName — (String)

                The name of the S3 bucket used for associating a new S3 repository. It must begin with codeguru-reviewer-.

              • CodeArtifacts — (map)

                A CodeArtifacts object. The CodeArtifacts object includes the S3 object key for a source code .zip file and for a build artifacts .zip file that contains .jar or .class files.

                • SourceCodeArtifactsObjectKeyrequired — (String)

                  The S3 object key for a source code .zip file. This is required for all code reviews.

                • BuildArtifactsObjectKey — (String)

                  The S3 object key for a build artifacts .zip file that contains .jar or .class files. This is required for a code review with security analysis. For more information, see Create code reviews with GitHub Actions in the Amazon CodeGuru Reviewer User Guide.

          • RequestMetadata — (map)

            Metadata that is associated with a code review. This applies to any type of code review supported by CodeGuru Reviewer. The RequestMetadaa field captures any event metadata. For example, it might capture metadata associated with an event trigger, such as a push or a pull request.

            • RequestId — (String)

              The ID of the request. This is required for a pull request code review.

            • Requester — (String)

              An identifier, such as a name or account ID, that is associated with the requester. The Requester is used to capture the author/actor name of the event request.

            • EventInfo — (map)

              Information about the event associated with a code review.

              • Name — (String)

                The name of the event. The possible names are pull_request, workflow_dispatch, schedule, and push

              • State — (String)

                The state of an event. The state might be open, closed, or another state.

            • VendorName — (String)

              The name of the repository vendor used to upload code to an S3 bucket for a CI/CD code review. For example, if code and artifacts are uploaded to an S3 bucket for a CI/CD code review by GitHub scripts from a GitHub repository, then the repository association's ProviderType is S3Bucket and the CI/CD repository vendor name is GitHub. For more information, see the definition for ProviderType in RepositoryAssociation.

              Possible values include:
              • "GitHub"
              • "GitLab"
              • "NativeS3"
        • AssociationArn — (String)

          The Amazon Resource Name (ARN) of the RepositoryAssociation that contains the reviewed source code. You can retrieve associated repository ARNs by calling ListRepositoryAssociations.

        • Metrics — (map)

          The statistics from the code review.

          • MeteredLinesOfCodeCount — (Integer)

            MeteredLinesOfCodeCount is the number of lines of code in the repository where the code review happened. This does not include non-code lines such as comments and blank lines.

          • SuppressedLinesOfCodeCount — (Integer)

            SuppressedLinesOfCodeCount is the number of lines of code in the repository where the code review happened that CodeGuru Reviewer did not analyze. The lines suppressed in the analysis is based on the excludeFiles variable in the aws-codeguru-reviewer.yml file. This number does not include non-code lines such as comments and blank lines.

          • FindingsCount — (Integer)

            Total number of recommendations found in the code review.

        • AnalysisTypes — (Array<String>)

          The types of analysis performed during a repository analysis or a pull request review. You can specify either Security, CodeQuality, or both.

        • ConfigFileState — (String)

          The state of the aws-codeguru-reviewer.yml configuration file that allows the configuration of the CodeGuru Reviewer analysis. The file either exists, doesn't exist, or exists with errors at the root directory of your repository.

          Possible values include:
          • "Present"
          • "Absent"
          • "PresentWithErrors"

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

Waiter Resource States:

describeRecommendationFeedback(params = {}, callback) ⇒ AWS.Request

Describes the customer feedback for a CodeGuru Reviewer recommendation.

Service Reference:

Examples:

Calling the describeRecommendationFeedback operation

var params = {
  CodeReviewArn: 'STRING_VALUE', /* required */
  RecommendationId: 'STRING_VALUE', /* required */
  UserId: 'STRING_VALUE'
};
codegurureviewer.describeRecommendationFeedback(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CodeReviewArn — (String)

      The Amazon Resource Name (ARN) of the CodeReview object.

    • RecommendationId — (String)

      The recommendation ID that can be used to track the provided recommendations and then to collect the feedback.

    • UserId — (String)

      Optional parameter to describe the feedback for a given user. If this is not supplied, it defaults to the user making the request.

      The UserId is an IAM principal that can be specified as an Amazon Web Services account ID or an Amazon Resource Name (ARN). For more information, see Specifying a Principal in the Amazon Web Services Identity and Access Management User Guide.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • RecommendationFeedback — (map)

        The recommendation feedback given by the user.

        • CodeReviewArn — (String)

          The Amazon Resource Name (ARN) of the CodeReview object.

        • RecommendationId — (String)

          The recommendation ID that can be used to track the provided recommendations. Later on it can be used to collect the feedback.

        • Reactions — (Array<String>)

          List for storing reactions. Reactions are utf-8 text code for emojis. You can send an empty list to clear off all your feedback.

        • UserId — (String)

          The ID of the user that made the API call.

          The UserId is an IAM principal that can be specified as an Amazon Web Services account ID or an Amazon Resource Name (ARN). For more information, see Specifying a Principal in the Amazon Web Services Identity and Access Management User Guide.

        • CreatedTimeStamp — (Date)

          The time at which the feedback was created.

        • LastUpdatedTimeStamp — (Date)

          The time at which the feedback was last updated.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

describeRepositoryAssociation(params = {}, callback) ⇒ AWS.Request

Returns a RepositoryAssociation object that contains information about the requested repository association.

Service Reference:

Examples:

Calling the describeRepositoryAssociation operation

var params = {
  AssociationArn: 'STRING_VALUE' /* required */
};
codegurureviewer.describeRepositoryAssociation(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • RepositoryAssociation — (map)

        Information about the repository association.

        • AssociationId — (String)

          The ID of the repository association.

        • AssociationArn — (String)

          The Amazon Resource Name (ARN) identifying the repository association.

        • ConnectionArn — (String)

          The Amazon Resource Name (ARN) of an Amazon Web Services CodeStar Connections connection. Its format is arn:aws:codestar-connections:region-id:aws-account_id:connection/connection-id. For more information, see Connection in the Amazon Web Services CodeStar Connections API Reference.

        • Name — (String)

          The name of the repository.

        • Owner — (String)

          The owner of the repository. For an Amazon Web Services CodeCommit repository, this is the Amazon Web Services account ID of the account that owns the repository. For a GitHub, GitHub Enterprise Server, or Bitbucket repository, this is the username for the account that owns the repository. For an S3 repository, it can be the username or Amazon Web Services account ID.

        • ProviderType — (String)

          The provider type of the repository association.

          Possible values include:
          • "CodeCommit"
          • "GitHub"
          • "Bitbucket"
          • "GitHubEnterpriseServer"
          • "S3Bucket"
        • State — (String)

          The state of the repository association.

          The valid repository association states are:

          • Associated: The repository association is complete.

          • Associating: CodeGuru Reviewer is:

            • Setting up pull request notifications. This is required for pull requests to trigger a CodeGuru Reviewer review.

              Note: If your repository ProviderType is GitHub, GitHub Enterprise Server, or Bitbucket, CodeGuru Reviewer creates webhooks in your repository to trigger CodeGuru Reviewer reviews. If you delete these webhooks, reviews of code in your repository cannot be triggered.
            • Setting up source code access. This is required for CodeGuru Reviewer to securely clone code in your repository.

          • Failed: The repository failed to associate or disassociate.

          • Disassociating: CodeGuru Reviewer is removing the repository's pull request notifications and source code access.

          • Disassociated: CodeGuru Reviewer successfully disassociated the repository. You can create a new association with this repository if you want to review source code in it later. You can control access to code reviews created in anassociated repository with tags after it has been disassociated. For more information, see Using tags to control access to associated repositories in the Amazon CodeGuru Reviewer User Guide.

          Possible values include:
          • "Associated"
          • "Associating"
          • "Failed"
          • "Disassociating"
          • "Disassociated"
        • StateReason — (String)

          A description of why the repository association is in the current state.

        • LastUpdatedTimeStamp — (Date)

          The time, in milliseconds since the epoch, when the repository association was last updated.

        • CreatedTimeStamp — (Date)

          The time, in milliseconds since the epoch, when the repository association was created.

        • KMSKeyDetails — (map)

          A KMSKeyDetails object that contains:

          • The encryption option for this repository association. It is either owned by Amazon Web Services Key Management Service (KMS) (AWS_OWNED_CMK) or customer managed (CUSTOMER_MANAGED_CMK).

          • The ID of the Amazon Web Services KMS key that is associated with this repository association.

          • KMSKeyId — (String)

            The ID of the Amazon Web Services KMS key that is associated with a repository association.

          • EncryptionOption — (String)

            The encryption option for a repository association. It is either owned by Amazon Web Services Key Management Service (KMS) (AWS_OWNED_CMK) or customer managed (CUSTOMER_MANAGED_CMK).

            Possible values include:
            • "AWS_OWNED_CMK"
            • "CUSTOMER_MANAGED_CMK"
        • S3RepositoryDetails — (map)

          Specifies the name of an S3 bucket and a CodeArtifacts object that contains the S3 object keys for a source code .zip file and for a build artifacts .zip file that contains .jar or .class files.

          • BucketName — (String)

            The name of the S3 bucket used for associating a new S3 repository. It must begin with codeguru-reviewer-.

          • CodeArtifacts — (map)

            A CodeArtifacts object. The CodeArtifacts object includes the S3 object key for a source code .zip file and for a build artifacts .zip file that contains .jar or .class files.

            • SourceCodeArtifactsObjectKeyrequired — (String)

              The S3 object key for a source code .zip file. This is required for all code reviews.

            • BuildArtifactsObjectKey — (String)

              The S3 object key for a build artifacts .zip file that contains .jar or .class files. This is required for a code review with security analysis. For more information, see Create code reviews with GitHub Actions in the Amazon CodeGuru Reviewer User Guide.

      • Tags — (map<String>)

        An array of key-value pairs used to tag an associated repository. A tag is a custom attribute label with two parts:

        • A tag key (for example, CostCenter, Environment, Project, or Secret). Tag keys are case sensitive.

        • An optional field known as a tag value (for example, 111122223333, Production, or a team name). Omitting the tag value is the same as using an empty string. Like tag keys, tag values are case sensitive.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

Waiter Resource States:

disassociateRepository(params = {}, callback) ⇒ AWS.Request

Removes the association between Amazon CodeGuru Reviewer and a repository.

Service Reference:

Examples:

Calling the disassociateRepository operation

var params = {
  AssociationArn: 'STRING_VALUE' /* required */
};
codegurureviewer.disassociateRepository(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • RepositoryAssociation — (map)

        Information about the disassociated repository.

        • AssociationId — (String)

          The ID of the repository association.

        • AssociationArn — (String)

          The Amazon Resource Name (ARN) identifying the repository association.

        • ConnectionArn — (String)

          The Amazon Resource Name (ARN) of an Amazon Web Services CodeStar Connections connection. Its format is arn:aws:codestar-connections:region-id:aws-account_id:connection/connection-id. For more information, see Connection in the Amazon Web Services CodeStar Connections API Reference.

        • Name — (String)

          The name of the repository.

        • Owner — (String)

          The owner of the repository. For an Amazon Web Services CodeCommit repository, this is the Amazon Web Services account ID of the account that owns the repository. For a GitHub, GitHub Enterprise Server, or Bitbucket repository, this is the username for the account that owns the repository. For an S3 repository, it can be the username or Amazon Web Services account ID.

        • ProviderType — (String)

          The provider type of the repository association.

          Possible values include:
          • "CodeCommit"
          • "GitHub"
          • "Bitbucket"
          • "GitHubEnterpriseServer"
          • "S3Bucket"
        • State — (String)

          The state of the repository association.

          The valid repository association states are:

          • Associated: The repository association is complete.

          • Associating: CodeGuru Reviewer is:

            • Setting up pull request notifications. This is required for pull requests to trigger a CodeGuru Reviewer review.

              Note: If your repository ProviderType is GitHub, GitHub Enterprise Server, or Bitbucket, CodeGuru Reviewer creates webhooks in your repository to trigger CodeGuru Reviewer reviews. If you delete these webhooks, reviews of code in your repository cannot be triggered.
            • Setting up source code access. This is required for CodeGuru Reviewer to securely clone code in your repository.

          • Failed: The repository failed to associate or disassociate.

          • Disassociating: CodeGuru Reviewer is removing the repository's pull request notifications and source code access.

          • Disassociated: CodeGuru Reviewer successfully disassociated the repository. You can create a new association with this repository if you want to review source code in it later. You can control access to code reviews created in anassociated repository with tags after it has been disassociated. For more information, see Using tags to control access to associated repositories in the Amazon CodeGuru Reviewer User Guide.

          Possible values include:
          • "Associated"
          • "Associating"
          • "Failed"
          • "Disassociating"
          • "Disassociated"
        • StateReason — (String)

          A description of why the repository association is in the current state.

        • LastUpdatedTimeStamp — (Date)

          The time, in milliseconds since the epoch, when the repository association was last updated.

        • CreatedTimeStamp — (Date)

          The time, in milliseconds since the epoch, when the repository association was created.

        • KMSKeyDetails — (map)

          A KMSKeyDetails object that contains:

          • The encryption option for this repository association. It is either owned by Amazon Web Services Key Management Service (KMS) (AWS_OWNED_CMK) or customer managed (CUSTOMER_MANAGED_CMK).

          • The ID of the Amazon Web Services KMS key that is associated with this repository association.

          • KMSKeyId — (String)

            The ID of the Amazon Web Services KMS key that is associated with a repository association.

          • EncryptionOption — (String)

            The encryption option for a repository association. It is either owned by Amazon Web Services Key Management Service (KMS) (AWS_OWNED_CMK) or customer managed (CUSTOMER_MANAGED_CMK).

            Possible values include:
            • "AWS_OWNED_CMK"
            • "CUSTOMER_MANAGED_CMK"
        • S3RepositoryDetails — (map)

          Specifies the name of an S3 bucket and a CodeArtifacts object that contains the S3 object keys for a source code .zip file and for a build artifacts .zip file that contains .jar or .class files.

          • BucketName — (String)

            The name of the S3 bucket used for associating a new S3 repository. It must begin with codeguru-reviewer-.

          • CodeArtifacts — (map)

            A CodeArtifacts object. The CodeArtifacts object includes the S3 object key for a source code .zip file and for a build artifacts .zip file that contains .jar or .class files.

            • SourceCodeArtifactsObjectKeyrequired — (String)

              The S3 object key for a source code .zip file. This is required for all code reviews.

            • BuildArtifactsObjectKey — (String)

              The S3 object key for a build artifacts .zip file that contains .jar or .class files. This is required for a code review with security analysis. For more information, see Create code reviews with GitHub Actions in the Amazon CodeGuru Reviewer User Guide.

      • Tags — (map<String>)

        An array of key-value pairs used to tag an associated repository. A tag is a custom attribute label with two parts:

        • A tag key (for example, CostCenter, Environment, Project, or Secret). Tag keys are case sensitive.

        • An optional field known as a tag value (for example, 111122223333, Production, or a team name). Omitting the tag value is the same as using an empty string. Like tag keys, tag values are case sensitive.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listCodeReviews(params = {}, callback) ⇒ AWS.Request

Lists all the code reviews that the customer has created in the past 90 days.

Service Reference:

Examples:

Calling the listCodeReviews operation

var params = {
  Type: PullRequest | RepositoryAnalysis, /* required */
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE',
  ProviderTypes: [
    CodeCommit | GitHub | Bitbucket | GitHubEnterpriseServer | S3Bucket,
    /* more items */
  ],
  RepositoryNames: [
    'STRING_VALUE',
    /* more items */
  ],
  States: [
    Completed | Pending | Failed | Deleting,
    /* more items */
  ]
};
codegurureviewer.listCodeReviews(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ProviderTypes — (Array<String>)

      List of provider types for filtering that needs to be applied before displaying the result. For example, providerTypes=[GitHub] lists code reviews from GitHub.

    • States — (Array<String>)

      List of states for filtering that needs to be applied before displaying the result. For example, states=[Pending] lists code reviews in the Pending state.

      The valid code review states are:

      • Completed: The code review is complete.

      • Pending: The code review started and has not completed or failed.

      • Failed: The code review failed.

      • Deleting: The code review is being deleted.

    • RepositoryNames — (Array<String>)

      List of repository names for filtering that needs to be applied before displaying the result.

    • Type — (String)

      The type of code reviews to list in the response.

      Possible values include:
      • "PullRequest"
      • "RepositoryAnalysis"
    • MaxResults — (Integer)

      The maximum number of results that are returned per call. The default is 100.

    • NextToken — (String)

      If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • CodeReviewSummaries — (Array<map>)

        A list of code reviews that meet the criteria of the request.

        • Name — (String)

          The name of the code review.

        • CodeReviewArn — (String)

          The Amazon Resource Name (ARN) of the CodeReview object.

        • RepositoryName — (String)

          The name of the repository.

        • Owner — (String)

          The owner of the repository. For an Amazon Web Services CodeCommit repository, this is the Amazon Web Services account ID of the account that owns the repository. For a GitHub, GitHub Enterprise Server, or Bitbucket repository, this is the username for the account that owns the repository. For an S3 repository, it can be the username or Amazon Web Services account ID.

        • ProviderType — (String)

          The provider type of the repository association.

          Possible values include:
          • "CodeCommit"
          • "GitHub"
          • "Bitbucket"
          • "GitHubEnterpriseServer"
          • "S3Bucket"
        • State — (String)

          The state of the code review.

          The valid code review states are:

          • Completed: The code review is complete.

          • Pending: The code review started and has not completed or failed.

          • Failed: The code review failed.

          • Deleting: The code review is being deleted.

          Possible values include:
          • "Completed"
          • "Pending"
          • "Failed"
          • "Deleting"
        • CreatedTimeStamp — (Date)

          The time, in milliseconds since the epoch, when the code review was created.

        • LastUpdatedTimeStamp — (Date)

          The time, in milliseconds since the epoch, when the code review was last updated.

        • Type — (String)

          The type of the code review.

          Possible values include:
          • "PullRequest"
          • "RepositoryAnalysis"
        • PullRequestId — (String)

          The pull request ID for the code review.

        • MetricsSummary — (map)

          The statistics from the code review.

          • MeteredLinesOfCodeCount — (Integer)

            Lines of code metered in the code review. For the initial code review pull request and all subsequent revisions, this includes all lines of code in the files added to the pull request. In subsequent revisions, for files that already existed in the pull request, this includes only the changed lines of code. In both cases, this does not include non-code lines such as comments and import statements. For example, if you submit a pull request containing 5 files, each with 500 lines of code, and in a subsequent revision you added a new file with 200 lines of code, and also modified a total of 25 lines across the initial 5 files, MeteredLinesOfCodeCount includes the first 5 files (5 * 500 = 2,500 lines), the new file (200 lines) and the 25 changed lines of code for a total of 2,725 lines of code.

          • SuppressedLinesOfCodeCount — (Integer)

            Lines of code suppressed in the code review based on the excludeFiles element in the aws-codeguru-reviewer.yml file. For full repository analyses, this number includes all lines of code in the files that are suppressed. For pull requests, this number only includes the changed lines of code that are suppressed. In both cases, this number does not include non-code lines such as comments and import statements. For example, if you initiate a full repository analysis on a repository containing 5 files, each file with 100 lines of code, and 2 files are listed as excluded in the aws-codeguru-reviewer.yml file, then SuppressedLinesOfCodeCount returns 200 (2 * 100) as the total number of lines of code suppressed. However, if you submit a pull request for the same repository, then SuppressedLinesOfCodeCount only includes the lines in the 2 files that changed. If only 1 of the 2 files changed in the pull request, then SuppressedLinesOfCodeCount returns 100 (1 * 100) as the total number of lines of code suppressed.

          • FindingsCount — (Integer)

            Total number of recommendations found in the code review.

        • SourceCodeType — (map)

          Specifies the source code that is analyzed in a code review.

          • CommitDiff — (map)

            A SourceCodeType that specifies a commit diff created by a pull request on an associated repository.

            • SourceCommit — (String)

              The SHA of the source commit used to generate a commit diff. This field is required for a pull request code review.

            • DestinationCommit — (String)

              The SHA of the destination commit used to generate a commit diff. This field is required for a pull request code review.

            • MergeBaseCommit — (String)

              The SHA of the merge base of a commit.

          • RepositoryHead — (map)

            A SourceCodeType that specifies the tip of a branch in an associated repository.

            • BranchNamerequired — (String)

              The name of the branch in an associated repository. The RepositoryHeadSourceCodeType specifies the tip of this branch.

          • BranchDiff — (map)

            A type of SourceCodeType that specifies a source branch name and a destination branch name in an associated repository.

            • SourceBranchNamerequired — (String)

              The source branch for a diff in an associated repository.

            • DestinationBranchNamerequired — (String)

              The destination branch for a diff in an associated repository.

          • S3BucketRepository — (map)

            Information about an associated repository in an S3 bucket that includes its name and an S3RepositoryDetails object. The S3RepositoryDetails object includes the name of an S3 bucket, an S3 key for a source code .zip file, and an S3 key for a build artifacts .zip file. S3BucketRepository is required in SourceCodeType for S3BucketRepository based code reviews.

            • Namerequired — (String)

              The name of the repository when the ProviderType is S3Bucket.

            • Details — (map)

              An S3RepositoryDetails object that specifies the name of an S3 bucket and a CodeArtifacts object. The CodeArtifacts object includes the S3 object keys for a source code .zip file and for a build artifacts .zip file.

              • BucketName — (String)

                The name of the S3 bucket used for associating a new S3 repository. It must begin with codeguru-reviewer-.

              • CodeArtifacts — (map)

                A CodeArtifacts object. The CodeArtifacts object includes the S3 object key for a source code .zip file and for a build artifacts .zip file that contains .jar or .class files.

                • SourceCodeArtifactsObjectKeyrequired — (String)

                  The S3 object key for a source code .zip file. This is required for all code reviews.

                • BuildArtifactsObjectKey — (String)

                  The S3 object key for a build artifacts .zip file that contains .jar or .class files. This is required for a code review with security analysis. For more information, see Create code reviews with GitHub Actions in the Amazon CodeGuru Reviewer User Guide.

          • RequestMetadata — (map)

            Metadata that is associated with a code review. This applies to any type of code review supported by CodeGuru Reviewer. The RequestMetadaa field captures any event metadata. For example, it might capture metadata associated with an event trigger, such as a push or a pull request.

            • RequestId — (String)

              The ID of the request. This is required for a pull request code review.

            • Requester — (String)

              An identifier, such as a name or account ID, that is associated with the requester. The Requester is used to capture the author/actor name of the event request.

            • EventInfo — (map)

              Information about the event associated with a code review.

              • Name — (String)

                The name of the event. The possible names are pull_request, workflow_dispatch, schedule, and push

              • State — (String)

                The state of an event. The state might be open, closed, or another state.

            • VendorName — (String)

              The name of the repository vendor used to upload code to an S3 bucket for a CI/CD code review. For example, if code and artifacts are uploaded to an S3 bucket for a CI/CD code review by GitHub scripts from a GitHub repository, then the repository association's ProviderType is S3Bucket and the CI/CD repository vendor name is GitHub. For more information, see the definition for ProviderType in RepositoryAssociation.

              Possible values include:
              • "GitHub"
              • "GitLab"
              • "NativeS3"
      • NextToken — (String)

        Pagination token.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listRecommendationFeedback(params = {}, callback) ⇒ AWS.Request

Returns a list of RecommendationFeedbackSummary objects that contain customer recommendation feedback for all CodeGuru Reviewer users.

Service Reference:

Examples:

Calling the listRecommendationFeedback operation

var params = {
  CodeReviewArn: 'STRING_VALUE', /* required */
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE',
  RecommendationIds: [
    'STRING_VALUE',
    /* more items */
  ],
  UserIds: [
    'STRING_VALUE',
    /* more items */
  ]
};
codegurureviewer.listRecommendationFeedback(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • NextToken — (String)

      If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.

    • MaxResults — (Integer)

      The maximum number of results that are returned per call. The default is 100.

    • CodeReviewArn — (String)

      The Amazon Resource Name (ARN) of the CodeReview object.

    • UserIds — (Array<String>)

      An Amazon Web Services user's account ID or Amazon Resource Name (ARN). Use this ID to query the recommendation feedback for a code review from that user.

      The UserId is an IAM principal that can be specified as an Amazon Web Services account ID or an Amazon Resource Name (ARN). For more information, see Specifying a Principal in the Amazon Web Services Identity and Access Management User Guide.

    • RecommendationIds — (Array<String>)

      Used to query the recommendation feedback for a given recommendation.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • RecommendationFeedbackSummaries — (Array<map>)

        Recommendation feedback summaries corresponding to the code review ARN.

        • RecommendationId — (String)

          The recommendation ID that can be used to track the provided recommendations. Later on it can be used to collect the feedback.

        • Reactions — (Array<String>)

          List for storing reactions. Reactions are utf-8 text code for emojis.

        • UserId — (String)

          The ID of the user that gave the feedback.

          The UserId is an IAM principal that can be specified as an Amazon Web Services account ID or an Amazon Resource Name (ARN). For more information, see Specifying a Principal in the Amazon Web Services Identity and Access Management User Guide.

      • NextToken — (String)

        If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listRecommendations(params = {}, callback) ⇒ AWS.Request

Returns the list of all recommendations for a completed code review.

Service Reference:

Examples:

Calling the listRecommendations operation

var params = {
  CodeReviewArn: 'STRING_VALUE', /* required */
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE'
};
codegurureviewer.listRecommendations(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • NextToken — (String)

      Pagination token.

    • MaxResults — (Integer)

      The maximum number of results that are returned per call. The default is 100.

    • CodeReviewArn — (String)

      The Amazon Resource Name (ARN) of the CodeReview object.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • RecommendationSummaries — (Array<map>)

        List of recommendations for the requested code review.

        • FilePath — (String)

          Name of the file on which a recommendation is provided.

        • RecommendationId — (String)

          The recommendation ID that can be used to track the provided recommendations. Later on it can be used to collect the feedback.

        • StartLine — (Integer)

          Start line from where the recommendation is applicable in the source commit or source branch.

        • EndLine — (Integer)

          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.

        • Description — (String)

          A description of the recommendation generated by CodeGuru Reviewer for the lines of code between the start line and the end line.

        • RecommendationCategory — (String)

          The type of a recommendation.

          Possible values include:
          • "AWSBestPractices"
          • "AWSCloudFormationIssues"
          • "DuplicateCode"
          • "CodeMaintenanceIssues"
          • "ConcurrencyIssues"
          • "InputValidations"
          • "PythonBestPractices"
          • "JavaBestPractices"
          • "ResourceLeaks"
          • "SecurityIssues"
          • "CodeInconsistencies"
        • RuleMetadata — (map)

          Metadata about a rule. Rule metadata includes an ID, a name, a list of tags, and a short and long description. CodeGuru Reviewer uses rules to analyze code. A rule's recommendation is included in analysis results if code is detected that violates the rule.

          • RuleId — (String)

            The ID of the rule.

          • RuleName — (String)

            The name of the rule.

          • ShortDescription — (String)

            A short description of the rule.

          • LongDescription — (String)

            A long description of the rule.

          • RuleTags — (Array<String>)

            Tags that are associated with the rule.

        • Severity — (String)

          The severity of the issue in the code that generated this recommendation.

          Possible values include:
          • "Info"
          • "Low"
          • "Medium"
          • "High"
          • "Critical"
      • NextToken — (String)

        Pagination token.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listRepositoryAssociations(params = {}, callback) ⇒ AWS.Request

Returns a list of RepositoryAssociationSummary objects that contain summary information about a repository association. You can filter the returned list by ProviderType, Name, State, and Owner.

Service Reference:

Examples:

Calling the listRepositoryAssociations operation

var params = {
  MaxResults: 'NUMBER_VALUE',
  Names: [
    'STRING_VALUE',
    /* more items */
  ],
  NextToken: 'STRING_VALUE',
  Owners: [
    'STRING_VALUE',
    /* more items */
  ],
  ProviderTypes: [
    CodeCommit | GitHub | Bitbucket | GitHubEnterpriseServer | S3Bucket,
    /* more items */
  ],
  States: [
    Associated | Associating | Failed | Disassociating | Disassociated,
    /* more items */
  ]
};
codegurureviewer.listRepositoryAssociations(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ProviderTypes — (Array<String>)

      List of provider types to use as a filter.

    • States — (Array<String>)

      List of repository association states to use as a filter.

      The valid repository association states are:

      • Associated: The repository association is complete.

      • Associating: CodeGuru Reviewer is:

        • Setting up pull request notifications. This is required for pull requests to trigger a CodeGuru Reviewer review.

          Note: If your repository ProviderType is GitHub, GitHub Enterprise Server, or Bitbucket, CodeGuru Reviewer creates webhooks in your repository to trigger CodeGuru Reviewer reviews. If you delete these webhooks, reviews of code in your repository cannot be triggered.
        • Setting up source code access. This is required for CodeGuru Reviewer to securely clone code in your repository.

      • Failed: The repository failed to associate or disassociate.

      • Disassociating: CodeGuru Reviewer is removing the repository's pull request notifications and source code access.

      • Disassociated: CodeGuru Reviewer successfully disassociated the repository. You can create a new association with this repository if you want to review source code in it later. You can control access to code reviews created in anassociated repository with tags after it has been disassociated. For more information, see Using tags to control access to associated repositories in the Amazon CodeGuru Reviewer User Guide.

    • Names — (Array<String>)

      List of repository names to use as a filter.

    • Owners — (Array<String>)

      List of owners to use as a filter. For Amazon Web Services CodeCommit, it is the name of the CodeCommit account that was used to associate the repository. For other repository source providers, such as Bitbucket and GitHub Enterprise Server, this is name of the account that was used to associate the repository.

    • MaxResults — (Integer)

      The maximum number of repository association results returned by ListRepositoryAssociations in paginated output. When this parameter is used, ListRepositoryAssociations only returns maxResults results in a single page with a nextToken response element. The remaining results of the initial request can be seen by sending another ListRepositoryAssociations request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, ListRepositoryAssociations returns up to 100 results and a nextToken value if applicable.

    • NextToken — (String)

      The nextToken value returned from a previous paginated ListRepositoryAssociations request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value.

      Note: Treat this token as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • RepositoryAssociationSummaries — (Array<map>)

        A list of repository associations that meet the criteria of the request.

        • AssociationArn — (String)

          The Amazon Resource Name (ARN) of the RepositoryAssociation object. You can retrieve this ARN by calling ListRepositoryAssociations.

        • ConnectionArn — (String)

          The Amazon Resource Name (ARN) of an Amazon Web Services CodeStar Connections connection. Its format is arn:aws:codestar-connections:region-id:aws-account_id:connection/connection-id. For more information, see Connection in the Amazon Web Services CodeStar Connections API Reference.

        • LastUpdatedTimeStamp — (Date)

          The time, in milliseconds since the epoch, since the repository association was last updated.

        • AssociationId — (String)

          The repository association ID.

        • Name — (String)

          The name of the repository association.

        • Owner — (String)

          The owner of the repository. For an Amazon Web Services CodeCommit repository, this is the Amazon Web Services account ID of the account that owns the repository. For a GitHub, GitHub Enterprise Server, or Bitbucket repository, this is the username for the account that owns the repository. For an S3 repository, it can be the username or Amazon Web Services account ID.

        • ProviderType — (String)

          The provider type of the repository association.

          Possible values include:
          • "CodeCommit"
          • "GitHub"
          • "Bitbucket"
          • "GitHubEnterpriseServer"
          • "S3Bucket"
        • State — (String)

          The state of the repository association.

          The valid repository association states are:

          • Associated: The repository association is complete.

          • Associating: CodeGuru Reviewer is:

            • Setting up pull request notifications. This is required for pull requests to trigger a CodeGuru Reviewer review.

              Note: If your repository ProviderType is GitHub, GitHub Enterprise Server, or Bitbucket, CodeGuru Reviewer creates webhooks in your repository to trigger CodeGuru Reviewer reviews. If you delete these webhooks, reviews of code in your repository cannot be triggered.
            • Setting up source code access. This is required for CodeGuru Reviewer to securely clone code in your repository.

          • Failed: The repository failed to associate or disassociate.

          • Disassociating: CodeGuru Reviewer is removing the repository's pull request notifications and source code access.

          • Disassociated: CodeGuru Reviewer successfully disassociated the repository. You can create a new association with this repository if you want to review source code in it later. You can control access to code reviews created in anassociated repository with tags after it has been disassociated. For more information, see Using tags to control access to associated repositories in the Amazon CodeGuru Reviewer User Guide.

          Possible values include:
          • "Associated"
          • "Associating"
          • "Failed"
          • "Disassociating"
          • "Disassociated"
      • NextToken — (String)

        The nextToken value to include in a future ListRecommendations request. When the results of a ListRecommendations request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listTagsForResource(params = {}, callback) ⇒ AWS.Request

Returns the list of tags associated with an associated repository resource.

Service Reference:

Examples:

Calling the listTagsForResource operation

var params = {
  resourceArn: 'STRING_VALUE' /* required */
};
codegurureviewer.listTagsForResource(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Tags — (map<String>)

        An array of key-value pairs used to tag an associated repository. A tag is a custom attribute label with two parts:

        • A tag key (for example, CostCenter, Environment, Project, or Secret). Tag keys are case sensitive.

        • An optional field known as a tag value (for example, 111122223333, Production, or a team name). Omitting the tag value is the same as using an empty string. Like tag keys, tag values are case sensitive.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

putRecommendationFeedback(params = {}, callback) ⇒ AWS.Request

Stores customer feedback for a CodeGuru Reviewer recommendation. When this API is called again with different reactions the previous feedback is overwritten.

Service Reference:

Examples:

Calling the putRecommendationFeedback operation

var params = {
  CodeReviewArn: 'STRING_VALUE', /* required */
  Reactions: [ /* required */
    ThumbsUp | ThumbsDown,
    /* more items */
  ],
  RecommendationId: 'STRING_VALUE' /* required */
};
codegurureviewer.putRecommendationFeedback(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • CodeReviewArn — (String)

      The Amazon Resource Name (ARN) of the CodeReview object.

    • RecommendationId — (String)

      The recommendation ID that can be used to track the provided recommendations and then to collect the feedback.

    • Reactions — (Array<String>)

      List for storing reactions. Reactions are utf-8 text code for emojis. If you send an empty list it clears all your feedback.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

tagResource(params = {}, callback) ⇒ AWS.Request

Adds one or more tags to an associated repository.

Service Reference:

Examples:

Calling the tagResource operation

var params = {
  Tags: { /* required */
    '<TagKey>': 'STRING_VALUE',
    /* '<TagKey>': ... */
  },
  resourceArn: 'STRING_VALUE' /* required */
};
codegurureviewer.tagResource(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • resourceArn — (String)

      The Amazon Resource Name (ARN) of the RepositoryAssociation object. You can retrieve this ARN by calling ListRepositoryAssociations.

    • Tags — (map<String>)

      An array of key-value pairs used to tag an associated repository. A tag is a custom attribute label with two parts:

      • A tag key (for example, CostCenter, Environment, Project, or Secret). Tag keys are case sensitive.

      • An optional field known as a tag value (for example, 111122223333, Production, or a team name). Omitting the tag value is the same as using an empty string. Like tag keys, tag values are case sensitive.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

untagResource(params = {}, callback) ⇒ AWS.Request

Removes a tag from an associated repository.

Service Reference:

Examples:

Calling the untagResource operation

var params = {
  TagKeys: [ /* required */
    'STRING_VALUE',
    /* more items */
  ],
  resourceArn: 'STRING_VALUE' /* required */
};
codegurureviewer.untagResource(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • resourceArn — (String)

      The Amazon Resource Name (ARN) of the RepositoryAssociation object. You can retrieve this ARN by calling ListRepositoryAssociations.

    • TagKeys — (Array<String>)

      A list of the keys for each tag you want to remove from an associated repository.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

waitFor(state, params = {}, callback) ⇒ AWS.Request

Waits for a given CodeGuruReviewer resource. The final callback or 'complete' event will be fired only when the resource is either in its final state or the waiter has timed out and stopped polling for the final state.

Examples:

Waiting for the repositoryAssociationSucceeded state

var params = {
  AssociationArn: 'STRING_VALUE' /* required */
};
codegurureviewer.waitFor('repositoryAssociationSucceeded', params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • state (String)

    the resource state to wait for. Available states for this service are listed in "Waiter Resource States" below.

  • params (map) (defaults to: {})

    a list of parameters for the given state. See each waiter resource state for required parameters.

Callback (callback):

  • function(err, data) { ... }

    Callback containing error and data information. See the respective resource state for the expected error or data information.

    If the waiter times out its requests, it will return a ResourceNotReady error.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

Waiter Resource States:

Waiter Resource Details

codegurureviewer.waitFor('repositoryAssociationSucceeded', params = {}, [callback]) ⇒ AWS.Request

Waits for the repositoryAssociationSucceeded state by periodically calling the underlying CodeGuruReviewer.describeRepositoryAssociation() operation every 10 seconds (at most 30 times).

Examples:

Waiting for the repositoryAssociationSucceeded state

var params = {
  AssociationArn: 'STRING_VALUE' /* required */
};
codegurureviewer.waitFor('repositoryAssociationSucceeded', params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • RepositoryAssociation — (map)

        Information about the repository association.

        • AssociationId — (String)

          The ID of the repository association.

        • AssociationArn — (String)

          The Amazon Resource Name (ARN) identifying the repository association.

        • ConnectionArn — (String)

          The Amazon Resource Name (ARN) of an Amazon Web Services CodeStar Connections connection. Its format is arn:aws:codestar-connections:region-id:aws-account_id:connection/connection-id. For more information, see Connection in the Amazon Web Services CodeStar Connections API Reference.

        • Name — (String)

          The name of the repository.

        • Owner — (String)

          The owner of the repository. For an Amazon Web Services CodeCommit repository, this is the Amazon Web Services account ID of the account that owns the repository. For a GitHub, GitHub Enterprise Server, or Bitbucket repository, this is the username for the account that owns the repository. For an S3 repository, it can be the username or Amazon Web Services account ID.

        • ProviderType — (String)

          The provider type of the repository association.

          Possible values include:
          • "CodeCommit"
          • "GitHub"
          • "Bitbucket"
          • "GitHubEnterpriseServer"
          • "S3Bucket"
        • State — (String)

          The state of the repository association.

          The valid repository association states are:

          • Associated: The repository association is complete.

          • Associating: CodeGuru Reviewer is:

            • Setting up pull request notifications. This is required for pull requests to trigger a CodeGuru Reviewer review.

              Note: If your repository ProviderType is GitHub, GitHub Enterprise Server, or Bitbucket, CodeGuru Reviewer creates webhooks in your repository to trigger CodeGuru Reviewer reviews. If you delete these webhooks, reviews of code in your repository cannot be triggered.
            • Setting up source code access. This is required for CodeGuru Reviewer to securely clone code in your repository.

          • Failed: The repository failed to associate or disassociate.

          • Disassociating: CodeGuru Reviewer is removing the repository's pull request notifications and source code access.

          • Disassociated: CodeGuru Reviewer successfully disassociated the repository. You can create a new association with this repository if you want to review source code in it later. You can control access to code reviews created in anassociated repository with tags after it has been disassociated. For more information, see Using tags to control access to associated repositories in the Amazon CodeGuru Reviewer User Guide.

          Possible values include:
          • "Associated"
          • "Associating"
          • "Failed"
          • "Disassociating"
          • "Disassociated"
        • StateReason — (String)

          A description of why the repository association is in the current state.

        • LastUpdatedTimeStamp — (Date)

          The time, in milliseconds since the epoch, when the repository association was last updated.

        • CreatedTimeStamp — (Date)

          The time, in milliseconds since the epoch, when the repository association was created.

        • KMSKeyDetails — (map)

          A KMSKeyDetails object that contains:

          • The encryption option for this repository association. It is either owned by Amazon Web Services Key Management Service (KMS) (AWS_OWNED_CMK) or customer managed (CUSTOMER_MANAGED_CMK).

          • The ID of the Amazon Web Services KMS key that is associated with this repository association.

          • KMSKeyId — (String)

            The ID of the Amazon Web Services KMS key that is associated with a repository association.

          • EncryptionOption — (String)

            The encryption option for a repository association. It is either owned by Amazon Web Services Key Management Service (KMS) (AWS_OWNED_CMK) or customer managed (CUSTOMER_MANAGED_CMK).

            Possible values include:
            • "AWS_OWNED_CMK"
            • "CUSTOMER_MANAGED_CMK"
        • S3RepositoryDetails — (map)

          Specifies the name of an S3 bucket and a CodeArtifacts object that contains the S3 object keys for a source code .zip file and for a build artifacts .zip file that contains .jar or .class files.

          • BucketName — (String)

            The name of the S3 bucket used for associating a new S3 repository. It must begin with codeguru-reviewer-.

          • CodeArtifacts — (map)

            A CodeArtifacts object. The CodeArtifacts object includes the S3 object key for a source code .zip file and for a build artifacts .zip file that contains .jar or .class files.

            • SourceCodeArtifactsObjectKeyrequired — (String)

              The S3 object key for a source code .zip file. This is required for all code reviews.

            • BuildArtifactsObjectKey — (String)

              The S3 object key for a build artifacts .zip file that contains .jar or .class files. This is required for a code review with security analysis. For more information, see Create code reviews with GitHub Actions in the Amazon CodeGuru Reviewer User Guide.

      • Tags — (map<String>)

        An array of key-value pairs used to tag an associated repository. A tag is a custom attribute label with two parts:

        • A tag key (for example, CostCenter, Environment, Project, or Secret). Tag keys are case sensitive.

        • An optional field known as a tag value (for example, 111122223333, Production, or a team name). Omitting the tag value is the same as using an empty string. Like tag keys, tag values are case sensitive.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

See Also:

codegurureviewer.waitFor('codeReviewCompleted', params = {}, [callback]) ⇒ AWS.Request

Waits for the codeReviewCompleted state by periodically calling the underlying CodeGuruReviewer.describeCodeReview() operation every 10 seconds (at most 180 times).

Examples:

Waiting for the codeReviewCompleted state

var params = {
  CodeReviewArn: 'STRING_VALUE' /* required */
};
codegurureviewer.waitFor('codeReviewCompleted', params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object)
    • CodeReviewArn — (String)

      The Amazon Resource Name (ARN) of the CodeReview object.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • CodeReview — (map)

        Information about the code review.

        • Name — (String)

          The name of the code review.

        • CodeReviewArn — (String)

          The Amazon Resource Name (ARN) of the CodeReview object.

        • RepositoryName — (String)

          The name of the repository.

        • Owner — (String)

          The owner of the repository. For an Amazon Web Services CodeCommit repository, this is the Amazon Web Services account ID of the account that owns the repository. For a GitHub, GitHub Enterprise Server, or Bitbucket repository, this is the username for the account that owns the repository. For an S3 repository, it can be the username or Amazon Web Services account ID.

        • ProviderType — (String)

          The type of repository that contains the reviewed code (for example, GitHub or Bitbucket).

          Possible values include:
          • "CodeCommit"
          • "GitHub"
          • "Bitbucket"
          • "GitHubEnterpriseServer"
          • "S3Bucket"
        • State — (String)

          The valid code review states are:

          • Completed: The code review is complete.

          • Pending: The code review started and has not completed or failed.

          • Failed: The code review failed.

          • Deleting: The code review is being deleted.

          Possible values include:
          • "Completed"
          • "Pending"
          • "Failed"
          • "Deleting"
        • StateReason — (String)

          The reason for the state of the code review.

        • CreatedTimeStamp — (Date)

          The time, in milliseconds since the epoch, when the code review was created.

        • LastUpdatedTimeStamp — (Date)

          The time, in milliseconds since the epoch, when the code review was last updated.

        • Type — (String)

          The type of code review.

          Possible values include:
          • "PullRequest"
          • "RepositoryAnalysis"
        • PullRequestId — (String)

          The pull request ID for the code review.

        • SourceCodeType — (map)

          The type of the source code for the code review.

          • CommitDiff — (map)

            A SourceCodeType that specifies a commit diff created by a pull request on an associated repository.

            • SourceCommit — (String)

              The SHA of the source commit used to generate a commit diff. This field is required for a pull request code review.

            • DestinationCommit — (String)

              The SHA of the destination commit used to generate a commit diff. This field is required for a pull request code review.

            • MergeBaseCommit — (String)

              The SHA of the merge base of a commit.

          • RepositoryHead — (map)

            A SourceCodeType that specifies the tip of a branch in an associated repository.

            • BranchNamerequired — (String)

              The name of the branch in an associated repository. The RepositoryHeadSourceCodeType specifies the tip of this branch.

          • BranchDiff — (map)

            A type of SourceCodeType that specifies a source branch name and a destination branch name in an associated repository.

            • SourceBranchNamerequired — (String)

              The source branch for a diff in an associated repository.

            • DestinationBranchNamerequired — (String)

              The destination branch for a diff in an associated repository.

          • S3BucketRepository — (map)

            Information about an associated repository in an S3 bucket that includes its name and an S3RepositoryDetails object. The S3RepositoryDetails object includes the name of an S3 bucket, an S3 key for a source code .zip file, and an S3 key for a build artifacts .zip file. S3BucketRepository is required in SourceCodeType for S3BucketRepository based code reviews.

            • Namerequired — (String)

              The name of the repository when the ProviderType is S3Bucket.

            • Details — (map)

              An S3RepositoryDetails object that specifies the name of an S3 bucket and a CodeArtifacts object. The CodeArtifacts object includes the S3 object keys for a source code .zip file and for a build artifacts .zip file.

              • BucketName — (String)

                The name of the S3 bucket used for associating a new S3 repository. It must begin with codeguru-reviewer-.

              • CodeArtifacts — (map)

                A CodeArtifacts object. The CodeArtifacts object includes the S3 object key for a source code .zip file and for a build artifacts .zip file that contains .jar or .class files.

                • SourceCodeArtifactsObjectKeyrequired — (String)

                  The S3 object key for a source code .zip file. This is required for all code reviews.

                • BuildArtifactsObjectKey — (String)

                  The S3 object key for a build artifacts .zip file that contains .jar or .class files. This is required for a code review with security analysis. For more information, see Create code reviews with GitHub Actions in the Amazon CodeGuru Reviewer User Guide.

          • RequestMetadata — (map)

            Metadata that is associated with a code review. This applies to any type of code review supported by CodeGuru Reviewer. The RequestMetadaa field captures any event metadata. For example, it might capture metadata associated with an event trigger, such as a push or a pull request.

            • RequestId — (String)

              The ID of the request. This is required for a pull request code review.

            • Requester — (String)

              An identifier, such as a name or account ID, that is associated with the requester. The Requester is used to capture the author/actor name of the event request.

            • EventInfo — (map)

              Information about the event associated with a code review.

              • Name — (String)

                The name of the event. The possible names are pull_request, workflow_dispatch, schedule, and push

              • State — (String)

                The state of an event. The state might be open, closed, or another state.

            • VendorName — (String)

              The name of the repository vendor used to upload code to an S3 bucket for a CI/CD code review. For example, if code and artifacts are uploaded to an S3 bucket for a CI/CD code review by GitHub scripts from a GitHub repository, then the repository association's ProviderType is S3Bucket and the CI/CD repository vendor name is GitHub. For more information, see the definition for ProviderType in RepositoryAssociation.

              Possible values include:
              • "GitHub"
              • "GitLab"
              • "NativeS3"
        • AssociationArn — (String)

          The Amazon Resource Name (ARN) of the RepositoryAssociation that contains the reviewed source code. You can retrieve associated repository ARNs by calling ListRepositoryAssociations.

        • Metrics — (map)

          The statistics from the code review.

          • MeteredLinesOfCodeCount — (Integer)

            MeteredLinesOfCodeCount is the number of lines of code in the repository where the code review happened. This does not include non-code lines such as comments and blank lines.

          • SuppressedLinesOfCodeCount — (Integer)

            SuppressedLinesOfCodeCount is the number of lines of code in the repository where the code review happened that CodeGuru Reviewer did not analyze. The lines suppressed in the analysis is based on the excludeFiles variable in the aws-codeguru-reviewer.yml file. This number does not include non-code lines such as comments and blank lines.

          • FindingsCount — (Integer)

            Total number of recommendations found in the code review.

        • AnalysisTypes — (Array<String>)

          The types of analysis performed during a repository analysis or a pull request review. You can specify either Security, CodeQuality, or both.

        • ConfigFileState — (String)

          The state of the aws-codeguru-reviewer.yml configuration file that allows the configuration of the CodeGuru Reviewer analysis. The file either exists, doesn't exist, or exists with errors at the root directory of your repository.

          Possible values include:
          • "Present"
          • "Absent"
          • "PresentWithErrors"

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

See Also: