interface ConnectionFunctionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudFront.CfnConnectionFunction.ConnectionFunctionConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudfront#CfnConnectionFunction_ConnectionFunctionConfigProperty |
Java | software.amazon.awscdk.services.cloudfront.CfnConnectionFunction.ConnectionFunctionConfigProperty |
Python | aws_cdk.aws_cloudfront.CfnConnectionFunction.ConnectionFunctionConfigProperty |
TypeScript | aws-cdk-lib » aws_cloudfront » CfnConnectionFunction » ConnectionFunctionConfigProperty |
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-lib';
const connectionFunctionConfigProperty: cloudfront.CfnConnectionFunction.ConnectionFunctionConfigProperty = {
comment: 'comment',
runtime: 'runtime',
// the properties below are optional
keyValueStoreAssociations: [{
keyValueStoreArn: 'keyValueStoreArn',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| comment | string | A comment to describe the function. |
| runtime | string | The function's runtime environment version. |
| key | IResolvable | (IResolvable | Key)[] | The configuration for the key value store associations. |
comment
Type:
string
A comment to describe the function.
runtime
Type:
string
The function's runtime environment version.
keyValueStoreAssociations?
Type:
IResolvable | (IResolvable | Key)[]
(optional)
The configuration for the key value store associations.

.NET
Go
Java
Python
TypeScript