aws-sdk-connectcampaignservice 1.2.0 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bfadbca9d15a431ca8aaea9c2c24eb254563efc72c994f6c4e883cb1e0f5c6e7
4
- data.tar.gz: 33839ef389ed7eef60931d842df740d5c203a69ae9bef3d7a6bb0a63ed2878f4
3
+ metadata.gz: 69a9d9565437c8dfd0c692137f018a253a64613618b418791b67461ae8faabbd
4
+ data.tar.gz: 935e21c23b056abc3a18497869956fd97d2ee4fdd564bb14d0f9e2191442e959
5
5
  SHA512:
6
- metadata.gz: 4477768e8e8ac6e12dfbc9e46d0ab0ef9a361c562a8a456dc67942eae3f45e793ced0c159fca4d85d35f42675a33cb28557edbfe22b31ef023a8547cd1b04466
7
- data.tar.gz: cb15af53b23757badc347041fe25e3305dba67fa101c7b653b44dc54c5c8add13759d32cad9083ff6252030c1b2eba0d6d40cc2acc34615bb107d80c8673ae3c
6
+ metadata.gz: bb32505275cd903f2f2d616c13359baf4611814adcf06bebc2f4238e108279c124f0cfe57693ad5bcab7721f91ab3020463ab245b804fbed8669f0deeb99cbdd
7
+ data.tar.gz: '0395d83f2ab38d59ad57df6ebf9b1c9b069af0fc12efcd2f3923ab1fc95e6262b24cd562b0107d7e1896e13681c84ca6d485503aeda34da969b729813da58991'
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.3.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.2.0 (2022-10-25)
5
12
  ------------------
6
13
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.2.0
1
+ 1.3.0
@@ -1086,7 +1086,7 @@ module Aws::ConnectCampaignService
1086
1086
  params: params,
1087
1087
  config: config)
1088
1088
  context[:gem_name] = 'aws-sdk-connectcampaignservice'
1089
- context[:gem_version] = '1.2.0'
1089
+ context[:gem_version] = '1.3.0'
1090
1090
  Seahorse::Client::Request.new(handlers, context)
1091
1091
  end
1092
1092
 
@@ -9,104 +9,43 @@
9
9
 
10
10
  module Aws::ConnectCampaignService
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://connect-campaigns-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://connect-campaigns-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://connect-campaigns.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://connect-campaigns.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL2Nvbm5lY3QtY2FtcGFpZ25zLWZpcHMue1Jl
77
- Z2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9Iiwi
78
- cHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50
79
- In1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxT
80
- dGFjayBhcmUgZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90
81
- IHN1cHBvcnQgb25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29u
82
- ZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVm
83
- IjoiVXNlRklQUyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7
84
- ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0
85
- cnVlLHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9u
86
- UmVzdWx0In0sInN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJy
87
- dWxlcyI6W3siY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwicnVsZXMi
88
- Olt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczov
89
- L2Nvbm5lY3QtY2FtcGFpZ25zLWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJl
90
- c3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9
91
- fSwidHlwZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W10sImVy
92
- cm9yIjoiRklQUyBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2Vz
93
- IG5vdCBzdXBwb3J0IEZJUFMiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0
94
- aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoi
95
- VXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6
96
- W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6
97
- W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRp
98
- b25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0
99
- cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1
100
- cmwiOiJodHRwczovL2Nvbm5lY3QtY2FtcGFpZ25zLntSZWdpb259LntQYXJ0
101
- aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMi
102
- Ont9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25k
103
- aXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQg
104
- dGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0
105
- eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7
106
- InVybCI6Imh0dHBzOi8vY29ubmVjdC1jYW1wYWlnbnMue1JlZ2lvbn0ue1Bh
107
- cnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhl
108
- YWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19
109
-
110
- JSON
111
50
  end
112
51
  end
@@ -31,13 +31,6 @@ module Aws::ConnectCampaignService
31
31
 
32
32
  # Answering Machine Detection config
33
33
  #
34
- # @note When making an API call, you may pass AnswerMachineDetectionConfig
35
- # data as a hash:
36
- #
37
- # {
38
- # enable_answer_machine_detection: false, # required
39
- # }
40
- #
41
34
  # @!attribute [rw] enable_answer_machine_detection
42
35
  # Enable or disable answering machine detection
43
36
  # @return [Boolean]
@@ -96,16 +89,6 @@ module Aws::ConnectCampaignService
96
89
 
97
90
  # Filter model by type
98
91
  #
99
- # @note When making an API call, you may pass CampaignFilters
100
- # data as a hash:
101
- #
102
- # {
103
- # instance_id_filter: {
104
- # operator: "Eq", # required, accepts Eq
105
- # value: "InstanceId", # required
106
- # },
107
- # }
108
- #
109
92
  # @!attribute [rw] instance_id_filter
110
93
  # Connect instance identifier filter
111
94
  # @return [Types::InstanceIdFilter]
@@ -169,33 +152,6 @@ module Aws::ConnectCampaignService
169
152
 
170
153
  # The request for Create Campaign API.
171
154
  #
172
- # @note When making an API call, you may pass CreateCampaignRequest
173
- # data as a hash:
174
- #
175
- # {
176
- # connect_instance_id: "InstanceId", # required
177
- # dialer_config: { # required
178
- # predictive_dialer_config: {
179
- # bandwidth_allocation: 1.0, # required
180
- # },
181
- # progressive_dialer_config: {
182
- # bandwidth_allocation: 1.0, # required
183
- # },
184
- # },
185
- # name: "CampaignName", # required
186
- # outbound_call_config: { # required
187
- # answer_machine_detection_config: {
188
- # enable_answer_machine_detection: false, # required
189
- # },
190
- # connect_contact_flow_id: "ContactFlowId", # required
191
- # connect_queue_id: "QueueId", # required
192
- # connect_source_phone_number: "SourcePhoneNumber",
193
- # },
194
- # tags: {
195
- # "TagKey" => "TagValue",
196
- # },
197
- # }
198
- #
199
155
  # @!attribute [rw] connect_instance_id
200
156
  # Amazon Connect Instance Id
201
157
  # @return [String]
@@ -254,13 +210,6 @@ module Aws::ConnectCampaignService
254
210
 
255
211
  # DeleteCampaignRequest
256
212
  #
257
- # @note When making an API call, you may pass DeleteCampaignRequest
258
- # data as a hash:
259
- #
260
- # {
261
- # id: "CampaignId", # required
262
- # }
263
- #
264
213
  # @!attribute [rw] id
265
214
  # Identifier representing a Campaign
266
215
  # @return [String]
@@ -275,13 +224,6 @@ module Aws::ConnectCampaignService
275
224
 
276
225
  # DeleteCampaignRequest
277
226
  #
278
- # @note When making an API call, you may pass DeleteConnectInstanceConfigRequest
279
- # data as a hash:
280
- #
281
- # {
282
- # connect_instance_id: "InstanceId", # required
283
- # }
284
- #
285
227
  # @!attribute [rw] connect_instance_id
286
228
  # Amazon Connect Instance Id
287
229
  # @return [String]
@@ -296,13 +238,6 @@ module Aws::ConnectCampaignService
296
238
 
297
239
  # The request for DeleteInstanceOnboardingJob API.
298
240
  #
299
- # @note When making an API call, you may pass DeleteInstanceOnboardingJobRequest
300
- # data as a hash:
301
- #
302
- # {
303
- # connect_instance_id: "InstanceId", # required
304
- # }
305
- #
306
241
  # @!attribute [rw] connect_instance_id
307
242
  # Amazon Connect Instance Id
308
243
  # @return [String]
@@ -317,13 +252,6 @@ module Aws::ConnectCampaignService
317
252
 
318
253
  # DescribeCampaignRequests
319
254
  #
320
- # @note When making an API call, you may pass DescribeCampaignRequest
321
- # data as a hash:
322
- #
323
- # {
324
- # id: "CampaignId", # required
325
- # }
326
- #
327
255
  # @!attribute [rw] id
328
256
  # Identifier representing a Campaign
329
257
  # @return [String]
@@ -352,18 +280,6 @@ module Aws::ConnectCampaignService
352
280
 
353
281
  # A dial request for a campaign.
354
282
  #
355
- # @note When making an API call, you may pass DialRequest
356
- # data as a hash:
357
- #
358
- # {
359
- # attributes: { # required
360
- # "AttributeName" => "AttributeValue",
361
- # },
362
- # client_token: "ClientToken", # required
363
- # expiration_time: Time.now, # required
364
- # phone_number: "DestinationPhoneNumber", # required
365
- # }
366
- #
367
283
  # @!attribute [rw] attributes
368
284
  # A custom key-value pair using an attribute map. The attributes are
369
285
  # standard Amazon Connect attributes, and can be accessed in contact
