aws-sdk-ivschat 1.26.0 → 1.28.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/types.rbs CHANGED
@@ -26,61 +26,61 @@ module Aws::Ivschat
26
26
  end
27
27
 
28
28
  class CreateChatTokenRequest
29
- attr_accessor attributes: ::Hash[::String, ::String]
30
- attr_accessor capabilities: ::Array[("SEND_MESSAGE" | "DISCONNECT_USER" | "DELETE_MESSAGE")]
31
29
  attr_accessor room_identifier: ::String
32
- attr_accessor session_duration_in_minutes: ::Integer
33
30
  attr_accessor user_id: ::String
34
- SENSITIVE: [:attributes, :user_id]
31
+ attr_accessor capabilities: ::Array[("SEND_MESSAGE" | "DISCONNECT_USER" | "DELETE_MESSAGE")]
32
+ attr_accessor session_duration_in_minutes: ::Integer
33
+ attr_accessor attributes: ::Hash[::String, ::String]
34
+ SENSITIVE: [:user_id, :attributes]
35
35
  end
36
36
 
37
37
  class CreateChatTokenResponse
38
- attr_accessor session_expiration_time: ::Time
39
38
  attr_accessor token: ::String
40
39
  attr_accessor token_expiration_time: ::Time
40
+ attr_accessor session_expiration_time: ::Time
41
41
  SENSITIVE: [:token]
42
42
  end
43
43
 
44
44
  class CreateLoggingConfigurationRequest
45
- attr_accessor destination_configuration: Types::DestinationConfiguration
46
45
  attr_accessor name: ::String
46
+ attr_accessor destination_configuration: Types::DestinationConfiguration
47
47
  attr_accessor tags: ::Hash[::String, ::String]
48
48
  SENSITIVE: []
49
49
  end
50
50
 
51
51
  class CreateLoggingConfigurationResponse
52
52
  attr_accessor arn: ::String
53
- attr_accessor create_time: ::Time
54
- attr_accessor destination_configuration: Types::DestinationConfiguration
55
53
  attr_accessor id: ::String
54
+ attr_accessor create_time: ::Time
55
+ attr_accessor update_time: ::Time
56
56
  attr_accessor name: ::String
57
+ attr_accessor destination_configuration: Types::DestinationConfiguration
57
58
  attr_accessor state: ("ACTIVE")
58
59
  attr_accessor tags: ::Hash[::String, ::String]
59
- attr_accessor update_time: ::Time
60
60
  SENSITIVE: []
61
61
  end
62
62
 
63
63
  class CreateRoomRequest
64
- attr_accessor logging_configuration_identifiers: ::Array[::String]
65
- attr_accessor maximum_message_length: ::Integer
64
+ attr_accessor name: ::String
66
65
  attr_accessor maximum_message_rate_per_second: ::Integer
66
+ attr_accessor maximum_message_length: ::Integer
67
67
  attr_accessor message_review_handler: Types::MessageReviewHandler
68
- attr_accessor name: ::String
69
68
  attr_accessor tags: ::Hash[::String, ::String]
69
+ attr_accessor logging_configuration_identifiers: ::Array[::String]
70
70
  SENSITIVE: []
71
71
  end
72
72
 
73
73
  class CreateRoomResponse
74
74
  attr_accessor arn: ::String
75
- attr_accessor create_time: ::Time
76
75
  attr_accessor id: ::String
77
- attr_accessor logging_configuration_identifiers: ::Array[::String]
78
- attr_accessor maximum_message_length: ::Integer
76
+ attr_accessor name: ::String
77
+ attr_accessor create_time: ::Time
78
+ attr_accessor update_time: ::Time
79
79
  attr_accessor maximum_message_rate_per_second: ::Integer
80
+ attr_accessor maximum_message_length: ::Integer
80
81
  attr_accessor message_review_handler: Types::MessageReviewHandler
81
- attr_accessor name: ::String
82
82
  attr_accessor tags: ::Hash[::String, ::String]
83
- attr_accessor update_time: ::Time
83
+ attr_accessor logging_configuration_identifiers: ::Array[::String]
84
84
  SENSITIVE: []
85
85
  end
86
86
 
@@ -90,9 +90,9 @@ module Aws::Ivschat
90
90
  end
