interface ObjectLambdaConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.S3ObjectLambda.CfnAccessPointPropsMixin.ObjectLambdaConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awss3objectlambda#CfnAccessPointPropsMixin_ObjectLambdaConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.s3objectlambda.CfnAccessPointPropsMixin.ObjectLambdaConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_s3objectlambda.CfnAccessPointPropsMixin.ObjectLambdaConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_s3objectlambda » CfnAccessPointPropsMixin » ObjectLambdaConfigurationProperty |
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 { aws_s3objectlambda as s3objectlambda } from '@aws-cdk/cfn-property-mixins';
declare const contentTransformation: any;
const objectLambdaConfigurationProperty: s3objectlambda.CfnAccessPointPropsMixin.ObjectLambdaConfigurationProperty = {
allowedFeatures: ['allowedFeatures'],
cloudWatchMetricsEnabled: false,
supportingAccessPoint: 'supportingAccessPoint',
transformationConfigurations: [{
actions: ['actions'],
contentTransformation: contentTransformation,
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| allowed | string[] | A container for allowed features. |
| cloud | boolean | IResolvable | A container for whether the CloudWatch metrics configuration is enabled. |
| supporting | string | IAccess | Standard access point associated with the Object Lambda Access Point. |
| transformation | IResolvable | (IResolvable | Transformation)[] | A container for transformation configurations for an Object Lambda Access Point. |
allowedFeatures?
Type:
string[]
(optional)
A container for allowed features.
Valid inputs are GetObject-Range , GetObject-PartNumber , HeadObject-Range , and HeadObject-PartNumber .
cloudWatchMetricsEnabled?
Type:
boolean | IResolvable
(optional)
A container for whether the CloudWatch metrics configuration is enabled.
supportingAccessPoint?
Type:
string | IAccess
(optional)
Standard access point associated with the Object Lambda Access Point.
transformationConfigurations?
Type:
IResolvable | (IResolvable | Transformation)[]
(optional)
A container for transformation configurations for an Object Lambda Access Point.

.NET
Go
Java
Python
TypeScript