Interface CfnAccessPoint.ITransformationConfigurationProperty
A configuration used when creating an Object Lambda Access Point transformation.
Namespace: Amazon.CDK.AWS.S3ObjectLambda
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnAccessPoint.ITransformationConfigurationProperty
Syntax (vb)
Public Interface CfnAccessPoint.ITransformationConfigurationProperty
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 contentTransformation;
var transformationConfigurationProperty = new TransformationConfigurationProperty {
Actions = new [] { "actions" },
ContentTransformation = contentTransformation
};
Synopsis
Properties
| Actions | A container for the action of an Object Lambda Access Point configuration. |
| ContentTransformation | A container for the content transformation of an Object Lambda Access Point configuration. |
Properties
Actions
A container for the action of an Object Lambda Access Point configuration.
string[] Actions { get; }
Property Value
string[]
Remarks
Valid inputs are GetObject , HeadObject , ListObject , and ListObjectV2 .
ContentTransformation
A container for the content transformation of an Object Lambda Access Point configuration.
object ContentTransformation { get; }
Property Value
Remarks
Can include the FunctionArn and FunctionPayload. For more information, see AwsLambdaTransformation in the Amazon S3 API Reference .