aws-sdk-ivschat 1.27.0 → 1.28.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ # WARNING ABOUT GENERATED CODE
4
+ #
5
+ # This file is generated. See the contributing guide for more information:
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
+ #
8
+ # WARNING ABOUT GENERATED CODE
9
+
10
+ require 'aws-sdk-core/waiters'
11
+
12
+ module Aws::Ivschat
13
+ module Waiters
14
+ end
15
+ end
@@ -16,6 +16,7 @@ require_relative 'aws-sdk-ivschat/client_api'
16
16
  require_relative 'aws-sdk-ivschat/plugins/endpoints.rb'
17
17
  require_relative 'aws-sdk-ivschat/client'
18
18
  require_relative 'aws-sdk-ivschat/errors'
19
+ require_relative 'aws-sdk-ivschat/waiters'
19
20
  require_relative 'aws-sdk-ivschat/resource'
20
21
  require_relative 'aws-sdk-ivschat/endpoint_parameters'
21
22
  require_relative 'aws-sdk-ivschat/endpoint_provider'
@@ -52,6 +53,6 @@ require_relative 'aws-sdk-ivschat/customizations'
52
53
  # @!group service
53
54
  module Aws::Ivschat
54
55
 
55
- GEM_VERSION = '1.27.0'
56
+ GEM_VERSION = '1.28.0'
56
57
 
57
58
  end
data/sig/client.rbs CHANGED
@@ -75,45 +75,45 @@ module Aws
75
75
 
76
76
  interface _CreateChatTokenResponseSuccess
77
77
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateChatTokenResponse]
78
- def session_expiration_time: () -> ::Time
79
78
  def token: () -> ::String
80
79
  def token_expiration_time: () -> ::Time
80
+ def session_expiration_time: () -> ::Time
81
81
  end
82
82
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#create_chat_token-instance_method
83
83
  def create_chat_token: (
84
- ?attributes: Hash[::String, ::String],
85
- ?capabilities: Array[("SEND_MESSAGE" | "DISCONNECT_USER" | "DELETE_MESSAGE")],
86
84
  room_identifier: ::String,
85
+ user_id: ::String,
86
+ ?capabilities: Array[("SEND_MESSAGE" | "DISCONNECT_USER" | "DELETE_MESSAGE")],
87
87
  ?session_duration_in_minutes: ::Integer,
88
- user_id: ::String
88
+ ?attributes: Hash[::String, ::String]
89
89
  ) -> _CreateChatTokenResponseSuccess
90
90
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateChatTokenResponseSuccess
91
91
 
92
92
  interface _CreateLoggingConfigurationResponseSuccess
93
93
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateLoggingConfigurationResponse]
94
94
  def arn: () -> ::String
95
- def create_time: () -> ::Time
96
- def destination_configuration: () -> Types::DestinationConfiguration
97
95
  def id: () -> ::String
96
+ def create_time: () -> ::Time
97
+ def update_time: () -> ::Time
98
98
  def name: () -> ::String
99
+ def destination_configuration: () -> Types::DestinationConfiguration
99
100
  def state: () -> ("ACTIVE")
100
101
  def tags: () -> ::Hash[::String, ::String]
101
- def update_time: () -> ::Time
102
102
  end
103
103
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#create_logging_configuration-instance_method
104
104
  def create_logging_configuration: (
105
+ ?name: ::String,
105
106
  destination_configuration: {
107
+ s3: {
108
+ bucket_name: ::String
109
+ }?,
106
110
  cloud_watch_logs: {
107
111
  log_group_name: ::String
108
112
  }?,
109
113
  firehose: {
110
114
  delivery_stream_name: ::String
111
- }?,
112
- s3: {
113
- bucket_name: ::String
114
115
  }?
115
116
  },
116
- ?name: ::String,
117
117
  ?tags: Hash[::String, ::String]
118
118
  ) -> _CreateLoggingConfigurationResponseSuccess
119
119
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLoggingConfigurationResponseSuccess
@@ -121,27 +121,27 @@ module Aws
121
121
  interface _CreateRoomResponseSuccess
122
122
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateRoomResponse]
123
123
  def arn: () -> ::String
124
- def create_time: () -> ::Time
125
124
  def id: () -> ::String
126
- def logging_configuration_identifiers: () -> ::Array[::String]
127
- def maximum_message_length: () -> ::Integer
125
+ def name: () -> ::String
126
+ def create_time: () -> ::Time
127
+ def update_time: () -> ::Time
128
128
  def maximum_message_rate_per_second: () -> ::Integer
129
+ def maximum_message_length: () -> ::Integer
129
130
  def message_review_handler: () -> Types::MessageReviewHandler
130
- def name: () -> ::String
131
131
  def tags: () -> ::Hash[::String, ::String]
132
- def update_time: () -> ::Time
132
+ def logging_configuration_identifiers: () -> ::Array[::String]
133
133
  end
134
134
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#create_room-instance_method
135
135
  def create_room: (
136
- ?logging_configuration_identifiers: Array[::String],
137
- ?maximum_message_length: ::Integer,
136
+ ?name: ::String,
138
137
  ?maximum_message_rate_per_second: ::Integer,
138
+ ?maximum_message_length: ::Integer,
139
139
  ?message_review_handler: {
140
- fallback_result: ("ALLOW" | "DENY")?,
141
- uri: ::String?
140
+ uri: ::String?,
141
+ fallback_result: ("ALLOW" | "DENY")?
142
142
  },
143
- ?name: ::String,
144
- ?tags: Hash[::String, ::String]
143
+ ?tags: Hash[::String, ::String],
144
+ ?logging_configuration_identifiers: Array[::String]
145
145
  ) -> _CreateRoomResponseSuccess
146
146
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRoomResponseSuccess
147
147
 
@@ -157,9 +157,9 @@ module Aws
157
157
  end
158
158
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#delete_message-instance_method
159
159
  def delete_message: (
160
+ room_identifier: ::String,
160
161
  id: ::String,
161
- ?reason: ::String,
162
- room_identifier: ::String
162
+ ?reason: ::String
163
163
  ) -> _DeleteMessageResponseSuccess
164
164
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteMessageResponseSuccess
165
165
 
@@ -174,22 +174,22 @@ module Aws
174
174
  end
175
175
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#disconnect_user-instance_method
176
176
  def disconnect_user: (
177
- ?reason: ::String,
178
177
  room_identifier: ::String,
179
- user_id: ::String
178
+ user_id: ::String,
179
+ ?reason: ::String
180
180
  ) -> _DisconnectUserResponseSuccess
181
181
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisconnectUserResponseSuccess
182
182
 
183
183
  interface _GetLoggingConfigurationResponseSuccess
184
184
  include ::Seahorse::Client::_ResponseSuccess[Types::GetLoggingConfigurationResponse]
185
185
  def arn: () -> ::String
186
- def create_time: () -> ::Time
187
- def destination_configuration: () -> Types::DestinationConfiguration
188
186
  def id: () -> ::String
187
+ def create_time: () -> ::Time
188
+ def update_time: () -> ::Time
189
189
  def name: () -> ::String
190
+ def destination_configuration: () -> Types::DestinationConfiguration
190
191
  def state: () -> ("CREATING" | "CREATE_FAILED" | "DELETING" | "DELETE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "ACTIVE")
191
192
  def tags: () -> ::Hash[::String, ::String]
192
- def update_time: () -> ::Time
193
193
  end
194
194
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#get_logging_configuration-instance_method
195
195
  def get_logging_configuration: (
@@ -200,15 +200,15 @@ module Aws
200
200
  interface _GetRoomResponseSuccess
201
201
  include ::Seahorse::Client::_ResponseSuccess[Types::GetRoomResponse]
202
202
  def arn: () -> ::String
203
- def create_time: () -> ::Time
204
203
  def id: () -> ::String
205
- def logging_configuration_identifiers: () -> ::Array[::String]
206
- def maximum_message_length: () -> ::Integer
204
+ def name: () -> ::String
205
+ def create_time: () -> ::Time
206
+ def update_time: () -> ::Time
207
207
  def maximum_message_rate_per_second: () -> ::Integer
208
+ def maximum_message_length: () -> ::Integer
208
209
  def message_review_handler: () -> Types::MessageReviewHandler
209
- def name: () -> ::String
210
210
  def tags: () -> ::Hash[::String, ::String]
211
- def update_time: () -> ::Time
211
+ def logging_configuration_identifiers: () -> ::Array[::String]
212
212
  end
213
213
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#get_room-instance_method
214
214
  def get_room: (
@@ -223,23 +223,23 @@ module Aws
223
223
  end
224
224
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#list_logging_configurations-instance_method
225
225
  def list_logging_configurations: (
226
- ?max_results: ::Integer,
227
- ?next_token: ::String
226
+ ?next_token: ::String,
227
+ ?max_results: ::Integer
228
228
  ) -> _ListLoggingConfigurationsResponseSuccess
229
229
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLoggingConfigurationsResponseSuccess
230
230
 
231
231
  interface _ListRoomsResponseSuccess
232
232
  include ::Seahorse::Client::_ResponseSuccess[Types::ListRoomsResponse]
233
- def next_token: () -> ::String
234
233
  def rooms: () -> ::Array[Types::RoomSummary]
234
+ def next_token: () -> ::String
235
235
  end
236
236
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#list_rooms-instance_method
237
237
  def list_rooms: (
238
- ?logging_configuration_identifier: ::String,
238
+ ?name: ::String,
239
+ ?next_token: ::String,
239
240
  ?max_results: ::Integer,
240
241
  ?message_review_handler_uri: ::String,
241
- ?name: ::String,
242
- ?next_token: ::String
242
+ ?logging_configuration_identifier: ::String
243
243
  ) -> _ListRoomsResponseSuccess
244
244
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRoomsResponseSuccess
245
245
 
@@ -259,9 +259,9 @@ module Aws
259
259
  end
260
260
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#send_event-instance_method
261
261
  def send_event: (
262
- ?attributes: Hash[::String, ::String],
262
+ room_identifier: ::String,
263
263
  event_name: ::String,
264
- room_identifier: ::String
264
+ ?attributes: Hash[::String, ::String]
265
265
  ) -> _SendEventResponseSuccess
266
266
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendEventResponseSuccess
267
267
 
@@ -288,56 +288,56 @@ module Aws
288
288
  interface _UpdateLoggingConfigurationResponseSuccess
289
289
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateLoggingConfigurationResponse]
290
290
  def arn: () -> ::String
291
- def create_time: () -> ::Time
292
- def destination_configuration: () -> Types::DestinationConfiguration
293
291
  def id: () -> ::String
292
+ def create_time: () -> ::Time
293
+ def update_time: () -> ::Time
294
294
  def name: () -> ::String
295
+ def destination_configuration: () -> Types::DestinationConfiguration
295
296
  def state: () -> ("ACTIVE")
296
297
  def tags: () -> ::Hash[::String, ::String]
297
- def update_time: () -> ::Time
298
298
  end
299
299
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#update_logging_configuration-instance_method
300
300
  def update_logging_configuration: (
301
+ identifier: ::String,
302
+ ?name: ::String,
301
303
  ?destination_configuration: {
304
+ s3: {
305
+ bucket_name: ::String
306
+ }?,
302
307
  cloud_watch_logs: {
303
308
  log_group_name: ::String
304
309
  }?,
305
310
  firehose: {
306
311
  delivery_stream_name: ::String
307
- }?,
308
- s3: {
309
- bucket_name: ::String
310
312
  }?
311
- },
312
- identifier: ::String,
313
- ?name: ::String
313
+ }
314
314
  ) -> _UpdateLoggingConfigurationResponseSuccess
315
315
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLoggingConfigurationResponseSuccess
316
316
 
317
317
  interface _UpdateRoomResponseSuccess
318
318
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRoomResponse]
319
319
  def arn: () -> ::String
320
- def create_time: () -> ::Time
321
320
  def id: () -> ::String
322
- def logging_configuration_identifiers: () -> ::Array[::String]
323
- def maximum_message_length: () -> ::Integer
321
+ def name: () -> ::String
322
+ def create_time: () -> ::Time
323
+ def update_time: () -> ::Time
324
324
  def maximum_message_rate_per_second: () -> ::Integer
325
+ def maximum_message_length: () -> ::Integer
325
326
  def message_review_handler: () -> Types::MessageReviewHandler
326
- def name: () -> ::String
327
327
  def tags: () -> ::Hash[::String, ::String]
328
- def update_time: () -> ::Time
328
+ def logging_configuration_identifiers: () -> ::Array[::String]
329
329
  end
330
330
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#update_room-instance_method
331
331
  def update_room: (
332
332
  identifier: ::String,
333
- ?logging_configuration_identifiers: Array[::String],
334
- ?maximum_message_length: ::Integer,
333
+ ?name: ::String,
335
334
  ?maximum_message_rate_per_second: ::Integer,
335
+ ?maximum_message_length: ::Integer,
336
336
  ?message_review_handler: {
337
- fallback_result: ("ALLOW" | "DENY")?,
338
- uri: ::String?
337
+ uri: ::String?,
338
+ fallback_result: ("ALLOW" | "DENY")?
339
339
  },
340
- ?name: ::String
340
+ ?logging_configuration_identifiers: Array[::String]
341
341
  ) -> _UpdateRoomResponseSuccess
342
342
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRoomResponseSuccess
343
343
  end
data/sig/errors.rbs CHANGED
@@ -31,21 +31,21 @@ module Aws
31
31
  def resource_type: () -> ::String
32
32
  end
33
33
  class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
34
- def limit: () -> ::String
35
34
  def message: () -> ::String
36
35
  def resource_id: () -> ::String
37
36
  def resource_type: () -> ::String
37
+ def limit: () -> ::String
38
38
  end
39
39
  class ThrottlingException < ::Aws::Errors::ServiceError
40
- def limit: () -> ::String
41
40
  def message: () -> ::String
42
41
  def resource_id: () -> ::String
43
42
  def resource_type: () -> ::String
43
+ def limit: () -> ::String
44
44
  end
45
45
  class ValidationException < ::Aws::Errors::ServiceError
46
- def field_list: () -> ::String
47
46
  def message: () -> ::String
48
47
  def reason: () -> ::String
48
+ def field_list: () -> ::String
49
49
  end
50
50
  end
51
51
  end
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