aws-sdk-chatbot 1.18.0 → 1.19.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -40,6 +40,42 @@ module Aws::Chatbot
40
40
  include Aws::Structure
41
41
  end
42
42
 
43
+ # @!attribute [rw] resource
44
+ # The resource Amazon Resource Name (ARN) to link.
45
+ # @return [String]
46
+ #
47
+ # @!attribute [rw] chat_configuration
48
+ # The channel configuration to associate with the resource.
49
+ # @return [String]
50
+ #
51
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chatbot-2017-10-11/AssociateToConfigurationRequest AWS API Documentation
52
+ #
53
+ class AssociateToConfigurationRequest < Struct.new(
54
+ :resource,
55
+ :chat_configuration)
56
+ SENSITIVE = []
57
+ include Aws::Structure
58
+ end
59
+
60
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chatbot-2017-10-11/AssociateToConfigurationResult AWS API Documentation
61
+ #
62
+ class AssociateToConfigurationResult < Aws::EmptyStructure; end
63
+
64
+ # A listing of an association with a channel configuration.
65
+ #
66
+ # @!attribute [rw] resource
67
+ # The Amazon Resource Name (ARN) of the resource (for example, a
68
+ # custom action).
69
+ # @return [String]
70
+ #
71
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chatbot-2017-10-11/AssociationListing AWS API Documentation
72
+ #
73
+ class AssociationListing < Struct.new(
74
+ :resource)
75
+ SENSITIVE = []
76
+ include Aws::Structure
77
+ end
78
+
43
79
  # An AWS Chatbot configuration for Amazon Chime.
44
80
  #
45
81
  # @!attribute [rw] webhook_description
@@ -55,7 +91,7 @@ module Aws::Chatbot
55
91
  # @return [String]
56
92
  #
57
93
  # @!attribute [rw] chat_configuration_arn
58
- # The Amazon Resource Number (ARN) of the ChimeWebhookConfiguration.
94
+ # The Amazon Resource Name (ARN) of the ChimeWebhookConfiguration.
59
95
  # @return [String]
60
96
  #
61
97
  # @!attribute [rw] iam_role_arn
@@ -261,6 +297,71 @@ module Aws::Chatbot
261
297
  include Aws::Structure
262
298
  end
263
299
 
300
+ # @!attribute [rw] definition
301
+ # The definition of the command to run when invoked as an alias or as
302
+ # an action button.
303
+ # @return [Types::CustomActionDefinition]
304
+ #
305
+ # @!attribute [rw] alias_name
306
+ # The name used to invoke this action in a chat channel. For example,
307
+ # `@aws run my-alias`.
308
+ # @return [String]
309
+ #
310
+ # @!attribute [rw] attachments
311
+ # Defines when this custom action button should be attached to a
312
+ # notification.
313
+ # @return [Array<Types::CustomActionAttachment>]
314
+ #
315
+ # @!attribute [rw] tags
316
+ # A map of tags assigned to a resource. A tag is a string-to-string
317
+ # map of key-value pairs.
318
+ # @return [Array<Types::Tag>]
319
+ #
320
+ # @!attribute [rw] client_token
321
+ # A unique, case-sensitive identifier that you provide to ensure the
322
+ # idempotency of the request. Idempotency ensures that an API request
323
+ # completes only once. With an idempotent request, if the original
324
+ # request completes successfully, subsequent retries with the same
325
+ # client token returns the result from the original successful
326
+ # request.
327
+ #
328
+ # If you do not specify a client token, one is automatically generated
329
+ # by the SDK.
330
+ #
331
+ # **A suitable default value is auto-generated.** You should normally
332
+ # not need to pass this option.
333
+ # @return [String]
334
+ #
335
+ # @!attribute [rw] action_name
336
+ # The name of the custom action. This name is included in the Amazon
337
+ # Resource Name (ARN).
338
+ # @return [String]
339
+ #
340
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chatbot-2017-10-11/CreateCustomActionRequest AWS API Documentation
341
+ #
342
+ class CreateCustomActionRequest < Struct.new(
343
+ :definition,
344
+ :alias_name,
345
+ :attachments,
346
+ :tags,
347
+ :client_token,
348
+ :action_name)
349
+ SENSITIVE = []
350
+ include Aws::Structure
351
+ end
352
+
353
+ # @!attribute [rw] custom_action_arn
354
+ # The fully defined ARN of the custom action.
355
+ # @return [String]
356
+ #
357
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chatbot-2017-10-11/CreateCustomActionResult AWS API Documentation
358
+ #
359
+ class CreateCustomActionResult < Struct.new(
360
+ :custom_action_arn)
361
+ SENSITIVE = []
362
+ include Aws::Structure
363
+ end
364
+
264
365
  # We can’t process your request right now because of a server issue. Try
