Class: Aws::QApps::Types::FileUploadCard
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::QApps::Types::FileUploadCard
 
- Defined in:
- gems/aws-sdk-qapps/lib/aws-sdk-qapps/types.rb
Overview
A card in an Amazon Q App that allows the user to upload a file.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #allow_override  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A flag indicating if the user can override the default file for the upload card. 
- 
  
    
      #dependencies  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Any dependencies or requirements for the file upload card. 
- 
  
    
      #file_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The unique identifier of the file associated with the card. 
- 
  
    
      #filename  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the file being uploaded. 
- 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The unique identifier of the file upload card. 
- 
  
    
      #title  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The title of the file upload card. 
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of the card. 
Instance Attribute Details
#allow_override ⇒ Boolean
A flag indicating if the user can override the default file for the upload card.
| 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 | # File 'gems/aws-sdk-qapps/lib/aws-sdk-qapps/types.rb', line 1067 class FileUploadCard < Struct.new( :id, :title, :dependencies, :type, :filename, :file_id, :allow_override) SENSITIVE = [] include Aws::Structure end | 
#dependencies ⇒ Array<String>
Any dependencies or requirements for the file upload card.
| 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 | # File 'gems/aws-sdk-qapps/lib/aws-sdk-qapps/types.rb', line 1067 class FileUploadCard < Struct.new( :id, :title, :dependencies, :type, :filename, :file_id, :allow_override) SENSITIVE = [] include Aws::Structure end | 
#file_id ⇒ String
The unique identifier of the file associated with the card.
| 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 | # File 'gems/aws-sdk-qapps/lib/aws-sdk-qapps/types.rb', line 1067 class FileUploadCard < Struct.new( :id, :title, :dependencies, :type, :filename, :file_id, :allow_override) SENSITIVE = [] include Aws::Structure end | 
#filename ⇒ String
The name of the file being uploaded.
| 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 | # File 'gems/aws-sdk-qapps/lib/aws-sdk-qapps/types.rb', line 1067 class FileUploadCard < Struct.new( :id, :title, :dependencies, :type, :filename, :file_id, :allow_override) SENSITIVE = [] include Aws::Structure end | 
#id ⇒ String
The unique identifier of the file upload card.
| 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 | # File 'gems/aws-sdk-qapps/lib/aws-sdk-qapps/types.rb', line 1067 class FileUploadCard < Struct.new( :id, :title, :dependencies, :type, :filename, :file_id, :allow_override) SENSITIVE = [] include Aws::Structure end | 
#title ⇒ String
The title of the file upload card.
| 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 | # File 'gems/aws-sdk-qapps/lib/aws-sdk-qapps/types.rb', line 1067 class FileUploadCard < Struct.new( :id, :title, :dependencies, :type, :filename, :file_id, :allow_override) SENSITIVE = [] include Aws::Structure end | 
#type ⇒ String
The type of the card.
| 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 | # File 'gems/aws-sdk-qapps/lib/aws-sdk-qapps/types.rb', line 1067 class FileUploadCard < Struct.new( :id, :title, :dependencies, :type, :filename, :file_id, :allow_override) SENSITIVE = [] include Aws::Structure end |