aws-sdk-chimesdkidentity 1.14.0 → 1.15.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 90e5247c4ae124b42923a7ee6f3d91379812214bcaabdb2997fee46f87d82f8a
4
- data.tar.gz: f4e9a6af053414b65f1498070da2b21f1afd357ed5922fcdb63d627cf12151a0
3
+ metadata.gz: fb065bf079491491ba1d82ac1b0eaca031cfab4aac1607d4637bde99be26e9d4
4
+ data.tar.gz: a0466bd6fc46639c1ebf36e3e9b341b021e92ff115e18564ddf7c80dde788b9c
5
5
  SHA512:
6
- metadata.gz: c84d2713ad5697fb39a74473bcb49f449bf9e46ea677ca28a36c8020ec78e8828a1fc3caeab35593cef5fba047e1c06d7b650bae90a1c8c86a0c010ee783375c
7
- data.tar.gz: aa26578d73ea57bef5cd5abd432c27bfc6801317fcac9e6892dbb3e57bff9775c255d41d2b301b1b7168f5b32a44bb0f2c0c7c8ffcf7982a7c202079af5f347b
6
+ metadata.gz: cccccf9caedb8870ad1462eaf90b75a395b9dea38dc06f8c3d17e563bfef48390e735031b0b44f80c23492795e1c8dca78d938d0b452c4ec77dd3a0e09191860
7
+ data.tar.gz: 73712c84ad3a113f0bb080f63ebdb887e4194586deae24deff95a15a48dfe32eb4ca8f5ac636a49443c87f46eb085267d894ca344aba94fa9e50eb2e34bf9964
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.15.0 (2023-06-22)
5
+ ------------------
6
+
7
+ * Feature - AppInstanceBots can be configured to be invoked or not using the Target or the CHIME.mentions attribute for ChannelMessages
8
+
4
9
  1.14.0 (2023-06-15)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.14.0
1
+ 1.15.0
@@ -515,7 +515,11 @@ module Aws::ChimeSDKIdentity
515
515
  # ],
516
516
  # configuration: { # required
517
517
  # lex: { # required
518
- # responds_to: "STANDARD_MESSAGES", # required, accepts STANDARD_MESSAGES
518
+ # responds_to: "STANDARD_MESSAGES", # accepts STANDARD_MESSAGES
519
+ # invoked_by: {
520
+ # standard_messages: "AUTO", # required, accepts AUTO, ALL, MENTIONS, NONE
521
+ # targeted_messages: "ALL", # required, accepts ALL, NONE
522
+ # },
519
523
  # lex_bot_alias_arn: "LexBotAliasArn", # required
520
524
  # locale_id: "String", # required
521
525
  # welcome_intent: "LexIntentName",
@@ -708,8 +712,8 @@ module Aws::ChimeSDKIdentity
708
712
  # @example Request syntax with placeholder values
709
713
  #
710
714
  # resp = client.deregister_app_instance_user_endpoint({
711
- # app_instance_user_arn: "SensitiveChimeArn", # required
712
- # endpoint_id: "SensitiveString64", # required
715
+ # app_instance_user_arn: "ChimeArn", # required
716
+ # endpoint_id: "String64", # required
713
717
  # })
714
718
  #
715
719
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/DeregisterAppInstanceUserEndpoint AWS API Documentation
@@ -808,6 +812,8 @@ module Aws::ChimeSDKIdentity
808
812
  # resp.app_instance_bot.app_instance_bot_arn #=> String
809
813
  # resp.app_instance_bot.name #=> String
810
814
  # resp.app_instance_bot.configuration.lex.responds_to #=> String, one of "STANDARD_MESSAGES"
815
+ # resp.app_instance_bot.configuration.lex.invoked_by.standard_messages #=> String, one of "AUTO", "ALL", "MENTIONS", "NONE"
816
+ # resp.app_instance_bot.configuration.lex.invoked_by.targeted_messages #=> String, one of "ALL", "NONE"
811
817
  # resp.app_instance_bot.configuration.lex.lex_bot_alias_arn #=> String
812
818
  # resp.app_instance_bot.configuration.lex.locale_id #=> String
813
819
  # resp.app_instance_bot.configuration.lex.welcome_intent #=> String
@@ -873,8 +879,8 @@ module Aws::ChimeSDKIdentity
873
879
  # @example Request syntax with placeholder values
