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();
 
  • Method Details

    • getSupportingAccessPoint

      @Stability(Stable) @NotNull String getSupportingAccessPoint()
      Standard access point associated with the Object Lambda Access Point.
    • getTransformationConfigurations

      @Stability(Stable) @NotNull Object getTransformationConfigurations()
      A container for transformation configurations for an Object Lambda Access Point.
    • getAllowedFeatures

      @Stability(Stable) @Nullable default List<String> getAllowedFeatures()
      A container for allowed features.

      Valid inputs are GetObject-Range , GetObject-PartNumber , HeadObject-Range , and HeadObject-PartNumber .

    • getCloudWatchMetricsEnabled

      @Stability(Stable) @Nullable default Object getCloudWatchMetricsEnabled()
      A container for whether the CloudWatch metrics configuration is enabled.
    • builder

      @Stability(Stable) static CfnAccessPoint.ObjectLambdaConfigurationProperty.Builder builder()
      Returns:
      a CfnAccessPoint.ObjectLambdaConfigurationProperty.Builder of CfnAccessPoint.ObjectLambdaConfigurationProperty