Class CfnAccessPointPropsMixin.TransformationConfigurationProperty
A configuration used when creating an Object Lambda Access Point transformation.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.S3ObjectLambda
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnAccessPointPropsMixin.TransformationConfigurationProperty : CfnAccessPointPropsMixin.ITransformationConfigurationProperty
Syntax (vb)
Public Class CfnAccessPointPropsMixin.TransformationConfigurationProperty Implements CfnAccessPointPropsMixin.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.CfnPropertyMixins.AWS.S3ObjectLambda;
var contentTransformation;
var transformationConfigurationProperty = new TransformationConfigurationProperty {
Actions = new [] { "actions" },
ContentTransformation = contentTransformation
};
Synopsis
Constructors
| TransformationConfigurationProperty() | A configuration used when creating an Object Lambda Access Point transformation. |
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. |
Constructors
TransformationConfigurationProperty()
A configuration used when creating an Object Lambda Access Point transformation.
public TransformationConfigurationProperty()
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.CfnPropertyMixins.AWS.S3ObjectLambda;
var contentTransformation;
var transformationConfigurationProperty = new TransformationConfigurationProperty {
Actions = new [] { "actions" },
ContentTransformation = contentTransformation
};
Properties
Actions
A container for the action of an Object Lambda Access Point configuration.
public string[]? Actions { get; set; }
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.
public object? ContentTransformation { get; set; }
Property Value
Remarks
Can include the FunctionArn and FunctionPayload. For more information, see AwsLambdaTransformation in the Amazon S3 API Reference .