265
366
  # again later.
266
367
  #
@@ -476,6 +577,118 @@ module Aws::Chatbot
476
577
  include Aws::Structure
477
578
  end
478
579
 
580
+ # Represents a parameterized command that can be invoked as an alias or
581
+ # as a notification button in the chat client.
582
+ #
583
+ # @!attribute [rw] custom_action_arn
584
+ # The fully defined Amazon Resource Name (ARN) of the custom action.
585
+ # @return [String]
586
+ #
587
+ # @!attribute [rw] definition
588
+ # The definition of the command to run when invoked an alias or as an
589
+ # action button.
590
+ # @return [Types::CustomActionDefinition]
591
+ #
592
+ # @!attribute [rw] alias_name
593
+ # The name used to invoke this action in the chat channel. For
594
+ # example, `@aws run my-alias`.
595
+ # @return [String]
596
+ #
597
+ # @!attribute [rw] attachments
598
+ # Defines when this custom action button should be attached to a
599
+ # notification.
600
+ # @return [Array<Types::CustomActionAttachment>]
601
+ #
602
+ # @!attribute [rw] action_name
603
+ # The name of the custom action that is included in the ARN.
604
+ # @return [String]
605
+ #
606
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chatbot-2017-10-11/CustomAction AWS API Documentation
607
+ #
608
+ class CustomAction < Struct.new(
609
+ :custom_action_arn,
610
+ :definition,
611
+ :alias_name,
612
+ :attachments,
613
+ :action_name)
614
+ SENSITIVE = []
615
+ include Aws::Structure
616
+ end
617
+
618
+ # Defines when a custom action button should be attached to a
619
+ # notification.
620
+ #
621
+ # @!attribute [rw] notification_type
622
+ # The type of notification that the custom action should be attached
623
+ # to.
624
+ # @return [String]
625
+ #
626
+ # @!attribute [rw] button_text
627
+ # The text of the button that appears on the notification.
628
+ # @return [String]
629
+ #
630
+ # @!attribute [rw] criteria
631
+ # The criteria for when a button should be shown based on values in
632
+ # the notification.
633
+ # @return [Array<Types::CustomActionAttachmentCriteria>]
634
+ #
635
+ # @!attribute [rw] variables
636
+ # The variables to extract from the notification.
637
+ # @return [Hash<String,String>]
638
+ #
639
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chatbot-2017-10-11/CustomActionAttachment AWS API Documentation
640
+ #
641
+ class CustomActionAttachment < Struct.new(
642
+ :notification_type,
643
+ :button_text,
644
+ :criteria,
645
+ :variables)
646
+ SENSITIVE = []
647
+ include Aws::Structure
648
+ end
649
+
650
+ # A criteria for when a button should be shown based on values in the
651
+ # notification
652
+ #
653
+ # @!attribute [rw] operator
654
+ # The operation to perform on the named variable.
655
+ # @return [String]
656
+ #
657
+ # @!attribute [rw] variable_name
658
+ # The name of the variable to operate on.
659
+ # @return [String]
660
+ #
661
+ # @!attribute [rw] value
662
+ # A value that is compared with the actual value of the variable based
663
+ # on the behavior of the operator.
664
+ # @return [String]
665
+ #
666
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chatbot-2017-10-11/CustomActionAttachmentCriteria AWS API Documentation
667
+ #
668
+ class CustomActionAttachmentCriteria < Struct.new(
669
+ :operator,
670
+ :variable_name,
671
+ :value)
672
+ SENSITIVE = []
673
+ include Aws::Structure
674
+ end
675
+
676
+ # The definition of the command to run when invoked as an alias or as an
677
+ # action button.
678
+ #
679
+ # @!attribute [rw] command_text
680
+ # The command string to run which may include variables by prefixing
681
+ # with a dollar sign ($).
682
+ # @return [String]
683
+ #
684
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chatbot-2017-10-11/CustomActionDefinition AWS API Documentation
685
+ #
686
+ class CustomActionDefinition < Struct.new(
687
+ :command_text)
688
+ SENSITIVE = []
689
+ include Aws::Structure
690
+ end
691
+
479
692
  # We can’t process your request right now because of a server issue. Try
