Class: Aws::AppSync::Types::AppSyncRuntime

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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

Instance Attribute Details

#nameString

The ‘name` of the runtime to use. Currently, the only allowed value is `APPSYNC_JS`.

Returns:

  • (String)


341
342
343
344
345
346
# File 'lib/aws-sdk-appsync/types.rb', line 341

class AppSyncRuntime < Struct.new(
  :name,
  :runtime_version)
  SENSITIVE = []
  include Aws::Structure
end

#runtime_versionString

The ‘version` of the runtime to use. Currently, the only allowed version is `1.0.0`.

Returns:

  • (String)


341
342
343
344
345
346
# File 'lib/aws-sdk-appsync/types.rb', line 341

class AppSyncRuntime < Struct.new(
  :name,
  :runtime_version)
  SENSITIVE = []
  include Aws::Structure
end