Class: Aws::CodeGuruReviewer::Types::CodeCommitRepository

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-codegurureviewer/types.rb

Overview

Note:

When making an API call, you may pass CodeCommitRepository data as a hash:

{
  name: "Name", # required
}

Information about an AWS CodeCommit repository. The CodeCommit repository must be in the same AWS Region and AWS account where its CodeGuru Reviewer code reviews are configured.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the AWS CodeCommit repository. For more information, see

repositoryName][1

in the *AWS CodeCommit API Reference*.

[1]: docs.aws.amazon.com/codecommit/latest/APIReference/API_GetRepository.html#CodeCommit-GetRepository-request-repositoryName

Returns:

  • (String)


151
152
153
154
155
# File 'lib/aws-sdk-codegurureviewer/types.rb', line 151

class CodeCommitRepository < Struct.new(
  :name)
  SENSITIVE = []
  include Aws::Structure
end