{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codebuild/refs/heads/main/json-structure/amazon-codebuild-s3-logs-config-structure.json", "name": "S3LogsConfig", "description": " Information about S3 logs for a build project. ", "type": "object", "properties": { "status": { "allOf": [ { "$ref": "#/components/schemas/LogsConfigStatusType" }, { "description": "

The current status of the S3 build logs. Valid values are:

" } ] }, "location": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": " The ARN of an S3 bucket and the path prefix for S3 logs. If your Amazon S3 bucket name is my-bucket, and your path prefix is build-log, then acceptable formats are my-bucket/build-log or arn:aws:s3:::my-bucket/build-log. " } ] }, "encryptionDisabled": { "allOf": [ { "$ref": "#/components/schemas/WrapperBoolean" }, { "description": " Set to true if you do not want your S3 build log output encrypted. By default S3 build logs are encrypted. " } ] }, "bucketOwnerAccess": { "$ref": "#/components/schemas/BucketOwnerAccess" } }, "required": [ "status" ] }