interface CfnAccessPointMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3ObjectLambda.Mixins.CfnAccessPointMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3objectlambda/mixins#CfnAccessPointMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.s3objectlambda.mixins.CfnAccessPointMixinProps |
Python | aws_cdk.mixins_preview.aws_s3objectlambda.mixins.CfnAccessPointMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_s3objectlambda » mixins » 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 { mixins as s3objectlambda_mixins } from '@aws-cdk/mixins-preview/aws-s3objectlambda';
declare const contentTransformation: any;
const cfnAccessPointMixinProps: s3objectlambda_mixins.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