@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.833Z") @Stability(value=Stable) public interface CfnAccessPointProps 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;
CfnAccessPointProps cfnAccessPointProps = CfnAccessPointProps.builder()
.objectLambdaConfiguration(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())
// the properties below are optional
.name("name")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnAccessPointProps.Builder
A builder for
CfnAccessPointProps |
static class |
CfnAccessPointProps.Jsii$Proxy
An implementation for
CfnAccessPointProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnAccessPointProps.Builder |
builder() |
default String |
getName()
The name of this access point.
|
Object |
getObjectLambdaConfiguration()
A configuration used when creating an Object Lambda Access Point.
|
@Stability(value=Stable) @NotNull Object getObjectLambdaConfiguration()
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) static CfnAccessPointProps.Builder builder()
CfnAccessPointProps.Builder of CfnAccessPointPropsCopyright © 2022. All rights reserved.