Class: Aws::GameSparks::Types::Generator

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-gamesparks/types.rb

Overview

Properties that specify the code generator for a generated code job.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#game_sdk_versionString

The target version of the GameSparks Game SDK.

Returns:

  • (String)


525
526
527
528
529
530
531
# File 'lib/aws-sdk-gamesparks/types.rb', line 525

class Generator < Struct.new(
  :game_sdk_version,
  :language,
  :target_platform)
  SENSITIVE = []
  include Aws::Structure
end

#languageString

The programming language for the generated code.

Not all languages are supported for each platform. For cases where multiple languages are supported, this parameter specifies the language to be used. If this value is omitted, the default language for the target platform will be used.

Returns:

  • (String)


525
526
527
528
529
530
531
# File 'lib/aws-sdk-gamesparks/types.rb', line 525

class Generator < Struct.new(
  :game_sdk_version,
  :language,
  :target_platform)
  SENSITIVE = []
  include Aws::Structure
end

#target_platformString

The platform that will be used to run the generated code.

Returns:

  • (String)


525
526
527
528
529
530
531
# File 'lib/aws-sdk-gamesparks/types.rb', line 525

class Generator < Struct.new(
  :game_sdk_version,
  :language,
  :target_platform)
  SENSITIVE = []
  include Aws::Structure
end