91
91
 
92
92
  class DeleteMessageRequest
93
+ attr_accessor room_identifier: ::String
93
94
  attr_accessor id: ::String
94
95
  attr_accessor reason: ::String
95
- attr_accessor room_identifier: ::String
96
96
  SENSITIVE: []
97
97
  end
98
98
 
@@ -107,26 +107,26 @@ module Aws::Ivschat
107
107
  end
108
108
 
109
109
  class DestinationConfiguration
110
+ attr_accessor s3: Types::S3DestinationConfiguration
110
111
  attr_accessor cloud_watch_logs: Types::CloudWatchLogsDestinationConfiguration
111
112
  attr_accessor firehose: Types::FirehoseDestinationConfiguration
112
- attr_accessor s3: Types::S3DestinationConfiguration
113
113
  attr_accessor unknown: untyped
114
114
  SENSITIVE: []
115
115
 
116
+ class S3 < DestinationConfiguration
117
+ end
116
118
  class CloudWatchLogs < DestinationConfiguration
117
119
  end
118
120
  class Firehose < DestinationConfiguration
119
121
  end
120
- class S3 < DestinationConfiguration
121
- end
122
122
  class Unknown < DestinationConfiguration
123
123
  end
124
124
  end
125
125
 
126
126
  class DisconnectUserRequest
127
- attr_accessor reason: ::String
128
127
  attr_accessor room_identifier: ::String
129
128
  attr_accessor user_id: ::String
129
+ attr_accessor reason: ::String
130
130
  SENSITIVE: [:user_id]
131
131
  end
132
132
 
@@ -145,13 +145,13 @@ module Aws::Ivschat
145
145
 
146
146
  class GetLoggingConfigurationResponse
147
147
  attr_accessor arn: ::String
148
- attr_accessor create_time: ::Time
149
- attr_accessor destination_configuration: Types::DestinationConfiguration
150
148
  attr_accessor id: ::String
149
+ attr_accessor create_time: ::Time
150
+ attr_accessor update_time: ::Time
151
151
  attr_accessor name: ::String