874
880
  #
875
881
  # resp = client.describe_app_instance_user_endpoint({
876
- # app_instance_user_arn: "SensitiveString1600", # required
877
- # endpoint_id: "SensitiveString64", # required
882
+ # app_instance_user_arn: "String1600", # required
883
+ # endpoint_id: "String64", # required
878
884
  # })
879
885
  #
880
886
  # @example Response structure
@@ -1457,6 +1463,9 @@ module Aws::ChimeSDKIdentity
1457
1463
  # @option params [required, String] :metadata
1458
1464
  # The metadata of the `AppInstanceBot`.
1459
1465
  #
1466
+ # @option params [Types::Configuration] :configuration
1467
+ # The configuration for the bot update.
1468
+ #
1460
1469
  # @return [Types::UpdateAppInstanceBotResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1461
1470
  #
1462
1471
  # * {Types::UpdateAppInstanceBotResponse#app_instance_bot_arn #app_instance_bot_arn} => String
@@ -1467,6 +1476,18 @@ module Aws::ChimeSDKIdentity
1467
1476
  # app_instance_bot_arn: "ChimeArn", # required
1468
1477
  # name: "ResourceName", # required
1469
1478
  # metadata: "Metadata", # required
1479
+ # configuration: {
1480
+ # lex: { # required
1481
+ # responds_to: "STANDARD_MESSAGES", # accepts STANDARD_MESSAGES
1482
+ # invoked_by: {
1483
+ # standard_messages: "AUTO", # required, accepts AUTO, ALL, MENTIONS, NONE
1484
+ # targeted_messages: "ALL", # required, accepts ALL, NONE
1485
+ # },
1486
+ # lex_bot_alias_arn: "LexBotAliasArn", # required
1487
+ # locale_id: "String", # required
1488
+ # welcome_intent: "LexIntentName",
1489
+ # },
1490
+ # },
1470
1491
  # })
1471
1492
  #
1472
1493
  # @example Response structure
@@ -1544,8 +1565,8 @@ module Aws::ChimeSDKIdentity
1544
1565
  # @example Request syntax with placeholder values
1545
1566
  #
1546
1567
  # resp = client.update_app_instance_user_endpoint({
1547
- # app_instance_user_arn: "SensitiveChimeArn", # required
1548
- # endpoint_id: "SensitiveString64", # required
1568
+ # app_instance_user_arn: "ChimeArn", # required
1569
+ # endpoint_id: "String64", # required
1549
1570
  # name: "SensitiveString1600",
1550
1571
  # allow_messages: "ALL", # accepts ALL, NONE
1551
1572
  # })
@@ -1577,7 +1598,7 @@ module Aws::ChimeSDKIdentity
1577
1598
  params: params,
1578
1599
  config: config)
1579
1600
  context[:gem_name] = 'aws-sdk-chimesdkidentity'
1580
- context[:gem_version] = '1.14.0'
1601
+ context[:gem_version] = '1.15.0'
1581
1602
  Seahorse::Client::Request.new(handlers, context)
1582
1603
  end
1583
1604
 
@@ -72,6 +72,7 @@ module Aws::ChimeSDKIdentity
72
72
  GetAppInstanceRetentionSettingsRequest = Shapes::StructureShape.new(name: 'GetAppInstanceRetentionSettingsRequest')
73
73
  GetAppInstanceRetentionSettingsResponse = Shapes::StructureShape.new(name: 'GetAppInstanceRetentionSettingsResponse')
74
74
  Identity = Shapes::StructureShape.new(name: 'Identity')
75
+ InvokedBy = Shapes::StructureShape.new(name: 'InvokedBy')
75
76
  LexBotAliasArn = Shapes::StringShape.new(name: 'LexBotAliasArn')
76
77
  LexConfiguration = Shapes::StructureShape.new(name: 'LexConfiguration')
77
78
  LexIntentName = Shapes::StringShape.new(name: 'LexIntentName')
@@ -105,16 +106,19 @@ module Aws::ChimeSDKIdentity
105
106
  RetentionDays = Shapes::IntegerShape.new(name: 'RetentionDays')
106
107
  SensitiveChimeArn = Shapes::StringShape.new(name: 'SensitiveChimeArn')
107
108
  SensitiveString1600 = Shapes::StringShape.new(name: 'SensitiveString1600')
