Class: Aws::IoTThingsGraph::Types::CreateSystemTemplateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTThingsGraph::Types::CreateSystemTemplateRequest
- Defined in:
- gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb
Overview
Note:
When making an API call, you may pass CreateSystemTemplateRequest data as a hash:
{
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 namespace version in which the system is to be created.
-
#definition ⇒ Types::DefinitionDocument
The
DefinitionDocument
used to create the system.
Instance Attribute Details
#compatible_namespace_version ⇒ Integer
The namespace version in which the system is to be created.
If no value is specified, the latest version is used by default.
194 195 196 197 198 199 |
# File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 194 class CreateSystemTemplateRequest < Struct.new( :definition, :compatible_namespace_version) SENSITIVE = [] include Aws::Structure end |
#definition ⇒ Types::DefinitionDocument
The DefinitionDocument
used to create the system.
194 195 196 197 198 199 |
# File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 194 class CreateSystemTemplateRequest < Struct.new( :definition, :compatible_namespace_version) SENSITIVE = [] include Aws::Structure end |