Module: Aws::ConnectCampaignsV2::Types
- Defined in:
- lib/aws-sdk-connectcampaignsv2/types.rb
Defined Under Namespace
Classes: AccessDeniedException, AgentlessConfig, AnswerMachineDetectionConfig, Campaign, CampaignFilters, CampaignSummary, ChannelSubtypeConfig, ChannelSubtypeParameters, CommunicationLimit, CommunicationLimits, CommunicationLimitsConfig, CommunicationTimeConfig, ConflictException, CreateCampaignRequest, CreateCampaignResponse, CustomerProfilesIntegrationConfig, CustomerProfilesIntegrationIdentifier, CustomerProfilesIntegrationSummary, DeleteCampaignChannelSubtypeConfigRequest, DeleteCampaignCommunicationLimitsRequest, DeleteCampaignCommunicationTimeRequest, DeleteCampaignRequest, DeleteConnectInstanceConfigRequest, DeleteConnectInstanceIntegrationRequest, DeleteInstanceOnboardingJobRequest, DescribeCampaignRequest, DescribeCampaignResponse, EmailChannelSubtypeConfig, EmailChannelSubtypeParameters, EmailOutboundConfig, EmailOutboundMode, EncryptionConfig, FailedCampaignStateResponse, FailedRequest, GetCampaignStateBatchRequest, GetCampaignStateBatchResponse, GetCampaignStateRequest, GetCampaignStateResponse, GetConnectInstanceConfigRequest, GetConnectInstanceConfigResponse, GetInstanceOnboardingJobStatusRequest, GetInstanceOnboardingJobStatusResponse, InstanceConfig, InstanceIdFilter, InstanceOnboardingJobStatus, IntegrationConfig, IntegrationIdentifier, IntegrationSummary, InternalServerException, InvalidCampaignStateException, InvalidStateException, ListCampaignsRequest, ListCampaignsResponse, ListConnectInstanceIntegrationsRequest, ListConnectInstanceIntegrationsResponse, ListTagsForResourceRequest, ListTagsForResourceResponse, LocalTimeZoneConfig, OpenHours, OutboundRequest, PauseCampaignRequest, PredictiveConfig, ProgressiveConfig, PutConnectInstanceIntegrationRequest, PutOutboundRequestBatchRequest, PutOutboundRequestBatchResponse, QConnectIntegrationConfig, QConnectIntegrationIdentifier, QConnectIntegrationSummary, ResourceNotFoundException, RestrictedPeriod, RestrictedPeriods, ResumeCampaignRequest, Schedule, ServiceQuotaExceededException, SmsChannelSubtypeConfig, SmsChannelSubtypeParameters, SmsOutboundConfig, SmsOutboundMode, Source, StartCampaignRequest, StartInstanceOnboardingJobRequest, StartInstanceOnboardingJobResponse, StopCampaignRequest, SuccessfulCampaignStateResponse, SuccessfulRequest, TagResourceRequest, TelephonyChannelSubtypeConfig, TelephonyChannelSubtypeParameters, TelephonyOutboundConfig, TelephonyOutboundMode, ThrottlingException, TimeRange, TimeWindow, UntagResourceRequest, UpdateCampaignChannelSubtypeConfigRequest, UpdateCampaignCommunicationLimitsRequest, UpdateCampaignCommunicationTimeRequest, UpdateCampaignFlowAssociationRequest, UpdateCampaignNameRequest, UpdateCampaignScheduleRequest, UpdateCampaignSourceRequest, ValidationException
Instance Attribute Summary collapse
-
#agentless ⇒ Types::AgentlessConfig
Agentless config.
-
#communication_limits_list ⇒ Array<Types::CommunicationLimit>
List of communication limit.
-
#customer_profiles ⇒ Types::CustomerProfilesIntegrationSummary
Customer Profiles integration summary.
-
#customer_profiles_segment_arn ⇒ String
Amazon Resource Names(ARN).
-
#daily_hours ⇒ Hash<String,Array<Types::TimeRange>>
Daily Hours map.
-
#email ⇒ Types::EmailChannelSubtypeParameters
Parameters for the Email Channel Subtype.
-
#predictive ⇒ Types::PredictiveConfig
Predictive config.
-
#progressive ⇒ Types::ProgressiveConfig
Progressive config.
-
#q_connect ⇒ Types::QConnectIntegrationSummary
Q Connect integration summary.
-
#restricted_period_list ⇒ Array<Types::RestrictedPeriod>
List of restricted period.
-
#sms ⇒ Types::SmsChannelSubtypeParameters
Parameters for the SMS Channel Subtype.
-
#telephony ⇒ Types::TelephonyChannelSubtypeParameters
Parameters for the Telephony Channel Subtype.
Instance Attribute Details
#agentless ⇒ Types::AgentlessConfig
Agentless config
723 724 725 726 727 728 729 730 731 732 |
# File 'lib/aws-sdk-connectcampaignsv2/types.rb', line 723 class EmailOutboundMode < Struct.new( :agentless, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Agentless < EmailOutboundMode; end class Unknown < EmailOutboundMode; end end |
#communication_limits_list ⇒ Array<Types::CommunicationLimit>
List of communication limit
275 276 277 278 279 280 281 282 283 284 |
# File 'lib/aws-sdk-connectcampaignsv2/types.rb', line 275 class CommunicationLimits < Struct.new( :communication_limits_list, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class CommunicationLimitsList < CommunicationLimits; end class Unknown < CommunicationLimits; end end |
#customer_profiles ⇒ Types::CustomerProfilesIntegrationSummary
Customer Profiles integration summary
1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 |
# File 'lib/aws-sdk-connectcampaignsv2/types.rb', line 1008 class IntegrationConfig < Struct.new( :customer_profiles, :q_connect, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class CustomerProfiles < IntegrationConfig; end class QConnect < IntegrationConfig; end class Unknown < IntegrationConfig; end end |
#customer_profiles_segment_arn ⇒ String
Amazon Resource Names(ARN)
1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 |
# File '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 |
#daily_hours ⇒ Hash<String,Array<Types::TimeRange>>
Daily Hours map
1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 |
# File 'lib/aws-sdk-connectcampaignsv2/types.rb', line 1285 class OpenHours < Struct.new( :daily_hours, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class DailyHours < OpenHours; end class Unknown < OpenHours; end end |
#email ⇒ Types::EmailChannelSubtypeParameters
Parameters for the Email Channel Subtype
223 224 225 226 227 228 229 230 231 232 233 234 235 236 |
# File 'lib/aws-sdk-connectcampaignsv2/types.rb', line 223 class ChannelSubtypeParameters < Struct.new( :telephony, :sms, :email, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Telephony < ChannelSubtypeParameters; end class Sms < ChannelSubtypeParameters; end class Email < ChannelSubtypeParameters; end class Unknown < ChannelSubtypeParameters; end end |
#predictive ⇒ Types::PredictiveConfig
Predictive config
1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 |
# File 'lib/aws-sdk-connectcampaignsv2/types.rb', line 1941 class TelephonyOutboundMode < Struct.new( :progressive, :predictive, :agentless, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Progressive < TelephonyOutboundMode; end class Predictive < TelephonyOutboundMode; end class Agentless < TelephonyOutboundMode; end class Unknown < TelephonyOutboundMode; end end |
#progressive ⇒ Types::ProgressiveConfig
Progressive config
1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 |
# File 'lib/aws-sdk-connectcampaignsv2/types.rb', line 1941 class TelephonyOutboundMode < Struct.new( :progressive, :predictive, :agentless, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Progressive < TelephonyOutboundMode; end class Predictive < TelephonyOutboundMode; end class Agentless < TelephonyOutboundMode; end class Unknown < TelephonyOutboundMode; end end |
#q_connect ⇒ Types::QConnectIntegrationSummary
Q Connect integration summary
1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 |
# File 'lib/aws-sdk-connectcampaignsv2/types.rb', line 1008 class IntegrationConfig < Struct.new( :customer_profiles, :q_connect, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class CustomerProfiles < IntegrationConfig; end class QConnect < IntegrationConfig; end class Unknown < IntegrationConfig; end end |
#restricted_period_list ⇒ Array<Types::RestrictedPeriod>
List of restricted period
1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 |
# File 'lib/aws-sdk-connectcampaignsv2/types.rb', line 1517 class RestrictedPeriods < Struct.new( :restricted_period_list, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class RestrictedPeriodList < RestrictedPeriods; end class Unknown < RestrictedPeriods; end end |
#sms ⇒ Types::SmsChannelSubtypeParameters
Parameters for the SMS Channel Subtype
223 224 225 226 227 228 229 230 231 232 233 234 235 236 |
# File 'lib/aws-sdk-connectcampaignsv2/types.rb', line 223 class ChannelSubtypeParameters < Struct.new( :telephony, :sms, :email, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Telephony < ChannelSubtypeParameters; end class Sms < ChannelSubtypeParameters; end class Email < ChannelSubtypeParameters; end class Unknown < ChannelSubtypeParameters; end end |
#telephony ⇒ Types::TelephonyChannelSubtypeParameters
Parameters for the Telephony Channel Subtype
223 224 225 226 227 228 229 230 231 232 233 234 235 236 |
# File 'lib/aws-sdk-connectcampaignsv2/types.rb', line 223 class ChannelSubtypeParameters < Struct.new( :telephony, :sms, :email, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Telephony < ChannelSubtypeParameters; end class Sms < ChannelSubtypeParameters; end class Email < ChannelSubtypeParameters; end class Unknown < ChannelSubtypeParameters; end end |