Show / Hide Table of Contents

Class CfnFunctionConfiguration.AppSyncRuntimeProperty

Describes a runtime used by an AWS AppSync resolver or AWS AppSync function.

Inheritance
object
CfnFunctionConfiguration.AppSyncRuntimeProperty
Implements
CfnFunctionConfiguration.IAppSyncRuntimeProperty
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.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFunctionConfiguration.AppSyncRuntimeProperty : CfnFunctionConfiguration.IAppSyncRuntimeProperty
Syntax (vb)
Public Class CfnFunctionConfiguration.AppSyncRuntimeProperty Implements CfnFunctionConfiguration.IAppSyncRuntimeProperty
Remarks

Specifies the name and version of the runtime to use. Note that if a runtime is specified, code must also be specified.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-functionconfiguration-appsyncruntime.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.AppSync;

             var appSyncRuntimeProperty = new AppSyncRuntimeProperty {
                 Name = "name",
                 RuntimeVersion = "runtimeVersion"
             };

Synopsis

Constructors

AppSyncRuntimeProperty()

Describes a runtime used by an AWS AppSync resolver or AWS AppSync function.

Properties

Name

The name of the runtime to use.

RuntimeVersion

The version of the runtime to use.

Constructors

AppSyncRuntimeProperty()

Describes a runtime used by an AWS AppSync resolver or AWS AppSync function.

public AppSyncRuntimeProperty()
Remarks

Specifies the name and version of the runtime to use. Note that if a runtime is specified, code must also be specified.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-functionconfiguration-appsyncruntime.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.AppSync;

             var appSyncRuntimeProperty = new AppSyncRuntimeProperty {
                 Name = "name",
                 RuntimeVersion = "runtimeVersion"
             };

Properties

Name

The name of the runtime to use.

public string Name { get; set; }
Property Value

string

Remarks

Currently, the only allowed value is APPSYNC_JS .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-functionconfiguration-appsyncruntime.html#cfn-appsync-functionconfiguration-appsyncruntime-name

RuntimeVersion

The version of the runtime to use.

public string RuntimeVersion { get; set; }
Property Value

string

Remarks

Currently, the only allowed version is 1.0.0 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-functionconfiguration-appsyncruntime.html#cfn-appsync-functionconfiguration-appsyncruntime-runtimeversion

Implements

CfnFunctionConfiguration.IAppSyncRuntimeProperty
Back to top Generated by DocFX