Show / Hide Table of Contents

Class CfnFunction.FunctionConfigProperty

Contains configuration information about a CloudFront function.

Inheritance
object
CfnFunction.FunctionConfigProperty
Implements
CfnFunction.IFunctionConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-function-functionconfig.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-function-functionconfig.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-function-functionconfig.html#cfn-cloudfront-function-functionconfig-comment

KeyValueStoreAssociations

The configuration for the key value store associations.

public object? KeyValueStoreAssociations { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-function-functionconfig.html#cfn-cloudfront-function-functionconfig-keyvaluestoreassociations

Runtime

The function's runtime environment version.

public string Runtime { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-function-functionconfig.html#cfn-cloudfront-function-functionconfig-runtime

Implements

CfnFunction.IFunctionConfigProperty
Back to top Generated by DocFX