Interface CfnResolver.AppSyncRuntimeProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnResolver.AppSyncRuntimeProperty.Jsii$Proxy
Enclosing class:
CfnResolver

@Stability(Stable) public static interface CfnResolver.AppSyncRuntimeProperty extends software.amazon.jsii.JsiiSerializable
Describes a runtime used by an AWS AppSync pipeline resolver or AWS AppSync function.

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

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.appsync.*;
 AppSyncRuntimeProperty appSyncRuntimeProperty = AppSyncRuntimeProperty.builder()
         .name("name")
         .runtimeVersion("runtimeVersion")
         .build();