Class: Aws::ConnectParticipant::Types::AttachmentItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectParticipant::Types::AttachmentItem
- Includes:
- Structure
- Defined in:
- 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 '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 '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*.
[1]: docs.aws.amazon.com/connect/latest/adminguide/feature-limits.html
53 54 55 56 57 58 59 60 |
# File '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 'lib/aws-sdk-connectparticipant/types.rb', line 53 class AttachmentItem < Struct.new( :content_type, :attachment_id, :attachment_name, :status) SENSITIVE = [] include Aws::Structure end |