Interface CfnAccessPoint.IObjectLambdaConfigurationProperty
A configuration used when creating an Object Lambda Access Point.
Namespace: Amazon.CDK.AWS.S3ObjectLambda
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IObjectLambdaConfigurationProperty
Syntax (vb)
Public Interface 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
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. |
Properties
AllowedFeatures
A container for allowed features.
virtual string[] AllowedFeatures { get; }
Property Value
System.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.
virtual object CloudWatchMetricsEnabled { get; }
Property Value
System.Object
Remarks
SupportingAccessPoint
Standard access point associated with the Object Lambda Access Point.
string SupportingAccessPoint { get; }
Property Value
System.String
Remarks
TransformationConfigurations
A container for transformation configurations for an Object Lambda Access Point.
object TransformationConfigurations { get; }
Property Value
System.Object