Class: Aws::IoTThingsGraph::Types::GetUploadStatusResponse
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::IoTThingsGraph::Types::GetUploadStatusResponse
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotthingsgraph/types.rb
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #created_date  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The date at which the upload was created. 
- 
  
    
      #failure_reason  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The reason for an upload failure. 
- 
  
    
      #namespace_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ARN of the upload. 
- 
  
    
      #namespace_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the upload’s namespace. 
- 
  
    
      #namespace_version  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The version of the user’s namespace. 
- 
  
    
      #upload_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID of the upload. 
- 
  
    
      #upload_status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The status of the upload. 
Instance Attribute Details
#created_date ⇒ Time
The date at which the upload was created.
| 841 842 843 844 845 846 847 848 849 850 851 | # File 'lib/aws-sdk-iotthingsgraph/types.rb', line 841 class GetUploadStatusResponse < Struct.new( :upload_id, :upload_status, :namespace_arn, :namespace_name, :namespace_version, :failure_reason, :created_date) SENSITIVE = [] include Aws::Structure end | 
#failure_reason ⇒ Array<String>
The reason for an upload failure.
| 841 842 843 844 845 846 847 848 849 850 851 | # File 'lib/aws-sdk-iotthingsgraph/types.rb', line 841 class GetUploadStatusResponse < Struct.new( :upload_id, :upload_status, :namespace_arn, :namespace_name, :namespace_version, :failure_reason, :created_date) SENSITIVE = [] include Aws::Structure end | 
#namespace_arn ⇒ String
The ARN of the upload.
| 841 842 843 844 845 846 847 848 849 850 851 | # File 'lib/aws-sdk-iotthingsgraph/types.rb', line 841 class GetUploadStatusResponse < Struct.new( :upload_id, :upload_status, :namespace_arn, :namespace_name, :namespace_version, :failure_reason, :created_date) SENSITIVE = [] include Aws::Structure end | 
#namespace_name ⇒ String
The name of the upload’s namespace.
| 841 842 843 844 845 846 847 848 849 850 851 | # File 'lib/aws-sdk-iotthingsgraph/types.rb', line 841 class GetUploadStatusResponse < Struct.new( :upload_id, :upload_status, :namespace_arn, :namespace_name, :namespace_version, :failure_reason, :created_date) SENSITIVE = [] include Aws::Structure end | 
#namespace_version ⇒ Integer
The version of the user’s namespace. Defaults to the latest version of the user’s namespace.
| 841 842 843 844 845 846 847 848 849 850 851 | # File 'lib/aws-sdk-iotthingsgraph/types.rb', line 841 class GetUploadStatusResponse < Struct.new( :upload_id, :upload_status, :namespace_arn, :namespace_name, :namespace_version, :failure_reason, :created_date) SENSITIVE = [] include Aws::Structure end | 
#upload_id ⇒ String
The ID of the upload.
| 841 842 843 844 845 846 847 848 849 850 851 | # File 'lib/aws-sdk-iotthingsgraph/types.rb', line 841 class GetUploadStatusResponse < Struct.new( :upload_id, :upload_status, :namespace_arn, :namespace_name, :namespace_version, :failure_reason, :created_date) SENSITIVE = [] include Aws::Structure end | 
#upload_status ⇒ String
The status of the upload. The initial status is ‘IN_PROGRESS`. The response show all validation failures if the upload fails.
| 841 842 843 844 845 846 847 848 849 850 851 | # File 'lib/aws-sdk-iotthingsgraph/types.rb', line 841 class GetUploadStatusResponse < Struct.new( :upload_id, :upload_status, :namespace_arn, :namespace_name, :namespace_version, :failure_reason, :created_date) SENSITIVE = [] include Aws::Structure end |