ProjectCache constructor

const ProjectCache({
  1. Input<String?>? cacheNamespace,
  2. Input<String?>? location,
  3. Input<List<String>?>? modes,
  4. Input<String?>? type,
})

Creates a new ProjectCache. cacheNamespace Namespace that determines the scope in which a cache is shared across multiple projects. location Location where the AWS CodeBuild project stores cached resources. For modes Specifies settings that AWS CodeBuild uses to store and reuse build type Type of storage that will be used for the AWS CodeBuild project cache. Valid values: NO_CACHE,

Implementation

const ProjectCache({
  this.cacheNamespace,
  this.location,
  this.modes,
  this.type,
});