Class RuntimeConfig
Config for binding runtime to a function or resolver.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class RuntimeConfig : IRuntimeConfigSyntax (vb)
Public Class RuntimeConfig Implements IRuntimeConfigRemarks
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 runtimeConfig = new RuntimeConfig {
                Name = "name",
                RuntimeVersion = "runtimeVersion"
            };Synopsis
Constructors
| RuntimeConfig() | Config for binding runtime to a function or resolver. | 
Properties
| Name | The name of the runtime. | 
| RuntimeVersion | The version string of the runtime. | 
Constructors
RuntimeConfig()
Config for binding runtime to a function or resolver.
public RuntimeConfig()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 runtimeConfig = new RuntimeConfig {
                Name = "name",
                RuntimeVersion = "runtimeVersion"
            };Properties
Name
The name of the runtime.
public string Name { get; set; }Property Value
Remarks
ExampleMetadata: fixture=_generated
RuntimeVersion
The version string of the runtime.
public string RuntimeVersion { get; set; }Property Value
Remarks
ExampleMetadata: fixture=_generated