152
+ attr_accessor destination_configuration: Types::DestinationConfiguration
152
153
  attr_accessor state: ("CREATING" | "CREATE_FAILED" | "DELETING" | "DELETE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "ACTIVE")
153
154
  attr_accessor tags: ::Hash[::String, ::String]
154
- attr_accessor update_time: ::Time
155
155
  SENSITIVE: []
156
156
  end
157
157
 
@@ -162,15 +162,15 @@ module Aws::Ivschat
162
162
 
163
163
  class GetRoomResponse
164
164
  attr_accessor arn: ::String
165
- attr_accessor create_time: ::Time
166
165
  attr_accessor id: ::String
167
- attr_accessor logging_configuration_identifiers: ::Array[::String]
168
- attr_accessor maximum_message_length: ::Integer
166
+ attr_accessor name: ::String
167
+ attr_accessor create_time: ::Time
168
+ attr_accessor update_time: ::Time
169
169
  attr_accessor maximum_message_rate_per_second: ::Integer
170
+ attr_accessor maximum_message_length: ::Integer
170
171
  attr_accessor message_review_handler: Types::MessageReviewHandler
171
- attr_accessor name: ::String
172
172
  attr_accessor tags: ::Hash[::String, ::String]
173
- attr_accessor update_time: ::Time
173
+ attr_accessor logging_configuration_identifiers: ::Array[::String]
174
174
  SENSITIVE: []
175
175
  end
176
176
 
@@ -180,8 +180,8 @@ module Aws::Ivschat
180
180
  end
181
181
 
182
182
  class ListLoggingConfigurationsRequest
183
- attr_accessor max_results: ::Integer
184
183
  attr_accessor next_token: ::String
184
+ attr_accessor max_results: ::Integer
185
185
  SENSITIVE: []
186
186
  end
187
187
 
@@ -192,17 +192,17 @@ module Aws::Ivschat
192
192
  end
193
193
 
194
194
  class ListRoomsRequest
195
- attr_accessor logging_configuration_identifier: ::String
196
- attr_accessor max_results: ::Integer
197
- attr_accessor message_review_handler_uri: ::String
198
195
  attr_accessor name: ::String
199
196
  attr_accessor next_token: ::String
197
+ attr_accessor max_results: ::Integer
198
+ attr_accessor message_review_handler_uri: ::String
199
+ attr_accessor logging_configuration_identifier: ::String
200
200
  SENSITIVE: []
201
201
  end
202
202
 
203
203
  class ListRoomsResponse
204
- attr_accessor next_token: ::String
205
204
  attr_accessor rooms: ::Array[Types::RoomSummary]
205
+ attr_accessor next_token: ::String
206
206
  SENSITIVE: []
207
207
  end
208
208
 
@@ -218,19 +218,19 @@ module Aws::Ivschat
218
218
 
219
219
  class LoggingConfigurationSummary
220
220
  attr_accessor arn: ::String
221
- attr_accessor create_time: ::Time
222
- attr_accessor destination_configuration: Types::DestinationConfiguration
223
221
  attr_accessor id: ::String
222
+ attr_accessor create_time: ::Time
223
+ attr_accessor update_time: ::Time
224
224
  attr_accessor name: ::String
225
+ attr_accessor destination_configuration: Types::DestinationConfiguration
225
226
  attr_accessor state: ("CREATING" | "CREATE_FAILED" | "DELETING" | "DELETE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "ACTIVE")
226
227
  attr_accessor tags: ::Hash[::String, ::String]
227
- attr_accessor update_time: ::Time
228
228
  SENSITIVE: []
229
229
  end
230
230
 
231
231
  class MessageReviewHandler
232
- attr_accessor fallback_result: ("ALLOW" | "DENY")
233
232
  attr_accessor uri: ::String
233
+ attr_accessor fallback_result: ("ALLOW" | "DENY")
234
234
  SENSITIVE: []
235
235
  end
236
236
 
@@ -248,13 +248,13 @@ module Aws::Ivschat
248
248
 
249
249
  class RoomSummary
250
250
  attr_accessor arn: ::String
251
- attr_accessor create_time: ::Time
252
251
  attr_accessor id: ::String
253
- attr_accessor logging_configuration_identifiers: ::Array[::String]
254
- attr_accessor message_review_handler: Types::MessageReviewHandler
255
252
  attr_accessor name: ::String
256
- attr_accessor tags: ::Hash[::String, ::String]
253
+ attr_accessor message_review_handler: Types::MessageReviewHandler
254
+ attr_accessor create_time: ::Time
257
255
  attr_accessor update_time: ::Time
256
+ attr_accessor tags: ::Hash[::String, ::String]
257
+ attr_accessor logging_configuration_identifiers: ::Array[::String]
258
258
  SENSITIVE: []
259
259
  end
260
260
 
@@ -264,9 +264,9 @@ module Aws::Ivschat
264
264
  end
265
265
 
266
266
  class SendEventRequest
267
- attr_accessor attributes: ::Hash[::String, ::String]
268
- attr_accessor event_name: ::String
269
267
  attr_accessor room_identifier: ::String
268
+ attr_accessor event_name: ::String
269
+ attr_accessor attributes: ::Hash[::String, ::String]
270
270
  SENSITIVE: []
271
271
  end
272
272
 
@@ -276,10 +276,10 @@ module Aws::Ivschat
276
276
  end
277
277
 
278
278
  class ServiceQuotaExceededException
279
- attr_accessor limit: ::Integer
280
279
  attr_accessor message: ::String
281
280
  attr_accessor resource_id: ::String
282
281
  attr_accessor resource_type: ("ROOM")
282
+ attr_accessor limit: ::Integer
283
283
  SENSITIVE: []
284
284
  end
285
285
 
@@ -293,10 +293,10 @@ module Aws::Ivschat
293
293
  end
294
294
 
295
295
  class ThrottlingException
296
- attr_accessor limit: ::Integer
297
296
  attr_accessor message: ::String
298
297
  attr_accessor resource_id: ::String
299
298
  attr_accessor resource_type: ("ROOM")
299
+ attr_accessor limit: ::Integer
300
300
  SENSITIVE: []
301
301
  end
302
302
 
@@ -310,58 +310,58 @@ module Aws::Ivschat
310
310
  end
311
311
 
312
312
  class UpdateLoggingConfigurationRequest
313
- attr_accessor destination_configuration: Types::DestinationConfiguration
314
313
  attr_accessor identifier: ::String
315
314
  attr_accessor name: ::String
315
+ attr_accessor destination_configuration: Types::DestinationConfiguration
316
316
  SENSITIVE: []
317
317
  end
318
318
 
319
319
  class UpdateLoggingConfigurationResponse
320
320
  attr_accessor arn: ::String
321
- attr_accessor create_time: ::Time
322
- attr_accessor destination_configuration: Types::DestinationConfiguration
323
321
  attr_accessor id: ::String
322
+ attr_accessor create_time: ::Time
323
+ attr_accessor update_time: ::Time
324
324
  attr_accessor name: ::String
325
+ attr_accessor destination_configuration: Types::DestinationConfiguration
325
326
  attr_accessor state: ("ACTIVE")
326
327
  attr_accessor tags: ::Hash[::String, ::String]
327
- attr_accessor update_time: ::Time
328
328
  SENSITIVE: []
329
329
  end
330
330
 
331
331
  class UpdateRoomRequest
332
332
  attr_accessor identifier: ::String
333
- attr_accessor logging_configuration_identifiers: ::Array[::String]
334
- attr_accessor maximum_message_length: ::Integer
333
+ attr_accessor name: ::String
335
334
  attr_accessor maximum_message_rate_per_second: ::Integer
335
+ attr_accessor maximum_message_length: ::Integer
336
336
  attr_accessor message_review_handler: Types::MessageReviewHandler
337
- attr_accessor name: ::String
337
+ attr_accessor logging_configuration_identifiers: ::Array[::String]
338
338
  SENSITIVE: []
339
339
  end
340
340
 
341
341
  class UpdateRoomResponse
342
342
  attr_accessor arn: ::String
343
- attr_accessor create_time: ::Time
344
343
  attr_accessor id: ::String
345
- attr_accessor logging_configuration_identifiers: ::Array[::String]
346
- attr_accessor maximum_message_length: ::Integer
344
+ attr_accessor name: ::String
345
+ attr_accessor create_time: ::Time
346
+ attr_accessor update_time: ::Time
347
347
  attr_accessor maximum_message_rate_per_second: ::Integer
348
+ attr_accessor maximum_message_length: ::Integer
348
349
  attr_accessor message_review_handler: Types::MessageReviewHandler
349
- attr_accessor name: ::String
350
350
  attr_accessor tags: ::Hash[::String, ::String]
351
- attr_accessor update_time: ::Time
351
+ attr_accessor logging_configuration_identifiers: ::Array[::String]
352
352
  SENSITIVE: []
353
353
  end
354
354
 
355
355
  class ValidationException
356
- attr_accessor field_list: ::Array[Types::ValidationExceptionField]
357
356
  attr_accessor message: ::String
358
357
  attr_accessor reason: ("UNKNOWN_OPERATION" | "FIELD_VALIDATION_FAILED" | "OTHER")
358
+ attr_accessor field_list: ::Array[Types::ValidationExceptionField]
359
359
  SENSITIVE: []
360
360
  end
361
361
 
362
362
  class ValidationExceptionField
363
- attr_accessor message: ::String
364
363
  attr_accessor name: ::String
364
+ attr_accessor message: ::String
365
365
  SENSITIVE: []
366
366
  end
367
367
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ivschat
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.26.0
4
+ version: 1.28.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: 2024-06-25 00:00:00.000000000 Z
11
+ date: 2024-07-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.199.0
22
+ version: 3.201.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,21 +29,21 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.199.0
32
+ version: 3.201.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '1.1'
39
+ version: '1.5'
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '1.1'
46
+ version: '1.5'
47
47
  description: Official AWS Ruby gem for Amazon Interactive Video Service Chat (ivschat).
48
48
  This gem is part of the AWS SDK for Ruby.
49
49
  email:
@@ -66,6 +66,7 @@ files:
66
66
  - lib/aws-sdk-ivschat/plugins/endpoints.rb
67
67
  - lib/aws-sdk-ivschat/resource.rb
68
68
  - lib/aws-sdk-ivschat/types.rb
69
+ - lib/aws-sdk-ivschat/waiters.rb
69
70
  - sig/client.rbs
70
71
  - sig/errors.rbs
71
72
  - sig/resource.rbs