aws-sdk-chimesdkmessaging 1.15.0 → 1.17.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chimesdkmessaging/client.rb +394 -156
- data/lib/aws-sdk-chimesdkmessaging/client_api.rb +116 -1
- data/lib/aws-sdk-chimesdkmessaging/endpoint_parameters.rb +0 -3
- data/lib/aws-sdk-chimesdkmessaging/endpoint_provider.rb +27 -24
- data/lib/aws-sdk-chimesdkmessaging/endpoints.rb +56 -0
- data/lib/aws-sdk-chimesdkmessaging/plugins/endpoints.rb +8 -0
- data/lib/aws-sdk-chimesdkmessaging/types.rb +267 -55
- data/lib/aws-sdk-chimesdkmessaging.rb +1 -1
- metadata +2 -2
@@ -82,7 +82,7 @@ module Aws::ChimeSDKMessaging
|
|
82
82
|
# @return [Types::Identity]
|
83
83
|
#
|
84
84
|
# @!attribute [rw] type
|
85
|
-
# The membership types set for the channel
|
85
|
+
# The membership types set for the channel members.
|
86
86
|
# @return [String]
|
87
87
|
#
|
88
88
|
# @!attribute [rw] members
|
@@ -90,7 +90,7 @@ module Aws::ChimeSDKMessaging
|
|
90
90
|
# @return [Array<Types::Identity>]
|
91
91
|
#
|
92
92
|
# @!attribute [rw] channel_arn
|
93
|
-
# The ARN of the channel to which you're adding
|
93
|
+
# The ARN of the channel to which you're adding members.
|
94
94
|
# @return [String]
|
95
95
|
#
|
96
96
|
# @!attribute [rw] sub_channel_id
|
@@ -135,7 +135,7 @@ module Aws::ChimeSDKMessaging
|
|
135
135
|
end
|
136
136
|
|
137
137
|
# @!attribute [rw] channel_arn
|
138
|
-
# The ARN of the channel to which you're adding users.
|
138
|
+
# The ARN of the channel to which you're adding users or bots.
|
139
139
|
# @return [String]
|
140
140
|
#
|
141
141
|
# @!attribute [rw] type
|
@@ -147,12 +147,14 @@ module Aws::ChimeSDKMessaging
|
|
147
147
|
# @return [String]
|
148
148
|
#
|
149
149
|
# @!attribute [rw] member_arns
|
150
|
-
# The
|
151
|
-
# channel
|
150
|
+
# The ARNs of the members you want to add to the channel. Only
|
151
|
+
# `AppInstanceUsers` and `AppInstanceBots` can be added as a channel
|
152
|
+
# member.
|
152
153
|
# @return [Array<String>]
|
153
154
|
#
|
154
155
|
# @!attribute [rw] chime_bearer
|
155
|
-
# The
|
156
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
157
|
+
# API call.
|
156
158
|
# @return [String]
|
157
159
|
#
|
158
160
|
# @!attribute [rw] sub_channel_id
|
@@ -242,6 +244,10 @@ module Aws::ChimeSDKMessaging
|
|
242
244
|
# An elastic channel can support a maximum of 1-million members.
|
243
245
|
# @return [Types::ElasticChannelConfiguration]
|
244
246
|
#
|
247
|
+
# @!attribute [rw] expiration_settings
|
248
|
+
# Settings that control when a channel expires.
|
249
|
+
# @return [Types::ExpirationSettings]
|
250
|
+
#
|
245
251
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/Channel AWS API Documentation
|
246
252
|
#
|
247
253
|
class Channel < Struct.new(
|
@@ -255,7 +261,8 @@ module Aws::ChimeSDKMessaging
|
|
255
261
|
:last_message_timestamp,
|
256
262
|
:last_updated_timestamp,
|
257
263
|
:channel_flow_arn,
|
258
|
-
:elastic_channel_configuration
|
264
|
+
:elastic_channel_configuration,
|
265
|
+
:expiration_settings)
|
259
266
|
SENSITIVE = [:name, :metadata]
|
260
267
|
include Aws::Structure
|
261
268
|
end
|
@@ -594,6 +601,10 @@ module Aws::ChimeSDKMessaging
|
|
594
601
|
# The ID of the SubChannel.
|
595
602
|
# @return [String]
|
596
603
|
#
|
604
|
+
# @!attribute [rw] content_type
|
605
|
+
# The content type of the channel message.
|
606
|
+
# @return [String]
|
607
|
+
#
|
597
608
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/ChannelMessage AWS API Documentation
|
598
609
|
#
|
599
610
|
class ChannelMessage < Struct.new(
|
@@ -610,8 +621,9 @@ module Aws::ChimeSDKMessaging
|
|
610
621
|
:persistence,
|
611
622
|
:status,
|
612
623
|
:message_attributes,
|
613
|
-
:sub_channel_id
|
614
|
-
|
624
|
+
:sub_channel_id,
|
625
|
+
:content_type)
|
626
|
+
SENSITIVE = [:content, :metadata, :content_type]
|
615
627
|
include Aws::Structure
|
616
628
|
end
|
617
629
|
|
@@ -642,6 +654,10 @@ module Aws::ChimeSDKMessaging
|
|
642
654
|
# The ID of the SubChannel.
|
643
655
|
# @return [String]
|
644
656
|
#
|
657
|
+
# @!attribute [rw] content_type
|
658
|
+
# The content type of the call-back message.
|
659
|
+
# @return [String]
|
660
|
+
#
|
645
661
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/ChannelMessageCallback AWS API Documentation
|
646
662
|
#
|
647
663
|
class ChannelMessageCallback < Struct.new(
|
@@ -650,8 +666,9 @@ module Aws::ChimeSDKMessaging
|
|
650
666
|
:metadata,
|
651
667
|
:push_notification,
|
652
668
|
:message_attributes,
|
653
|
-
:sub_channel_id
|
654
|
-
|
669
|
+
:sub_channel_id,
|
670
|
+
:content_type)
|
671
|
+
SENSITIVE = [:content, :metadata, :content_type]
|
655
672
|
include Aws::Structure
|
656
673
|
end
|
657
674
|
|
@@ -722,6 +739,10 @@ module Aws::ChimeSDKMessaging
|
|
722
739
|
# The message attribues listed in a the summary of a channel message.
|
723
740
|
# @return [Hash<String,Types::MessageAttributeValue>]
|
724
741
|
#
|
742
|
+
# @!attribute [rw] content_type
|
743
|
+
# The content type of the channel messsage listed in the summary.
|
744
|
+
# @return [String]
|
745
|
+
#
|
725
746
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/ChannelMessageSummary AWS API Documentation
|
726
747
|
#
|
727
748
|
class ChannelMessageSummary < Struct.new(
|
@@ -735,8 +756,9 @@ module Aws::ChimeSDKMessaging
|
|
735
756
|
:sender,
|
736
757
|
:redacted,
|
737
758
|
:status,
|
738
|
-
:message_attributes
|
739
|
-
|
759
|
+
:message_attributes,
|
760
|
+
:content_type)
|
761
|
+
SENSITIVE = [:content, :metadata, :content_type]
|
740
762
|
include Aws::Structure
|
741
763
|
end
|
742
764
|
|
@@ -863,7 +885,8 @@ module Aws::ChimeSDKMessaging
|
|
863
885
|
# @return [String]
|
864
886
|
#
|
865
887
|
# @!attribute [rw] chime_bearer
|
866
|
-
# The
|
888
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
889
|
+
# API call.
|
867
890
|
# @return [String]
|
868
891
|
#
|
869
892
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/CreateChannelBanRequest AWS API Documentation
|
@@ -956,7 +979,8 @@ module Aws::ChimeSDKMessaging
|
|
956
979
|
# @return [String]
|
957
980
|
#
|
958
981
|
# @!attribute [rw] chime_bearer
|
959
|
-
# The
|
982
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
983
|
+
# API call.
|
960
984
|
# @return [String]
|
961
985
|
#
|
962
986
|
# @!attribute [rw] sub_channel_id
|
@@ -1011,7 +1035,8 @@ module Aws::ChimeSDKMessaging
|
|
1011
1035
|
# @return [String]
|
1012
1036
|
#
|
1013
1037
|
# @!attribute [rw] chime_bearer
|
1014
|
-
# The
|
1038
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
1039
|
+
# API call.
|
1015
1040
|
# @return [String]
|
1016
1041
|
#
|
1017
1042
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/CreateChannelModeratorRequest AWS API Documentation
|
@@ -1078,7 +1103,8 @@ module Aws::ChimeSDKMessaging
|
|
1078
1103
|
# @return [Array<Types::Tag>]
|
1079
1104
|
#
|
1080
1105
|
# @!attribute [rw] chime_bearer
|
1081
|
-
# The
|
1106
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
1107
|
+
# API call.
|
1082
1108
|
# @return [String]
|
1083
1109
|
#
|
1084
1110
|
# @!attribute [rw] channel_id
|
@@ -1099,6 +1125,11 @@ module Aws::ChimeSDKMessaging
|
|
1099
1125
|
# excluding moderators.
|
1100
1126
|
# @return [Types::ElasticChannelConfiguration]
|
1101
1127
|
#
|
1128
|
+
# @!attribute [rw] expiration_settings
|
1129
|
+
# Settings that control the interval after which the channel is
|
1130
|
+
# automatically deleted.
|
1131
|
+
# @return [Types::ExpirationSettings]
|
1132
|
+
#
|
1102
1133
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/CreateChannelRequest AWS API Documentation
|
1103
1134
|
#
|
1104
1135
|
class CreateChannelRequest < Struct.new(
|
@@ -1113,7 +1144,8 @@ module Aws::ChimeSDKMessaging
|
|
1113
1144
|
:channel_id,
|
1114
1145
|
:member_arns,
|
1115
1146
|
:moderator_arns,
|
1116
|
-
:elastic_channel_configuration
|
1147
|
+
:elastic_channel_configuration,
|
1148
|
+
:expiration_settings)
|
1117
1149
|
SENSITIVE = [:name, :metadata, :client_request_token, :channel_id]
|
1118
1150
|
include Aws::Structure
|
1119
1151
|
end
|
@@ -1139,7 +1171,8 @@ module Aws::ChimeSDKMessaging
|
|
1139
1171
|
# @return [String]
|
1140
1172
|
#
|
1141
1173
|
# @!attribute [rw] chime_bearer
|
1142
|
-
# The
|
1174
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
1175
|
+
# API call.
|
1143
1176
|
# @return [String]
|
1144
1177
|
#
|
1145
1178
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/DeleteChannelBanRequest AWS API Documentation
|
@@ -1174,7 +1207,8 @@ module Aws::ChimeSDKMessaging
|
|
1174
1207
|
# @return [String]
|
1175
1208
|
#
|
1176
1209
|
# @!attribute [rw] chime_bearer
|
1177
|
-
# The
|
1210
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
1211
|
+
# API call.
|
1178
1212
|
# @return [String]
|
1179
1213
|
#
|
1180
1214
|
# @!attribute [rw] sub_channel_id
|
@@ -1205,7 +1239,8 @@ module Aws::ChimeSDKMessaging
|
|
1205
1239
|
# @return [String]
|
1206
1240
|
#
|
1207
1241
|
# @!attribute [rw] chime_bearer
|
1208
|
-
# The
|
1242
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
1243
|
+
# API call.
|
1209
1244
|
# @return [String]
|
1210
1245
|
#
|
1211
1246
|
# @!attribute [rw] sub_channel_id
|
@@ -1237,7 +1272,8 @@ module Aws::ChimeSDKMessaging
|
|
1237
1272
|
# @return [String]
|
1238
1273
|
#
|
1239
1274
|
# @!attribute [rw] chime_bearer
|
1240
|
-
# The
|
1275
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
1276
|
+
# API call.
|
1241
1277
|
# @return [String]
|
1242
1278
|
#
|
1243
1279
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/DeleteChannelModeratorRequest AWS API Documentation
|
@@ -1255,7 +1291,8 @@ module Aws::ChimeSDKMessaging
|
|
1255
1291
|
# @return [String]
|
1256
1292
|
#
|
1257
1293
|
# @!attribute [rw] chime_bearer
|
1258
|
-
# The
|
1294
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
1295
|
+
# API call.
|
1259
1296
|
# @return [String]
|
1260
1297
|
#
|
1261
1298
|
# @!attribute [rw] sub_channel_id
|
@@ -1272,6 +1309,18 @@ module Aws::ChimeSDKMessaging
|
|
1272
1309
|
include Aws::Structure
|
1273
1310
|
end
|
1274
1311
|
|
1312
|
+
# @!attribute [rw] app_instance_arn
|
1313
|
+
# The ARN of the streaming configurations being deleted.
|
1314
|
+
# @return [String]
|
1315
|
+
#
|
1316
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/DeleteMessagingStreamingConfigurationsRequest AWS API Documentation
|
1317
|
+
#
|
1318
|
+
class DeleteMessagingStreamingConfigurationsRequest < Struct.new(
|
1319
|
+
:app_instance_arn)
|
1320
|
+
SENSITIVE = []
|
1321
|
+
include Aws::Structure
|
1322
|
+
end
|
1323
|
+
|
1275
1324
|
# @!attribute [rw] channel_arn
|
1276
1325
|
# The ARN of the channel from which the user is banned.
|
1277
1326
|
# @return [String]
|
@@ -1281,7 +1330,8 @@ module Aws::ChimeSDKMessaging
|
|
1281
1330
|
# @return [String]
|
1282
1331
|
#
|
1283
1332
|
# @!attribute [rw] chime_bearer
|
1284
|
-
# The
|
1333
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
1334
|
+
# API call.
|
1285
1335
|
# @return [String]
|
1286
1336
|
#
|
1287
1337
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/DescribeChannelBanRequest AWS API Documentation
|
@@ -1335,11 +1385,12 @@ module Aws::ChimeSDKMessaging
|
|
1335
1385
|
# @return [String]
|
1336
1386
|
#
|
1337
1387
|
# @!attribute [rw] app_instance_user_arn
|
1338
|
-
# The ARN of the user in a channel.
|
1388
|
+
# The ARN of the user or bot in a channel.
|
1339
1389
|
# @return [String]
|
1340
1390
|
#
|
1341
1391
|
# @!attribute [rw] chime_bearer
|
1342
|
-
# The
|
1392
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
1393
|
+
# API call.
|
1343
1394
|
# @return [String]
|
1344
1395
|
#
|
1345
1396
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/DescribeChannelMembershipForAppInstanceUserRequest AWS API Documentation
|
@@ -1373,7 +1424,8 @@ module Aws::ChimeSDKMessaging
|
|
1373
1424
|
# @return [String]
|
1374
1425
|
#
|
1375
1426
|
# @!attribute [rw] chime_bearer
|
1376
|
-
# The
|
1427
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
1428
|
+
# API call.
|
1377
1429
|
# @return [String]
|
1378
1430
|
#
|
1379
1431
|
# @!attribute [rw] sub_channel_id
|
@@ -1413,11 +1465,12 @@ module Aws::ChimeSDKMessaging
|
|
1413
1465
|
# @return [String]
|
1414
1466
|
#
|
1415
1467
|
# @!attribute [rw] app_instance_user_arn
|
1416
|
-
# The ARN of the
|
1468
|
+
# The ARN of the user or bot in the moderated channel.
|
1417
1469
|
# @return [String]
|
1418
1470
|
#
|
1419
1471
|
# @!attribute [rw] chime_bearer
|
1420
|
-
# The
|
1472
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
1473
|
+
# API call.
|
1421
1474
|
# @return [String]
|
1422
1475
|
#
|
1423
1476
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/DescribeChannelModeratedByAppInstanceUserRequest AWS API Documentation
|
@@ -1451,7 +1504,8 @@ module Aws::ChimeSDKMessaging
|
|
1451
1504
|
# @return [String]
|
1452
1505
|
#
|
1453
1506
|
# @!attribute [rw] chime_bearer
|
1454
|
-
# The
|
1507
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
1508
|
+
# API call.
|
1455
1509
|
# @return [String]
|
1456
1510
|
#
|
1457
1511
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/DescribeChannelModeratorRequest AWS API Documentation
|
@@ -1481,7 +1535,8 @@ module Aws::ChimeSDKMessaging
|
|
1481
1535
|
# @return [String]
|
1482
1536
|
#
|
1483
1537
|
# @!attribute [rw] chime_bearer
|
1484
|
-
# The
|
1538
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
1539
|
+
# API call.
|
1485
1540
|
# @return [String]
|
1486
1541
|
#
|
1487
1542
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/DescribeChannelRequest AWS API Documentation
|
@@ -1555,6 +1610,26 @@ module Aws::ChimeSDKMessaging
|
|
1555
1610
|
include Aws::Structure
|
1556
1611
|
end
|
1557
1612
|
|
1613
|
+
# Settings that control the interval after which a channel is deleted.
|
1614
|
+
#
|
1615
|
+
# @!attribute [rw] expiration_days
|
1616
|
+
# The period in days after which the system automatically deletes a
|
1617
|
+
# channel.
|
1618
|
+
# @return [Integer]
|
1619
|
+
#
|
1620
|
+
# @!attribute [rw] expiration_criterion
|
1621
|
+
# The conditions that must be met for a channel to expire.
|
1622
|
+
# @return [String]
|
1623
|
+
#
|
1624
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/ExpirationSettings AWS API Documentation
|
1625
|
+
#
|
1626
|
+
class ExpirationSettings < Struct.new(
|
1627
|
+
:expiration_days,
|
1628
|
+
:expiration_criterion)
|
1629
|
+
SENSITIVE = []
|
1630
|
+
include Aws::Structure
|
1631
|
+
end
|
1632
|
+
|
1558
1633
|
# The client is permanently forbidden from making the request.
|
1559
1634
|
#
|
1560
1635
|
# @!attribute [rw] code
|
@@ -1581,7 +1656,8 @@ module Aws::ChimeSDKMessaging
|
|
1581
1656
|
# @return [String]
|
1582
1657
|
#
|
1583
1658
|
# @!attribute [rw] chime_bearer
|
1584
|
-
# The
|
1659
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
1660
|
+
# API call.
|
1585
1661
|
# @return [String]
|
1586
1662
|
#
|
1587
1663
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/GetChannelMembershipPreferencesRequest AWS API Documentation
|
@@ -1625,7 +1701,8 @@ module Aws::ChimeSDKMessaging
|
|
1625
1701
|
# @return [String]
|
1626
1702
|
#
|
1627
1703
|
# @!attribute [rw] chime_bearer
|
1628
|
-
# The
|
1704
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
1705
|
+
# API call.
|
1629
1706
|
# @return [String]
|
1630
1707
|
#
|
1631
1708
|
# @!attribute [rw] sub_channel_id
|
@@ -1722,7 +1799,31 @@ module Aws::ChimeSDKMessaging
|
|
1722
1799
|
include Aws::Structure
|
1723
1800
|
end
|
1724
1801
|
|
1725
|
-
#
|
1802
|
+
# @!attribute [rw] app_instance_arn
|
1803
|
+
# The ARN of the streaming configurations.
|
1804
|
+
# @return [String]
|
1805
|
+
#
|
1806
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/GetMessagingStreamingConfigurationsRequest AWS API Documentation
|
1807
|
+
#
|
1808
|
+
class GetMessagingStreamingConfigurationsRequest < Struct.new(
|
1809
|
+
:app_instance_arn)
|
1810
|
+
SENSITIVE = []
|
1811
|
+
include Aws::Structure
|
1812
|
+
end
|
1813
|
+
|
1814
|
+
# @!attribute [rw] streaming_configurations
|
1815
|
+
# The streaming settings.
|
1816
|
+
# @return [Array<Types::StreamingConfiguration>]
|
1817
|
+
#
|
1818
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/GetMessagingStreamingConfigurationsResponse AWS API Documentation
|
1819
|
+
#
|
1820
|
+
class GetMessagingStreamingConfigurationsResponse < Struct.new(
|
1821
|
+
:streaming_configurations)
|
1822
|
+
SENSITIVE = []
|
1823
|
+
include Aws::Structure
|
1824
|
+
end
|
1825
|
+
|
1826
|
+
# The details of a user or bot.
|
1726
1827
|
#
|
1727
1828
|
# @!attribute [rw] arn
|
1728
1829
|
# The ARN in an Identity.
|
@@ -1774,7 +1875,8 @@ module Aws::ChimeSDKMessaging
|
|
1774
1875
|
# @return [String]
|
1775
1876
|
#
|
1776
1877
|
# @!attribute [rw] chime_bearer
|
1777
|
-
# The
|
1878
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
1879
|
+
# API call.
|
1778
1880
|
# @return [String]
|
1779
1881
|
#
|
1780
1882
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/ListChannelBansRequest AWS API Documentation
|
@@ -1853,7 +1955,7 @@ module Aws::ChimeSDKMessaging
|
|
1853
1955
|
end
|
1854
1956
|
|
1855
1957
|
# @!attribute [rw] app_instance_user_arn
|
1856
|
-
# The ARN of the
|
1958
|
+
# The ARN of the user or bot.
|
1857
1959
|
# @return [String]
|
1858
1960
|
#
|
1859
1961
|
# @!attribute [rw] max_results
|
@@ -1866,7 +1968,8 @@ module Aws::ChimeSDKMessaging
|
|
1866
1968
|
# @return [String]
|
1867
1969
|
#
|
1868
1970
|
# @!attribute [rw] chime_bearer
|
1869
|
-
# The
|
1971
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
1972
|
+
# API call.
|
1870
1973
|
# @return [String]
|
1871
1974
|
#
|
1872
1975
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/ListChannelMembershipsForAppInstanceUserRequest AWS API Documentation
|
@@ -1919,7 +2022,8 @@ module Aws::ChimeSDKMessaging
|
|
1919
2022
|
# @return [String]
|
1920
2023
|
#
|
1921
2024
|
# @!attribute [rw] chime_bearer
|
1922
|
-
# The
|
2025
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
2026
|
+
# API call.
|
1923
2027
|
# @return [String]
|
1924
2028
|
#
|
1925
2029
|
# @!attribute [rw] sub_channel_id
|
@@ -1994,7 +2098,8 @@ module Aws::ChimeSDKMessaging
|
|
1994
2098
|
# @return [String]
|
1995
2099
|
#
|
1996
2100
|
# @!attribute [rw] chime_bearer
|
1997
|
-
# The
|
2101
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
2102
|
+
# API call.
|
1998
2103
|
# @return [String]
|
1999
2104
|
#
|
2000
2105
|
# @!attribute [rw] sub_channel_id
|
@@ -2063,7 +2168,8 @@ module Aws::ChimeSDKMessaging
|
|
2063
2168
|
# @return [String]
|
2064
2169
|
#
|
2065
2170
|
# @!attribute [rw] chime_bearer
|
2066
|
-
# The
|
2171
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
2172
|
+
# API call.
|
2067
2173
|
# @return [String]
|
2068
2174
|
#
|
2069
2175
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/ListChannelModeratorsRequest AWS API Documentation
|
@@ -2142,7 +2248,7 @@ module Aws::ChimeSDKMessaging
|
|
2142
2248
|
end
|
2143
2249
|
|
2144
2250
|
# @!attribute [rw] app_instance_user_arn
|
2145
|
-
# The ARN of the user in the moderated channel.
|
2251
|
+
# The ARN of the user or bot in the moderated channel.
|
2146
2252
|
# @return [String]
|
2147
2253
|
#
|
2148
2254
|
# @!attribute [rw] max_results
|
@@ -2155,7 +2261,8 @@ module Aws::ChimeSDKMessaging
|
|
2155
2261
|
# @return [String]
|
2156
2262
|
#
|
2157
2263
|
# @!attribute [rw] chime_bearer
|
2158
|
-
# The
|
2264
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
2265
|
+
# API call.
|
2159
2266
|
# @return [String]
|
2160
2267
|
#
|
2161
2268
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/ListChannelsModeratedByAppInstanceUserRequest AWS API Documentation
|
@@ -2207,7 +2314,8 @@ module Aws::ChimeSDKMessaging
|
|
2207
2314
|
# @return [String]
|
2208
2315
|
#
|
2209
2316
|
# @!attribute [rw] chime_bearer
|
2210
|
-
# The
|
2317
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
2318
|
+
# API call.
|
2211
2319
|
# @return [String]
|
2212
2320
|
#
|
2213
2321
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/ListChannelsRequest AWS API Documentation
|
@@ -2426,7 +2534,7 @@ module Aws::ChimeSDKMessaging
|
|
2426
2534
|
#
|
2427
2535
|
# @!attribute [rw] type
|
2428
2536
|
# Enum value that indicates the type of the push notification for a
|
2429
|
-
# message. `DEFAULT
|
2537
|
+
# message. `DEFAULT`: Normal mobile push notification. `VOIP`: VOIP
|
2430
2538
|
# mobile push notification.
|
2431
2539
|
# @return [String]
|
2432
2540
|
#
|
@@ -2463,16 +2571,57 @@ module Aws::ChimeSDKMessaging
|
|
2463
2571
|
include Aws::Structure
|
2464
2572
|
end
|
2465
2573
|
|
2574
|
+
# @!attribute [rw] channel_arn
|
2575
|
+
# The ARN of the channel.
|
2576
|
+
# @return [String]
|
2577
|
+
#
|
2578
|
+
# @!attribute [rw] chime_bearer
|
2579
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
2580
|
+
# API call.
|
2581
|
+
# @return [String]
|
2582
|
+
#
|
2583
|
+
# @!attribute [rw] expiration_settings
|
2584
|
+
# Settings that control the interval after which a channel is deleted.
|
2585
|
+
# @return [Types::ExpirationSettings]
|
2586
|
+
#
|
2587
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/PutChannelExpirationSettingsRequest AWS API Documentation
|
2588
|
+
#
|
2589
|
+
class PutChannelExpirationSettingsRequest < Struct.new(
|
2590
|
+
:channel_arn,
|
2591
|
+
:chime_bearer,
|
2592
|
+
:expiration_settings)
|
2593
|
+
SENSITIVE = []
|
2594
|
+
include Aws::Structure
|
2595
|
+
end
|
2596
|
+
|
2597
|
+
# @!attribute [rw] channel_arn
|
2598
|
+
# The channel ARN.
|
2599
|
+
# @return [String]
|
2600
|
+
#
|
2601
|
+
# @!attribute [rw] expiration_settings
|
2602
|
+
# Settings that control the interval after which a channel is deleted.
|
2603
|
+
# @return [Types::ExpirationSettings]
|
2604
|
+
#
|
2605
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/PutChannelExpirationSettingsResponse AWS API Documentation
|
2606
|
+
#
|
2607
|
+
class PutChannelExpirationSettingsResponse < Struct.new(
|
2608
|
+
:channel_arn,
|
2609
|
+
:expiration_settings)
|
2610
|
+
SENSITIVE = []
|
2611
|
+
include Aws::Structure
|
2612
|
+
end
|
2613
|
+
|
2466
2614
|
# @!attribute [rw] channel_arn
|
2467
2615
|
# The ARN of the channel.
|
2468
2616
|
# @return [String]
|
2469
2617
|
#
|
2470
2618
|
# @!attribute [rw] member_arn
|
2471
|
-
# The
|
2619
|
+
# The ARN of the member setting the preferences.
|
2472
2620
|
# @return [String]
|
2473
2621
|
#
|
2474
2622
|
# @!attribute [rw] chime_bearer
|
2475
|
-
# The
|
2623
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
2624
|
+
# API call.
|
2476
2625
|
# @return [String]
|
2477
2626
|
#
|
2478
2627
|
# @!attribute [rw] preferences
|
@@ -2512,6 +2661,35 @@ module Aws::ChimeSDKMessaging
|
|
2512
2661
|
include Aws::Structure
|
2513
2662
|
end
|
2514
2663
|
|
2664
|
+
# @!attribute [rw] app_instance_arn
|
2665
|
+
# The ARN of the streaming configuration.
|
2666
|
+
# @return [String]
|
2667
|
+
#
|
2668
|
+
# @!attribute [rw] streaming_configurations
|
2669
|
+
# The streaming configurations.
|
2670
|
+
# @return [Array<Types::StreamingConfiguration>]
|
2671
|
+
#
|
2672
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/PutMessagingStreamingConfigurationsRequest AWS API Documentation
|
2673
|
+
#
|
2674
|
+
class PutMessagingStreamingConfigurationsRequest < Struct.new(
|
2675
|
+
:app_instance_arn,
|
2676
|
+
:streaming_configurations)
|
2677
|
+
SENSITIVE = []
|
2678
|
+
include Aws::Structure
|
2679
|
+
end
|
2680
|
+
|
2681
|
+
# @!attribute [rw] streaming_configurations
|
2682
|
+
# The requested streaming configurations.
|
2683
|
+
# @return [Array<Types::StreamingConfiguration>]
|
2684
|
+
#
|
2685
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/PutMessagingStreamingConfigurationsResponse AWS API Documentation
|
2686
|
+
#
|
2687
|
+
class PutMessagingStreamingConfigurationsResponse < Struct.new(
|
2688
|
+
:streaming_configurations)
|
2689
|
+
SENSITIVE = []
|
2690
|
+
include Aws::Structure
|
2691
|
+
end
|
2692
|
+
|
2515
2693
|
# @!attribute [rw] channel_arn
|
2516
2694
|
# The ARN of the channel containing the messages that you want to
|
2517
2695
|
# redact.
|
@@ -2522,7 +2700,8 @@ module Aws::ChimeSDKMessaging
|
|
2522
2700
|
# @return [String]
|
2523
2701
|
#
|
2524
2702
|
# @!attribute [rw] chime_bearer
|
2525
|
-
# The
|
2703
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
2704
|
+
# API call.
|
2526
2705
|
# @return [String]
|
2527
2706
|
#
|
2528
2707
|
# @!attribute [rw] sub_channel_id
|
@@ -2698,7 +2877,8 @@ module Aws::ChimeSDKMessaging
|
|
2698
2877
|
# @return [String]
|
2699
2878
|
#
|
2700
2879
|
# @!attribute [rw] chime_bearer
|
2701
|
-
# The
|
2880
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
2881
|
+
# API call.
|
2702
2882
|
# @return [String]
|
2703
2883
|
#
|
2704
2884
|
# @!attribute [rw] push_notification
|
@@ -2714,6 +2894,10 @@ module Aws::ChimeSDKMessaging
|
|
2714
2894
|
# The ID of the SubChannel in the request.
|
2715
2895
|
# @return [String]
|
2716
2896
|
#
|
2897
|
+
# @!attribute [rw] content_type
|
2898
|
+
# The content type of the channel message.
|
2899
|
+
# @return [String]
|
2900
|
+
#
|
2717
2901
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/SendChannelMessageRequest AWS API Documentation
|
2718
2902
|
#
|
2719
2903
|
class SendChannelMessageRequest < Struct.new(
|
@@ -2726,8 +2910,9 @@ module Aws::ChimeSDKMessaging
|
|
2726
2910
|
:chime_bearer,
|
2727
2911
|
:push_notification,
|
2728
2912
|
:message_attributes,
|
2729
|
-
:sub_channel_id
|
2730
|
-
|
2913
|
+
:sub_channel_id,
|
2914
|
+
:content_type)
|
2915
|
+
SENSITIVE = [:content, :metadata, :client_request_token, :content_type]
|
2731
2916
|
include Aws::Structure
|
2732
2917
|
end
|
2733
2918
|
|
@@ -2792,6 +2977,25 @@ module Aws::ChimeSDKMessaging
|
|
2792
2977
|
include Aws::Structure
|
2793
2978
|
end
|
2794
2979
|
|
2980
|
+
# The configuration for connecting a messaging stream to Amazon Kinesis.
|
2981
|
+
#
|
2982
|
+
# @!attribute [rw] data_type
|
2983
|
+
# The data type of the configuration.
|
2984
|
+
# @return [String]
|
2985
|
+
#
|
2986
|
+
# @!attribute [rw] resource_arn
|
2987
|
+
# The ARN of the resource in the configuration.
|
2988
|
+
# @return [String]
|
2989
|
+
#
|
2990
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/StreamingConfiguration AWS API Documentation
|
2991
|
+
#
|
2992
|
+
class StreamingConfiguration < Struct.new(
|
2993
|
+
:data_type,
|
2994
|
+
:resource_arn)
|
2995
|
+
SENSITIVE = []
|
2996
|
+
include Aws::Structure
|
2997
|
+
end
|
2998
|
+
|
2795
2999
|
# Summary of the sub-channels associated with the elastic channel.
|
2796
3000
|
#
|
2797
3001
|
# @!attribute [rw] sub_channel_id
|
@@ -2949,7 +3153,8 @@ module Aws::ChimeSDKMessaging
|
|
2949
3153
|
# @return [String]
|
2950
3154
|
#
|
2951
3155
|
# @!attribute [rw] chime_bearer
|
2952
|
-
# The
|
3156
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
3157
|
+
# API call.
|
2953
3158
|
# @return [String]
|
2954
3159
|
#
|
2955
3160
|
# @!attribute [rw] sub_channel_id
|
@@ -2961,6 +3166,10 @@ module Aws::ChimeSDKMessaging
|
|
2961
3166
|
# </note>
|
2962
3167
|
# @return [String]
|
2963
3168
|
#
|
3169
|
+
# @!attribute [rw] content_type
|
3170
|
+
# The content type of the channel message.
|
3171
|
+
# @return [String]
|
3172
|
+
#
|
2964
3173
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/UpdateChannelMessageRequest AWS API Documentation
|
2965
3174
|
#
|
2966
3175
|
class UpdateChannelMessageRequest < Struct.new(
|
@@ -2969,8 +3178,9 @@ module Aws::ChimeSDKMessaging
|
|
2969
3178
|
:content,
|
2970
3179
|
:metadata,
|
2971
3180
|
:chime_bearer,
|
2972
|
-
:sub_channel_id
|
2973
|
-
|
3181
|
+
:sub_channel_id,
|
3182
|
+
:content_type)
|
3183
|
+
SENSITIVE = [:content, :metadata, :content_type]
|
2974
3184
|
include Aws::Structure
|
2975
3185
|
end
|
2976
3186
|
|
@@ -3006,7 +3216,8 @@ module Aws::ChimeSDKMessaging
|
|
3006
3216
|
# @return [String]
|
3007
3217
|
#
|
3008
3218
|
# @!attribute [rw] chime_bearer
|
3009
|
-
# The
|
3219
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
3220
|
+
# API call.
|
3010
3221
|
# @return [String]
|
3011
3222
|
#
|
3012
3223
|
# @!attribute [rw] sub_channel_id
|
@@ -3057,7 +3268,8 @@ module Aws::ChimeSDKMessaging
|
|
3057
3268
|
# @return [String]
|
3058
3269
|
#
|
3059
3270
|
# @!attribute [rw] chime_bearer
|
3060
|
-
# The
|
3271
|
+
# The ARN of the `AppInstanceUser` or `AppInstanceBot` that makes the
|
3272
|
+
# API call.
|
3061
3273
|
# @return [String]
|
3062
3274
|
#
|
3063
3275
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/UpdateChannelRequest AWS API Documentation
|