interface FunctionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudFront.CfnFunctionPropsMixin.FunctionConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudfront#CfnFunctionPropsMixin_FunctionConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudfront.CfnFunctionPropsMixin.FunctionConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_cloudfront.CfnFunctionPropsMixin.FunctionConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudfront » 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 { aws_cloudfront as cloudfront } from '@aws-cdk/cfn-property-mixins';
const functionConfigProperty: cloudfront.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