480
693
  # again later.
481
694
  #
@@ -507,6 +720,22 @@ module Aws::Chatbot
507
720
  #
508
721
  class DeleteChimeWebhookConfigurationResult < Aws::EmptyStructure; end
509
722
 
723
+ # @!attribute [rw] custom_action_arn
724
+ # The fully defined ARN of the custom action.
725
+ # @return [String]
726
+ #
727
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chatbot-2017-10-11/DeleteCustomActionRequest AWS API Documentation
728
+ #
729
+ class DeleteCustomActionRequest < Struct.new(
730
+ :custom_action_arn)
731
+ SENSITIVE = []
732
+ include Aws::Structure
733
+ end
734
+
735
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chatbot-2017-10-11/DeleteCustomActionResult AWS API Documentation
736
+ #
737
+ class DeleteCustomActionResult < Aws::EmptyStructure; end
738
+
510
739
  # We can’t process your request right now because of a server issue. Try
511
740
  # again later.
512
741
  #
@@ -745,7 +974,7 @@ module Aws::Chatbot
745
974
  # @return [String]
746
975
  #
747
976
  # @!attribute [rw] chat_configuration_arn
748
- # An optional Amazon Resource Number (ARN) of a
977
+ # An optional Amazon Resource Name (ARN) of a
749
978
  # ChimeWebhookConfiguration to describe.
750
979
  # @return [String]
751
980
  #
@@ -808,7 +1037,7 @@ module Aws::Chatbot
808
1037
  # @return [String]
809
1038
  #
810
1039
  # @!attribute [rw] chat_configuration_arn
811
- # An optional Amazon Resource Number (ARN) of a
1040
+ # An optional Amazon Resource Name (ARN) of a
812
1041
  # SlackChannelConfiguration to describe.
813
1042
  # @return [String]
814
1043
  #
@@ -857,7 +1086,7 @@ module Aws::Chatbot
857
1086
  end
858
1087
 
859
1088
  # @!attribute [rw] chat_configuration_arn
860
- # The Amazon Resource Number (ARN) of the SlackChannelConfiguration
1089
+ # The Amazon Resource Name (ARN) of the SlackChannelConfiguration
861
1090
  # associated with the user identities to describe.
862
1091
  # @return [String]
863
1092
  #
@@ -962,6 +1191,28 @@ module Aws::Chatbot
962
1191
  include Aws::Structure
963
1192
  end
964
1193
 
1194
+ # @!attribute [rw] resource
1195
+ # The resource (for example, a custom action) Amazon Resource Name
1196
+ # (ARN) to unlink.
1197
+ # @return [String]
1198
+ #
1199
+ # @!attribute [rw] chat_configuration
1200
+ # The channel configuration the resource is being disassociated from.
1201
+ # @return [String]
1202
+ #
1203
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chatbot-2017-10-11/DisassociateFromConfigurationRequest AWS API Documentation
1204
+ #
1205
+ class DisassociateFromConfigurationRequest < Struct.new(
1206
+ :resource,
1207
+ :chat_configuration)
1208
+ SENSITIVE = []
1209
+ include Aws::Structure
1210
+ end
1211
+
1212
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chatbot-2017-10-11/DisassociateFromConfigurationResult AWS API Documentation
1213
+ #
1214
+ class DisassociateFromConfigurationResult < Aws::EmptyStructure; end
1215
+
965
1216
  # We can’t process your request right now because of a server issue. Try
966
1217
  # again later.
967
1218
  #
