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 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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnResolver.AppSyncRuntimeProperty
static final class
An implementation forCfnResolver.AppSyncRuntimeProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
Thename
of the runtime to use.Currently, the only allowed value is
APPSYNC_JS
.- See Also:
-
getRuntimeVersion
Theversion
of the runtime to use.Currently, the only allowed version is
1.0.0
.- See Also:
-
builder
-