Class: Aws::GameSparks::Types::Generator
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameSparks::Types::Generator
- 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
-
#game_sdk_version ⇒ String
The target version of the GameSparks Game SDK.
-
#language ⇒ String
The programming language for the generated code.
-
#target_platform ⇒ String
The platform that will be used to run the generated code.
Instance Attribute Details
#game_sdk_version ⇒ String
The target version of the GameSparks Game SDK.
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 |
#language ⇒ String
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.
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 |