Amazon CodeGuru Reviewer · JSON Structure

Amazon Codeguru Reviewer S3 Repository Structure

Information about a repository in an S3 bucket.

Type: object Properties: 2 Required: 2
AmazonCode ReviewSecurityDevOpsMachine LearningDeveloper Tools

S3Repository is a JSON Structure definition published by Amazon CodeGuru Reviewer, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Name BucketName

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codeguru-reviewer/refs/heads/main/json-structure/amazon-codeguru-reviewer-s3-repository-structure.json",
  "name": "S3Repository",
  "description": "Information about a repository in an S3 bucket.",
  "type": "object",
  "properties": {
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Name"
        },
        {
          "description": "The name of the repository in the S3 bucket."
        }
      ]
    },
    "BucketName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3BucketName"
        },
        {
          "description": "The name of the S3 bucket used for associating a new S3 repository. It must begin with <code>codeguru-reviewer-</code>. "
        }
      ]
    }
  },
  "required": [
    "Name",
    "BucketName"
  ]
}