108
- SensitiveString64 = Shapes::StringShape.new(name: 'SensitiveString64')
109
109
  ServiceFailureException = Shapes::StructureShape.new(name: 'ServiceFailureException')
110
110
  ServiceUnavailableException = Shapes::StructureShape.new(name: 'ServiceUnavailableException')
111
+ StandardMessages = Shapes::StringShape.new(name: 'StandardMessages')
111
112
  String = Shapes::StringShape.new(name: 'String')
113
+ String1600 = Shapes::StringShape.new(name: 'String1600')
114
+ String64 = Shapes::StringShape.new(name: 'String64')
112
115
  Tag = Shapes::StructureShape.new(name: 'Tag')
113
116
  TagKey = Shapes::StringShape.new(name: 'TagKey')
114
117
  TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
115
118
  TagList = Shapes::ListShape.new(name: 'TagList')
116
119
  TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
117
120
  TagValue = Shapes::StringShape.new(name: 'TagValue')
121
+ TargetedMessages = Shapes::StringShape.new(name: 'TargetedMessages')
118
122
  ThrottledClientException = Shapes::StructureShape.new(name: 'ThrottledClientException')
119
123
  Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
120
124
  UnauthorizedClientException = Shapes::StructureShape.new(name: 'UnauthorizedClientException')
@@ -180,8 +184,8 @@ module Aws::ChimeSDKIdentity
180
184
  AppInstanceUser.add_member(:expiration_settings, Shapes::ShapeRef.new(shape: ExpirationSettings, location_name: "ExpirationSettings"))
181
185
  AppInstanceUser.struct_class = Types::AppInstanceUser
182
186
 
183
- AppInstanceUserEndpoint.add_member(:app_instance_user_arn, Shapes::ShapeRef.new(shape: SensitiveChimeArn, location_name: "AppInstanceUserArn"))
184
- AppInstanceUserEndpoint.add_member(:endpoint_id, Shapes::ShapeRef.new(shape: SensitiveString64, location_name: "EndpointId"))
187
+ AppInstanceUserEndpoint.add_member(:app_instance_user_arn, Shapes::ShapeRef.new(shape: ChimeArn, location_name: "AppInstanceUserArn"))
188
+ AppInstanceUserEndpoint.add_member(:endpoint_id, Shapes::ShapeRef.new(shape: String64, location_name: "EndpointId"))
185
189
  AppInstanceUserEndpoint.add_member(:name, Shapes::ShapeRef.new(shape: SensitiveString1600, location_name: "Name"))
186
190
  AppInstanceUserEndpoint.add_member(:type, Shapes::ShapeRef.new(shape: AppInstanceUserEndpointType, location_name: "Type"))
187
191
  AppInstanceUserEndpoint.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ChimeArn, location_name: "ResourceArn"))
@@ -192,8 +196,8 @@ module Aws::ChimeSDKIdentity
192
196
  AppInstanceUserEndpoint.add_member(:endpoint_state, Shapes::ShapeRef.new(shape: EndpointState, location_name: "EndpointState"))
193
197
  AppInstanceUserEndpoint.struct_class = Types::AppInstanceUserEndpoint
194
198
 
195
- AppInstanceUserEndpointSummary.add_member(:app_instance_user_arn, Shapes::ShapeRef.new(shape: SensitiveChimeArn, location_name: "AppInstanceUserArn"))
196
- AppInstanceUserEndpointSummary.add_member(:endpoint_id, Shapes::ShapeRef.new(shape: SensitiveString64, location_name: "EndpointId"))
199
+ AppInstanceUserEndpointSummary.add_member(:app_instance_user_arn, Shapes::ShapeRef.new(shape: ChimeArn, location_name: "AppInstanceUserArn"))
200
+ AppInstanceUserEndpointSummary.add_member(:endpoint_id, Shapes::ShapeRef.new(shape: String64, location_name: "EndpointId"))
197
201
  AppInstanceUserEndpointSummary.add_member(:name, Shapes::ShapeRef.new(shape: SensitiveString1600, location_name: "Name"))
198
202
  AppInstanceUserEndpointSummary.add_member(:type, Shapes::ShapeRef.new(shape: AppInstanceUserEndpointType, location_name: "Type"))
199
203
  AppInstanceUserEndpointSummary.add_member(:allow_messages, Shapes::ShapeRef.new(shape: AllowMessages, location_name: "AllowMessages"))
