Show / Hide Table of Contents

Class CfnAccessPointPropsMixin.TransformationConfigurationProperty

A configuration used when creating an Object Lambda Access Point transformation.

Inheritance
object
CfnAccessPointPropsMixin.TransformationConfigurationProperty
Implements
CfnAccessPointPropsMixin.ITransformationConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.S3ObjectLambda
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnAccessPointPropsMixin.TransformationConfigurationProperty : CfnAccessPointPropsMixin.ITransformationConfigurationProperty
Syntax (vb)
Public Class CfnAccessPointPropsMixin.TransformationConfigurationProperty Implements CfnAccessPointPropsMixin.ITransformationConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3objectlambda-accesspoint-transformationconfiguration.html

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.CfnPropertyMixins.AWS.S3ObjectLambda;

             var contentTransformation;

             var transformationConfigurationProperty = new TransformationConfigurationProperty {
                 Actions = new [] { "actions" },
                 ContentTransformation = contentTransformation
             };

Synopsis

Constructors

TransformationConfigurationProperty()

A configuration used when creating an Object Lambda Access Point transformation.

Properties

Actions

A container for the action of an Object Lambda Access Point configuration.

ContentTransformation

A container for the content transformation of an Object Lambda Access Point configuration.

Constructors

TransformationConfigurationProperty()

A configuration used when creating an Object Lambda Access Point transformation.

public TransformationConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3objectlambda-accesspoint-transformationconfiguration.html

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.CfnPropertyMixins.AWS.S3ObjectLambda;

             var contentTransformation;

             var transformationConfigurationProperty = new TransformationConfigurationProperty {
                 Actions = new [] { "actions" },
                 ContentTransformation = contentTransformation
             };

Properties

Actions

A container for the action of an Object Lambda Access Point configuration.

public string[]? Actions { get; set; }
Property Value

string[]

Remarks

Valid inputs are GetObject , HeadObject , ListObject , and ListObjectV2 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3objectlambda-accesspoint-transformationconfiguration.html#cfn-s3objectlambda-accesspoint-transformationconfiguration-actions

ContentTransformation

A container for the content transformation of an Object Lambda Access Point configuration.

public object? ContentTransformation { get; set; }
Property Value

object

Remarks

Can include the FunctionArn and FunctionPayload. For more information, see AwsLambdaTransformation in the Amazon S3 API Reference .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3objectlambda-accesspoint-transformationconfiguration.html#cfn-s3objectlambda-accesspoint-transformationconfiguration-contenttransformation

Implements

CfnAccessPointPropsMixin.ITransformationConfigurationProperty
Back to top Generated by DocFX