Interface CfnProject.ProjectCacheProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnProject.ProjectCacheProperty.Jsii$Proxy
Enclosing class:
CfnProject

@Stability(Stable) public static interface CfnProject.ProjectCacheProperty extends software.amazon.jsii.JsiiSerializable
ProjectCache is a property of the AWS CodeBuild Project resource that specifies information about the cache for the build project. If ProjectCache is not specified, then both of its properties default to NO_CACHE .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.codebuild.*;
 ProjectCacheProperty projectCacheProperty = ProjectCacheProperty.builder()
         .type("type")
         // the properties below are optional
         .location("location")
         .modes(List.of("modes"))
         .build();
 

See Also: