Method: Aws::CodeGuruReviewer::Types::CodeReview#owner
- Defined in:
- lib/aws-sdk-codegurureviewer/types.rb
#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.
283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 |
# File 'lib/aws-sdk-codegurureviewer/types.rb', line 283 class CodeReview < Struct.new( :name, :code_review_arn, :repository_name, :owner, :provider_type, :state, :state_reason, :created_time_stamp, :last_updated_time_stamp, :type, :pull_request_id, :source_code_type, :association_arn, :metrics, :analysis_types, :config_file_state) SENSITIVE = [] include Aws::Structure end |