@@ -995,6 +1246,31 @@ module Aws::Chatbot
995
1246
  include Aws::Structure
996
1247
  end
997
1248
 
1249
+ # @!attribute [rw] custom_action_arn
1250
+ # Returns the fully defined Amazon Resource Name (ARN) of the custom
1251
+ # action.
1252
+ # @return [String]
1253
+ #
1254
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chatbot-2017-10-11/GetCustomActionRequest AWS API Documentation
1255
+ #
1256
+ class GetCustomActionRequest < Struct.new(
1257
+ :custom_action_arn)
1258
+ SENSITIVE = []
1259
+ include Aws::Structure
1260
+ end
1261
+
1262
+ # @!attribute [rw] custom_action
1263
+ # Returns the custom action.
1264
+ # @return [Types::CustomAction]
1265
+ #
1266
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chatbot-2017-10-11/GetCustomActionResult AWS API Documentation
1267
+ #
1268
+ class GetCustomActionResult < Struct.new(
1269
+ :custom_action)
1270
+ SENSITIVE = []
1271
+ include Aws::Structure
1272
+ end
1273
+
998
1274
  # We can’t process your request right now because of a server issue. Try
999
1275
  # again later.
1000
1276
  #
@@ -1010,7 +1286,7 @@ module Aws::Chatbot
1010
1286
  end
1011
1287
 
1012
1288
  # @!attribute [rw] chat_configuration_arn
1013
- # The Amazon Resource Number (ARN) of the
1289
+ # The Amazon Resource Name (ARN) of the
1014
1290
  # MicrosoftTeamsChannelConfiguration to retrieve.
1015
1291
  # @return [String]
1016
1292
  #
@@ -1089,6 +1365,97 @@ module Aws::Chatbot
1089
1365
  include Aws::Structure
1090
1366
  end
1091
1367
 
1368
+ # @!attribute [rw] chat_configuration
1369
+ # The channel configuration to list associations for.
1370
+ # @return [String]
1371
+ #
1372
+ # @!attribute [rw] max_results
1373
+ # The maximum number of results to include in the response. If more
1374
+ # results exist than the specified MaxResults value, a token is
1375
+ # included in the response so that the remaining results can be
1376
+ # retrieved.
1377
+ # @return [Integer]
1378
+ #
1379
+ # @!attribute [rw] next_token
1380
+ # An optional token returned from a prior request. Use this token for
1381
+ # pagination of results from this action. If this parameter is
1382
+ # specified, the response includes only results beyond the token, up
1383
+ # to the value specified by MaxResults.
1384
+ # @return [String]
1385
+ #
1386
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chatbot-2017-10-11/ListAssociationsRequest AWS API Documentation
1387
+ #
1388
+ class ListAssociationsRequest < Struct.new(
1389
+ :chat_configuration,
1390
+ :max_results,
1391
+ :next_token)
1392
+ SENSITIVE = []
1393
+ include Aws::Structure
1394
+ end
1395
+
1396
+ # @!attribute [rw] associations
1397
+ # The resources associated with this channel configuration.
1398
+ # @return [Array<Types::AssociationListing>]
1399
+ #
1400
+ # @!attribute [rw] next_token
1401
+ # An optional token returned from a prior request. Use this token for
1402
+ # pagination of results from this action. If this parameter is
1403
+ # specified, the response includes only results beyond the token, up
1404
+ # to the value specified by MaxResults.
1405
+ # @return [String]
1406
+ #
1407
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chatbot-2017-10-11/ListAssociationsResult AWS API Documentation
1408
+ #
1409
+ class ListAssociationsResult < Struct.new(
1410
+ :associations,
1411
+ :next_token)
1412
+ SENSITIVE = []
1413
+ include Aws::Structure
1414
+ end
1415
+
1416
+ # @!attribute [rw] max_results
1417
+ # The maximum number of results to include in the response. If more
1418
+ # results exist than the specified MaxResults value, a token is
1419
+ # included in the response so that the remaining results can be
1420
+ # retrieved.
1421
+ # @return [Integer]
1422
+ #
1423
+ # @!attribute [rw] next_token
1424
+ # An optional token returned from a prior request. Use this token for
1425
+ # pagination of results from this action. If this parameter is
1426
+ # specified, the response includes only results beyond the token, up
1427
+ # to the value specified by MaxResults.
1428
+ # @return [String]
1429
+ #
1430
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chatbot-2017-10-11/ListCustomActionsRequest AWS API Documentation
1431
+ #
1432
+ class ListCustomActionsRequest < Struct.new(
1433
+ :max_results,
1434
+ :next_token)
1435
+ SENSITIVE = []
1436
+ include Aws::Structure
1437
+ end
1438
+
1439
+ # @!attribute [rw] custom_actions
1440
+ # A list of custom actions.
1441
+ # @return [Array<String>]
1442
+ #
1443
+ # @!attribute [rw] next_token
1444
+ # An optional token returned from a prior request. Use this token for
1445
+ # pagination of results from this action. If this parameter is
1446
+ # specified, the response includes only results beyond the token, up
1447
+ # to the value specified by MaxResults.
1448
+ # @return [String]
1449
+ #
1450
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chatbot-2017-10-11/ListCustomActionsResult AWS API Documentation
1451
+ #
1452
+ class ListCustomActionsResult < Struct.new(
1453
+ :custom_actions,
1454
+ :next_token)
1455
+ SENSITIVE = []
1456
+ include Aws::Structure
1457
+ end
1458
+
1092
1459
  # We can’t process your request right now because of a server issue. Try
