Class: Aws::ConnectCases::Types::RelatedItemInputContent
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectCases::Types::RelatedItemInputContent
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-connectcases/types.rb
Overview
Note:
RelatedItemInputContent is a union - when making an API calls you must set exactly one of the members.
Represents the content of a related item to be created.
Defined Under Namespace
Classes: Comment, Contact, File, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#comment ⇒ Types::CommentContent
Represents the content of a comment to be returned to agents.
-
#contact ⇒ Types::Contact
Object representing a contact in Amazon Connect as an API request field.
-
#file ⇒ Types::FileContent
A file of related items.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#comment ⇒ Types::CommentContent
Represents the content of a comment to be returned to agents.
2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 |
# File 'lib/aws-sdk-connectcases/types.rb', line 2041 class RelatedItemInputContent < Struct.new( :comment, :contact, :file, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Comment < RelatedItemInputContent; end class Contact < RelatedItemInputContent; end class File < RelatedItemInputContent; end class Unknown < RelatedItemInputContent; end end |
#contact ⇒ Types::Contact
Object representing a contact in Amazon Connect as an API request field.
2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 |
# File 'lib/aws-sdk-connectcases/types.rb', line 2041 class RelatedItemInputContent < Struct.new( :comment, :contact, :file, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Comment < RelatedItemInputContent; end class Contact < RelatedItemInputContent; end class File < RelatedItemInputContent; end class Unknown < RelatedItemInputContent; end end |
#file ⇒ Types::FileContent
A file of related items.
2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 |
# File 'lib/aws-sdk-connectcases/types.rb', line 2041 class RelatedItemInputContent < Struct.new( :comment, :contact, :file, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Comment < RelatedItemInputContent; end class Contact < RelatedItemInputContent; end class File < RelatedItemInputContent; end class Unknown < RelatedItemInputContent; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2041 2042 2043 |
# File 'lib/aws-sdk-connectcases/types.rb', line 2041 def unknown @unknown end |