Class: Aws::QBusiness::Types::CopyFromSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::QBusiness::Types::CopyFromSource
- Defined in:
- gems/aws-sdk-qbusiness/lib/aws-sdk-qbusiness/types.rb
Overview
Note:
CopyFromSource is a union - when making an API calls you must set exactly one of the members.
Note:
CopyFromSource is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of CopyFromSource corresponding to the set member.
The source reference for an existing attachment.
Direct Known Subclasses
Defined Under Namespace
Classes: Conversation, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#conversation ⇒ Types::ConversationSource
A reference to an attachment in an existing conversation.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#conversation ⇒ Types::ConversationSource
A reference to an attachment in an existing conversation.
1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 |
# File 'gems/aws-sdk-qbusiness/lib/aws-sdk-qbusiness/types.rb', line 1890 class CopyFromSource < Struct.new( :conversation, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Conversation < CopyFromSource; end class Unknown < CopyFromSource; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1890 1891 1892 |
# File 'gems/aws-sdk-qbusiness/lib/aws-sdk-qbusiness/types.rb', line 1890 def unknown @unknown end |