1093
1460
  # again later.
1094
1461
  #
@@ -1162,7 +1529,7 @@ module Aws::Chatbot
1162
1529
  end
1163
1530
 
1164
1531
  # @!attribute [rw] chat_configuration_arn
1165
- # The Amazon Resource Number (ARN) of the
1532
+ # The Amazon Resource Name (ARN) of the
1166
1533
  # MicrosoftTeamsChannelConfiguration associated with the user
1167
1534
  # identities to list.
1168
1535
  # @return [String]
@@ -1212,7 +1579,7 @@ module Aws::Chatbot
1212
1579
  end
1213
1580
 
1214
1581
  # @!attribute [rw] resource_arn
1215
- # The ARN you specified to list the tags of.
1582
+ # The ARN of the resource to list tags for.
1216
1583
  # @return [String]
1217
1584
  #
1218
1585
  # @see http://docs.aws.amazon.com/goto/WebAPI/chatbot-2017-10-11/ListTagsForResourceRequest AWS API Documentation
@@ -1359,7 +1726,7 @@ module Aws::Chatbot
1359
1726
  # @return [String]
1360
1727
  #
1361
1728
  # @!attribute [rw] chat_configuration_arn
1362
- # The Amazon Resource Number (ARN) of the SlackChannelConfiguration.
1729
+ # The Amazon Resource Name (ARN) of the SlackChannelConfiguration.
1363
1730
  # @return [String]
1364
1731
  #
1365
1732
  # @!attribute [rw] iam_role_arn
@@ -1449,7 +1816,7 @@ module Aws::Chatbot
1449
1816
  # @return [String]
1450
1817
  #
1451
1818
  # @!attribute [rw] chat_configuration_arn
1452
- # The Amazon Resource Number (ARN) of the SlackChannelConfiguration
1819
+ # The Amazon Resource Name (ARN) of the SlackChannelConfiguration
1453
1820
  # associated with the user identity to delete.
1454
1821
  # @return [String]
1455
1822
  #
@@ -1750,6 +2117,20 @@ module Aws::Chatbot
1750
2117
  include Aws::Structure
1751
2118
  end
1752
2119
 
2120
+ # The request was rejected because it doesn't have valid credentials
2121
+ # for the target resource.
2122
+ #
2123
+ # @!attribute [rw] message
2124
+ # @return [String]
2125
+ #
2126
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chatbot-2017-10-11/UnauthorizedException AWS API Documentation
2127
+ #
2128
+ class UnauthorizedException < Struct.new(
2129
+ :message)
2130
+ SENSITIVE = []
2131
+ include Aws::Structure
2132
+ end
2133
+
1753
2134
  # @!attribute [rw] resource_arn
1754
2135
  # The value of the resource that will have the tag removed. An Amazon
