{ "$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:
ENABLED: S3 build logs are enabled for this build project.
DISABLED: S3 build logs are not enabled for this build project.
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"
]
}