interface FunctionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFront.Mixins.CfnFunctionPropsMixin.FunctionConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudfront/mixins#CfnFunctionPropsMixin_FunctionConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.cloudfront.mixins.CfnFunctionPropsMixin.FunctionConfigProperty |
Python | aws_cdk.mixins_preview.aws_cloudfront.mixins.CfnFunctionPropsMixin.FunctionConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cloudfront » mixins » CfnFunctionPropsMixin » FunctionConfigProperty |
Contains configuration information about a CloudFront function.
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 functionConfigProperty: cloudfront_mixins.CfnFunctionPropsMixin.FunctionConfigProperty = {
comment: 'comment',
keyValueStoreAssociations: [{
keyValueStoreArn: 'keyValueStoreArn',
}],
runtime: 'runtime',
};
Properties
| Name | Type | Description |
|---|---|---|
| comment? | string | A comment to describe the function. |
| key | IResolvable | (IResolvable | Key)[] | The configuration for the key value store associations. |
| runtime? | string | The function's runtime environment version. |
comment?
Type:
string
(optional)
A comment to describe the function.
keyValueStoreAssociations?
Type:
IResolvable | (IResolvable | Key)[]
(optional)
The configuration for the key value store associations.
runtime?
Type:
string
(optional)
The function's runtime environment version.

.NET
Go
Java
Python
TypeScript