interface CacheConfigProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Amplify.CfnApp.CacheConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsamplify#CfnApp_CacheConfigProperty |
Java | software.amazon.awscdk.services.amplify.CfnApp.CacheConfigProperty |
Python | aws_cdk.aws_amplify.CfnApp.CacheConfigProperty |
TypeScript | aws-cdk-lib » aws_amplify » CfnApp » CacheConfigProperty |
Describes the cache configuration for an Amplify app.
For more information about how Amplify applies an optimal cache configuration for your app based on the type of content that is being served, see Managing cache configuration in the Amplify User guide .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_amplify as amplify } from 'aws-cdk-lib';
const cacheConfigProperty: amplify.CfnApp.CacheConfigProperty = {
type: 'type',
};
Properties
Name | Type | Description |
---|---|---|
type? | string | The type of cache configuration to use for an Amplify app. |
type?
Type:
string
(optional)
The type of cache configuration to use for an Amplify app.
The AMPLIFY_MANAGED
cache configuration automatically applies an optimized cache configuration for your app based on its platform, routing rules, and rewrite rules. This is the default setting.
The AMPLIFY_MANAGED_NO_COOKIES
cache configuration type is the same as AMPLIFY_MANAGED
, except that it excludes all cookies from the cache key.