Interface CfnAccessPoint.ObjectLambdaConfigurationProperty

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

@Stability(Stable) public static interface CfnAccessPoint.ObjectLambdaConfigurationProperty extends software.amazon.jsii.JsiiSerializable
A configuration used when creating an Object Lambda Access Point.

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;
 ObjectLambdaConfigurationProperty objectLambdaConfigurationProperty = ObjectLambdaConfigurationProperty.builder()
         .supportingAccessPoint("supportingAccessPoint")
         .transformationConfigurations(List.of(TransformationConfigurationProperty.builder()
                 .actions(List.of("actions"))
                 .contentTransformation(contentTransformation)
                 .build()))
         // the properties below are optional
         .allowedFeatures(List.of("allowedFeatures"))
         .cloudWatchMetricsEnabled(false)
         .build();
 

See Also: