Class: Aws::Connect::Types::ReferenceSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::ReferenceSummary
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-connect/types.rb
Overview
ReferenceSummary is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ReferenceSummary corresponding to the set member.
Contains summary information about a reference. ‘ReferenceSummary` contains only one non null field between the URL and attachment based on the reference type.
Defined Under Namespace
Classes: Attachment, Date, Email, Number, String, Unknown, Url
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attachment ⇒ Types::AttachmentReference
Information about the reference when the ‘referenceType` is `ATTACHMENT`.
-
#date ⇒ Types::DateReference
Information about a reference when the ‘referenceType` is `DATE`.
-
#email ⇒ Types::EmailReference
Information about a reference when the ‘referenceType` is `EMAIL`.
-
#number ⇒ Types::NumberReference
Information about a reference when the ‘referenceType` is `NUMBER`.
-
#string ⇒ Types::StringReference
Information about a reference when the ‘referenceType` is `STRING`.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#url ⇒ Types::UrlReference
Information about the reference when the ‘referenceType` is `URL`.
Instance Attribute Details
#attachment ⇒ Types::AttachmentReference
Information about the reference when the ‘referenceType` is `ATTACHMENT`. Otherwise, null.
16734 16735 16736 16737 16738 16739 16740 16741 16742 16743 16744 16745 16746 16747 16748 16749 16750 16751 16752 16753 |
# File 'lib/aws-sdk-connect/types.rb', line 16734 class ReferenceSummary < Struct.new( :url, :attachment, :string, :number, :date, :email, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Url < ReferenceSummary; end class Attachment < ReferenceSummary; end class String < ReferenceSummary; end class Number < ReferenceSummary; end class Date < ReferenceSummary; end class Email < ReferenceSummary; end class Unknown < ReferenceSummary; end end |
#date ⇒ Types::DateReference
Information about a reference when the ‘referenceType` is `DATE`. Otherwise, null.
16734 16735 16736 16737 16738 16739 16740 16741 16742 16743 16744 16745 16746 16747 16748 16749 16750 16751 16752 16753 |
# File 'lib/aws-sdk-connect/types.rb', line 16734 class ReferenceSummary < Struct.new( :url, :attachment, :string, :number, :date, :email, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Url < ReferenceSummary; end class Attachment < ReferenceSummary; end class String < ReferenceSummary; end class Number < ReferenceSummary; end class Date < ReferenceSummary; end class Email < ReferenceSummary; end class Unknown < ReferenceSummary; end end |
#email ⇒ Types::EmailReference
Information about a reference when the ‘referenceType` is `EMAIL`. Otherwise, null.
16734 16735 16736 16737 16738 16739 16740 16741 16742 16743 16744 16745 16746 16747 16748 16749 16750 16751 16752 16753 |
# File 'lib/aws-sdk-connect/types.rb', line 16734 class ReferenceSummary < Struct.new( :url, :attachment, :string, :number, :date, :email, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Url < ReferenceSummary; end class Attachment < ReferenceSummary; end class String < ReferenceSummary; end class Number < ReferenceSummary; end class Date < ReferenceSummary; end class Email < ReferenceSummary; end class Unknown < ReferenceSummary; end end |
#number ⇒ Types::NumberReference
Information about a reference when the ‘referenceType` is `NUMBER`. Otherwise, null.
16734 16735 16736 16737 16738 16739 16740 16741 16742 16743 16744 16745 16746 16747 16748 16749 16750 16751 16752 16753 |
# File 'lib/aws-sdk-connect/types.rb', line 16734 class ReferenceSummary < Struct.new( :url, :attachment, :string, :number, :date, :email, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Url < ReferenceSummary; end class Attachment < ReferenceSummary; end class String < ReferenceSummary; end class Number < ReferenceSummary; end class Date < ReferenceSummary; end class Email < ReferenceSummary; end class Unknown < ReferenceSummary; end end |
#string ⇒ Types::StringReference
Information about a reference when the ‘referenceType` is `STRING`. Otherwise, null.
16734 16735 16736 16737 16738 16739 16740 16741 16742 16743 16744 16745 16746 16747 16748 16749 16750 16751 16752 16753 |
# File 'lib/aws-sdk-connect/types.rb', line 16734 class ReferenceSummary < Struct.new( :url, :attachment, :string, :number, :date, :email, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Url < ReferenceSummary; end class Attachment < ReferenceSummary; end class String < ReferenceSummary; end class Number < ReferenceSummary; end class Date < ReferenceSummary; end class Email < ReferenceSummary; end class Unknown < ReferenceSummary; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
16734 16735 16736 |
# File 'lib/aws-sdk-connect/types.rb', line 16734 def unknown @unknown end |
#url ⇒ Types::UrlReference
Information about the reference when the ‘referenceType` is `URL`. Otherwise, null.
16734 16735 16736 16737 16738 16739 16740 16741 16742 16743 16744 16745 16746 16747 16748 16749 16750 16751 16752 16753 |
# File 'lib/aws-sdk-connect/types.rb', line 16734 class ReferenceSummary < Struct.new( :url, :attachment, :string, :number, :date, :email, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Url < ReferenceSummary; end class Attachment < ReferenceSummary; end class String < ReferenceSummary; end class Number < ReferenceSummary; end class Date < ReferenceSummary; end class Email < ReferenceSummary; end class Unknown < ReferenceSummary; end end |