Show / Hide Table of Contents

Class CfnAccessPoint.ContentTransformationProperty

Inheritance
object
CfnAccessPoint.ContentTransformationProperty
Implements
CfnAccessPoint.IContentTransformationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.S3ObjectLambda
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAccessPoint.ContentTransformationProperty : CfnAccessPoint.IContentTransformationProperty
Syntax (vb)
Public Class CfnAccessPoint.ContentTransformationProperty Implements CfnAccessPoint.IContentTransformationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3objectlambda-accesspoint-contenttransformation.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.AWS.S3ObjectLambda;

             var contentTransformationProperty = new ContentTransformationProperty {
                 AwsLambda = new AwsLambdaProperty {
                     FunctionArn = "functionArn",

                     // the properties below are optional
                     FunctionPayload = "functionPayload"
                 }
             };

Synopsis

Constructors

ContentTransformationProperty()

Properties

AwsLambda

Constructors

ContentTransformationProperty()

public ContentTransformationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3objectlambda-accesspoint-contenttransformation.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.AWS.S3ObjectLambda;

             var contentTransformationProperty = new ContentTransformationProperty {
                 AwsLambda = new AwsLambdaProperty {
                     FunctionArn = "functionArn",

                     // the properties below are optional
                     FunctionPayload = "functionPayload"
                 }
             };

Properties

AwsLambda

public object AwsLambda { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnAccessPoint.IAwsLambdaProperty

Implements

CfnAccessPoint.IContentTransformationProperty
Back to top Generated by DocFX