@@ -428,15 +344,6 @@ module Aws::ConnectCampaignService
428
344
  # its own key. If enabled, a KMS key id needs to be provided and KMS
429
345
  # charges will apply. KMS is only type supported
430
346
  #
431
- # @note When making an API call, you may pass EncryptionConfig
432
- # data as a hash:
433
- #
434
- # {
435
- # enabled: false, # required
436
- # encryption_type: "KMS", # accepts KMS
437
- # key_arn: "EncryptionKey",
438
- # }
439
- #
440
347
  # @!attribute [rw] enabled
441
348
  # Boolean to indicate if custom encryption has been enabled.
442
349
  # @return [Boolean]
@@ -506,13 +413,6 @@ module Aws::ConnectCampaignService
506
413
 
507
414
  # GetCampaignStateBatchRequest
508
415
  #
509
- # @note When making an API call, you may pass GetCampaignStateBatchRequest
510
- # data as a hash:
511
- #
512
- # {
513
- # campaign_ids: ["CampaignId"], # required
514
- # }
515
- #
516
416
  # @!attribute [rw] campaign_ids
517
417
  # List of CampaignId
518
418
  # @return [Array<String>]
@@ -546,13 +446,6 @@ module Aws::ConnectCampaignService
546
446
 
547
447
  # GetCampaignStateRequest
548
448
  #
549
- # @note When making an API call, you may pass GetCampaignStateRequest
550
- # data as a hash:
551
- #
552
- # {
553
- # id: "CampaignId", # required
554
- # }
555
- #
556
449
  # @!attribute [rw] id
557
450
  # Identifier representing a Campaign
558
451
  # @return [String]
@@ -581,13 +474,6 @@ module Aws::ConnectCampaignService
581
474
 
582
475
  # GetConnectInstanceConfigRequest
583
476
  #
584
- # @note When making an API call, you may pass GetConnectInstanceConfigRequest
585
- # data as a hash:
586
- #
587
- # {
588
- # connect_instance_id: "InstanceId", # required
589
- # }
590
- #
591
477
  # @!attribute [rw] connect_instance_id
592
478
  # Amazon Connect Instance Id
593
479
  # @return [String]
@@ -616,13 +502,6 @@ module Aws::ConnectCampaignService
616
502
 
617
503
  # GetInstanceOnboardingJobStatusRequest
618
504
  #
619
- # @note When making an API call, you may pass GetInstanceOnboardingJobStatusRequest
620
- # data as a hash:
621
- #
622
- # {
623
- # connect_instance_id: "InstanceId", # required
624
- # }
625
- #
626
505
  # @!attribute [rw] connect_instance_id
627
506
  # Amazon Connect Instance Id
628
507
  # @return [String]
@@ -678,14 +557,6 @@ module Aws::ConnectCampaignService
678
557
 
679
558
  # Connect instance identifier filter
680
559
  #
681
- # @note When making an API call, you may pass InstanceIdFilter
682
- # data as a hash:
683
- #
684
- # {
685
- # operator: "Eq", # required, accepts Eq
686
- # value: "InstanceId", # required
687
- # }
688
- #
689
560
  # @!attribute [rw] operator
690
561
  # Operators for Connect instance identifier filter
691
562
  # @return [String]
@@ -795,20 +666,6 @@ module Aws::ConnectCampaignService
795
666
 
796
667
  # ListCampaignsRequest
797
668
  #
798
- # @note When making an API call, you may pass ListCampaignsRequest
799
- # data as a hash:
800
- #
801
- # {
802
- # filters: {
803
- # instance_id_filter: {
804
- # operator: "Eq", # required, accepts Eq
805
- # value: "InstanceId", # required
806
- # },
807
- # },
808
- # max_results: 1,
809
- # next_token: "NextToken",
810
- # }
811
- #
812
669
  # @!attribute [rw] filters
813
670
  # Filter model by type
814
671
  # @return [Types::CampaignFilters]
@@ -852,13 +709,6 @@ module Aws::ConnectCampaignService
852
709
 
853
710
  # ListTagsForResource
854
711
  #
855
- # @note When making an API call, you may pass ListTagsForResourceRequest
856
- # data as a hash:
857
- #
858
- # {
859
- # arn: "Arn", # required
860
- # }
861
- #
862
712
  # @!attribute [rw] arn
863
713
  # Arn
864
714
  # @return [String]
@@ -887,18 +737,6 @@ module Aws::ConnectCampaignService
887
737
 
888
738
  # The configuration used for outbound calls.
889
739
  #
890
- # @note When making an API call, you may pass OutboundCallConfig
891
- # data as a hash:
892
- #
893
- # {
894
- # answer_machine_detection_config: {
895
- # enable_answer_machine_detection: false, # required
896
- # },
897
- # connect_contact_flow_id: "ContactFlowId", # required
898
- # connect_queue_id: "QueueId", # required
899
- # connect_source_phone_number: "SourcePhoneNumber",
900
- # }
901
- #
902
740
  # @!attribute [rw] answer_machine_detection_config
903
741
  # Answering Machine Detection config
904
742
  # @return [Types::AnswerMachineDetectionConfig]
@@ -934,13 +772,6 @@ module Aws::ConnectCampaignService
934
772
 
935
773
  # PauseCampaignRequest
936
774
  #
937
- # @note When making an API call, you may pass PauseCampaignRequest
938
- # data as a hash:
939
- #
940
- # {
941
- # id: "CampaignId", # required
942
- # }
943
- #
944
775
  # @!attribute [rw] id
945
776
  # Identifier representing a Campaign
946
777
  # @return [String]
@@ -955,13 +786,6 @@ module Aws::ConnectCampaignService
955
786
 
956
787
  # Predictive Dialer config
957
788
  #
958
- # @note When making an API call, you may pass PredictiveDialerConfig
959
- # data as a hash:
960
- #
961
- # {
962
- # bandwidth_allocation: 1.0, # required
963
- # }
964
- #
965
789
  # @!attribute [rw] bandwidth_allocation
966
790
  # The bandwidth allocation of a queue resource.
967
791
  # @return [Float]
@@ -976,13 +800,6 @@ module Aws::ConnectCampaignService
976
800
 
977
801
  # Progressive Dialer config
978
802
  #
979
- # @note When making an API call, you may pass ProgressiveDialerConfig
980
- # data as a hash:
981
- #
982
- # {
983
- # bandwidth_allocation: 1.0, # required
984
- # }
985
- #
986
803
  # @!attribute [rw] bandwidth_allocation
987
804
  # The bandwidth allocation of a queue resource.
988
805
  # @return [Float]
@@ -997,23 +814,6 @@ module Aws::ConnectCampaignService
997
814
 
998
815
  # PutDialRequestBatchRequest
999
816
  #
1000
- # @note When making an API call, you may pass PutDialRequestBatchRequest
1001
- # data as a hash:
1002
- #
1003
- # {
1004
- # dial_requests: [ # required
1005
- # {
1006
- # attributes: { # required
1007
- # "AttributeName" => "AttributeValue",
1008
- # },
1009
- # client_token: "ClientToken", # required
1010
- # expiration_time: Time.now, # required
1011
- # phone_number: "DestinationPhoneNumber", # required
1012
- # },
1013
- # ],
1014
- # id: "CampaignId", # required
1015
- # }
1016
- #
1017
817
  # @!attribute [rw] dial_requests
1018
818
  # A list of dial requests.
1019
819
  # @return [Array<Types::DialRequest>]
@@ -1071,13 +871,6 @@ module Aws::ConnectCampaignService
1071
871
 
1072
872
  # ResumeCampaignRequest
1073
873
  #
1074
- # @note When making an API call, you may pass ResumeCampaignRequest
1075
- # data as a hash:
1076
- #
1077
- # {
1078
- # id: "CampaignId", # required
1079
- # }
1080
- #
1081
874
  # @!attribute [rw] id
1082
875
  # Identifier representing a Campaign
1083
876
  # @return [String]
@@ -1111,13 +904,6 @@ module Aws::ConnectCampaignService
1111
904
 
1112
905
  # StartCampaignRequest
1113
906
  #
1114
- # @note When making an API call, you may pass StartCampaignRequest
1115
- # data as a hash:
1116
- #
1117
- # {
1118
- # id: "CampaignId", # required
1119
- # }
1120
- #
1121
907
  # @!attribute [rw] id
1122
908
  # Identifier representing a Campaign
1123
909
  # @return [String]
@@ -1132,18 +918,6 @@ module Aws::ConnectCampaignService
1132
918
 
1133
919
  # The request for StartInstanceOnboardingJob API.
1134
920
  #
1135
- # @note When making an API call, you may pass StartInstanceOnboardingJobRequest
1136
- # data as a hash:
1137
- #
1138
- # {
1139
- # connect_instance_id: "InstanceId", # required
1140
- # encryption_config: { # required
1141
- # enabled: false, # required
1142
- # encryption_type: "KMS", # accepts KMS
1143
- # key_arn: "EncryptionKey",
1144
- # },
1145
- # }
1146
- #
1147
921
  # @!attribute [rw] connect_instance_id
