Class: Aws::IoTThingsGraph::Types::EntityDescription
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::IoTThingsGraph::Types::EntityDescription
 
- Defined in:
- gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb
Overview
Describes the properties of an entity.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The entity ARN. 
- 
  
    
      #created_at  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The time at which the entity was created. 
- 
  
    
      #definition  ⇒ Types::DefinitionDocument 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The definition document of the entity. 
- 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The entity ID. 
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The entity type. 
Instance Attribute Details
#arn ⇒ String
The entity ARN.
| 401 402 403 404 405 406 407 408 409 | # File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 401 class EntityDescription < Struct.new( :id, :arn, :type, :created_at, :definition) SENSITIVE = [] include Aws::Structure end | 
#created_at ⇒ Time
The time at which the entity was created.
| 401 402 403 404 405 406 407 408 409 | # File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 401 class EntityDescription < Struct.new( :id, :arn, :type, :created_at, :definition) SENSITIVE = [] include Aws::Structure end | 
#definition ⇒ Types::DefinitionDocument
The definition document of the entity.
| 401 402 403 404 405 406 407 408 409 | # File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 401 class EntityDescription < Struct.new( :id, :arn, :type, :created_at, :definition) SENSITIVE = [] include Aws::Structure end | 
#id ⇒ String
The entity ID.
| 401 402 403 404 405 406 407 408 409 | # File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 401 class EntityDescription < Struct.new( :id, :arn, :type, :created_at, :definition) SENSITIVE = [] include Aws::Structure end | 
#type ⇒ String
The entity type.
| 401 402 403 404 405 406 407 408 409 | # File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 401 class EntityDescription < Struct.new( :id, :arn, :type, :created_at, :definition) SENSITIVE = [] include Aws::Structure end |