Class: Aws::IoTThingsGraph::Types::UpdateSystemTemplateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTThingsGraph::Types::UpdateSystemTemplateRequest
- Defined in:
- gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb
Overview
Note:
When making an API call, you may pass UpdateSystemTemplateRequest data as a hash:
{
id: "Urn", # required
definition: { # required
language: "GRAPHQL", # required, accepts GRAPHQL
text: "DefinitionText", # required
},
compatible_namespace_version: 1,
}
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.
2018 2019 2020 2021 2022 2023 2024 |
# File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 2018 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.
2018 2019 2020 2021 2022 2023 2024 |
# File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 2018 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
2018 2019 2020 2021 2022 2023 2024 |
# File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 2018 class UpdateSystemTemplateRequest < Struct.new( :id, :definition, :compatible_namespace_version) SENSITIVE = [] include Aws::Structure end |