Class: Aws::Support::Types::Communication
- Inherits:
-
Struct
- Object
- Struct
- Aws::Support::Types::Communication
- Defined in:
- gems/aws-sdk-support/lib/aws-sdk-support/types.rb
Overview
A communication associated with a support case. The communication consists of the case ID, the message body, attachment information, the submitter of the communication, and the date and time of the communication.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attachment_set ⇒ Array<Types::AttachmentDetails>
Information about the attachments to the case communication.
-
#body ⇒ String
The text of the communication between the customer and Amazon Web Services Support.
-
#case_id ⇒ String
The support case ID requested or returned in the call.
-
#submitted_by ⇒ String
The identity of the account that submitted, or responded to, the support case.
-
#time_created ⇒ String
The time the communication was created.
Instance Attribute Details
#attachment_set ⇒ Array<Types::AttachmentDetails>
Information about the attachments to the case communication.
495 496 497 498 499 500 501 502 503 |
# File 'gems/aws-sdk-support/lib/aws-sdk-support/types.rb', line 495 class Communication < Struct.new( :case_id, :body, :submitted_by, :time_created, :attachment_set) SENSITIVE = [] include Aws::Structure end |
#body ⇒ String
The text of the communication between the customer and Amazon Web Services Support.
495 496 497 498 499 500 501 502 503 |
# File 'gems/aws-sdk-support/lib/aws-sdk-support/types.rb', line 495 class Communication < Struct.new( :case_id, :body, :submitted_by, :time_created, :attachment_set) SENSITIVE = [] include Aws::Structure end |
#case_id ⇒ String
The support case ID requested or returned in the call. The case ID is an alphanumeric string formatted as shown in this example: case-12345678910-2013-c4c1d2bf33c5cf47
495 496 497 498 499 500 501 502 503 |
# File 'gems/aws-sdk-support/lib/aws-sdk-support/types.rb', line 495 class Communication < Struct.new( :case_id, :body, :submitted_by, :time_created, :attachment_set) SENSITIVE = [] include Aws::Structure end |
#submitted_by ⇒ String
The identity of the account that submitted, or responded to, the support case. Customer entries include the role or IAM user as well as the email address. For example, "AdminRole (Role) <janedoe@example.com>. Entries from the Amazon Web Services Support team display "Amazon Web Services," and don't show an email address.
495 496 497 498 499 500 501 502 503 |
# File 'gems/aws-sdk-support/lib/aws-sdk-support/types.rb', line 495 class Communication < Struct.new( :case_id, :body, :submitted_by, :time_created, :attachment_set) SENSITIVE = [] include Aws::Structure end |
#time_created ⇒ String
The time the communication was created.
495 496 497 498 499 500 501 502 503 |
# File 'gems/aws-sdk-support/lib/aws-sdk-support/types.rb', line 495 class Communication < Struct.new( :case_id, :body, :submitted_by, :time_created, :attachment_set) SENSITIVE = [] include Aws::Structure end |