Class CfnAccessPoint.ObjectLambdaConfigurationProperty
A configuration used when creating an Object Lambda Access Point.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.S3ObjectLambda
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAccessPoint.ObjectLambdaConfigurationProperty : CfnAccessPoint.IObjectLambdaConfigurationProperty
Syntax (vb)
Public Class CfnAccessPoint.ObjectLambdaConfigurationProperty Implements CfnAccessPoint.IObjectLambdaConfigurationProperty
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 objectLambdaConfigurationProperty = new ObjectLambdaConfigurationProperty {
SupportingAccessPoint = "supportingAccessPoint",
TransformationConfigurations = new [] { new TransformationConfigurationProperty {
Actions = new [] { "actions" },
ContentTransformation = contentTransformation
} },
// the properties below are optional
AllowedFeatures = new [] { "allowedFeatures" },
CloudWatchMetricsEnabled = false
};
Synopsis
Constructors
| ObjectLambdaConfigurationProperty() | A configuration used when creating an Object Lambda Access Point. |
Properties
| AllowedFeatures | A container for allowed features. |
| CloudWatchMetricsEnabled | A container for whether the CloudWatch metrics configuration is enabled. |
| SupportingAccessPoint | Standard access point associated with the Object Lambda Access Point. |
| TransformationConfigurations | A container for transformation configurations for an Object Lambda Access Point. |
Constructors
ObjectLambdaConfigurationProperty()
A configuration used when creating an Object Lambda Access Point.
public ObjectLambdaConfigurationProperty()
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 objectLambdaConfigurationProperty = new ObjectLambdaConfigurationProperty {
SupportingAccessPoint = "supportingAccessPoint",
TransformationConfigurations = new [] { new TransformationConfigurationProperty {
Actions = new [] { "actions" },
ContentTransformation = contentTransformation
} },
// the properties below are optional
AllowedFeatures = new [] { "allowedFeatures" },
CloudWatchMetricsEnabled = false
};
Properties
AllowedFeatures
A container for allowed features.
public string[]? AllowedFeatures { get; set; }
Property Value
string[]
Remarks
Valid inputs are GetObject-Range , GetObject-PartNumber , HeadObject-Range , and HeadObject-PartNumber .
CloudWatchMetricsEnabled
A container for whether the CloudWatch metrics configuration is enabled.
public object? CloudWatchMetricsEnabled { get; set; }
Property Value
Remarks
SupportingAccessPoint
Standard access point associated with the Object Lambda Access Point.
public string SupportingAccessPoint { get; set; }
Property Value
Remarks
TransformationConfigurations
A container for transformation configurations for an Object Lambda Access Point.
public object TransformationConfigurations { get; set; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnAccessPoint.ITransformationConfigurationProperty)[]