You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::IoTThingsGraph::Types::UploadEntityDefinitionsRequest
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::IoTThingsGraph::Types::UploadEntityDefinitionsRequest
 
- Defined in:
- (unknown)
Overview
When passing UploadEntityDefinitionsRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
  document: {
    language: "GRAPHQL", # required, accepts GRAPHQL
    text: "DefinitionText", # required
  },
  sync_with_public_namespace: false,
  deprecate_existing_entities: false,
}
Instance Attribute Summary collapse
- 
  
    
      #deprecate_existing_entities  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A Boolean that specifies whether to deprecate all entities in the latest version before uploading the new DefinitionDocument.
- 
  
    
      #document  ⇒ Types::DefinitionDocument 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The DefinitionDocumentthat defines the updated entities.
- 
  
    
      #sync_with_public_namespace  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A Boolean that specifies whether to synchronize with the latest version of the public namespace. 
Instance Attribute Details
#deprecate_existing_entities ⇒ Boolean
A Boolean that specifies whether to deprecate all entities in the latest
version before uploading the new DefinitionDocument. If set to true,
the upload will create a new namespace version.
#document ⇒ Types::DefinitionDocument
The DefinitionDocument that defines the updated entities.
#sync_with_public_namespace ⇒ Boolean
A Boolean that specifies whether to synchronize with the latest version
of the public namespace. If set to true, the upload will create a new
namespace version.