interface TransformationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.S3ObjectLambda.CfnAccessPointPropsMixin.TransformationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awss3objectlambda#CfnAccessPointPropsMixin_TransformationConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.s3objectlambda.CfnAccessPointPropsMixin.TransformationConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_s3objectlambda.CfnAccessPointPropsMixin.TransformationConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_s3objectlambda » CfnAccessPointPropsMixin » TransformationConfigurationProperty |
A configuration used when creating an Object Lambda Access Point transformation.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_s3objectlambda as s3objectlambda } from '@aws-cdk/cfn-property-mixins';
declare const contentTransformation: any;
const transformationConfigurationProperty: s3objectlambda.CfnAccessPointPropsMixin.TransformationConfigurationProperty = {
actions: ['actions'],
contentTransformation: contentTransformation,
};
Properties
| Name | Type | Description |
|---|---|---|
| actions? | string[] | A container for the action of an Object Lambda Access Point configuration. |
| content | any | A container for the content transformation of an Object Lambda Access Point configuration. |
actions?
Type:
string[]
(optional)
A container for the action of an Object Lambda Access Point configuration.
Valid inputs are GetObject , HeadObject , ListObject , and ListObjectV2 .
contentTransformation?
Type:
any
(optional)
A container for the content transformation of an Object Lambda Access Point configuration.
Can include the FunctionArn and FunctionPayload. For more information, see AwsLambdaTransformation in the Amazon S3 API Reference .

.NET
Go
Java
Python
TypeScript