Interface CfnAccessPoint.TransformationConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAccessPoint.TransformationConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnAccessPoint

@Stability(Stable) public static interface CfnAccessPoint.TransformationConfigurationProperty extends software.amazon.jsii.JsiiSerializable

Amazon S3 Object Lambda will no longer be open to new customers starting on 11/7/2025.

If you would like to use the service, please sign up prior to 11/7/2025. For capabilities similar to S3 Object Lambda, learn more here - Amazon S3 Object Lambda availability change .

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 software.amazon.awscdk.services.s3objectlambda.*;
 Object contentTransformation;
 TransformationConfigurationProperty transformationConfigurationProperty = TransformationConfigurationProperty.builder()
         .actions(List.of("actions"))
         .contentTransformation(contentTransformation)
         .build();
 

See Also: