interface CfnKeyValueStoreMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFront.Mixins.CfnKeyValueStoreMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudfront/mixins#CfnKeyValueStoreMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.cloudfront.mixins.CfnKeyValueStoreMixinProps |
Python | aws_cdk.mixins_preview.aws_cloudfront.mixins.CfnKeyValueStoreMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_cloudfront » mixins » CfnKeyValueStoreMixinProps |
Properties for CfnKeyValueStorePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as cloudfront_mixins } from '@aws-cdk/mixins-preview/aws-cloudfront';
const cfnKeyValueStoreMixinProps: cloudfront_mixins.CfnKeyValueStoreMixinProps = {
comment: 'comment',
importSource: {
sourceArn: 'sourceArn',
sourceType: 'sourceType',
},
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| comment? | string | A comment for the key value store. |
| import | IResolvable | Import | The import source for the key value store. |
| name? | 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.
name?
Type:
string
(optional)
The name of the key value store.

.NET
Go
Java
Python
TypeScript