RuntimeConfig

class aws_cdk.aws_appsync.RuntimeConfig(*, name, runtime_version)

Bases: object

Config for binding runtime to a function or resolver.

Parameters:
  • name (str) – The name of the runtime.

  • runtime_version (str) – The version string of the runtime.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_appsync as appsync

runtime_config = appsync.RuntimeConfig(
    name="name",
    runtime_version="runtimeVersion"
)

Attributes

name

The name of the runtime.

runtime_version

The version string of the runtime.