1755
2136
  # Resource Name (ARN) is an identifier for a specific AWS resource,
@@ -1844,7 +2225,7 @@ module Aws::Chatbot
1844
2225
  end
1845
2226
 
1846
2227
  # @!attribute [rw] chat_configuration_arn
1847
- # The Amazon Resource Number (ARN) of the ChimeWebhookConfiguration to
2228
+ # The Amazon Resource Name (ARN) of the ChimeWebhookConfiguration to
1848
2229
  # update.
1849
2230
  # @return [String]
1850
2231
  #
@@ -1910,6 +2291,48 @@ module Aws::Chatbot
1910
2291
  include Aws::Structure
1911
2292
  end
1912
2293
 
2294
+ # @!attribute [rw] custom_action_arn
2295
+ # The fully defined Amazon Resource Name (ARN) of the custom action.
2296
+ # @return [String]
2297
+ #
2298
+ # @!attribute [rw] definition
2299
+ # The definition of the command to run when invoked as an alias or as
2300
+ # an action button.
2301
+ # @return [Types::CustomActionDefinition]
2302
+ #
2303
+ # @!attribute [rw] alias_name
2304
+ # The name used to invoke this action in the chat channel. For
2305
+ # example, `@aws run my-alias`.
2306
+ # @return [String]
2307
+ #
2308
+ # @!attribute [rw] attachments
2309
+ # Defines when this custom action button should be attached to a
2310
+ # notification.
2311
+ # @return [Array<Types::CustomActionAttachment>]
2312
+ #
2313
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chatbot-2017-10-11/UpdateCustomActionRequest AWS API Documentation
2314
+ #
2315
+ class UpdateCustomActionRequest < Struct.new(
2316
+ :custom_action_arn,
2317
+ :definition,
2318
+ :alias_name,
2319
+ :attachments)
2320
+ SENSITIVE = []
2321
+ include Aws::Structure
2322
+ end
2323
+
2324
+ # @!attribute [rw] custom_action_arn
2325
+ # The fully defined ARN of the custom action.
2326
+ # @return [String]
2327
+ #
2328
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chatbot-2017-10-11/UpdateCustomActionResult AWS API Documentation
2329
+ #
2330
+ class UpdateCustomActionResult < Struct.new(
2331
+ :custom_action_arn)
2332
+ SENSITIVE = []
2333
+ include Aws::Structure
2334
+ end
2335
+
1913
2336
  # We can’t process your request right now because of a server issue. Try
1914
2337
  # again later.
1915
2338
  #
@@ -1925,7 +2348,7 @@ module Aws::Chatbot
1925
2348
  end
1926
2349
 
1927
2350
  # @!attribute [rw] chat_configuration_arn
1928
- # The Amazon Resource Number (ARN) of the SlackChannelConfiguration to
2351
+ # The Amazon Resource Name (ARN) of the SlackChannelConfiguration to
1929
2352
  # update.
1930
2353
  # @return [String]
1931
2354
  #
@@ -2014,7 +2437,7 @@ module Aws::Chatbot
2014
2437
  end
2015
2438
 
2016
2439
  # @!attribute [rw] chat_configuration_arn
2017
- # The Amazon Resource Number (ARN) of the TeamsChannelConfiguration to
2440
+ # The Amazon Resource Name (ARN) of the TeamsChannelConfiguration to
2018
2441
  # update.
2019
2442
  # @return [String]
2020
2443
  #
@@ -23,7 +23,7 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:chatbot)
23
23
  # structure.
24
24
  #
25
25
  # chatbot = Aws::Chatbot::Client.new
26
- # resp = chatbot.create_chime_webhook_configuration(params)
26
+ # resp = chatbot.associate_to_configuration(params)
27
27
  #
28
28
  # See {Client} for more information.
29
29
  #
@@ -54,7 +54,7 @@ module Aws::Chatbot
54
54
  autoload :EndpointProvider, 'aws-sdk-chatbot/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-chatbot/endpoints'
56
56
 
57
- GEM_VERSION = '1.18.0'
57
+ GEM_VERSION = '1.19.0'
58
58
 
59
59
  end
60
60