Class CfnAccessPoint.ContentTransformationProperty
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.S3ObjectLambda
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAccessPoint.ContentTransformationProperty : CfnAccessPoint.IContentTransformationProperty
Syntax (vb)
Public Class CfnAccessPoint.ContentTransformationProperty Implements CfnAccessPoint.IContentTransformationProperty
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.S3ObjectLambda;
var contentTransformationProperty = new ContentTransformationProperty {
AwsLambda = new AwsLambdaProperty {
FunctionArn = "functionArn",
// the properties below are optional
FunctionPayload = "functionPayload"
}
};
Synopsis
Constructors
| ContentTransformationProperty() |
Properties
| AwsLambda |
Constructors
ContentTransformationProperty()
public ContentTransformationProperty()
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.S3ObjectLambda;
var contentTransformationProperty = new ContentTransformationProperty {
AwsLambda = new AwsLambdaProperty {
FunctionArn = "functionArn",
// the properties below are optional
FunctionPayload = "functionPayload"
}
};
Properties
AwsLambda
public object AwsLambda { get; set; }