Show / Hide Table of Contents

Class DynamoProjectionExpression

Class to generate projection expression.

Inheritance
object
DynamoProjectionExpression
Namespace: Amazon.CDK.AWS.StepFunctions.Tasks
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class DynamoProjectionExpression : DeputyBase
Syntax (vb)
Public Class DynamoProjectionExpression Inherits DeputyBase
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.StepFunctions.Tasks;

            var dynamoProjectionExpression = new DynamoProjectionExpression();

Synopsis

Constructors

DynamoProjectionExpression()

Class to generate projection expression.

Methods

AtIndex(double)

Adds the array literal access for passed index.

ToString()

converts and return the string expression.

WithAttribute(string)

Adds the passed attribute to the chain.

Constructors

DynamoProjectionExpression()

Class to generate projection expression.

public DynamoProjectionExpression()
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.StepFunctions.Tasks;

            var dynamoProjectionExpression = new DynamoProjectionExpression();

Methods

AtIndex(double)

Adds the array literal access for passed index.

public virtual DynamoProjectionExpression AtIndex(double index)
Parameters
index double

array index.

Returns

DynamoProjectionExpression

Remarks

ExampleMetadata: fixture=_generated

ToString()

converts and return the string expression.

public override string ToString()
Returns

string

Remarks

ExampleMetadata: fixture=_generated

WithAttribute(string)

Adds the passed attribute to the chain.

public virtual DynamoProjectionExpression WithAttribute(string attr)
Parameters
attr string

Attribute name.

Returns

DynamoProjectionExpression

Remarks

ExampleMetadata: fixture=_generated

Back to top Generated by DocFX