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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnResolverPropsMixin.CachingConfigPropertystatic final classAn implementation forCfnResolverPropsMixin.CachingConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCachingKeys
The caching keys for a resolver that has caching activated.Valid values are entries from the
$context.arguments,$context.source, and$context.identitymaps.- See Also:
-
getTtl
The TTL in seconds for a resolver that has caching activated.Valid values are 1–3,600 seconds.
- See Also:
-
builder
-