Class CfnFunction.FunctionConfigProperty
Contains configuration information about a CloudFront function.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.CloudFront
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class FunctionConfigProperty : Object, CfnFunction.IFunctionConfigProperty
Syntax (vb)
Public Class FunctionConfigProperty
Inherits Object
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
Function |
Properties
Comment | A comment to describe the function. |
Key |
The configuration for the key value store associations. |
Runtime | The function's runtime environment version. |
Constructors
FunctionConfigProperty()
public FunctionConfigProperty()
Properties
Comment
A comment to describe the function.
public string Comment { get; set; }
Property Value
System.
Remarks
KeyValueStoreAssociations
The configuration for the key value store associations.
public object KeyValueStoreAssociations { get; set; }
Property Value
System.
Remarks
Runtime
The function's runtime environment version.
public string Runtime { get; set; }
Property Value
System.