ProjectCache

data class ProjectCache(val location: String? = null, val modes: List<String>? = null, val type: String? = null)

Constructors

Link copied to clipboard
constructor(location: String? = null, modes: List<String>? = null, type: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val location: String? = null

Location where the AWS CodeBuild project stores cached resources. For type S3, the value must be a valid S3 bucket name/prefix.

Link copied to clipboard
val modes: List<String>? = null

Specifies settings that AWS CodeBuild uses to store and reuse build dependencies. Valid values: LOCAL_SOURCE_CACHE, LOCAL_DOCKER_LAYER_CACHE, LOCAL_CUSTOM_CACHE.

Link copied to clipboard
val type: String? = null

Type of storage that will be used for the AWS CodeBuild project cache. Valid values: NO_CACHE, LOCAL, S3. Defaults to NO_CACHE.