Class: Aws::GameSparks::Types::SectionModification
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameSparks::Types::SectionModification
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gamesparks/types.rb
Overview
A single modification to the configuration section.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#operation ⇒ String
The operation to be performed on a configuration section.
-
#path ⇒ String
The path within the section content to be modified.
-
#section ⇒ String
The name of the section to be modified.
-
#value ⇒ Hash, ...
For add and replace operations, this is the value that will be used.
Instance Attribute Details
#operation ⇒ String
The operation to be performed on a configuration section.
Content can be added, deleted, or replaced within a section.
1322 1323 1324 1325 1326 1327 1328 1329 |
# File 'lib/aws-sdk-gamesparks/types.rb', line 1322 class SectionModification < Struct.new( :operation, :path, :section, :value) SENSITIVE = [] include Aws::Structure end |
#path ⇒ String
The path within the section content to be modified.
1322 1323 1324 1325 1326 1327 1328 1329 |
# File 'lib/aws-sdk-gamesparks/types.rb', line 1322 class SectionModification < Struct.new( :operation, :path, :section, :value) SENSITIVE = [] include Aws::Structure end |
#section ⇒ String
The name of the section to be modified.
1322 1323 1324 1325 1326 1327 1328 1329 |
# File 'lib/aws-sdk-gamesparks/types.rb', line 1322 class SectionModification < Struct.new( :operation, :path, :section, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Hash, ...
For add and replace operations, this is the value that will be used.
This field should be omitted for delete operations.
1322 1323 1324 1325 1326 1327 1328 1329 |
# File 'lib/aws-sdk-gamesparks/types.rb', line 1322 class SectionModification < Struct.new( :operation, :path, :section, :value) SENSITIVE = [] include Aws::Structure end |