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
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: