aws-sdk-qconnect 1.42.0 → 1.43.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2127,10 +2127,10 @@ module Aws::QConnect
2127
2127
  # The identifier of the knowledge base. Can be either the ID or the ARN.
2128
2128
  # URLs cannot contain the ARN.
2129
2129
  #
2130
- # @option params [required, String] :name
2130
+ # @option params [String] :name
2131
2131
  # The name of the message template.
2132
2132
  #
2133
- # @option params [required, Types::MessageTemplateContentProvider] :content
2133
+ # @option params [Types::MessageTemplateContentProvider] :content
2134
2134
  # The content of the message template.
2135
2135
  #
2136
2136
  # @option params [String] :description
@@ -2145,6 +2145,10 @@ module Aws::QConnect
2145
2145
  # `es_ES`, `fr_FR`, `id_ID`, `it_IT`, `ja_JP`, `ko_KR`, `pt_BR`,
2146
2146
  # `zh_CN`, `zh_TW`
2147
2147
  #
2148
+ # @option params [Types::MessageTemplateSourceConfiguration] :source_configuration
2149
+ # The source configuration of the message template. Only set this
2150
+ # argument for WHATSAPP channel subtype.
2151
+ #
2148
2152
  # @option params [Types::MessageTemplateAttributes] :default_attributes
2149
2153
  # An object that specifies the default values to use for variables in
2150
2154
  # the message template. This object contains different categories of
@@ -2180,8 +2184,8 @@ module Aws::QConnect
2180
2184
  #
2181
2185
  # resp = client.create_message_template({
2182
2186
  # knowledge_base_id: "UuidOrArn", # required
2183
- # name: "Name", # required
2184
- # content: { # required
2187
+ # name: "Name",
2188
+ # content: {
2185
2189
  # email: {
2186
2190
  # subject: "NonEmptyUnlimitedString",
2187
2191
  # body: {
@@ -2206,10 +2210,80 @@ module Aws::QConnect
2206
2210
  # },
2207
2211
  # },
2208
2212
  # },
2213
+ # whats_app: {
2214
+ # data: "WhatsAppMessageTemplateContentData",
2215
+ # },
2216
+ # push: {
2217
+ # adm: {
2218
+ # title: "NonEmptyUnlimitedString",
2219
+ # body: {
2220
+ # content: "NonEmptyUnlimitedString",
2221
+ # },
2222
+ # action: "OPEN_APP", # accepts OPEN_APP, DEEP_LINK, URL
2223
+ # sound: "NonEmptyUnlimitedString",
2224
+ # url: "NonEmptyUnlimitedString",
2225
+ # image_url: "NonEmptyUnlimitedString",
2226
+ # image_icon_url: "NonEmptyUnlimitedString",
2227
+ # small_image_icon_url: "NonEmptyUnlimitedString",
2228
+ # raw_content: {
2229
+ # content: "NonEmptyUnlimitedString",
2230
+ # },
2231
+ # },
2232
+ # apns: {
2233
+ # title: "NonEmptyUnlimitedString",
2234
+ # body: {
2235
+ # content: "NonEmptyUnlimitedString",
2236
+ # },
2237
+ # action: "OPEN_APP", # accepts OPEN_APP, DEEP_LINK, URL
2238
+ # sound: "NonEmptyUnlimitedString",
2239
+ # url: "NonEmptyUnlimitedString",
2240
+ # media_url: "NonEmptyUnlimitedString",
2241
+ # raw_content: {
2242
+ # content: "NonEmptyUnlimitedString",
2243
+ # },
2244
+ # },
2245
+ # fcm: {
2246
+ # title: "NonEmptyUnlimitedString",
2247
+ # body: {
2248
+ # content: "NonEmptyUnlimitedString",
2249
+ # },
2250
+ # action: "OPEN_APP", # accepts OPEN_APP, DEEP_LINK, URL
2251
+ # sound: "NonEmptyUnlimitedString",
2252
+ # url: "NonEmptyUnlimitedString",
2253
+ # image_url: "NonEmptyUnlimitedString",
2254
+ # image_icon_url: "NonEmptyUnlimitedString",
2255
+ # small_image_icon_url: "NonEmptyUnlimitedString",
2256
+ # raw_content: {
2257
+ # content: "NonEmptyUnlimitedString",
2258
+ # },
2259
+ # },
2260
+ # baidu: {
2261
+ # title: "NonEmptyUnlimitedString",
2262
+ # body: {
2263
+ # content: "NonEmptyUnlimitedString",
2264
+ # },
2265
+ # action: "OPEN_APP", # accepts OPEN_APP, DEEP_LINK, URL
2266
+ # sound: "NonEmptyUnlimitedString",
2267
+ # url: "NonEmptyUnlimitedString",
2268
+ # image_url: "NonEmptyUnlimitedString",
2269
+ # image_icon_url: "NonEmptyUnlimitedString",
2270
+ # small_image_icon_url: "NonEmptyUnlimitedString",
2271
+ # raw_content: {
2272
+ # content: "NonEmptyUnlimitedString",
2273
+ # },
2274
+ # },
2275
+ # },
2209
2276
  # },
2210
2277
  # description: "Description",
2211
- # channel_subtype: "EMAIL", # required, accepts EMAIL, SMS
2278
+ # channel_subtype: "EMAIL", # required, accepts EMAIL, SMS, WHATSAPP, PUSH
2212
2279
  # language: "LanguageCode",
2280
+ # source_configuration: {
2281
+ # whats_app: {
2282
+ # business_account_id: "WhatsAppBusinessAccountId", # required
2283
+ # template_id: "WhatsAppMessageTemplateId", # required
2284
+ # components: ["WhatsAppMessageTemplateComponent"],
2285
+ # },
2286
+ # },
2213
2287
  # default_attributes: {
2214
2288
  # system_attributes: {
2215
2289
  # name: "MessageTemplateAttributeValue",
@@ -2307,7 +2381,8 @@ module Aws::QConnect
2307
2381
  # resp.message_template.knowledge_base_arn #=> String
2308
2382
  # resp.message_template.knowledge_base_id #=> String
2309
2383
  # resp.message_template.name #=> String
2310
- # resp.message_template.channel_subtype #=> String, one of "EMAIL", "SMS"
2384
+ # resp.message_template.channel #=> String
2385
+ # resp.message_template.channel_subtype #=> String, one of "EMAIL", "SMS", "WHATSAPP", "PUSH"
2311
2386
  # resp.message_template.created_time #=> Time
2312
2387
  # resp.message_template.last_modified_time #=> Time
2313
2388
  # resp.message_template.last_modified_by #=> String
@@ -2318,8 +2393,51 @@ module Aws::QConnect
2318
2393
  # resp.message_template.content.email.headers[0].name #=> String
2319
2394
  # resp.message_template.content.email.headers[0].value #=> String
2320
2395
  # resp.message_template.content.sms.body.plain_text.content #=> String
2396
+ # resp.message_template.content.whats_app.data #=> String
2397
+ # resp.message_template.content.push.adm.title #=> String
2398
+ # resp.message_template.content.push.adm.body.content #=> String
2399
+ # resp.message_template.content.push.adm.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
2400
+ # resp.message_template.content.push.adm.sound #=> String
2401
+ # resp.message_template.content.push.adm.url #=> String
2402
+ # resp.message_template.content.push.adm.image_url #=> String
2403
+ # resp.message_template.content.push.adm.image_icon_url #=> String
2404
+ # resp.message_template.content.push.adm.small_image_icon_url #=> String
2405
+ # resp.message_template.content.push.adm.raw_content.content #=> String
2406
+ # resp.message_template.content.push.apns.title #=> String
2407
+ # resp.message_template.content.push.apns.body.content #=> String
2408
+ # resp.message_template.content.push.apns.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
2409
+ # resp.message_template.content.push.apns.sound #=> String
2410
+ # resp.message_template.content.push.apns.url #=> String
2411
+ # resp.message_template.content.push.apns.media_url #=> String
2412
+ # resp.message_template.content.push.apns.raw_content.content #=> String
2413
+ # resp.message_template.content.push.fcm.title #=> String
2414
+ # resp.message_template.content.push.fcm.body.content #=> String
2415
+ # resp.message_template.content.push.fcm.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
2416
+ # resp.message_template.content.push.fcm.sound #=> String
2417
+ # resp.message_template.content.push.fcm.url #=> String
2418
+ # resp.message_template.content.push.fcm.image_url #=> String
2419
+ # resp.message_template.content.push.fcm.image_icon_url #=> String
2420
+ # resp.message_template.content.push.fcm.small_image_icon_url #=> String
2421
+ # resp.message_template.content.push.fcm.raw_content.content #=> String
2422
+ # resp.message_template.content.push.baidu.title #=> String
2423
+ # resp.message_template.content.push.baidu.body.content #=> String
2424
+ # resp.message_template.content.push.baidu.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
2425
+ # resp.message_template.content.push.baidu.sound #=> String
2426
+ # resp.message_template.content.push.baidu.url #=> String
2427
+ # resp.message_template.content.push.baidu.image_url #=> String
2428
+ # resp.message_template.content.push.baidu.image_icon_url #=> String
2429
+ # resp.message_template.content.push.baidu.small_image_icon_url #=> String
2430
+ # resp.message_template.content.push.baidu.raw_content.content #=> String
2321
2431
  # resp.message_template.description #=> String
2322
2432
  # resp.message_template.language #=> String
2433
+ # resp.message_template.source_configuration_summary.whats_app.business_account_id #=> String
2434
+ # resp.message_template.source_configuration_summary.whats_app.template_id #=> String
2435
+ # resp.message_template.source_configuration_summary.whats_app.name #=> String
2436
+ # resp.message_template.source_configuration_summary.whats_app.language #=> String
2437
+ # resp.message_template.source_configuration_summary.whats_app.components #=> Array
2438
+ # resp.message_template.source_configuration_summary.whats_app.components[0] #=> String
2439
+ # resp.message_template.source_configuration_summary.whats_app.status #=> String, one of "VALID", "INVALID", "REJECTED"
2440
+ # resp.message_template.source_configuration_summary.whats_app.status_reason #=> String
2323
2441
  # resp.message_template.grouping_configuration.criteria #=> String
2324
2442
  # resp.message_template.grouping_configuration.values #=> Array
2325
2443
  # resp.message_template.grouping_configuration.values[0] #=> String
@@ -2523,7 +2641,8 @@ module Aws::QConnect
2523
2641
  # resp.message_template.knowledge_base_arn #=> String
2524
2642
  # resp.message_template.knowledge_base_id #=> String
2525
2643
  # resp.message_template.name #=> String
2526
- # resp.message_template.channel_subtype #=> String, one of "EMAIL", "SMS"
2644
+ # resp.message_template.channel #=> String
2645
+ # resp.message_template.channel_subtype #=> String, one of "EMAIL", "SMS", "WHATSAPP", "PUSH"
2527
2646
  # resp.message_template.created_time #=> Time
2528
2647
  # resp.message_template.last_modified_time #=> Time
2529
2648
  # resp.message_template.last_modified_by #=> String
@@ -2534,8 +2653,51 @@ module Aws::QConnect
2534
2653
  # resp.message_template.content.email.headers[0].name #=> String
2535
2654
  # resp.message_template.content.email.headers[0].value #=> String
2536
2655
  # resp.message_template.content.sms.body.plain_text.content #=> String
2656
+ # resp.message_template.content.whats_app.data #=> String
2657
+ # resp.message_template.content.push.adm.title #=> String
2658
+ # resp.message_template.content.push.adm.body.content #=> String
2659
+ # resp.message_template.content.push.adm.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
2660
+ # resp.message_template.content.push.adm.sound #=> String
2661
+ # resp.message_template.content.push.adm.url #=> String
2662
+ # resp.message_template.content.push.adm.image_url #=> String
2663
+ # resp.message_template.content.push.adm.image_icon_url #=> String
2664
+ # resp.message_template.content.push.adm.small_image_icon_url #=> String
2665
+ # resp.message_template.content.push.adm.raw_content.content #=> String
2666
+ # resp.message_template.content.push.apns.title #=> String
2667
+ # resp.message_template.content.push.apns.body.content #=> String
2668
+ # resp.message_template.content.push.apns.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
2669
+ # resp.message_template.content.push.apns.sound #=> String
2670
+ # resp.message_template.content.push.apns.url #=> String
2671
+ # resp.message_template.content.push.apns.media_url #=> String
2672
+ # resp.message_template.content.push.apns.raw_content.content #=> String
2673
+ # resp.message_template.content.push.fcm.title #=> String
2674
+ # resp.message_template.content.push.fcm.body.content #=> String
2675
+ # resp.message_template.content.push.fcm.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
2676
+ # resp.message_template.content.push.fcm.sound #=> String
2677
+ # resp.message_template.content.push.fcm.url #=> String
2678
+ # resp.message_template.content.push.fcm.image_url #=> String
2679
+ # resp.message_template.content.push.fcm.image_icon_url #=> String
2680
+ # resp.message_template.content.push.fcm.small_image_icon_url #=> String
2681
+ # resp.message_template.content.push.fcm.raw_content.content #=> String
2682
+ # resp.message_template.content.push.baidu.title #=> String
2683
+ # resp.message_template.content.push.baidu.body.content #=> String
2684
+ # resp.message_template.content.push.baidu.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
2685
+ # resp.message_template.content.push.baidu.sound #=> String
2686
+ # resp.message_template.content.push.baidu.url #=> String
2687
+ # resp.message_template.content.push.baidu.image_url #=> String
2688
+ # resp.message_template.content.push.baidu.image_icon_url #=> String
2689
+ # resp.message_template.content.push.baidu.small_image_icon_url #=> String
2690
+ # resp.message_template.content.push.baidu.raw_content.content #=> String
2537
2691
  # resp.message_template.description #=> String
2538
2692
  # resp.message_template.language #=> String
2693
+ # resp.message_template.source_configuration_summary.whats_app.business_account_id #=> String
2694
+ # resp.message_template.source_configuration_summary.whats_app.template_id #=> String
2695
+ # resp.message_template.source_configuration_summary.whats_app.name #=> String
2696
+ # resp.message_template.source_configuration_summary.whats_app.language #=> String
2697
+ # resp.message_template.source_configuration_summary.whats_app.components #=> Array
2698
+ # resp.message_template.source_configuration_summary.whats_app.components[0] #=> String
2699
+ # resp.message_template.source_configuration_summary.whats_app.status #=> String, one of "VALID", "INVALID", "REJECTED"
2700
+ # resp.message_template.source_configuration_summary.whats_app.status_reason #=> String
2539
2701
  # resp.message_template.grouping_configuration.criteria #=> String
2540
2702
  # resp.message_template.grouping_configuration.values #=> Array
2541
2703
  # resp.message_template.grouping_configuration.values[0] #=> String
@@ -4024,7 +4186,8 @@ module Aws::QConnect
4024
4186
  # resp.message_template.knowledge_base_arn #=> String
4025
4187
  # resp.message_template.knowledge_base_id #=> String
4026
4188
  # resp.message_template.name #=> String
4027
- # resp.message_template.channel_subtype #=> String, one of "EMAIL", "SMS"
4189
+ # resp.message_template.channel #=> String
4190
+ # resp.message_template.channel_subtype #=> String, one of "EMAIL", "SMS", "WHATSAPP", "PUSH"
4028
4191
  # resp.message_template.created_time #=> Time
4029
4192
  # resp.message_template.last_modified_time #=> Time
4030
4193
  # resp.message_template.last_modified_by #=> String
@@ -4035,8 +4198,51 @@ module Aws::QConnect
4035
4198
  # resp.message_template.content.email.headers[0].name #=> String
4036
4199
  # resp.message_template.content.email.headers[0].value #=> String
4037
4200
  # resp.message_template.content.sms.body.plain_text.content #=> String
4201
+ # resp.message_template.content.whats_app.data #=> String
4202
+ # resp.message_template.content.push.adm.title #=> String
4203
+ # resp.message_template.content.push.adm.body.content #=> String
4204
+ # resp.message_template.content.push.adm.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
4205
+ # resp.message_template.content.push.adm.sound #=> String
4206
+ # resp.message_template.content.push.adm.url #=> String
4207
+ # resp.message_template.content.push.adm.image_url #=> String
4208
+ # resp.message_template.content.push.adm.image_icon_url #=> String
4209
+ # resp.message_template.content.push.adm.small_image_icon_url #=> String
4210
+ # resp.message_template.content.push.adm.raw_content.content #=> String
4211
+ # resp.message_template.content.push.apns.title #=> String
4212
+ # resp.message_template.content.push.apns.body.content #=> String
4213
+ # resp.message_template.content.push.apns.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
4214
+ # resp.message_template.content.push.apns.sound #=> String
4215
+ # resp.message_template.content.push.apns.url #=> String
4216
+ # resp.message_template.content.push.apns.media_url #=> String
4217
+ # resp.message_template.content.push.apns.raw_content.content #=> String
4218
+ # resp.message_template.content.push.fcm.title #=> String
4219
+ # resp.message_template.content.push.fcm.body.content #=> String
4220
+ # resp.message_template.content.push.fcm.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
4221
+ # resp.message_template.content.push.fcm.sound #=> String
4222
+ # resp.message_template.content.push.fcm.url #=> String
4223
+ # resp.message_template.content.push.fcm.image_url #=> String
4224
+ # resp.message_template.content.push.fcm.image_icon_url #=> String
4225
+ # resp.message_template.content.push.fcm.small_image_icon_url #=> String
4226
+ # resp.message_template.content.push.fcm.raw_content.content #=> String
4227
+ # resp.message_template.content.push.baidu.title #=> String
4228
+ # resp.message_template.content.push.baidu.body.content #=> String
4229
+ # resp.message_template.content.push.baidu.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
4230
+ # resp.message_template.content.push.baidu.sound #=> String
4231
+ # resp.message_template.content.push.baidu.url #=> String
4232
+ # resp.message_template.content.push.baidu.image_url #=> String
4233
+ # resp.message_template.content.push.baidu.image_icon_url #=> String
4234
+ # resp.message_template.content.push.baidu.small_image_icon_url #=> String
4235
+ # resp.message_template.content.push.baidu.raw_content.content #=> String
4038
4236
  # resp.message_template.description #=> String
4039
4237
  # resp.message_template.language #=> String
4238
+ # resp.message_template.source_configuration_summary.whats_app.business_account_id #=> String
4239
+ # resp.message_template.source_configuration_summary.whats_app.template_id #=> String
4240
+ # resp.message_template.source_configuration_summary.whats_app.name #=> String
4241
+ # resp.message_template.source_configuration_summary.whats_app.language #=> String
4242
+ # resp.message_template.source_configuration_summary.whats_app.components #=> Array
4243
+ # resp.message_template.source_configuration_summary.whats_app.components[0] #=> String
4244
+ # resp.message_template.source_configuration_summary.whats_app.status #=> String, one of "VALID", "INVALID", "REJECTED"
4245
+ # resp.message_template.source_configuration_summary.whats_app.status_reason #=> String
4040
4246
  # resp.message_template.grouping_configuration.criteria #=> String
4041
4247
  # resp.message_template.grouping_configuration.values #=> Array
4042
4248
  # resp.message_template.grouping_configuration.values[0] #=> String
@@ -5411,7 +5617,8 @@ module Aws::QConnect
5411
5617
  # resp.message_template_version_summaries[0].knowledge_base_arn #=> String
5412
5618
  # resp.message_template_version_summaries[0].knowledge_base_id #=> String
5413
5619
  # resp.message_template_version_summaries[0].name #=> String
5414
- # resp.message_template_version_summaries[0].channel_subtype #=> String, one of "EMAIL", "SMS"
5620
+ # resp.message_template_version_summaries[0].channel #=> String
5621
+ # resp.message_template_version_summaries[0].channel_subtype #=> String, one of "EMAIL", "SMS", "WHATSAPP", "PUSH"
5415
5622
  # resp.message_template_version_summaries[0].is_active #=> Boolean
5416
5623
  # resp.message_template_version_summaries[0].version_number #=> Integer
5417
5624
  # resp.next_token #=> String
@@ -5463,10 +5670,15 @@ module Aws::QConnect
5463
5670
  # resp.message_template_summaries[0].knowledge_base_arn #=> String
5464
5671
  # resp.message_template_summaries[0].knowledge_base_id #=> String
5465
5672
  # resp.message_template_summaries[0].name #=> String
