Class CfnDistribution.FunctionAssociationProperty
A CloudFront function that is associated with a cache behavior in a CloudFront distribution.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.CloudFront
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDistribution.FunctionAssociationProperty : CfnDistribution.IFunctionAssociationProperty
Syntax (vb)
Public Class CfnDistribution.FunctionAssociationProperty Implements CfnDistribution.IFunctionAssociationProperty
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 functionAssociationProperty = new FunctionAssociationProperty {
EventType = "eventType",
FunctionArn = "functionArn"
};
Synopsis
Constructors
| FunctionAssociationProperty() | A CloudFront function that is associated with a cache behavior in a CloudFront distribution. |
Properties
| EventType | The event type of the function, either |
| FunctionArn | The Amazon Resource Name (ARN) of the function. |
Constructors
FunctionAssociationProperty()
A CloudFront function that is associated with a cache behavior in a CloudFront distribution.
public FunctionAssociationProperty()
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 functionAssociationProperty = new FunctionAssociationProperty {
EventType = "eventType",
FunctionArn = "functionArn"
};
Properties
EventType
The event type of the function, either viewer-request or viewer-response .
public string? EventType { get; set; }
Property Value
Remarks
You cannot use origin-facing event types ( origin-request and origin-response ) with a CloudFront function.
FunctionArn
The Amazon Resource Name (ARN) of the function.
public string? FunctionArn { get; set; }