Class: Aws::AppSync::Types::AppSyncRuntime
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppSync::Types::AppSyncRuntime
- Defined in:
- gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb
Overview
Describes a runtime used by an Amazon Web Services AppSync pipeline resolver or Amazon Web Services AppSync function. Specifies the name and version of the runtime to use. Note that if a runtime is specified, code must also be specified.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The
name
of the runtime to use. -
#runtime_version ⇒ String
The
version
of the runtime to use.
Instance Attribute Details
#name ⇒ String
The name
of the runtime to use. Currently, the only allowed value
is APPSYNC_JS
.
408 409 410 411 412 413 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 408 class AppSyncRuntime < Struct.new( :name, :runtime_version) SENSITIVE = [] include Aws::Structure end |
#runtime_version ⇒ String
The version
of the runtime to use. Currently, the only allowed
version is 1.0.0
.
408 409 410 411 412 413 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 408 class AppSyncRuntime < Struct.new( :name, :runtime_version) SENSITIVE = [] include Aws::Structure end |