interface ImportSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudFront.CfnKeyValueStorePropsMixin.ImportSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudfront#CfnKeyValueStorePropsMixin_ImportSourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudfront.CfnKeyValueStorePropsMixin.ImportSourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_cloudfront.CfnKeyValueStorePropsMixin.ImportSourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudfront » CfnKeyValueStorePropsMixin » ImportSourceProperty |
The import source for the key value store.
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/cfn-property-mixins';
const importSourceProperty: cloudfront.CfnKeyValueStorePropsMixin.ImportSourceProperty = {
sourceArn: 'sourceArn',
sourceType: 'sourceType',
};
Properties
| Name | Type | Description |
|---|---|---|
| source | string | The Amazon Resource Name (ARN) of the import source for the key value store. |
| source | string | The source type of the import source for the key value store. |
sourceArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the import source for the key value store.
sourceType?
Type:
string
(optional)
The source type of the import source for the key value store.

.NET
Go
Java
Python
TypeScript