interface CfnAccessPointMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.S3ObjectLambda.CfnAccessPointMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awss3objectlambda#CfnAccessPointMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.s3objectlambda.CfnAccessPointMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_s3objectlambda.CfnAccessPointMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_s3objectlambda » CfnAccessPointMixinProps |
Properties for CfnAccessPointPropsMixin.
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 cfnAccessPointMixinProps: s3objectlambda.CfnAccessPointMixinProps = {
name: 'name',
objectLambdaConfiguration: {
allowedFeatures: ['allowedFeatures'],
cloudWatchMetricsEnabled: false,
supportingAccessPoint: 'supportingAccessPoint',
transformationConfigurations: [{
actions: ['actions'],
contentTransformation: contentTransformation,
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of this access point. |
| object | IResolvable | Object | A configuration used when creating an Object Lambda Access Point. |
name?
Type:
string
(optional)
The name of this access point.
objectLambdaConfiguration?
Type:
IResolvable | Object
(optional)
A configuration used when creating an Object Lambda Access Point.

.NET
Go
Java
Python
TypeScript