interface CfnKeyValueStoreProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudFront.CfnKeyValueStoreProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudfront#CfnKeyValueStoreProps |
Java | software.amazon.awscdk.services.cloudfront.CfnKeyValueStoreProps |
Python | aws_cdk.aws_cloudfront.CfnKeyValueStoreProps |
TypeScript | aws-cdk-lib » aws_cloudfront » CfnKeyValueStoreProps |
Properties for defining a CfnKeyValueStore.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cloudfront as cloudfront } from 'aws-cdk-lib';
const cfnKeyValueStoreProps: cloudfront.CfnKeyValueStoreProps = {
name: 'name',
// the properties below are optional
comment: 'comment',
importSource: {
sourceArn: 'sourceArn',
sourceType: 'sourceType',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the key value store. |
| comment? | string | A comment for the key value store. |
| import | IResolvable | Import | The import source for the key value store. |
name
Type:
string
The name of the key value store.
comment?
Type:
string
(optional)
A comment for the key value store.
importSource?
Type:
IResolvable | Import
(optional)
The import source for the key value store.

.NET
Go
Java
Python
TypeScript