1148
922
  # Amazon Connect Instance Id
1149
923
  # @return [String]
@@ -1180,13 +954,6 @@ module Aws::ConnectCampaignService
1180
954
 
1181
955
  # StopCampaignRequest
1182
956
  #
1183
- # @note When making an API call, you may pass StopCampaignRequest
1184
- # data as a hash:
1185
- #
1186
- # {
1187
- # id: "CampaignId", # required
1188
- # }
1189
- #
1190
957
  # @!attribute [rw] id
1191
958
  # Identifier representing a Campaign
1192
959
  # @return [String]
@@ -1240,16 +1007,6 @@ module Aws::ConnectCampaignService
1240
1007
 
1241
1008
  # TagResourceRequest
1242
1009
  #
1243
- # @note When making an API call, you may pass TagResourceRequest
1244
- # data as a hash:
1245
- #
1246
- # {
1247
- # arn: "Arn", # required
1248
- # tags: { # required
1249
- # "TagKey" => "TagValue",
1250
- # },
1251
- # }
1252
- #
1253
1010
  # @!attribute [rw] arn
1254
1011
  # Arn
1255
1012
  # @return [String]
@@ -1288,14 +1045,6 @@ module Aws::ConnectCampaignService
1288
1045
 
1289
1046
  # UntagResourceRequest
1290
1047
  #
1291
- # @note When making an API call, you may pass UntagResourceRequest
1292
- # data as a hash:
1293
- #
1294
- # {
1295
- # arn: "Arn", # required
1296
- # tag_keys: ["TagKey"], # required
1297
- # }
1298
- #
1299
1048
  # @!attribute [rw] arn
1300
1049
  # Arn
1301
1050
  # @return [String]
@@ -1315,21 +1064,6 @@ module Aws::ConnectCampaignService
1315
1064
 
1316
1065
  # UpdateCampaignDialerConfigRequest
1317
1066
  #
1318
- # @note When making an API call, you may pass UpdateCampaignDialerConfigRequest
1319
- # data as a hash:
1320
- #
1321
- # {
1322
- # dialer_config: { # required
1323
- # predictive_dialer_config: {
1324
- # bandwidth_allocation: 1.0, # required
1325
- # },
1326
- # progressive_dialer_config: {
1327
- # bandwidth_allocation: 1.0, # required
1328
- # },
1329
- # },
1330
- # id: "CampaignId", # required
1331
- # }
1332
- #
1333
1067
  # @!attribute [rw] dialer_config
1334
1068
  # The possible types of dialer config parameters
1335
1069
  # @return [Types::DialerConfig]
@@ -1349,14 +1083,6 @@ module Aws::ConnectCampaignService
1349
1083
 
1350
1084
  # UpdateCampaignNameRequest
1351
1085
  #
1352
- # @note When making an API call, you may pass UpdateCampaignNameRequest
1353
- # data as a hash:
1354
- #
1355
- # {
1356
- # id: "CampaignId", # required
1357
- # name: "CampaignName", # required
1358
- # }
1359
- #
1360
1086
  # @!attribute [rw] id
1361
1087
  # Identifier representing a Campaign
1362
1088
  # @return [String]
@@ -1376,18 +1102,6 @@ module Aws::ConnectCampaignService
1376
1102
 
1377
1103
  # UpdateCampaignOutboundCallConfigRequest
1378
1104
  #
1379
- # @note When making an API call, you may pass UpdateCampaignOutboundCallConfigRequest
1380
- # data as a hash:
1381
- #
1382
- # {
1383
- # answer_machine_detection_config: {
1384
- # enable_answer_machine_detection: false, # required
1385
- # },
1386
- # connect_contact_flow_id: "ContactFlowId",
1387
- # connect_source_phone_number: "SourcePhoneNumber",
1388
- # id: "CampaignId", # required
1389
- # }
1390
- #
1391
1105
  # @!attribute [rw] answer_machine_detection_config
1392
1106
  # Answering Machine Detection config
1393
1107
  # @return [Types::AnswerMachineDetectionConfig]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-connectcampaignservice/customizations'
52
52
  # @!group service
53
53
  module Aws::ConnectCampaignService
54
54
 
55
- GEM_VERSION = '1.2.0'
55
+ GEM_VERSION = '1.3.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connectcampaignservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core