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