aws-sdk-chimesdkmessaging 1.26.0 → 1.28.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 +1 -1
- data/lib/aws-sdk-chimesdkmessaging/plugins/endpoints.rb +4 -2
- data/lib/aws-sdk-chimesdkmessaging.rb +1 -1
- data/sig/client.rbs +806 -0
- data/sig/errors.rbs +52 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +970 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,970 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::ChimeSDKMessaging
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AppInstanceUserMembershipSummary
|
12
|
+
attr_accessor type: ("DEFAULT" | "HIDDEN")
|
13
|
+
attr_accessor read_marker_timestamp: ::Time
|
14
|
+
attr_accessor sub_channel_id: ::String
|
15
|
+
SENSITIVE: []
|
16
|
+
end
|
17
|
+
|
18
|
+
class AssociateChannelFlowRequest
|
19
|
+
attr_accessor channel_arn: ::String
|
20
|
+
attr_accessor channel_flow_arn: ::String
|
21
|
+
attr_accessor chime_bearer: ::String
|
22
|
+
SENSITIVE: []
|
23
|
+
end
|
24
|
+
|
25
|
+
class BadRequestException
|
26
|
+
attr_accessor code: ("BadRequest" | "Conflict" | "Forbidden" | "NotFound" | "PreconditionFailed" | "ResourceLimitExceeded" | "ServiceFailure" | "AccessDenied" | "ServiceUnavailable" | "Throttled" | "Throttling" | "Unauthorized" | "Unprocessable" | "VoiceConnectorGroupAssociationsExist" | "PhoneNumberAssociationsExist")
|
27
|
+
attr_accessor message: ::String
|
28
|
+
SENSITIVE: []
|
29
|
+
end
|
30
|
+
|
31
|
+
class BatchChannelMemberships
|
32
|
+
attr_accessor invited_by: Types::Identity
|
33
|
+
attr_accessor type: ("DEFAULT" | "HIDDEN")
|
34
|
+
attr_accessor members: ::Array[Types::Identity]
|
35
|
+
attr_accessor channel_arn: ::String
|
36
|
+
attr_accessor sub_channel_id: ::String
|
37
|
+
SENSITIVE: []
|
38
|
+
end
|
39
|
+
|
40
|
+
class BatchCreateChannelMembershipError
|
41
|
+
attr_accessor member_arn: ::String
|
42
|
+
attr_accessor error_code: ("BadRequest" | "Conflict" | "Forbidden" | "NotFound" | "PreconditionFailed" | "ResourceLimitExceeded" | "ServiceFailure" | "AccessDenied" | "ServiceUnavailable" | "Throttled" | "Throttling" | "Unauthorized" | "Unprocessable" | "VoiceConnectorGroupAssociationsExist" | "PhoneNumberAssociationsExist")
|
43
|
+
attr_accessor error_message: ::String
|
44
|
+
SENSITIVE: []
|
45
|
+
end
|
46
|
+
|
47
|
+
class BatchCreateChannelMembershipRequest
|
48
|
+
attr_accessor channel_arn: ::String
|
49
|
+
attr_accessor type: ("DEFAULT" | "HIDDEN")
|
50
|
+
attr_accessor member_arns: ::Array[::String]
|
51
|
+
attr_accessor chime_bearer: ::String
|
52
|
+
attr_accessor sub_channel_id: ::String
|
53
|
+
SENSITIVE: []
|
54
|
+
end
|
55
|
+
|
56
|
+
class BatchCreateChannelMembershipResponse
|
57
|
+
attr_accessor batch_channel_memberships: Types::BatchChannelMemberships
|
58
|
+
attr_accessor errors: ::Array[Types::BatchCreateChannelMembershipError]
|
59
|
+
SENSITIVE: []
|
60
|
+
end
|
61
|
+
|
62
|
+
class Channel
|
63
|
+
attr_accessor name: ::String
|
64
|
+
attr_accessor channel_arn: ::String
|
65
|
+
attr_accessor mode: ("UNRESTRICTED" | "RESTRICTED")
|
66
|
+
attr_accessor privacy: ("PUBLIC" | "PRIVATE")
|
67
|
+
attr_accessor metadata: ::String
|
68
|
+
attr_accessor created_by: Types::Identity
|
69
|
+
attr_accessor created_timestamp: ::Time
|
70
|
+
attr_accessor last_message_timestamp: ::Time
|
71
|
+
attr_accessor last_updated_timestamp: ::Time
|
72
|
+
attr_accessor channel_flow_arn: ::String
|
73
|
+
attr_accessor elastic_channel_configuration: Types::ElasticChannelConfiguration
|
74
|
+
attr_accessor expiration_settings: Types::ExpirationSettings
|
75
|
+
SENSITIVE: [:name, :metadata]
|
76
|
+
end
|
77
|
+
|
78
|
+
class ChannelAssociatedWithFlowSummary
|
79
|
+
attr_accessor name: ::String
|
80
|
+
attr_accessor channel_arn: ::String
|
81
|
+
attr_accessor mode: ("UNRESTRICTED" | "RESTRICTED")
|
82
|
+
attr_accessor privacy: ("PUBLIC" | "PRIVATE")
|
83
|
+
attr_accessor metadata: ::String
|
84
|
+
SENSITIVE: [:name, :metadata]
|
85
|
+
end
|
86
|
+
|
87
|
+
class ChannelBan
|
88
|
+
attr_accessor member: Types::Identity
|
89
|
+
attr_accessor channel_arn: ::String
|
90
|
+
attr_accessor created_timestamp: ::Time
|
91
|
+
attr_accessor created_by: Types::Identity
|
92
|
+
SENSITIVE: []
|
93
|
+
end
|
94
|
+
|
95
|
+
class ChannelBanSummary
|
96
|
+
attr_accessor member: Types::Identity
|
97
|
+
SENSITIVE: []
|
98
|
+
end
|
99
|
+
|
100
|
+
class ChannelFlow
|
101
|
+
attr_accessor channel_flow_arn: ::String
|
102
|
+
attr_accessor processors: ::Array[Types::Processor]
|
103
|
+
attr_accessor name: ::String
|
104
|
+
attr_accessor created_timestamp: ::Time
|
105
|
+
attr_accessor last_updated_timestamp: ::Time
|
106
|
+
SENSITIVE: [:name]
|
107
|
+
end
|
108
|
+
|
109
|
+
class ChannelFlowCallbackRequest
|
110
|
+
attr_accessor callback_id: ::String
|
111
|
+
attr_accessor channel_arn: ::String
|
112
|
+
attr_accessor delete_resource: bool
|
113
|
+
attr_accessor channel_message: Types::ChannelMessageCallback
|
114
|
+
SENSITIVE: []
|
115
|
+
end
|
116
|
+
|
117
|
+
class ChannelFlowCallbackResponse
|
118
|
+
attr_accessor channel_arn: ::String
|
119
|
+
attr_accessor callback_id: ::String
|
120
|
+
SENSITIVE: []
|
121
|
+
end
|
122
|
+
|
123
|
+
class ChannelFlowSummary
|
124
|
+
attr_accessor channel_flow_arn: ::String
|
125
|
+
attr_accessor name: ::String
|
126
|
+
attr_accessor processors: ::Array[Types::Processor]
|
127
|
+
SENSITIVE: [:name]
|
128
|
+
end
|
129
|
+
|
130
|
+
class ChannelMembership
|
131
|
+
attr_accessor invited_by: Types::Identity
|
132
|
+
attr_accessor type: ("DEFAULT" | "HIDDEN")
|
133
|
+
attr_accessor member: Types::Identity
|
134
|
+
attr_accessor channel_arn: ::String
|
135
|
+
attr_accessor created_timestamp: ::Time
|
136
|
+
attr_accessor last_updated_timestamp: ::Time
|
137
|
+
attr_accessor sub_channel_id: ::String
|
138
|
+
SENSITIVE: []
|
139
|
+
end
|
140
|
+
|
141
|
+
class ChannelMembershipForAppInstanceUserSummary
|
142
|
+
attr_accessor channel_summary: Types::ChannelSummary
|
143
|
+
attr_accessor app_instance_user_membership_summary: Types::AppInstanceUserMembershipSummary
|
144
|
+
SENSITIVE: []
|
145
|
+
end
|
146
|
+
|
147
|
+
class ChannelMembershipPreferences
|
148
|
+
attr_accessor push_notifications: Types::PushNotificationPreferences
|
149
|
+
SENSITIVE: []
|
150
|
+
end
|
151
|
+
|
152
|
+
class ChannelMembershipSummary
|
153
|
+
attr_accessor member: Types::Identity
|
154
|
+
SENSITIVE: []
|
155
|
+
end
|
156
|
+
|
157
|
+
class ChannelMessage
|
158
|
+
attr_accessor channel_arn: ::String
|
159
|
+
attr_accessor message_id: ::String
|
160
|
+
attr_accessor content: ::String
|
161
|
+
attr_accessor metadata: ::String
|
162
|
+
attr_accessor type: ("STANDARD" | "CONTROL")
|
163
|
+
attr_accessor created_timestamp: ::Time
|
164
|
+
attr_accessor last_edited_timestamp: ::Time
|
165
|
+
attr_accessor last_updated_timestamp: ::Time
|
166
|
+
attr_accessor sender: Types::Identity
|
167
|
+
attr_accessor redacted: bool
|
168
|
+
attr_accessor persistence: ("PERSISTENT" | "NON_PERSISTENT")
|
169
|
+
attr_accessor status: Types::ChannelMessageStatusStructure
|
170
|
+
attr_accessor message_attributes: ::Hash[::String, Types::MessageAttributeValue]
|
171
|
+
attr_accessor sub_channel_id: ::String
|
172
|
+
attr_accessor content_type: ::String
|
173
|
+
attr_accessor target: ::Array[Types::Target]
|
174
|
+
SENSITIVE: [:content, :metadata, :content_type]
|
175
|
+
end
|
176
|
+
|
177
|
+
class ChannelMessageCallback
|
178
|
+
attr_accessor message_id: ::String
|
179
|
+
attr_accessor content: ::String
|
180
|
+
attr_accessor metadata: ::String
|
181
|
+
attr_accessor push_notification: Types::PushNotificationConfiguration
|
182
|
+
attr_accessor message_attributes: ::Hash[::String, Types::MessageAttributeValue]
|
183
|
+
attr_accessor sub_channel_id: ::String
|
184
|
+
attr_accessor content_type: ::String
|
185
|
+
SENSITIVE: [:content, :metadata, :content_type]
|
186
|
+
end
|
187
|
+
|
188
|
+
class ChannelMessageStatusStructure
|
189
|
+
attr_accessor value: ("SENT" | "PENDING" | "FAILED" | "DENIED")
|
190
|
+
attr_accessor detail: ::String
|
191
|
+
SENSITIVE: []
|
192
|
+
end
|
193
|
+
|
194
|
+
class ChannelMessageSummary
|
195
|
+
attr_accessor message_id: ::String
|
196
|
+
attr_accessor content: ::String
|
197
|
+
attr_accessor metadata: ::String
|
198
|
+
attr_accessor type: ("STANDARD" | "CONTROL")
|
199
|
+
attr_accessor created_timestamp: ::Time
|
200
|
+
attr_accessor last_updated_timestamp: ::Time
|
201
|
+
attr_accessor last_edited_timestamp: ::Time
|
202
|
+
attr_accessor sender: Types::Identity
|
203
|
+
attr_accessor redacted: bool
|
204
|
+
attr_accessor status: Types::ChannelMessageStatusStructure
|
205
|
+
attr_accessor message_attributes: ::Hash[::String, Types::MessageAttributeValue]
|
206
|
+
attr_accessor content_type: ::String
|
207
|
+
attr_accessor target: ::Array[Types::Target]
|
208
|
+
SENSITIVE: [:content, :metadata, :content_type]
|
209
|
+
end
|
210
|
+
|
211
|
+
class ChannelModeratedByAppInstanceUserSummary
|
212
|
+
attr_accessor channel_summary: Types::ChannelSummary
|
213
|
+
SENSITIVE: []
|
214
|
+
end
|
215
|
+
|
216
|
+
class ChannelModerator
|
217
|
+
attr_accessor moderator: Types::Identity
|
218
|
+
attr_accessor channel_arn: ::String
|
219
|
+
attr_accessor created_timestamp: ::Time
|
220
|
+
attr_accessor created_by: Types::Identity
|
221
|
+
SENSITIVE: []
|
222
|
+
end
|
223
|
+
|
224
|
+
class ChannelModeratorSummary
|
225
|
+
attr_accessor moderator: Types::Identity
|
226
|
+
SENSITIVE: []
|
227
|
+
end
|
228
|
+
|
229
|
+
class ChannelSummary
|
230
|
+
attr_accessor name: ::String
|
231
|
+
attr_accessor channel_arn: ::String
|
232
|
+
attr_accessor mode: ("UNRESTRICTED" | "RESTRICTED")
|
233
|
+
attr_accessor privacy: ("PUBLIC" | "PRIVATE")
|
234
|
+
attr_accessor metadata: ::String
|
235
|
+
attr_accessor last_message_timestamp: ::Time
|
236
|
+
SENSITIVE: [:name, :metadata]
|
237
|
+
end
|
238
|
+
|
239
|
+
class ConflictException
|
240
|
+
attr_accessor code: ("BadRequest" | "Conflict" | "Forbidden" | "NotFound" | "PreconditionFailed" | "ResourceLimitExceeded" | "ServiceFailure" | "AccessDenied" | "ServiceUnavailable" | "Throttled" | "Throttling" | "Unauthorized" | "Unprocessable" | "VoiceConnectorGroupAssociationsExist" | "PhoneNumberAssociationsExist")
|
241
|
+
attr_accessor message: ::String
|
242
|
+
SENSITIVE: []
|
243
|
+
end
|
244
|
+
|
245
|
+
class CreateChannelBanRequest
|
246
|
+
attr_accessor channel_arn: ::String
|
247
|
+
attr_accessor member_arn: ::String
|
248
|
+
attr_accessor chime_bearer: ::String
|
249
|
+
SENSITIVE: []
|
250
|
+
end
|
251
|
+
|
252
|
+
class CreateChannelBanResponse
|
253
|
+
attr_accessor channel_arn: ::String
|
254
|
+
attr_accessor member: Types::Identity
|
255
|
+
SENSITIVE: []
|
256
|
+
end
|
257
|
+
|
258
|
+
class CreateChannelFlowRequest
|
259
|
+
attr_accessor app_instance_arn: ::String
|
260
|
+
attr_accessor processors: ::Array[Types::Processor]
|
261
|
+
attr_accessor name: ::String
|
262
|
+
attr_accessor tags: ::Array[Types::Tag]
|
263
|
+
attr_accessor client_request_token: ::String
|
264
|
+
SENSITIVE: [:name, :client_request_token]
|
265
|
+
end
|
266
|
+
|
267
|
+
class CreateChannelFlowResponse
|
268
|
+
attr_accessor channel_flow_arn: ::String
|
269
|
+
SENSITIVE: []
|
270
|
+
end
|
271
|
+
|
272
|
+
class CreateChannelMembershipRequest
|
273
|
+
attr_accessor channel_arn: ::String
|
274
|
+
attr_accessor member_arn: ::String
|
275
|
+
attr_accessor type: ("DEFAULT" | "HIDDEN")
|
276
|
+
attr_accessor chime_bearer: ::String
|
277
|
+
attr_accessor sub_channel_id: ::String
|
278
|
+
SENSITIVE: []
|
279
|
+
end
|
280
|
+
|
281
|
+
class CreateChannelMembershipResponse
|
282
|
+
attr_accessor channel_arn: ::String
|
283
|
+
attr_accessor member: Types::Identity
|
284
|
+
attr_accessor sub_channel_id: ::String
|
285
|
+
SENSITIVE: []
|
286
|
+
end
|
287
|
+
|
288
|
+
class CreateChannelModeratorRequest
|
289
|
+
attr_accessor channel_arn: ::String
|
290
|
+
attr_accessor channel_moderator_arn: ::String
|
291
|
+
attr_accessor chime_bearer: ::String
|
292
|
+
SENSITIVE: []
|
293
|
+
end
|
294
|
+
|
295
|
+
class CreateChannelModeratorResponse
|
296
|
+
attr_accessor channel_arn: ::String
|
297
|
+
attr_accessor channel_moderator: Types::Identity
|
298
|
+
SENSITIVE: []
|
299
|
+
end
|
300
|
+
|
301
|
+
class CreateChannelRequest
|
302
|
+
attr_accessor app_instance_arn: ::String
|
303
|
+
attr_accessor name: ::String
|
304
|
+
attr_accessor mode: ("UNRESTRICTED" | "RESTRICTED")
|
305
|
+
attr_accessor privacy: ("PUBLIC" | "PRIVATE")
|
306
|
+
attr_accessor metadata: ::String
|
307
|
+
attr_accessor client_request_token: ::String
|
308
|
+
attr_accessor tags: ::Array[Types::Tag]
|
309
|
+
attr_accessor chime_bearer: ::String
|
310
|
+
attr_accessor channel_id: ::String
|
311
|
+
attr_accessor member_arns: ::Array[::String]
|
312
|
+
attr_accessor moderator_arns: ::Array[::String]
|
313
|
+
attr_accessor elastic_channel_configuration: Types::ElasticChannelConfiguration
|
314
|
+
attr_accessor expiration_settings: Types::ExpirationSettings
|
315
|
+
SENSITIVE: [:name, :metadata, :client_request_token, :channel_id]
|
316
|
+
end
|
317
|
+
|
318
|
+
class CreateChannelResponse
|
319
|
+
attr_accessor channel_arn: ::String
|
320
|
+
SENSITIVE: []
|
321
|
+
end
|
322
|
+
|
323
|
+
class DeleteChannelBanRequest
|
324
|
+
attr_accessor channel_arn: ::String
|
325
|
+
attr_accessor member_arn: ::String
|
326
|
+
attr_accessor chime_bearer: ::String
|
327
|
+
SENSITIVE: []
|
328
|
+
end
|
329
|
+
|
330
|
+
class DeleteChannelFlowRequest
|
331
|
+
attr_accessor channel_flow_arn: ::String
|
332
|
+
SENSITIVE: []
|
333
|
+
end
|
334
|
+
|
335
|
+
class DeleteChannelMembershipRequest
|
336
|
+
attr_accessor channel_arn: ::String
|
337
|
+
attr_accessor member_arn: ::String
|
338
|
+
attr_accessor chime_bearer: ::String
|
339
|
+
attr_accessor sub_channel_id: ::String
|
340
|
+
SENSITIVE: []
|
341
|
+
end
|
342
|
+
|
343
|
+
class DeleteChannelMessageRequest
|
344
|
+
attr_accessor channel_arn: ::String
|
345
|
+
attr_accessor message_id: ::String
|
346
|
+
attr_accessor chime_bearer: ::String
|
347
|
+
attr_accessor sub_channel_id: ::String
|
348
|
+
SENSITIVE: []
|
349
|
+
end
|
350
|
+
|
351
|
+
class DeleteChannelModeratorRequest
|
352
|
+
attr_accessor channel_arn: ::String
|
353
|
+
attr_accessor channel_moderator_arn: ::String
|
354
|
+
attr_accessor chime_bearer: ::String
|
355
|
+
SENSITIVE: []
|
356
|
+
end
|
357
|
+
|
358
|
+
class DeleteChannelRequest
|
359
|
+
attr_accessor channel_arn: ::String
|
360
|
+
attr_accessor chime_bearer: ::String
|
361
|
+
SENSITIVE: []
|
362
|
+
end
|
363
|
+
|
364
|
+
class DeleteMessagingStreamingConfigurationsRequest
|
365
|
+
attr_accessor app_instance_arn: ::String
|
366
|
+
SENSITIVE: []
|
367
|
+
end
|
368
|
+
|
369
|
+
class DescribeChannelBanRequest
|
370
|
+
attr_accessor channel_arn: ::String
|
371
|
+
attr_accessor member_arn: ::String
|
372
|
+
attr_accessor chime_bearer: ::String
|
373
|
+
SENSITIVE: []
|
374
|
+
end
|
375
|
+
|
376
|
+
class DescribeChannelBanResponse
|
377
|
+
attr_accessor channel_ban: Types::ChannelBan
|
378
|
+
SENSITIVE: []
|
379
|
+
end
|
380
|
+
|
381
|
+
class DescribeChannelFlowRequest
|
382
|
+
attr_accessor channel_flow_arn: ::String
|
383
|
+
SENSITIVE: []
|
384
|
+
end
|
385
|
+
|
386
|
+
class DescribeChannelFlowResponse
|
387
|
+
attr_accessor channel_flow: Types::ChannelFlow
|
388
|
+
SENSITIVE: []
|
389
|
+
end
|
390
|
+
|
391
|
+
class DescribeChannelMembershipForAppInstanceUserRequest
|
392
|
+
attr_accessor channel_arn: ::String
|
393
|
+
attr_accessor app_instance_user_arn: ::String
|
394
|
+
attr_accessor chime_bearer: ::String
|
395
|
+
SENSITIVE: []
|
396
|
+
end
|
397
|
+
|
398
|
+
class DescribeChannelMembershipForAppInstanceUserResponse
|
399
|
+
attr_accessor channel_membership: Types::ChannelMembershipForAppInstanceUserSummary
|
400
|
+
SENSITIVE: []
|
401
|
+
end
|
402
|
+
|
403
|
+
class DescribeChannelMembershipRequest
|
404
|
+
attr_accessor channel_arn: ::String
|
405
|
+
attr_accessor member_arn: ::String
|
406
|
+
attr_accessor chime_bearer: ::String
|
407
|
+
attr_accessor sub_channel_id: ::String
|
408
|
+
SENSITIVE: []
|
409
|
+
end
|
410
|
+
|
411
|
+
class DescribeChannelMembershipResponse
|
412
|
+
attr_accessor channel_membership: Types::ChannelMembership
|
413
|
+
SENSITIVE: []
|
414
|
+
end
|
415
|
+
|
416
|
+
class DescribeChannelModeratedByAppInstanceUserRequest
|
417
|
+
attr_accessor channel_arn: ::String
|
418
|
+
attr_accessor app_instance_user_arn: ::String
|
419
|
+
attr_accessor chime_bearer: ::String
|
420
|
+
SENSITIVE: []
|
421
|
+
end
|
422
|
+
|
423
|
+
class DescribeChannelModeratedByAppInstanceUserResponse
|
424
|
+
attr_accessor channel: Types::ChannelModeratedByAppInstanceUserSummary
|
425
|
+
SENSITIVE: []
|
426
|
+
end
|
427
|
+
|
428
|
+
class DescribeChannelModeratorRequest
|
429
|
+
attr_accessor channel_arn: ::String
|
430
|
+
attr_accessor channel_moderator_arn: ::String
|
431
|
+
attr_accessor chime_bearer: ::String
|
432
|
+
SENSITIVE: []
|
433
|
+
end
|
434
|
+
|
435
|
+
class DescribeChannelModeratorResponse
|
436
|
+
attr_accessor channel_moderator: Types::ChannelModerator
|
437
|
+
SENSITIVE: []
|
438
|
+
end
|
439
|
+
|
440
|
+
class DescribeChannelRequest
|
441
|
+
attr_accessor channel_arn: ::String
|
442
|
+
attr_accessor chime_bearer: ::String
|
443
|
+
SENSITIVE: []
|
444
|
+
end
|
445
|
+
|
446
|
+
class DescribeChannelResponse
|
447
|
+
attr_accessor channel: Types::Channel
|
448
|
+
SENSITIVE: []
|
449
|
+
end
|
450
|
+
|
451
|
+
class DisassociateChannelFlowRequest
|
452
|
+
attr_accessor channel_arn: ::String
|
453
|
+
attr_accessor channel_flow_arn: ::String
|
454
|
+
attr_accessor chime_bearer: ::String
|
455
|
+
SENSITIVE: []
|
456
|
+
end
|
457
|
+
|
458
|
+
class ElasticChannelConfiguration
|
459
|
+
attr_accessor maximum_sub_channels: ::Integer
|
460
|
+
attr_accessor target_memberships_per_sub_channel: ::Integer
|
461
|
+
attr_accessor minimum_membership_percentage: ::Integer
|
462
|
+
SENSITIVE: []
|
463
|
+
end
|
464
|
+
|
465
|
+
class ExpirationSettings
|
466
|
+
attr_accessor expiration_days: ::Integer
|
467
|
+
attr_accessor expiration_criterion: ("CREATED_TIMESTAMP" | "LAST_MESSAGE_TIMESTAMP")
|
468
|
+
SENSITIVE: []
|
469
|
+
end
|
470
|
+
|
471
|
+
class ForbiddenException
|
472
|
+
attr_accessor code: ("BadRequest" | "Conflict" | "Forbidden" | "NotFound" | "PreconditionFailed" | "ResourceLimitExceeded" | "ServiceFailure" | "AccessDenied" | "ServiceUnavailable" | "Throttled" | "Throttling" | "Unauthorized" | "Unprocessable" | "VoiceConnectorGroupAssociationsExist" | "PhoneNumberAssociationsExist")
|
473
|
+
attr_accessor message: ::String
|
474
|
+
SENSITIVE: []
|
475
|
+
end
|
476
|
+
|
477
|
+
class GetChannelMembershipPreferencesRequest
|
478
|
+
attr_accessor channel_arn: ::String
|
479
|
+
attr_accessor member_arn: ::String
|
480
|
+
attr_accessor chime_bearer: ::String
|
481
|
+
SENSITIVE: []
|
482
|
+
end
|
483
|
+
|
484
|
+
class GetChannelMembershipPreferencesResponse
|
485
|
+
attr_accessor channel_arn: ::String
|
486
|
+
attr_accessor member: Types::Identity
|
487
|
+
attr_accessor preferences: Types::ChannelMembershipPreferences
|
488
|
+
SENSITIVE: []
|
489
|
+
end
|
490
|
+
|
491
|
+
class GetChannelMessageRequest
|
492
|
+
attr_accessor channel_arn: ::String
|
493
|
+
attr_accessor message_id: ::String
|
494
|
+
attr_accessor chime_bearer: ::String
|
495
|
+
attr_accessor sub_channel_id: ::String
|
496
|
+
SENSITIVE: []
|
497
|
+
end
|
498
|
+
|
499
|
+
class GetChannelMessageResponse
|
500
|
+
attr_accessor channel_message: Types::ChannelMessage
|
501
|
+
SENSITIVE: []
|
502
|
+
end
|
503
|
+
|
504
|
+
class GetChannelMessageStatusRequest
|
505
|
+
attr_accessor channel_arn: ::String
|
506
|
+
attr_accessor message_id: ::String
|
507
|
+
attr_accessor chime_bearer: ::String
|
508
|
+
attr_accessor sub_channel_id: ::String
|
509
|
+
SENSITIVE: []
|
510
|
+
end
|
511
|
+
|
512
|
+
class GetChannelMessageStatusResponse
|
513
|
+
attr_accessor status: Types::ChannelMessageStatusStructure
|
514
|
+
SENSITIVE: []
|
515
|
+
end
|
516
|
+
|
517
|
+
class GetMessagingSessionEndpointRequest < Aws::EmptyStructure
|
518
|
+
end
|
519
|
+
|
520
|
+
class GetMessagingSessionEndpointResponse
|
521
|
+
attr_accessor endpoint: Types::MessagingSessionEndpoint
|
522
|
+
SENSITIVE: []
|
523
|
+
end
|
524
|
+
|
525
|
+
class GetMessagingStreamingConfigurationsRequest
|
526
|
+
attr_accessor app_instance_arn: ::String
|
527
|
+
SENSITIVE: []
|
528
|
+
end
|
529
|
+
|
530
|
+
class GetMessagingStreamingConfigurationsResponse
|
531
|
+
attr_accessor streaming_configurations: ::Array[Types::StreamingConfiguration]
|
532
|
+
SENSITIVE: []
|
533
|
+
end
|
534
|
+
|
535
|
+
class Identity
|
536
|
+
attr_accessor arn: ::String
|
537
|
+
attr_accessor name: ::String
|
538
|
+
SENSITIVE: [:name]
|
539
|
+
end
|
540
|
+
|
541
|
+
class LambdaConfiguration
|
542
|
+
attr_accessor resource_arn: ::String
|
543
|
+
attr_accessor invocation_type: ("ASYNC")
|
544
|
+
SENSITIVE: []
|
545
|
+
end
|
546
|
+
|
547
|
+
class ListChannelBansRequest
|
548
|
+
attr_accessor channel_arn: ::String
|
549
|
+
attr_accessor max_results: ::Integer
|
550
|
+
attr_accessor next_token: ::String
|
551
|
+
attr_accessor chime_bearer: ::String
|
552
|
+
SENSITIVE: [:next_token]
|
553
|
+
end
|
554
|
+
|
555
|
+
class ListChannelBansResponse
|
556
|
+
attr_accessor channel_arn: ::String
|
557
|
+
attr_accessor next_token: ::String
|
558
|
+
attr_accessor channel_bans: ::Array[Types::ChannelBanSummary]
|
559
|
+
SENSITIVE: [:next_token]
|
560
|
+
end
|
561
|
+
|
562
|
+
class ListChannelFlowsRequest
|
563
|
+
attr_accessor app_instance_arn: ::String
|
564
|
+
attr_accessor max_results: ::Integer
|
565
|
+
attr_accessor next_token: ::String
|
566
|
+
SENSITIVE: [:next_token]
|
567
|
+
end
|
568
|
+
|
569
|
+
class ListChannelFlowsResponse
|
570
|
+
attr_accessor channel_flows: ::Array[Types::ChannelFlowSummary]
|
571
|
+
attr_accessor next_token: ::String
|
572
|
+
SENSITIVE: [:next_token]
|
573
|
+
end
|
574
|
+
|
575
|
+
class ListChannelMembershipsForAppInstanceUserRequest
|
576
|
+
attr_accessor app_instance_user_arn: ::String
|
577
|
+
attr_accessor max_results: ::Integer
|
578
|
+
attr_accessor next_token: ::String
|
579
|
+
attr_accessor chime_bearer: ::String
|
580
|
+
SENSITIVE: [:next_token]
|
581
|
+
end
|
582
|
+
|
583
|
+
class ListChannelMembershipsForAppInstanceUserResponse
|
584
|
+
attr_accessor channel_memberships: ::Array[Types::ChannelMembershipForAppInstanceUserSummary]
|
585
|
+
attr_accessor next_token: ::String
|
586
|
+
SENSITIVE: [:next_token]
|
587
|
+
end
|
588
|
+
|
589
|
+
class ListChannelMembershipsRequest
|
590
|
+
attr_accessor channel_arn: ::String
|
591
|
+
attr_accessor type: ("DEFAULT" | "HIDDEN")
|
592
|
+
attr_accessor max_results: ::Integer
|
593
|
+
attr_accessor next_token: ::String
|
594
|
+
attr_accessor chime_bearer: ::String
|
595
|
+
attr_accessor sub_channel_id: ::String
|
596
|
+
SENSITIVE: [:next_token]
|
597
|
+
end
|
598
|
+
|
599
|
+
class ListChannelMembershipsResponse
|
600
|
+
attr_accessor channel_arn: ::String
|
601
|
+
attr_accessor channel_memberships: ::Array[Types::ChannelMembershipSummary]
|
602
|
+
attr_accessor next_token: ::String
|
603
|
+
SENSITIVE: [:next_token]
|
604
|
+
end
|
605
|
+
|
606
|
+
class ListChannelMessagesRequest
|
607
|
+
attr_accessor channel_arn: ::String
|
608
|
+
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
609
|
+
attr_accessor not_before: ::Time
|
610
|
+
attr_accessor not_after: ::Time
|
611
|
+
attr_accessor max_results: ::Integer
|
612
|
+
attr_accessor next_token: ::String
|
613
|
+
attr_accessor chime_bearer: ::String
|
614
|
+
attr_accessor sub_channel_id: ::String
|
615
|
+
SENSITIVE: [:next_token]
|
616
|
+
end
|
617
|
+
|
618
|
+
class ListChannelMessagesResponse
|
619
|
+
attr_accessor channel_arn: ::String
|
620
|
+
attr_accessor next_token: ::String
|
621
|
+
attr_accessor channel_messages: ::Array[Types::ChannelMessageSummary]
|
622
|
+
attr_accessor sub_channel_id: ::String
|
623
|
+
SENSITIVE: [:next_token]
|
624
|
+
end
|
625
|
+
|
626
|
+
class ListChannelModeratorsRequest
|
627
|
+
attr_accessor channel_arn: ::String
|
628
|
+
attr_accessor max_results: ::Integer
|
629
|
+
attr_accessor next_token: ::String
|
630
|
+
attr_accessor chime_bearer: ::String
|
631
|
+
SENSITIVE: [:next_token]
|
632
|
+
end
|
633
|
+
|
634
|
+
class ListChannelModeratorsResponse
|
635
|
+
attr_accessor channel_arn: ::String
|
636
|
+
attr_accessor next_token: ::String
|
637
|
+
attr_accessor channel_moderators: ::Array[Types::ChannelModeratorSummary]
|
638
|
+
SENSITIVE: [:next_token]
|
639
|
+
end
|
640
|
+
|
641
|
+
class ListChannelsAssociatedWithChannelFlowRequest
|
642
|
+
attr_accessor channel_flow_arn: ::String
|
643
|
+
attr_accessor max_results: ::Integer
|
644
|
+
attr_accessor next_token: ::String
|
645
|
+
SENSITIVE: [:next_token]
|
646
|
+
end
|
647
|
+
|
648
|
+
class ListChannelsAssociatedWithChannelFlowResponse
|
649
|
+
attr_accessor channels: ::Array[Types::ChannelAssociatedWithFlowSummary]
|
650
|
+
attr_accessor next_token: ::String
|
651
|
+
SENSITIVE: [:next_token]
|
652
|
+
end
|
653
|
+
|
654
|
+
class ListChannelsModeratedByAppInstanceUserRequest
|
655
|
+
attr_accessor app_instance_user_arn: ::String
|
656
|
+
attr_accessor max_results: ::Integer
|
657
|
+
attr_accessor next_token: ::String
|
658
|
+
attr_accessor chime_bearer: ::String
|
659
|
+
SENSITIVE: [:next_token]
|
660
|
+
end
|
661
|
+
|
662
|
+
class ListChannelsModeratedByAppInstanceUserResponse
|
663
|
+
attr_accessor channels: ::Array[Types::ChannelModeratedByAppInstanceUserSummary]
|
664
|
+
attr_accessor next_token: ::String
|
665
|
+
SENSITIVE: [:next_token]
|
666
|
+
end
|
667
|
+
|
668
|
+
class ListChannelsRequest
|
669
|
+
attr_accessor app_instance_arn: ::String
|
670
|
+
attr_accessor privacy: ("PUBLIC" | "PRIVATE")
|
671
|
+
attr_accessor max_results: ::Integer
|
672
|
+
attr_accessor next_token: ::String
|
673
|
+
attr_accessor chime_bearer: ::String
|
674
|
+
SENSITIVE: [:next_token]
|
675
|
+
end
|
676
|
+
|
677
|
+
class ListChannelsResponse
|
678
|
+
attr_accessor channels: ::Array[Types::ChannelSummary]
|
679
|
+
attr_accessor next_token: ::String
|
680
|
+
SENSITIVE: [:next_token]
|
681
|
+
end
|
682
|
+
|
683
|
+
class ListSubChannelsRequest
|
684
|
+
attr_accessor channel_arn: ::String
|
685
|
+
attr_accessor chime_bearer: ::String
|
686
|
+
attr_accessor max_results: ::Integer
|
687
|
+
attr_accessor next_token: ::String
|
688
|
+
SENSITIVE: [:next_token]
|
689
|
+
end
|
690
|
+
|
691
|
+
class ListSubChannelsResponse
|
692
|
+
attr_accessor channel_arn: ::String
|
693
|
+
attr_accessor sub_channels: ::Array[Types::SubChannelSummary]
|
694
|
+
attr_accessor next_token: ::String
|
695
|
+
SENSITIVE: [:next_token]
|
696
|
+
end
|
697
|
+
|
698
|
+
class ListTagsForResourceRequest
|
699
|
+
attr_accessor resource_arn: ::String
|
700
|
+
SENSITIVE: []
|
701
|
+
end
|
702
|
+
|
703
|
+
class ListTagsForResourceResponse
|
704
|
+
attr_accessor tags: ::Array[Types::Tag]
|
705
|
+
SENSITIVE: []
|
706
|
+
end
|
707
|
+
|
708
|
+
class MessageAttributeValue
|
709
|
+
attr_accessor string_values: ::Array[::String]
|
710
|
+
SENSITIVE: []
|
711
|
+
end
|
712
|
+
|
713
|
+
class MessagingSessionEndpoint
|
714
|
+
attr_accessor url: ::String
|
715
|
+
SENSITIVE: []
|
716
|
+
end
|
717
|
+
|
718
|
+
class NotFoundException
|
719
|
+
attr_accessor code: ("BadRequest" | "Conflict" | "Forbidden" | "NotFound" | "PreconditionFailed" | "ResourceLimitExceeded" | "ServiceFailure" | "AccessDenied" | "ServiceUnavailable" | "Throttled" | "Throttling" | "Unauthorized" | "Unprocessable" | "VoiceConnectorGroupAssociationsExist" | "PhoneNumberAssociationsExist")
|
720
|
+
attr_accessor message: ::String
|
721
|
+
SENSITIVE: []
|
722
|
+
end
|
723
|
+
|
724
|
+
class Processor
|
725
|
+
attr_accessor name: ::String
|
726
|
+
attr_accessor configuration: Types::ProcessorConfiguration
|
727
|
+
attr_accessor execution_order: ::Integer
|
728
|
+
attr_accessor fallback_action: ("CONTINUE" | "ABORT")
|
729
|
+
SENSITIVE: [:name]
|
730
|
+
end
|
731
|
+
|
732
|
+
class ProcessorConfiguration
|
733
|
+
attr_accessor lambda: Types::LambdaConfiguration
|
734
|
+
SENSITIVE: []
|
735
|
+
end
|
736
|
+
|
737
|
+
class PushNotificationConfiguration
|
738
|
+
attr_accessor title: ::String
|
739
|
+
attr_accessor body: ::String
|
740
|
+
attr_accessor type: ("DEFAULT" | "VOIP")
|
741
|
+
SENSITIVE: [:title, :body]
|
742
|
+
end
|
743
|
+
|
744
|
+
class PushNotificationPreferences
|
745
|
+
attr_accessor allow_notifications: ("ALL" | "NONE" | "FILTERED")
|
746
|
+
attr_accessor filter_rule: ::String
|
747
|
+
SENSITIVE: [:filter_rule]
|
748
|
+
end
|
749
|
+
|
750
|
+
class PutChannelExpirationSettingsRequest
|
751
|
+
attr_accessor channel_arn: ::String
|
752
|
+
attr_accessor chime_bearer: ::String
|
753
|
+
attr_accessor expiration_settings: Types::ExpirationSettings
|
754
|
+
SENSITIVE: []
|
755
|
+
end
|
756
|
+
|
757
|
+
class PutChannelExpirationSettingsResponse
|
758
|
+
attr_accessor channel_arn: ::String
|
759
|
+
attr_accessor expiration_settings: Types::ExpirationSettings
|
760
|
+
SENSITIVE: []
|
761
|
+
end
|
762
|
+
|
763
|
+
class PutChannelMembershipPreferencesRequest
|
764
|
+
attr_accessor channel_arn: ::String
|
765
|
+
attr_accessor member_arn: ::String
|
766
|
+
attr_accessor chime_bearer: ::String
|
767
|
+
attr_accessor preferences: Types::ChannelMembershipPreferences
|
768
|
+
SENSITIVE: []
|
769
|
+
end
|
770
|
+
|
771
|
+
class PutChannelMembershipPreferencesResponse
|
772
|
+
attr_accessor channel_arn: ::String
|
773
|
+
attr_accessor member: Types::Identity
|
774
|
+
attr_accessor preferences: Types::ChannelMembershipPreferences
|
775
|
+
SENSITIVE: []
|
776
|
+
end
|
777
|
+
|
778
|
+
class PutMessagingStreamingConfigurationsRequest
|
779
|
+
attr_accessor app_instance_arn: ::String
|
780
|
+
attr_accessor streaming_configurations: ::Array[Types::StreamingConfiguration]
|
781
|
+
SENSITIVE: []
|
782
|
+
end
|
783
|
+
|
784
|
+
class PutMessagingStreamingConfigurationsResponse
|
785
|
+
attr_accessor streaming_configurations: ::Array[Types::StreamingConfiguration]
|
786
|
+
SENSITIVE: []
|
787
|
+
end
|
788
|
+
|
789
|
+
class RedactChannelMessageRequest
|
790
|
+
attr_accessor channel_arn: ::String
|
791
|
+
attr_accessor message_id: ::String
|
792
|
+
attr_accessor chime_bearer: ::String
|
793
|
+
attr_accessor sub_channel_id: ::String
|
794
|
+
SENSITIVE: []
|
795
|
+
end
|
796
|
+
|
797
|
+
class RedactChannelMessageResponse
|
798
|
+
attr_accessor channel_arn: ::String
|
799
|
+
attr_accessor message_id: ::String
|
800
|
+
attr_accessor sub_channel_id: ::String
|
801
|
+
SENSITIVE: []
|
802
|
+
end
|
803
|
+
|
804
|
+
class ResourceLimitExceededException
|
805
|
+
attr_accessor code: ("BadRequest" | "Conflict" | "Forbidden" | "NotFound" | "PreconditionFailed" | "ResourceLimitExceeded" | "ServiceFailure" | "AccessDenied" | "ServiceUnavailable" | "Throttled" | "Throttling" | "Unauthorized" | "Unprocessable" | "VoiceConnectorGroupAssociationsExist" | "PhoneNumberAssociationsExist")
|
806
|
+
attr_accessor message: ::String
|
807
|
+
SENSITIVE: []
|
808
|
+
end
|
809
|
+
|
810
|
+
class SearchChannelsRequest
|
811
|
+
attr_accessor chime_bearer: ::String
|
812
|
+
attr_accessor fields: ::Array[Types::SearchField]
|
813
|
+
attr_accessor max_results: ::Integer
|
814
|
+
attr_accessor next_token: ::String
|
815
|
+
SENSITIVE: [:next_token]
|
816
|
+
end
|
817
|
+
|
818
|
+
class SearchChannelsResponse
|
819
|
+
attr_accessor channels: ::Array[Types::ChannelSummary]
|
820
|
+
attr_accessor next_token: ::String
|
821
|
+
SENSITIVE: [:next_token]
|
822
|
+
end
|
823
|
+
|
824
|
+
class SearchField
|
825
|
+
attr_accessor key: ("MEMBERS")
|
826
|
+
attr_accessor values: ::Array[::String]
|
827
|
+
attr_accessor operator: ("EQUALS" | "INCLUDES")
|
828
|
+
SENSITIVE: []
|
829
|
+
end
|
830
|
+
|
831
|
+
class SendChannelMessageRequest
|
832
|
+
attr_accessor channel_arn: ::String
|
833
|
+
attr_accessor content: ::String
|
834
|
+
attr_accessor type: ("STANDARD" | "CONTROL")
|
835
|
+
attr_accessor persistence: ("PERSISTENT" | "NON_PERSISTENT")
|
836
|
+
attr_accessor metadata: ::String
|
837
|
+
attr_accessor client_request_token: ::String
|
838
|
+
attr_accessor chime_bearer: ::String
|
839
|
+
attr_accessor push_notification: Types::PushNotificationConfiguration
|
840
|
+
attr_accessor message_attributes: ::Hash[::String, Types::MessageAttributeValue]
|
841
|
+
attr_accessor sub_channel_id: ::String
|
842
|
+
attr_accessor content_type: ::String
|
843
|
+
attr_accessor target: ::Array[Types::Target]
|
844
|
+
SENSITIVE: [:content, :metadata, :client_request_token, :content_type]
|
845
|
+
end
|
846
|
+
|
847
|
+
class SendChannelMessageResponse
|
848
|
+
attr_accessor channel_arn: ::String
|
849
|
+
attr_accessor message_id: ::String
|
850
|
+
attr_accessor status: Types::ChannelMessageStatusStructure
|
851
|
+
attr_accessor sub_channel_id: ::String
|
852
|
+
SENSITIVE: []
|
853
|
+
end
|
854
|
+
|
855
|
+
class ServiceFailureException
|
856
|
+
attr_accessor code: ("BadRequest" | "Conflict" | "Forbidden" | "NotFound" | "PreconditionFailed" | "ResourceLimitExceeded" | "ServiceFailure" | "AccessDenied" | "ServiceUnavailable" | "Throttled" | "Throttling" | "Unauthorized" | "Unprocessable" | "VoiceConnectorGroupAssociationsExist" | "PhoneNumberAssociationsExist")
|
857
|
+
attr_accessor message: ::String
|
858
|
+
SENSITIVE: []
|
859
|
+
end
|
860
|
+
|
861
|
+
class ServiceUnavailableException
|
862
|
+
attr_accessor code: ("BadRequest" | "Conflict" | "Forbidden" | "NotFound" | "PreconditionFailed" | "ResourceLimitExceeded" | "ServiceFailure" | "AccessDenied" | "ServiceUnavailable" | "Throttled" | "Throttling" | "Unauthorized" | "Unprocessable" | "VoiceConnectorGroupAssociationsExist" | "PhoneNumberAssociationsExist")
|
863
|
+
attr_accessor message: ::String
|
864
|
+
SENSITIVE: []
|
865
|
+
end
|
866
|
+
|
867
|
+
class StreamingConfiguration
|
868
|
+
attr_accessor data_type: ("Channel" | "ChannelMessage")
|
869
|
+
attr_accessor resource_arn: ::String
|
870
|
+
SENSITIVE: []
|
871
|
+
end
|
872
|
+
|
873
|
+
class SubChannelSummary
|
874
|
+
attr_accessor sub_channel_id: ::String
|
875
|
+
attr_accessor membership_count: ::Integer
|
876
|
+
SENSITIVE: []
|
877
|
+
end
|
878
|
+
|
879
|
+
class Tag
|
880
|
+
attr_accessor key: ::String
|
881
|
+
attr_accessor value: ::String
|
882
|
+
SENSITIVE: [:key, :value]
|
883
|
+
end
|
884
|
+
|
885
|
+
class TagResourceRequest
|
886
|
+
attr_accessor resource_arn: ::String
|
887
|
+
attr_accessor tags: ::Array[Types::Tag]
|
888
|
+
SENSITIVE: []
|
889
|
+
end
|
890
|
+
|
891
|
+
class Target
|
892
|
+
attr_accessor member_arn: ::String
|
893
|
+
SENSITIVE: []
|
894
|
+
end
|
895
|
+
|
896
|
+
class ThrottledClientException
|
897
|
+
attr_accessor code: ("BadRequest" | "Conflict" | "Forbidden" | "NotFound" | "PreconditionFailed" | "ResourceLimitExceeded" | "ServiceFailure" | "AccessDenied" | "ServiceUnavailable" | "Throttled" | "Throttling" | "Unauthorized" | "Unprocessable" | "VoiceConnectorGroupAssociationsExist" | "PhoneNumberAssociationsExist")
|
898
|
+
attr_accessor message: ::String
|
899
|
+
SENSITIVE: []
|
900
|
+
end
|
901
|
+
|
902
|
+
class UnauthorizedClientException
|
903
|
+
attr_accessor code: ("BadRequest" | "Conflict" | "Forbidden" | "NotFound" | "PreconditionFailed" | "ResourceLimitExceeded" | "ServiceFailure" | "AccessDenied" | "ServiceUnavailable" | "Throttled" | "Throttling" | "Unauthorized" | "Unprocessable" | "VoiceConnectorGroupAssociationsExist" | "PhoneNumberAssociationsExist")
|
904
|
+
attr_accessor message: ::String
|
905
|
+
SENSITIVE: []
|
906
|
+
end
|
907
|
+
|
908
|
+
class UntagResourceRequest
|
909
|
+
attr_accessor resource_arn: ::String
|
910
|
+
attr_accessor tag_keys: ::Array[::String]
|
911
|
+
SENSITIVE: []
|
912
|
+
end
|
913
|
+
|
914
|
+
class UpdateChannelFlowRequest
|
915
|
+
attr_accessor channel_flow_arn: ::String
|
916
|
+
attr_accessor processors: ::Array[Types::Processor]
|
917
|
+
attr_accessor name: ::String
|
918
|
+
SENSITIVE: [:name]
|
919
|
+
end
|
920
|
+
|
921
|
+
class UpdateChannelFlowResponse
|
922
|
+
attr_accessor channel_flow_arn: ::String
|
923
|
+
SENSITIVE: []
|
924
|
+
end
|
925
|
+
|
926
|
+
class UpdateChannelMessageRequest
|
927
|
+
attr_accessor channel_arn: ::String
|
928
|
+
attr_accessor message_id: ::String
|
929
|
+
attr_accessor content: ::String
|
930
|
+
attr_accessor metadata: ::String
|
931
|
+
attr_accessor chime_bearer: ::String
|
932
|
+
attr_accessor sub_channel_id: ::String
|
933
|
+
attr_accessor content_type: ::String
|
934
|
+
SENSITIVE: [:content, :metadata, :content_type]
|
935
|
+
end
|
936
|
+
|
937
|
+
class UpdateChannelMessageResponse
|
938
|
+
attr_accessor channel_arn: ::String
|
939
|
+
attr_accessor message_id: ::String
|
940
|
+
attr_accessor status: Types::ChannelMessageStatusStructure
|
941
|
+
attr_accessor sub_channel_id: ::String
|
942
|
+
SENSITIVE: []
|
943
|
+
end
|
944
|
+
|
945
|
+
class UpdateChannelReadMarkerRequest
|
946
|
+
attr_accessor channel_arn: ::String
|
947
|
+
attr_accessor chime_bearer: ::String
|
948
|
+
SENSITIVE: []
|
949
|
+
end
|
950
|
+
|
951
|
+
class UpdateChannelReadMarkerResponse
|
952
|
+
attr_accessor channel_arn: ::String
|
953
|
+
SENSITIVE: []
|
954
|
+
end
|
955
|
+
|
956
|
+
class UpdateChannelRequest
|
957
|
+
attr_accessor channel_arn: ::String
|
958
|
+
attr_accessor name: ::String
|
959
|
+
attr_accessor mode: ("UNRESTRICTED" | "RESTRICTED")
|
960
|
+
attr_accessor metadata: ::String
|
961
|
+
attr_accessor chime_bearer: ::String
|
962
|
+
SENSITIVE: [:name, :metadata]
|
963
|
+
end
|
964
|
+
|
965
|
+
class UpdateChannelResponse
|
966
|
+
attr_accessor channel_arn: ::String
|
967
|
+
SENSITIVE: []
|
968
|
+
end
|
969
|
+
end
|
970
|
+
end
|