Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3objectlambda-accesspoint-transformationconfiguration.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.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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3objectlambda-accesspoint-transformationconfiguration.html#cfn-s3objectlambda-accesspoint-transformationconfiguration-actions

ContentTransformation

A container for the content transformation of an Object Lambda Access Point configuration.

object ContentTransformation { get; }
Property Value

object

Remarks

Can include the FunctionArn and FunctionPayload. For more information, see AwsLambdaTransformation in the Amazon S3 API Reference .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3objectlambda-accesspoint-transformationconfiguration.html#cfn-s3objectlambda-accesspoint-transformationconfiguration-contenttransformation

Back to top Generated by DocFX