interface CachingConfig
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.AppSync.CachingConfig |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsappsync#CachingConfig |
![]() | software.amazon.awscdk.services.appsync.CachingConfig |
![]() | aws_cdk.aws_appsync.CachingConfig |
![]() | aws-cdk-lib » aws_appsync » CachingConfig |
CachingConfig for AppSync resolvers.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cdk from 'aws-cdk-lib';
import { aws_appsync as appsync } from 'aws-cdk-lib';
const cachingConfig: appsync.CachingConfig = {
ttl: cdk.Duration.minutes(30),
// the properties below are optional
cachingKeys: ['cachingKeys'],
};
Properties
Name | Type | Description |
---|---|---|
ttl | Duration | The TTL in seconds for a resolver that has caching enabled. |
caching | string[] | The caching keys for a resolver that has caching enabled. |
ttl
Type:
Duration
The TTL in seconds for a resolver that has caching enabled.
Valid values are between 1 and 3600 seconds.
cachingKeys?
Type:
string[]
(optional, default: No caching keys)
The caching keys for a resolver that has caching enabled.
Valid values are entries from the $context.arguments, $context.source, and $context.identity maps.