Class: Aws::CodeGuruReviewer::Types::S3RepositoryDetails

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

Overview

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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bucket_nameString

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

Returns:

  • (String)


1885
1886
1887
1888
1889
1890
# File 'lib/aws-sdk-codegurureviewer/types.rb', line 1885

class S3RepositoryDetails < Struct.new(
  :bucket_name,
  :code_artifacts)
  SENSITIVE = []
  include Aws::Structure
end

#code_artifactsTypes::CodeArtifacts

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.



1885
1886
1887
1888
1889
1890
# File 'lib/aws-sdk-codegurureviewer/types.rb', line 1885

class S3RepositoryDetails < Struct.new(
  :bucket_name,
  :code_artifacts)
  SENSITIVE = []
  include Aws::Structure
end