@@ -276,8 +280,8 @@ module Aws::ChimeSDKIdentity
276
280
  DeleteAppInstanceUserRequest.add_member(:app_instance_user_arn, Shapes::ShapeRef.new(shape: ChimeArn, required: true, location: "uri", location_name: "appInstanceUserArn"))
277
281
  DeleteAppInstanceUserRequest.struct_class = Types::DeleteAppInstanceUserRequest
278
282
 
279
- DeregisterAppInstanceUserEndpointRequest.add_member(:app_instance_user_arn, Shapes::ShapeRef.new(shape: SensitiveChimeArn, required: true, location: "uri", location_name: "appInstanceUserArn"))
280
- DeregisterAppInstanceUserEndpointRequest.add_member(:endpoint_id, Shapes::ShapeRef.new(shape: SensitiveString64, required: true, location: "uri", location_name: "endpointId"))
283
+ DeregisterAppInstanceUserEndpointRequest.add_member(:app_instance_user_arn, Shapes::ShapeRef.new(shape: ChimeArn, required: true, location: "uri", location_name: "appInstanceUserArn"))
284
+ DeregisterAppInstanceUserEndpointRequest.add_member(:endpoint_id, Shapes::ShapeRef.new(shape: String64, required: true, location: "uri", location_name: "endpointId"))
281
285
  DeregisterAppInstanceUserEndpointRequest.struct_class = Types::DeregisterAppInstanceUserEndpointRequest
282
286
 
283
287
  DescribeAppInstanceAdminRequest.add_member(:app_instance_admin_arn, Shapes::ShapeRef.new(shape: ChimeArn, required: true, location: "uri", location_name: "appInstanceAdminArn"))
@@ -299,8 +303,8 @@ module Aws::ChimeSDKIdentity
299
303
  DescribeAppInstanceResponse.add_member(:app_instance, Shapes::ShapeRef.new(shape: AppInstance, location_name: "AppInstance"))
300
304
  DescribeAppInstanceResponse.struct_class = Types::DescribeAppInstanceResponse
301
305
 
302
- DescribeAppInstanceUserEndpointRequest.add_member(:app_instance_user_arn, Shapes::ShapeRef.new(shape: SensitiveString1600, required: true, location: "uri", location_name: "appInstanceUserArn"))
303
- DescribeAppInstanceUserEndpointRequest.add_member(:endpoint_id, Shapes::ShapeRef.new(shape: SensitiveString64, required: true, location: "uri", location_name: "endpointId"))
306
+ DescribeAppInstanceUserEndpointRequest.add_member(:app_instance_user_arn, Shapes::ShapeRef.new(shape: String1600, required: true, location: "uri", location_name: "appInstanceUserArn"))
307
+ DescribeAppInstanceUserEndpointRequest.add_member(:endpoint_id, Shapes::ShapeRef.new(shape: String64, required: true, location: "uri", location_name: "endpointId"))
304
308
  DescribeAppInstanceUserEndpointRequest.struct_class = Types::DescribeAppInstanceUserEndpointRequest
305
309
 
306
310
  DescribeAppInstanceUserEndpointResponse.add_member(:app_instance_user_endpoint, Shapes::ShapeRef.new(shape: AppInstanceUserEndpoint, location_name: "AppInstanceUserEndpoint"))
@@ -339,7 +343,12 @@ module Aws::ChimeSDKIdentity
339
343
  Identity.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "Name"))
340
344
  Identity.struct_class = Types::Identity
341
345
 
342
- LexConfiguration.add_member(:responds_to, Shapes::ShapeRef.new(shape: RespondsTo, required: true, location_name: "RespondsTo"))
346
+ InvokedBy.add_member(:standard_messages, Shapes::ShapeRef.new(shape: StandardMessages, required: true, location_name: "StandardMessages"))
347
+ InvokedBy.add_member(:targeted_messages, Shapes::ShapeRef.new(shape: TargetedMessages, required: true, location_name: "TargetedMessages"))
348
+ InvokedBy.struct_class = Types::InvokedBy
349
+
350
+ LexConfiguration.add_member(:responds_to, Shapes::ShapeRef.new(shape: RespondsTo, location_name: "RespondsTo"))
351
+ LexConfiguration.add_member(:invoked_by, Shapes::ShapeRef.new(shape: InvokedBy, location_name: "InvokedBy"))
343
352
  LexConfiguration.add_member(:lex_bot_alias_arn, Shapes::ShapeRef.new(shape: LexBotAliasArn, required: true, location_name: "LexBotAliasArn"))
344
353
  LexConfiguration.add_member(:locale_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "LocaleId"))
345
354
  LexConfiguration.add_member(:welcome_intent, Shapes::ShapeRef.new(shape: LexIntentName, location_name: "WelcomeIntent"))
@@ -427,8 +436,8 @@ module Aws::ChimeSDKIdentity
427
436
  RegisterAppInstanceUserEndpointRequest.add_member(:allow_messages, Shapes::ShapeRef.new(shape: AllowMessages, location_name: "AllowMessages"))
428
437
  RegisterAppInstanceUserEndpointRequest.struct_class = Types::RegisterAppInstanceUserEndpointRequest
429
438
 
430
- RegisterAppInstanceUserEndpointResponse.add_member(:app_instance_user_arn, Shapes::ShapeRef.new(shape: SensitiveChimeArn, location_name: "AppInstanceUserArn"))
431
- RegisterAppInstanceUserEndpointResponse.add_member(:endpoint_id, Shapes::ShapeRef.new(shape: SensitiveString64, location_name: "EndpointId"))
439
+ RegisterAppInstanceUserEndpointResponse.add_member(:app_instance_user_arn, Shapes::ShapeRef.new(shape: ChimeArn, location_name: "AppInstanceUserArn"))
440
+ RegisterAppInstanceUserEndpointResponse.add_member(:endpoint_id, Shapes::ShapeRef.new(shape: String64, location_name: "EndpointId"))
432
441
  RegisterAppInstanceUserEndpointResponse.struct_class = Types::RegisterAppInstanceUserEndpointResponse
433
442
 
434
443
  ResourceLimitExceededException.add_member(:code, Shapes::ShapeRef.new(shape: ErrorCode, location_name: "Code"))
@@ -470,6 +479,7 @@ module Aws::ChimeSDKIdentity
470
479
  UpdateAppInstanceBotRequest.add_member(:app_instance_bot_arn, Shapes::ShapeRef.new(shape: ChimeArn, required: true, location: "uri", location_name: "appInstanceBotArn"))
471
480
  UpdateAppInstanceBotRequest.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "Name"))
472
481
  UpdateAppInstanceBotRequest.add_member(:metadata, Shapes::ShapeRef.new(shape: Metadata, required: true, location_name: "Metadata"))
482
+ UpdateAppInstanceBotRequest.add_member(:configuration, Shapes::ShapeRef.new(shape: Configuration, location_name: "Configuration"))
473
483
  UpdateAppInstanceBotRequest.struct_class = Types::UpdateAppInstanceBotRequest
474
484
 
475
485
  UpdateAppInstanceBotResponse.add_member(:app_instance_bot_arn, Shapes::ShapeRef.new(shape: ChimeArn, location_name: "AppInstanceBotArn"))
@@ -483,14 +493,14 @@ module Aws::ChimeSDKIdentity
483
493
  UpdateAppInstanceResponse.add_member(:app_instance_arn, Shapes::ShapeRef.new(shape: ChimeArn, location_name: "AppInstanceArn"))
484
494
  UpdateAppInstanceResponse.struct_class = Types::UpdateAppInstanceResponse
485
495
 
486
- UpdateAppInstanceUserEndpointRequest.add_member(:app_instance_user_arn, Shapes::ShapeRef.new(shape: SensitiveChimeArn, required: true, location: "uri", location_name: "appInstanceUserArn"))
487
- UpdateAppInstanceUserEndpointRequest.add_member(:endpoint_id, Shapes::ShapeRef.new(shape: SensitiveString64, required: true, location: "uri", location_name: "endpointId"))
496
+ UpdateAppInstanceUserEndpointRequest.add_member(:app_instance_user_arn, Shapes::ShapeRef.new(shape: ChimeArn, required: true, location: "uri", location_name: "appInstanceUserArn"))
497
+ UpdateAppInstanceUserEndpointRequest.add_member(:endpoint_id, Shapes::ShapeRef.new(shape: String64, required: true, location: "uri", location_name: "endpointId"))
488
498
  UpdateAppInstanceUserEndpointRequest.add_member(:name, Shapes::ShapeRef.new(shape: SensitiveString1600, location_name: "Name"))
