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