Class: Aws::ConnectCampaignsV2::Types::Source

Inherits:
Struct
  • Object
show all
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

CustomerProfilesSegmentArn, EventTrigger, Unknown

Defined Under Namespace

Classes: CustomerProfilesSegmentArn, EventTrigger, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#customer_profiles_segment_arnString

Amazon Resource Names(ARN)

Returns:

  • (String)


1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 1867

class Source < Struct.new(
  :customer_profiles_segment_arn,
  :event_trigger,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class CustomerProfilesSegmentArn < Source; end
  class EventTrigger < Source; end
  class Unknown < Source; end
end

#event_triggerTypes::EventTrigger

Event trigger of the campaign

Returns:



1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 1867

class Source < Struct.new(
  :customer_profiles_segment_arn,
  :event_trigger,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class CustomerProfilesSegmentArn < Source; end
  class EventTrigger < Source; end
  class Unknown < Source; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1867
1868
1869
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 1867

def unknown
  @unknown
end