5466
- # resp.message_template_summaries[0].channel_subtype #=> String, one of "EMAIL", "SMS"
5673
+ # resp.message_template_summaries[0].channel #=> String
5674
+ # resp.message_template_summaries[0].channel_subtype #=> String, one of "EMAIL", "SMS", "WHATSAPP", "PUSH"
5467
5675
  # resp.message_template_summaries[0].created_time #=> Time
5468
5676
  # resp.message_template_summaries[0].last_modified_time #=> Time
5469
5677
  # resp.message_template_summaries[0].last_modified_by #=> String
5678
+ # resp.message_template_summaries[0].source_configuration.whats_app.business_account_id #=> String
5679
+ # resp.message_template_summaries[0].source_configuration.whats_app.template_id #=> String
5680
+ # resp.message_template_summaries[0].source_configuration.whats_app.components #=> Array
5681
+ # resp.message_template_summaries[0].source_configuration.whats_app.components[0] #=> String
5470
5682
  # resp.message_template_summaries[0].active_version_number #=> Integer
5471
5683
  # resp.message_template_summaries[0].description #=> String
5472
5684
  # resp.message_template_summaries[0].tags #=> Hash
@@ -5961,6 +6173,7 @@ module Aws::QConnect
5961
6173
  # @return [Types::RenderMessageTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5962
6174
  #
5963
6175
  # * {Types::RenderMessageTemplateResponse#content #content} => Types::MessageTemplateContentProvider
6176
+ # * {Types::RenderMessageTemplateResponse#source_configuration_summary #source_configuration_summary} => Types::MessageTemplateSourceConfigurationSummary
5964
6177
  # * {Types::RenderMessageTemplateResponse#attributes_not_interpolated #attributes_not_interpolated} => Array<String>
5965
6178
  # * {Types::RenderMessageTemplateResponse#attachments #attachments} => Array<Types::MessageTemplateAttachment>
5966
6179
  #
@@ -6060,6 +6273,49 @@ module Aws::QConnect
6060
6273
  # resp.content.email.headers[0].name #=> String
6061
6274
  # resp.content.email.headers[0].value #=> String
6062
6275
  # resp.content.sms.body.plain_text.content #=> String
6276
+ # resp.content.whats_app.data #=> String
6277
+ # resp.content.push.adm.title #=> String
6278
+ # resp.content.push.adm.body.content #=> String
6279
+ # resp.content.push.adm.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
6280
+ # resp.content.push.adm.sound #=> String
6281
+ # resp.content.push.adm.url #=> String
6282
+ # resp.content.push.adm.image_url #=> String
6283
+ # resp.content.push.adm.image_icon_url #=> String
6284
+ # resp.content.push.adm.small_image_icon_url #=> String
6285
+ # resp.content.push.adm.raw_content.content #=> String
6286
+ # resp.content.push.apns.title #=> String
6287
+ # resp.content.push.apns.body.content #=> String
6288
+ # resp.content.push.apns.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
6289
+ # resp.content.push.apns.sound #=> String
6290
+ # resp.content.push.apns.url #=> String
6291
+ # resp.content.push.apns.media_url #=> String
6292
+ # resp.content.push.apns.raw_content.content #=> String
6293
+ # resp.content.push.fcm.title #=> String
6294
+ # resp.content.push.fcm.body.content #=> String
6295
+ # resp.content.push.fcm.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
6296
+ # resp.content.push.fcm.sound #=> String
6297
+ # resp.content.push.fcm.url #=> String
6298
+ # resp.content.push.fcm.image_url #=> String
6299
+ # resp.content.push.fcm.image_icon_url #=> String
6300
+ # resp.content.push.fcm.small_image_icon_url #=> String
6301
+ # resp.content.push.fcm.raw_content.content #=> String
6302
+ # resp.content.push.baidu.title #=> String
6303
+ # resp.content.push.baidu.body.content #=> String
6304
+ # resp.content.push.baidu.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
6305
+ # resp.content.push.baidu.sound #=> String
6306
+ # resp.content.push.baidu.url #=> String
6307
+ # resp.content.push.baidu.image_url #=> String
6308
+ # resp.content.push.baidu.image_icon_url #=> String
6309
+ # resp.content.push.baidu.small_image_icon_url #=> String
6310
+ # resp.content.push.baidu.raw_content.content #=> String
6311
+ # resp.source_configuration_summary.whats_app.business_account_id #=> String
6312
+ # resp.source_configuration_summary.whats_app.template_id #=> String
6313
+ # resp.source_configuration_summary.whats_app.name #=> String
6314
+ # resp.source_configuration_summary.whats_app.language #=> String
6315
+ # resp.source_configuration_summary.whats_app.components #=> Array
6316
+ # resp.source_configuration_summary.whats_app.components[0] #=> String
6317
+ # resp.source_configuration_summary.whats_app.status #=> String, one of "VALID", "INVALID", "REJECTED"
6318
+ # resp.source_configuration_summary.whats_app.status_reason #=> String
6063
6319
  # resp.attributes_not_interpolated #=> Array
6064
6320
  # resp.attributes_not_interpolated[0] #=> String
6065
6321
  # resp.attachments #=> Array
@@ -6213,13 +6469,22 @@ module Aws::QConnect
6213
6469
  # resp.results[0].knowledge_base_arn #=> String
6214
6470
  # resp.results[0].knowledge_base_id #=> String
6215
6471
  # resp.results[0].name #=> String
6216
- # resp.results[0].channel_subtype #=> String, one of "EMAIL", "SMS"
6472
+ # resp.results[0].channel #=> String
6473
+ # resp.results[0].channel_subtype #=> String, one of "EMAIL", "SMS", "WHATSAPP", "PUSH"
6217
6474
  # resp.results[0].created_time #=> Time
6218
6475
  # resp.results[0].last_modified_time #=> Time
6219
6476
  # resp.results[0].last_modified_by #=> String
6220
6477
  # resp.results[0].is_active #=> Boolean
6221
6478
  # resp.results[0].version_number #=> Integer
6222
6479
  # resp.results[0].description #=> String
6480
+ # resp.results[0].source_configuration_summary.whats_app.business_account_id #=> String
6481
+ # resp.results[0].source_configuration_summary.whats_app.template_id #=> String
6482
+ # resp.results[0].source_configuration_summary.whats_app.name #=> String
6483
+ # resp.results[0].source_configuration_summary.whats_app.language #=> String
6484
+ # resp.results[0].source_configuration_summary.whats_app.components #=> Array
6485
+ # resp.results[0].source_configuration_summary.whats_app.components[0] #=> String
6486
+ # resp.results[0].source_configuration_summary.whats_app.status #=> String, one of "VALID", "INVALID", "REJECTED"
6487
+ # resp.results[0].source_configuration_summary.whats_app.status_reason #=> String
6223
6488
  # resp.results[0].grouping_configuration.criteria #=> String
6224
6489
  # resp.results[0].grouping_configuration.values #=> Array
6225
6490
  # resp.results[0].grouping_configuration.values[0] #=> String
@@ -7600,6 +7865,10 @@ module Aws::QConnect
7600
7865
  # `es_ES`, `fr_FR`, `id_ID`, `it_IT`, `ja_JP`, `ko_KR`, `pt_BR`,
7601
7866
  # `zh_CN`, `zh_TW`
7602
7867
  #
7868
+ # @option params [Types::MessageTemplateSourceConfiguration] :source_configuration
7869
+ # The source configuration of the message template. Only set this
7870
+ # argument for WHATSAPP channel subtype.
7871
+ #
7603
7872
  # @option params [Types::MessageTemplateAttributes] :default_attributes
7604
7873
  # An object that specifies the default values to use for variables in
7605
7874
  # the message template. This object contains different categories of
@@ -7641,8 +7910,78 @@ module Aws::QConnect
7641
7910
  # },
7642
7911
  # },
7643
7912
  # },
7913
+ # whats_app: {
7914
+ # data: "WhatsAppMessageTemplateContentData",
7915
+ # },
7916
+ # push: {
7917
+ # adm: {
7918
+ # title: "NonEmptyUnlimitedString",
7919
+ # body: {
7920
+ # content: "NonEmptyUnlimitedString",
7921
+ # },
7922
+ # action: "OPEN_APP", # accepts OPEN_APP, DEEP_LINK, URL
7923
+ # sound: "NonEmptyUnlimitedString",
7924
+ # url: "NonEmptyUnlimitedString",
7925
+ # image_url: "NonEmptyUnlimitedString",
7926
+ # image_icon_url: "NonEmptyUnlimitedString",
7927
+ # small_image_icon_url: "NonEmptyUnlimitedString",
7928
+ # raw_content: {
7929
+ # content: "NonEmptyUnlimitedString",
7930
+ # },
7931
+ # },
7932
+ # apns: {
7933
+ # title: "NonEmptyUnlimitedString",
7934
+ # body: {
7935
+ # content: "NonEmptyUnlimitedString",
7936
+ # },
7937
+ # action: "OPEN_APP", # accepts OPEN_APP, DEEP_LINK, URL
7938
+ # sound: "NonEmptyUnlimitedString",
7939
+ # url: "NonEmptyUnlimitedString",
7940
+ # media_url: "NonEmptyUnlimitedString",
7941
+ # raw_content: {
7942
+ # content: "NonEmptyUnlimitedString",
7943
+ # },
7944
+ # },
7945
+ # fcm: {
7946
+ # title: "NonEmptyUnlimitedString",
7947
+ # body: {
7948
+ # content: "NonEmptyUnlimitedString",
7949
+ # },
7950
+ # action: "OPEN_APP", # accepts OPEN_APP, DEEP_LINK, URL
7951
+ # sound: "NonEmptyUnlimitedString",
7952
+ # url: "NonEmptyUnlimitedString",
7953
+ # image_url: "NonEmptyUnlimitedString",
7954
+ # image_icon_url: "NonEmptyUnlimitedString",
7955
+ # small_image_icon_url: "NonEmptyUnlimitedString",
7956
+ # raw_content: {
7957
+ # content: "NonEmptyUnlimitedString",
7958
+ # },
7959
+ # },
7960
+ # baidu: {
7961
+ # title: "NonEmptyUnlimitedString",
7962
+ # body: {
7963
+ # content: "NonEmptyUnlimitedString",
7964
+ # },
7965
+ # action: "OPEN_APP", # accepts OPEN_APP, DEEP_LINK, URL
7966
+ # sound: "NonEmptyUnlimitedString",
7967
+ # url: "NonEmptyUnlimitedString",
7968
+ # image_url: "NonEmptyUnlimitedString",
7969
+ # image_icon_url: "NonEmptyUnlimitedString",
7970
+ # small_image_icon_url: "NonEmptyUnlimitedString",
7971
+ # raw_content: {
7972
+ # content: "NonEmptyUnlimitedString",
7973
+ # },
7974
+ # },
7975
+ # },
7644
7976
  # },
