Class: Aws::ConnectParticipant::Types::AttachmentItem
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::ConnectParticipant::Types::AttachmentItem
 
- Defined in:
- gems/aws-sdk-connectparticipant/lib/aws-sdk-connectparticipant/types.rb
Overview
The case-insensitive input to indicate standard MIME type that describes the format of the file that will be uploaded.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #attachment_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A unique identifier for the attachment. 
- 
  
    
      #attachment_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A case-sensitive name of the attachment being uploaded. 
- 
  
    
      #content_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Describes the MIME file type of the attachment. 
- 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Status of the attachment. 
Instance Attribute Details
#attachment_id ⇒ String
A unique identifier for the attachment.
| 53 54 55 56 57 58 59 60 | # File 'gems/aws-sdk-connectparticipant/lib/aws-sdk-connectparticipant/types.rb', line 53 class AttachmentItem < Struct.new( :content_type, :attachment_id, :attachment_name, :status) SENSITIVE = [] include Aws::Structure end | 
#attachment_name ⇒ String
A case-sensitive name of the attachment being uploaded.
| 53 54 55 56 57 58 59 60 | # File 'gems/aws-sdk-connectparticipant/lib/aws-sdk-connectparticipant/types.rb', line 53 class AttachmentItem < Struct.new( :content_type, :attachment_id, :attachment_name, :status) SENSITIVE = [] include Aws::Structure end | 
#content_type ⇒ String
Describes the MIME file type of the attachment. For a list of supported file types, see Feature specifications in the Amazon Connect Administrator Guide.
| 53 54 55 56 57 58 59 60 | # File 'gems/aws-sdk-connectparticipant/lib/aws-sdk-connectparticipant/types.rb', line 53 class AttachmentItem < Struct.new( :content_type, :attachment_id, :attachment_name, :status) SENSITIVE = [] include Aws::Structure end | 
#status ⇒ String
Status of the attachment.
| 53 54 55 56 57 58 59 60 | # File 'gems/aws-sdk-connectparticipant/lib/aws-sdk-connectparticipant/types.rb', line 53 class AttachmentItem < Struct.new( :content_type, :attachment_id, :attachment_name, :status) SENSITIVE = [] include Aws::Structure end |