Show / Hide Table of Contents

Interface IRuntimeConfig

Config for binding runtime to a function or resolver.

Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IRuntimeConfig
Syntax (vb)
Public Interface IRuntimeConfig
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"
            };

Synopsis

Properties

Name

The name of the runtime.

RuntimeVersion

The version string of the runtime.

Properties

Name

The name of the runtime.

string Name { get; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

RuntimeVersion

The version string of the runtime.

string RuntimeVersion { get; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Back to top Generated by DocFX