7645
7977
  # language: "LanguageCode",
7978
+ # source_configuration: {
7979
+ # whats_app: {
7980
+ # business_account_id: "WhatsAppBusinessAccountId", # required
7981
+ # template_id: "WhatsAppMessageTemplateId", # required
7982
+ # components: ["WhatsAppMessageTemplateComponent"],
7983
+ # },
7984
+ # },
7646
7985
  # default_attributes: {
7647
7986
  # system_attributes: {
7648
7987
  # name: "MessageTemplateAttributeValue",
@@ -7732,7 +8071,8 @@ module Aws::QConnect
7732
8071
  # resp.message_template.knowledge_base_arn #=> String
7733
8072
  # resp.message_template.knowledge_base_id #=> String
7734
8073
  # resp.message_template.name #=> String
7735
- # resp.message_template.channel_subtype #=> String, one of "EMAIL", "SMS"
8074
+ # resp.message_template.channel #=> String
8075
+ # resp.message_template.channel_subtype #=> String, one of "EMAIL", "SMS", "WHATSAPP", "PUSH"
7736
8076
  # resp.message_template.created_time #=> Time
7737
8077
  # resp.message_template.last_modified_time #=> Time
7738
8078
  # resp.message_template.last_modified_by #=> String
@@ -7743,8 +8083,51 @@ module Aws::QConnect
7743
8083
  # resp.message_template.content.email.headers[0].name #=> String
7744
8084
  # resp.message_template.content.email.headers[0].value #=> String
7745
8085
  # resp.message_template.content.sms.body.plain_text.content #=> String
8086
+ # resp.message_template.content.whats_app.data #=> String
8087
+ # resp.message_template.content.push.adm.title #=> String
8088
+ # resp.message_template.content.push.adm.body.content #=> String
8089
+ # resp.message_template.content.push.adm.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
8090
+ # resp.message_template.content.push.adm.sound #=> String
8091
+ # resp.message_template.content.push.adm.url #=> String
8092
+ # resp.message_template.content.push.adm.image_url #=> String
8093
+ # resp.message_template.content.push.adm.image_icon_url #=> String
8094
+ # resp.message_template.content.push.adm.small_image_icon_url #=> String
8095
+ # resp.message_template.content.push.adm.raw_content.content #=> String
8096
+ # resp.message_template.content.push.apns.title #=> String
8097
+ # resp.message_template.content.push.apns.body.content #=> String
8098
+ # resp.message_template.content.push.apns.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
8099
+ # resp.message_template.content.push.apns.sound #=> String
8100
+ # resp.message_template.content.push.apns.url #=> String
8101
+ # resp.message_template.content.push.apns.media_url #=> String
8102
+ # resp.message_template.content.push.apns.raw_content.content #=> String
8103
+ # resp.message_template.content.push.fcm.title #=> String
8104
+ # resp.message_template.content.push.fcm.body.content #=> String
8105
+ # resp.message_template.content.push.fcm.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
8106
+ # resp.message_template.content.push.fcm.sound #=> String
8107
+ # resp.message_template.content.push.fcm.url #=> String
8108
+ # resp.message_template.content.push.fcm.image_url #=> String
8109
+ # resp.message_template.content.push.fcm.image_icon_url #=> String
8110
+ # resp.message_template.content.push.fcm.small_image_icon_url #=> String
8111
+ # resp.message_template.content.push.fcm.raw_content.content #=> String
8112
+ # resp.message_template.content.push.baidu.title #=> String
8113
+ # resp.message_template.content.push.baidu.body.content #=> String
8114
+ # resp.message_template.content.push.baidu.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
8115
+ # resp.message_template.content.push.baidu.sound #=> String
8116
+ # resp.message_template.content.push.baidu.url #=> String
8117
+ # resp.message_template.content.push.baidu.image_url #=> String
8118
+ # resp.message_template.content.push.baidu.image_icon_url #=> String
8119
+ # resp.message_template.content.push.baidu.small_image_icon_url #=> String
8120
+ # resp.message_template.content.push.baidu.raw_content.content #=> String
7746
8121
  # resp.message_template.description #=> String
7747
8122
  # resp.message_template.language #=> String
8123
+ # resp.message_template.source_configuration_summary.whats_app.business_account_id #=> String
8124
+ # resp.message_template.source_configuration_summary.whats_app.template_id #=> String
8125
+ # resp.message_template.source_configuration_summary.whats_app.name #=> String
8126
+ # resp.message_template.source_configuration_summary.whats_app.language #=> String
8127
+ # resp.message_template.source_configuration_summary.whats_app.components #=> Array
8128
+ # resp.message_template.source_configuration_summary.whats_app.components[0] #=> String
8129
+ # resp.message_template.source_configuration_summary.whats_app.status #=> String, one of "VALID", "INVALID", "REJECTED"
8130
+ # resp.message_template.source_configuration_summary.whats_app.status_reason #=> String
7748
8131
  # resp.message_template.grouping_configuration.criteria #=> String