489
499
  UpdateAppInstanceUserEndpointRequest.add_member(:allow_messages, Shapes::ShapeRef.new(shape: AllowMessages, location_name: "AllowMessages"))
490
500
  UpdateAppInstanceUserEndpointRequest.struct_class = Types::UpdateAppInstanceUserEndpointRequest
491
501
 
492
- UpdateAppInstanceUserEndpointResponse.add_member(:app_instance_user_arn, Shapes::ShapeRef.new(shape: SensitiveChimeArn, location_name: "AppInstanceUserArn"))
493
- UpdateAppInstanceUserEndpointResponse.add_member(:endpoint_id, Shapes::ShapeRef.new(shape: SensitiveString64, location_name: "EndpointId"))
502
+ UpdateAppInstanceUserEndpointResponse.add_member(:app_instance_user_arn, Shapes::ShapeRef.new(shape: ChimeArn, location_name: "AppInstanceUserArn"))
503
+ UpdateAppInstanceUserEndpointResponse.add_member(:endpoint_id, Shapes::ShapeRef.new(shape: String64, location_name: "EndpointId"))
494
504
  UpdateAppInstanceUserEndpointResponse.struct_class = Types::UpdateAppInstanceUserEndpointResponse
495
505
 
496
506
  UpdateAppInstanceUserRequest.add_member(:app_instance_user_arn, Shapes::ShapeRef.new(shape: ChimeArn, required: true, location: "uri", location_name: "appInstanceUserArn"))
@@ -301,7 +301,7 @@ module Aws::ChimeSDKIdentity
301
301
  :last_updated_timestamp,
302
302
  :allow_messages,
303
303
  :endpoint_state)
304
- SENSITIVE = [:app_instance_user_arn, :endpoint_id, :name]
304
+ SENSITIVE = [:name]
305
305
  include Aws::Structure
306
306
  end
307
307
 
@@ -344,7 +344,7 @@ module Aws::ChimeSDKIdentity
344
344
  :type,
345
345
  :allow_messages,
346
346
  :endpoint_state)
347
- SENSITIVE = [:app_instance_user_arn, :endpoint_id, :name]
347
+ SENSITIVE = [:name]
348
348
  include Aws::Structure
349
349
  end
350
350
 
@@ -692,7 +692,7 @@ module Aws::ChimeSDKIdentity
692
692
  class DeregisterAppInstanceUserEndpointRequest < Struct.new(
693
693
  :app_instance_user_arn,
694
694
  :endpoint_id)
695
- SENSITIVE = [:app_instance_user_arn, :endpoint_id]
695
+ SENSITIVE = []
696
696
  include Aws::Structure
697
697
  end
698
698
 
@@ -789,7 +789,7 @@ module Aws::ChimeSDKIdentity
789
789
  class DescribeAppInstanceUserEndpointRequest < Struct.new(
790
790
  :app_instance_user_arn,
791
791
  :endpoint_id)
792
- SENSITIVE = [:app_instance_user_arn, :endpoint_id]
792
+ SENSITIVE = []
793
793
  include Aws::Structure
794
794
  end
795
795
 
@@ -975,13 +975,55 @@ module Aws::ChimeSDKIdentity
975
975
  include Aws::Structure
976
976
  end
977
977
 
978
+ # Specifies the type of message that triggers a bot.
979
+ #
980
+ # @!attribute [rw] standard_messages
981
+ # Sets standard messages as the bot trigger. For standard messages:
982
+ #
983
+ # * `ALL`: The bot processes all standard messages.
984
+ #
985
+ # * `AUTO`: The bot responds to ALL messages when the channel has one
986
+ # other non-hidden member, and responds to MENTIONS when the channel
987
+ # has more than one other non-hidden member.
988
+ #
989
+ # * `MENTIONS`: The bot processes all standard messages that have a
990
+ # message attribute with `CHIME.mentions` and a value of the bot
991
+ # ARN.
992
+ #
993
+ # * `NONE`: The bot processes no standard messages.
994
+ # @return [String]
995
+ #
996
+ # @!attribute [rw] targeted_messages
997
+ # Sets targeted messages as the bot trigger. For targeted messages:
998
+ #
999
+ # * `ALL`: The bot processes all `TargetedMessages` sent to it. The
1000
+ # bot then responds with a targeted message back to the sender.
1001
+ #
1002
+ # * `NONE`: The bot processes no targeted messages.
1003
+ # @return [String]
1004
+ #
1005
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/InvokedBy AWS API Documentation
1006
+ #
1007
+ class InvokedBy < Struct.new(
1008
+ :standard_messages,
1009
+ :targeted_messages)
1010
+ SENSITIVE = []
1011
+ include Aws::Structure
1012
+ end
1013
+
978
1014
  # The configuration for an Amazon Lex V2 bot.
