Class: Aws::ConnectCampaignsV2::Types::Source
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectCampaignsV2::Types::Source
- Defined in:
- gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb
Overview
Note:
Source is a union - when making an API calls you must set exactly one of the members.
Note:
Source is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Source corresponding to the set member.
Source of the campaign
Direct Known Subclasses
Defined Under Namespace
Classes: CustomerProfilesSegmentArn, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#customer_profiles_segment_arn ⇒ String
Amazon Resource Names(ARN).
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#customer_profiles_segment_arn ⇒ String
Amazon Resource Names(ARN)
1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 |
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 1695 class Source < Struct.new( :customer_profiles_segment_arn, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class CustomerProfilesSegmentArn < Source; end class Unknown < Source; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1695 1696 1697 |
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 1695 def unknown @unknown end |