Class: Aws::Support::Types::Communication

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#attachment_setArray<Types::AttachmentDetails>

Information about the attachments to the case communication.

Returns:



466
467
468
469
470
471
472
473
474
# File 'gems/aws-sdk-support/lib/aws-sdk-support/types.rb', line 466

class Communication < Struct.new(
  :case_id,
  :body,
  :submitted_by,
  :time_created,
  :attachment_set)
  SENSITIVE = []
  include Aws::Structure
end

#bodyString

The text of the communication between the customer and Amazon Web Services Support.

Returns:

  • (String)


466
467
468
469
470
471
472
473
474
# File 'gems/aws-sdk-support/lib/aws-sdk-support/types.rb', line 466

class Communication < Struct.new(
  :case_id,
  :body,
  :submitted_by,
  :time_created,
  :attachment_set)
  SENSITIVE = []
  include Aws::Structure
end

#case_idString

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

Returns:

  • (String)


466
467
468
469
470
471
472
473
474
# File 'gems/aws-sdk-support/lib/aws-sdk-support/types.rb', line 466

class Communication < Struct.new(
  :case_id,
  :body,
  :submitted_by,
  :time_created,
  :attachment_set)
  SENSITIVE = []
  include Aws::Structure
end

#submitted_byString

The identity of the account that submitted, or responded to, the support case. Customer entries include the IAM role 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.

Returns:

  • (String)


466
467
468
469
470
471
472
473
474
# File 'gems/aws-sdk-support/lib/aws-sdk-support/types.rb', line 466

class Communication < Struct.new(
  :case_id,
  :body,
  :submitted_by,
  :time_created,
  :attachment_set)
  SENSITIVE = []
  include Aws::Structure
end

#time_createdString

The time the communication was created.

Returns:

  • (String)


466
467
468
469
470
471
472
473
474
# File 'gems/aws-sdk-support/lib/aws-sdk-support/types.rb', line 466

class Communication < Struct.new(
  :case_id,
  :body,
  :submitted_by,
  :time_created,
  :attachment_set)
  SENSITIVE = []
  include Aws::Structure
end