Interface CfnResolverPropsMixin.CachingConfigProperty

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

@Stability(Stable) public static interface CfnResolverPropsMixin.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.cfnpropertymixins.services.appsync.*;
 CachingConfigProperty cachingConfigProperty = CachingConfigProperty.builder()
         .cachingKeys(List.of("cachingKeys"))
         .ttl(123)
         .build();
 

See Also: