Class CfnFunction.FunctionConfigProperty
Contains configuration information about a CloudFront function.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.CloudFront
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFunction.FunctionConfigProperty : CfnFunction.IFunctionConfigProperty
Syntax (vb)
Public Class CfnFunction.FunctionConfigProperty Implements CfnFunction.IFunctionConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CloudFront;
var functionConfigProperty = new FunctionConfigProperty {
Comment = "comment",
Runtime = "runtime",
// the properties below are optional
KeyValueStoreAssociations = new [] { new KeyValueStoreAssociationProperty {
KeyValueStoreArn = "keyValueStoreArn"
} }
};
Synopsis
Constructors
FunctionConfigProperty() | Contains configuration information about a CloudFront function. |
Properties
Comment | A comment to describe the function. |
KeyValueStoreAssociations | The configuration for the key value store associations. |
Runtime | The function's runtime environment version. |
Constructors
FunctionConfigProperty()
Contains configuration information about a CloudFront function.
public FunctionConfigProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CloudFront;
var functionConfigProperty = new FunctionConfigProperty {
Comment = "comment",
Runtime = "runtime",
// the properties below are optional
KeyValueStoreAssociations = new [] { new KeyValueStoreAssociationProperty {
KeyValueStoreArn = "keyValueStoreArn"
} }
};
Properties
Comment
A comment to describe the function.
public string Comment { get; set; }
Property Value
Remarks
KeyValueStoreAssociations
The configuration for the key value store associations.
public object? KeyValueStoreAssociations { get; set; }
Property Value
Remarks
Runtime
The function's runtime environment version.
public string Runtime { get; set; }