Class: Aws::ConnectCases::Types::RelatedItemInputContent
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectCases::Types::RelatedItemInputContent
- Defined in:
- gems/aws-sdk-connectcases/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.
2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 |
# File 'gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb', line 2540 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.
2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 |
# File 'gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb', line 2540 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.
2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 |
# File 'gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb', line 2540 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
2540 2541 2542 |
# File 'gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb', line 2540 def unknown @unknown end |