@Stability(value=Stable)
public static interface CfnAccessPoint.ObjectLambdaConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnAccessPoint.ObjectLambdaConfigurationProperty.Builder
A builder for
CfnAccessPoint.ObjectLambdaConfigurationProperty |
static class |
CfnAccessPoint.ObjectLambdaConfigurationProperty.Jsii$Proxy
An implementation for
CfnAccessPoint.ObjectLambdaConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnAccessPoint.ObjectLambdaConfigurationProperty.Builder |
builder() |
default List<String> |
getAllowedFeatures()
A container for allowed features.
|
default Object |
getCloudWatchMetricsEnabled()
A container for whether the CloudWatch metrics configuration is enabled.
|
String |
getSupportingAccessPoint()
Standard access point associated with the Object Lambda Access Point.
|
Object |
getTransformationConfigurations()
A container for transformation configurations for an Object Lambda Access Point.
|
@Stability(value=Stable) @NotNull String getSupportingAccessPoint()
@Stability(value=Stable) @NotNull Object getTransformationConfigurations()
@Stability(value=Stable) @Nullable default List<String> getAllowedFeatures()
Valid inputs are GetObject-Range , GetObject-PartNumber , HeadObject-Range , and HeadObject-PartNumber .
@Stability(value=Stable) @Nullable default Object getCloudWatchMetricsEnabled()
@Stability(value=Stable) static CfnAccessPoint.ObjectLambdaConfigurationProperty.Builder builder()
Copyright © 2023. All rights reserved.