interface ApiCacheReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.AppSync.ApiCacheReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsappsync#ApiCacheReference |
Java | software.amazon.awscdk.interfaces.appsync.ApiCacheReference |
Python | aws_cdk.interfaces.aws_appsync.ApiCacheReference |
TypeScript | aws-cdk-lib » interfaces » aws_appsync » ApiCacheReference |
A reference to a ApiCache resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appsync as interfaces_aws_appsync } from 'aws-cdk-lib/interfaces';
const apiCacheReference: interfaces_aws_appsync.ApiCacheReference = {
apiCacheId: 'apiCacheId',
};
Properties
| Name | Type | Description |
|---|---|---|
| api | string | The Id of the ApiCache resource. |
apiCacheId
Type:
string
The Id of the ApiCache resource.

.NET
Go
Java
Python
TypeScript