Class: Aws::GameSparks::Types::GameConfigurationDetails

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#createdTime

The date when the game was created.

Returns:

  • (Time)


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_updatedTime

The date when the game was last modified.

Returns:

  • (Time)


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

#sectionsHash<String,Types::Section>

Configuration data, organized by section name.

Returns:



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