7749
8132
  # resp.message_template.grouping_configuration.values #=> Array
7750
8133
  # resp.message_template.grouping_configuration.values[0] #=> String
@@ -7878,7 +8261,8 @@ module Aws::QConnect
7878
8261
  # resp.message_template.knowledge_base_arn #=> String
7879
8262
  # resp.message_template.knowledge_base_id #=> String
7880
8263
  # resp.message_template.name #=> String
7881
- # resp.message_template.channel_subtype #=> String, one of "EMAIL", "SMS"
8264
+ # resp.message_template.channel #=> String
8265
+ # resp.message_template.channel_subtype #=> String, one of "EMAIL", "SMS", "WHATSAPP", "PUSH"
7882
8266
  # resp.message_template.created_time #=> Time
7883
8267
  # resp.message_template.last_modified_time #=> Time
7884
8268
  # resp.message_template.last_modified_by #=> String
@@ -7889,8 +8273,51 @@ module Aws::QConnect
7889
8273
  # resp.message_template.content.email.headers[0].name #=> String
7890
8274
  # resp.message_template.content.email.headers[0].value #=> String
7891
8275
  # resp.message_template.content.sms.body.plain_text.content #=> String
8276
+ # resp.message_template.content.whats_app.data #=> String
8277
+ # resp.message_template.content.push.adm.title #=> String
8278
+ # resp.message_template.content.push.adm.body.content #=> String
8279
+ # resp.message_template.content.push.adm.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
8280
+ # resp.message_template.content.push.adm.sound #=> String
8281
+ # resp.message_template.content.push.adm.url #=> String
8282
+ # resp.message_template.content.push.adm.image_url #=> String
8283
+ # resp.message_template.content.push.adm.image_icon_url #=> String
8284
+ # resp.message_template.content.push.adm.small_image_icon_url #=> String
8285
+ # resp.message_template.content.push.adm.raw_content.content #=> String
8286
+ # resp.message_template.content.push.apns.title #=> String
8287
+ # resp.message_template.content.push.apns.body.content #=> String
8288
+ # resp.message_template.content.push.apns.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
8289
+ # resp.message_template.content.push.apns.sound #=> String
8290
+ # resp.message_template.content.push.apns.url #=> String
8291
+ # resp.message_template.content.push.apns.media_url #=> String
8292
+ # resp.message_template.content.push.apns.raw_content.content #=> String
8293
+ # resp.message_template.content.push.fcm.title #=> String
8294
+ # resp.message_template.content.push.fcm.body.content #=> String
8295
+ # resp.message_template.content.push.fcm.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
8296
+ # resp.message_template.content.push.fcm.sound #=> String
8297
+ # resp.message_template.content.push.fcm.url #=> String
8298
+ # resp.message_template.content.push.fcm.image_url #=> String
8299
+ # resp.message_template.content.push.fcm.image_icon_url #=> String
8300
+ # resp.message_template.content.push.fcm.small_image_icon_url #=> String
8301
+ # resp.message_template.content.push.fcm.raw_content.content #=> String
8302
+ # resp.message_template.content.push.baidu.title #=> String
8303
+ # resp.message_template.content.push.baidu.body.content #=> String
8304
+ # resp.message_template.content.push.baidu.action #=> String, one of "OPEN_APP", "DEEP_LINK", "URL"
8305
+ # resp.message_template.content.push.baidu.sound #=> String
8306
+ # resp.message_template.content.push.baidu.url #=> String
8307
+ # resp.message_template.content.push.baidu.image_url #=> String
8308
+ # resp.message_template.content.push.baidu.image_icon_url #=> String
8309
+ # resp.message_template.content.push.baidu.small_image_icon_url #=> String
8310
+ # resp.message_template.content.push.baidu.raw_content.content #=> String
7892
8311
  # resp.message_template.description #=> String
7893
8312
  # resp.message_template.language #=> String
8313
+ # resp.message_template.source_configuration_summary.whats_app.business_account_id #=> String
8314
+ # resp.message_template.source_configuration_summary.whats_app.template_id #=> String
8315
+ # resp.message_template.source_configuration_summary.whats_app.name #=> String
8316
+ # resp.message_template.source_configuration_summary.whats_app.language #=> String
8317
+ # resp.message_template.source_configuration_summary.whats_app.components #=> Array
8318
+ # resp.message_template.source_configuration_summary.whats_app.components[0] #=> String
8319
+ # resp.message_template.source_configuration_summary.whats_app.status #=> String, one of "VALID", "INVALID", "REJECTED"
8320
+ # resp.message_template.source_configuration_summary.whats_app.status_reason #=> String
7894
8321
  # resp.message_template.grouping_configuration.criteria #=> String
7895
8322
  # resp.message_template.grouping_configuration.values #=> Array
7896
8323
  # resp.message_template.grouping_configuration.values[0] #=> String
@@ -8270,7 +8697,7 @@ module Aws::QConnect
8270
8697
  tracer: tracer
8271
8698
  )
8272
8699
  context[:gem_name] = 'aws-sdk-qconnect'
8273
- context[:gem_version] = '1.42.0'
8700
+ context[:gem_version] = '1.43.0'
8274
8701
  Seahorse::Client::Request.new(handlers, context)
8275
8702
  end
8276
8703