Class CfnAccessPointProps
Properties for defining a CfnAccessPoint.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.S3ObjectLambda
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAccessPointProps : ICfnAccessPointProps
Syntax (vb)
Public Class CfnAccessPointProps Implements ICfnAccessPointProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.S3ObjectLambda;
var contentTransformation;
var cfnAccessPointProps = new CfnAccessPointProps {
ObjectLambdaConfiguration = new ObjectLambdaConfigurationProperty {
SupportingAccessPoint = "supportingAccessPoint",
TransformationConfigurations = new [] { new TransformationConfigurationProperty {
Actions = new [] { "actions" },
ContentTransformation = contentTransformation
} },
// the properties below are optional
AllowedFeatures = new [] { "allowedFeatures" },
CloudWatchMetricsEnabled = false
},
// the properties below are optional
Name = "name"
};
Synopsis
Constructors
| CfnAccessPointProps() | Properties for defining a |
Properties
| Name | The name of this access point. |
| ObjectLambdaConfiguration | A configuration used when creating an Object Lambda Access Point. |
Constructors
CfnAccessPointProps()
Properties for defining a CfnAccessPoint.
public CfnAccessPointProps()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.S3ObjectLambda;
var contentTransformation;
var cfnAccessPointProps = new CfnAccessPointProps {
ObjectLambdaConfiguration = new ObjectLambdaConfigurationProperty {
SupportingAccessPoint = "supportingAccessPoint",
TransformationConfigurations = new [] { new TransformationConfigurationProperty {
Actions = new [] { "actions" },
ContentTransformation = contentTransformation
} },
// the properties below are optional
AllowedFeatures = new [] { "allowedFeatures" },
CloudWatchMetricsEnabled = false
},
// the properties below are optional
Name = "name"
};
Properties
Name
The name of this access point.
public string? Name { get; set; }
Property Value
Remarks
ObjectLambdaConfiguration
A configuration used when creating an Object Lambda Access Point.
public object ObjectLambdaConfiguration { get; set; }