Class: Aws::IoTThingsGraph::Types::UpdateSystemTemplateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTThingsGraph::Types::UpdateSystemTemplateRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotthingsgraph/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#compatible_namespace_version ⇒ Integer
The version of the user’s namespace.
-
#definition ⇒ Types::DefinitionDocument
The ‘DefinitionDocument` that contains the updated system definition.
-
#id ⇒ String
The ID of the system to be updated.
Instance Attribute Details
#compatible_namespace_version ⇒ Integer
The version of the user’s namespace. Defaults to the latest version of the user’s namespace.
If no value is specified, the latest version is used by default.
1644 1645 1646 1647 1648 1649 1650 |
# File 'lib/aws-sdk-iotthingsgraph/types.rb', line 1644 class UpdateSystemTemplateRequest < Struct.new( :id, :definition, :compatible_namespace_version) SENSITIVE = [] include Aws::Structure end |
#definition ⇒ Types::DefinitionDocument
The ‘DefinitionDocument` that contains the updated system definition.
1644 1645 1646 1647 1648 1649 1650 |
# File 'lib/aws-sdk-iotthingsgraph/types.rb', line 1644 class UpdateSystemTemplateRequest < Struct.new( :id, :definition, :compatible_namespace_version) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The ID of the system to be updated.
The ID should be in the following format.
‘urn:tdm:REGION/ACCOUNT ID/default:system:SYSTEMNAME`
1644 1645 1646 1647 1648 1649 1650 |
# File 'lib/aws-sdk-iotthingsgraph/types.rb', line 1644 class UpdateSystemTemplateRequest < Struct.new( :id, :definition, :compatible_namespace_version) SENSITIVE = [] include Aws::Structure end |