Interface CfnResolver.CachingConfigProperty

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

@Stability(Stable) public static interface CfnResolver.CachingConfigProperty extends software.amazon.jsii.JsiiSerializable
The caching configuration for a resolver that has caching activated.

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.appsync.*;
 CachingConfigProperty cachingConfigProperty = CachingConfigProperty.builder()
         .ttl(123)
         // the properties below are optional
         .cachingKeys(List.of("cachingKeys"))
         .build();
 

See Also: