Class: Aws::IoTThingsGraph::Types::DefinitionDocument
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoTThingsGraph::Types::DefinitionDocument
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iotthingsgraph/types.rb
 
Overview
A document that defines an entity.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #language  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The language used to define the entity.
 - 
  
    
      #text  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The GraphQL text that defines the entity.
 
Instance Attribute Details
#language ⇒ String
The language used to define the entity. ‘GRAPHQL` is the only valid value.
      167 168 169 170 171 172  | 
    
      # File 'lib/aws-sdk-iotthingsgraph/types.rb', line 167 class DefinitionDocument < Struct.new( :language, :text) SENSITIVE = [] include Aws::Structure end  | 
  
#text ⇒ String
The GraphQL text that defines the entity.
      167 168 169 170 171 172  | 
    
      # File 'lib/aws-sdk-iotthingsgraph/types.rb', line 167 class DefinitionDocument < Struct.new( :language, :text) SENSITIVE = [] include Aws::Structure end  |