Class: Aws::QConnect::Types::ContentAssociationContents
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::ContentAssociationContents
- Defined in:
- gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb
Overview
Note:
ContentAssociationContents is a union - when making an API calls you must set exactly one of the members.
Note:
ContentAssociationContents is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ContentAssociationContents corresponding to the set member.
The contents of a content association.
Direct Known Subclasses
Defined Under Namespace
Classes: AmazonConnectGuideAssociation, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#amazon_connect_guide_association ⇒ Types::AmazonConnectGuideAssociationData
The data of the step-by-step guide association.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#amazon_connect_guide_association ⇒ Types::AmazonConnectGuideAssociationData
The data of the step-by-step guide association.
1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 1504 class ContentAssociationContents < Struct.new( :amazon_connect_guide_association, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AmazonConnectGuideAssociation < ContentAssociationContents; end class Unknown < ContentAssociationContents; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1504 1505 1506 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 1504 def unknown @unknown end |