979
1015
  #
980
1016
  # @!attribute [rw] responds_to
1017
+ # **Deprecated**. Use `InvokedBy` instead.
1018
+ #
981
1019
  # Determines whether the Amazon Lex V2 bot responds to all standard
982
1020
  # messages. Control messages are not supported.
983
1021
  # @return [String]
984
1022
  #
1023
+ # @!attribute [rw] invoked_by
1024
+ # Specifies the type of message that triggers a bot.
1025
+ # @return [Types::InvokedBy]
1026
+ #
985
1027
  # @!attribute [rw] lex_bot_alias_arn
986
1028
  # The ARN of the Amazon Lex V2 bot's alias. The ARN uses this format:
987
1029
  # `arn:aws:lex:REGION:ACCOUNT:bot-alias/MYBOTID/MYBOTALIAS`
@@ -1007,6 +1049,7 @@ module Aws::ChimeSDKIdentity
1007
1049
  #
1008
1050
  class LexConfiguration < Struct.new(
1009
1051
  :responds_to,
1052
+ :invoked_by,
1010
1053
  :lex_bot_alias_arn,
1011
1054
  :locale_id,
1012
1055
  :welcome_intent)
@@ -1411,7 +1454,7 @@ module Aws::ChimeSDKIdentity
1411
1454
  class RegisterAppInstanceUserEndpointResponse < Struct.new(
1412
1455
  :app_instance_user_arn,
1413
1456
  :endpoint_id)
1414
- SENSITIVE = [:app_instance_user_arn, :endpoint_id]
1457
+ SENSITIVE = []
1415
1458
  include Aws::Structure
1416
1459
  end
1417
1460
 
@@ -1565,12 +1608,17 @@ module Aws::ChimeSDKIdentity
1565
1608
  # The metadata of the `AppInstanceBot`.
1566
1609
  # @return [String]
1567
1610
  #
1611
+ # @!attribute [rw] configuration
1612
+ # The configuration for the bot update.
1613
+ # @return [Types::Configuration]
1614
+ #
1568
1615
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/UpdateAppInstanceBotRequest AWS API Documentation
1569
1616
  #
1570
1617
  class UpdateAppInstanceBotRequest < Struct.new(
1571
1618
  :app_instance_bot_arn,
1572
1619
  :name,
1573
- :metadata)
1620
+ :metadata,
1621
+ :configuration)
1574
1622
  SENSITIVE = [:name, :metadata]
1575
1623
  include Aws::Structure
1576
1624
  end
@@ -1647,7 +1695,7 @@ module Aws::ChimeSDKIdentity
1647
1695
  :endpoint_id,
1648
1696
  :name,
1649
1697
  :allow_messages)
1650
- SENSITIVE = [:app_instance_user_arn, :endpoint_id, :name]
1698
+ SENSITIVE = [:name]
1651
1699
  include Aws::Structure
1652
1700
  end
1653
1701
 
@@ -1664,7 +1712,7 @@ module Aws::ChimeSDKIdentity
1664
1712
  class UpdateAppInstanceUserEndpointResponse < Struct.new(
1665
1713
  :app_instance_user_arn,
1666
1714
  :endpoint_id)
1667
- SENSITIVE = [:app_instance_user_arn, :endpoint_id]
1715
+ SENSITIVE = []
1668
1716
  include Aws::Structure
1669
1717
  end
1670
1718
 
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-chimesdkidentity/customizations'
52
52
  # @!group service
53
53
  module Aws::ChimeSDKIdentity
54
54
 
55
- GEM_VERSION = '1.14.0'
55
+ GEM_VERSION = '1.15.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-chimesdkidentity
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.14.0
4
+ version: 1.15.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: 2023-06-15 00:00:00.000000000 Z
11
+ date: 2023-06-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core