Class AttributeValuesStep
Utility class to allow assigning a value to an attribute.
Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class AttributeValuesStep : DeputyBase
Syntax (vb)
Public Class AttributeValuesStep 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.AppSync;
Assign assign;
var attributeValuesStep = new AttributeValuesStep("attr", "container", new [] { assign });
Synopsis
Constructors
| AttributeValuesStep(string, string, Assign[]) | Utility class to allow assigning a value to an attribute. |
Methods
| Is(string) | Assign the value to the current attribute. |
Constructors
AttributeValuesStep(string, string, Assign[])
Utility class to allow assigning a value to an attribute.
public AttributeValuesStep(string attr, string container, Assign[] assignments)
Parameters
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.AppSync;
Assign assign;
var attributeValuesStep = new AttributeValuesStep("attr", "container", new [] { assign });
Methods
Is(string)
Assign the value to the current attribute.
public virtual AttributeValues Is(string val)
Parameters
- val string
Returns
Remarks
ExampleMetadata: fixture=_generated