Class: Aws::GameSparks::Types::GameConfigurationDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameSparks::Types::GameConfigurationDetails
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gamesparks/types.rb
Overview
Details about the game configuration.
The game configuration is organized into named sections, where the schema of each section is defined by an extension. The schema for these sections can be retrieved using the ‘GetExtensionVersion` operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#created ⇒ Time
The date when the game was created.
-
#last_updated ⇒ Time
The date when the game was last modified.
-
#sections ⇒ Hash<String,Types::Section>
Configuration data, organized by section name.
Instance Attribute Details
#created ⇒ Time
The date when the game was created.
381 382 383 384 385 386 387 |
# File 'lib/aws-sdk-gamesparks/types.rb', line 381 class GameConfigurationDetails < Struct.new( :created, :last_updated, :sections) SENSITIVE = [] include Aws::Structure end |
#last_updated ⇒ Time
The date when the game was last modified.
381 382 383 384 385 386 387 |
# File 'lib/aws-sdk-gamesparks/types.rb', line 381 class GameConfigurationDetails < Struct.new( :created, :last_updated, :sections) SENSITIVE = [] include Aws::Structure end |
#sections ⇒ Hash<String,Types::Section>
Configuration data, organized by section name.
381 382 383 384 385 386 387 |
# File 'lib/aws-sdk-gamesparks/types.rb', line 381 class GameConfigurationDetails < Struct.new( :created, :last_updated, :sections) SENSITIVE = [] include Aws::Structure end |