Show / Hide Table of Contents

Class InlineCode

AppSync function code from an inline string.

Inheritance
object
Code
InlineCode
Inherited Members
Code.FromAsset(string, IAssetOptions)
Code.FromInline(string)
Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class InlineCode : Code
Syntax (vb)
Public Class InlineCode Inherits Code
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;

            var inlineCode = new InlineCode("code");

Synopsis

Constructors

InlineCode(string)

AppSync function code from an inline string.

Methods

Bind(Construct)

Bind source code to an AppSync Function or resolver.

Constructors

InlineCode(string)

AppSync function code from an inline string.

public InlineCode(string code)
Parameters
code string
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;

            var inlineCode = new InlineCode("code");

Methods

Bind(Construct)

Bind source code to an AppSync Function or resolver.

public override ICodeConfig Bind(Construct scope)
Parameters
scope Construct
Returns

ICodeConfig

Overrides
Code.Bind(Construct)
Remarks

ExampleMetadata: fixture=_generated

Back to top Generated by DocFX