@Stability(value=Stable)
public static interface CfnAccessPoint.TransformationConfigurationProperty
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;
TransformationConfigurationProperty transformationConfigurationProperty = TransformationConfigurationProperty.builder()
.actions(List.of("actions"))
.contentTransformation(contentTransformation)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnAccessPoint.TransformationConfigurationProperty.Builder
A builder for
CfnAccessPoint.TransformationConfigurationProperty |
static class |
CfnAccessPoint.TransformationConfigurationProperty.Jsii$Proxy
An implementation for
CfnAccessPoint.TransformationConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnAccessPoint.TransformationConfigurationProperty.Builder |
builder() |
List<String> |
getActions()
A container for the action of an Object Lambda Access Point configuration.
|
Object |
getContentTransformation()
A container for the content transformation of an Object Lambda Access Point configuration.
|
@Stability(value=Stable) @NotNull List<String> getActions()
Valid inputs are GetObject , HeadObject , ListObject , and ListObjectV2 .
@Stability(value=Stable) @NotNull Object getContentTransformation()
Can include the FunctionArn and FunctionPayload. For more information, see AwsLambdaTransformation in the Amazon S3 API Reference .
@Stability(value=Stable) static CfnAccessPoint.TransformationConfigurationProperty.Builder builder()
Copyright © 2023. All rights reserved.