aws-sdk-alexaforbusiness 1.67.0 → 1.68.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-alexaforbusiness/client.rb +1 -1
- data/lib/aws-sdk-alexaforbusiness/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-alexaforbusiness.rb +1 -1
- data/sig/client.rbs +1427 -0
- data/sig/errors.rbs +62 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +1646 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,1646 @@
|
|
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::AlexaForBusiness
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AddressBook
|
12
|
+
attr_accessor address_book_arn: ::String
|
13
|
+
attr_accessor name: ::String
|
14
|
+
attr_accessor description: ::String
|
15
|
+
SENSITIVE: []
|
16
|
+
end
|
17
|
+
|
18
|
+
class AddressBookData
|
19
|
+
attr_accessor address_book_arn: ::String
|
20
|
+
attr_accessor name: ::String
|
21
|
+
attr_accessor description: ::String
|
22
|
+
SENSITIVE: []
|
23
|
+
end
|
24
|
+
|
25
|
+
class AlreadyExistsException
|
26
|
+
attr_accessor message: ::String
|
27
|
+
SENSITIVE: []
|
28
|
+
end
|
29
|
+
|
30
|
+
class ApproveSkillRequest
|
31
|
+
attr_accessor skill_id: ::String
|
32
|
+
SENSITIVE: []
|
33
|
+
end
|
34
|
+
|
35
|
+
class ApproveSkillResponse < Aws::EmptyStructure
|
36
|
+
end
|
37
|
+
|
38
|
+
class AssociateContactWithAddressBookRequest
|
39
|
+
attr_accessor contact_arn: ::String
|
40
|
+
attr_accessor address_book_arn: ::String
|
41
|
+
SENSITIVE: []
|
42
|
+
end
|
43
|
+
|
44
|
+
class AssociateContactWithAddressBookResponse < Aws::EmptyStructure
|
45
|
+
end
|
46
|
+
|
47
|
+
class AssociateDeviceWithNetworkProfileRequest
|
48
|
+
attr_accessor device_arn: ::String
|
49
|
+
attr_accessor network_profile_arn: ::String
|
50
|
+
SENSITIVE: []
|
51
|
+
end
|
52
|
+
|
53
|
+
class AssociateDeviceWithNetworkProfileResponse < Aws::EmptyStructure
|
54
|
+
end
|
55
|
+
|
56
|
+
class AssociateDeviceWithRoomRequest
|
57
|
+
attr_accessor device_arn: ::String
|
58
|
+
attr_accessor room_arn: ::String
|
59
|
+
SENSITIVE: []
|
60
|
+
end
|
61
|
+
|
62
|
+
class AssociateDeviceWithRoomResponse < Aws::EmptyStructure
|
63
|
+
end
|
64
|
+
|
65
|
+
class AssociateSkillGroupWithRoomRequest
|
66
|
+
attr_accessor skill_group_arn: ::String
|
67
|
+
attr_accessor room_arn: ::String
|
68
|
+
SENSITIVE: []
|
69
|
+
end
|
70
|
+
|
71
|
+
class AssociateSkillGroupWithRoomResponse < Aws::EmptyStructure
|
72
|
+
end
|
73
|
+
|
74
|
+
class AssociateSkillWithSkillGroupRequest
|
75
|
+
attr_accessor skill_group_arn: ::String
|
76
|
+
attr_accessor skill_id: ::String
|
77
|
+
SENSITIVE: []
|
78
|
+
end
|
79
|
+
|
80
|
+
class AssociateSkillWithSkillGroupResponse < Aws::EmptyStructure
|
81
|
+
end
|
82
|
+
|
83
|
+
class AssociateSkillWithUsersRequest
|
84
|
+
attr_accessor skill_id: ::String
|
85
|
+
SENSITIVE: []
|
86
|
+
end
|
87
|
+
|
88
|
+
class AssociateSkillWithUsersResponse < Aws::EmptyStructure
|
89
|
+
end
|
90
|
+
|
91
|
+
class Audio
|
92
|
+
attr_accessor locale: ("en-US")
|
93
|
+
attr_accessor location: ::String
|
94
|
+
SENSITIVE: []
|
95
|
+
end
|
96
|
+
|
97
|
+
class BusinessReport
|
98
|
+
attr_accessor status: ("RUNNING" | "SUCCEEDED" | "FAILED")
|
99
|
+
attr_accessor failure_code: ("ACCESS_DENIED" | "NO_SUCH_BUCKET" | "INTERNAL_FAILURE")
|
100
|
+
attr_accessor s3_location: Types::BusinessReportS3Location
|
101
|
+
attr_accessor delivery_time: ::Time
|
102
|
+
attr_accessor download_url: ::String
|
103
|
+
SENSITIVE: []
|
104
|
+
end
|
105
|
+
|
106
|
+
class BusinessReportContentRange
|
107
|
+
attr_accessor interval: ("ONE_DAY" | "ONE_WEEK" | "THIRTY_DAYS")
|
108
|
+
SENSITIVE: []
|
109
|
+
end
|
110
|
+
|
111
|
+
class BusinessReportRecurrence
|
112
|
+
attr_accessor start_date: ::String
|
113
|
+
SENSITIVE: []
|
114
|
+
end
|
115
|
+
|
116
|
+
class BusinessReportS3Location
|
117
|
+
attr_accessor path: ::String
|
118
|
+
attr_accessor bucket_name: ::String
|
119
|
+
SENSITIVE: []
|
120
|
+
end
|
121
|
+
|
122
|
+
class BusinessReportSchedule
|
123
|
+
attr_accessor schedule_arn: ::String
|
124
|
+
attr_accessor schedule_name: ::String
|
125
|
+
attr_accessor s3_bucket_name: ::String
|
126
|
+
attr_accessor s3_key_prefix: ::String
|
127
|
+
attr_accessor format: ("CSV" | "CSV_ZIP")
|
128
|
+
attr_accessor content_range: Types::BusinessReportContentRange
|
129
|
+
attr_accessor recurrence: Types::BusinessReportRecurrence
|
130
|
+
attr_accessor last_business_report: Types::BusinessReport
|
131
|
+
SENSITIVE: []
|
132
|
+
end
|
133
|
+
|
134
|
+
class Category
|
135
|
+
attr_accessor category_id: ::Integer
|
136
|
+
attr_accessor category_name: ::String
|
137
|
+
SENSITIVE: []
|
138
|
+
end
|
139
|
+
|
140
|
+
class ConcurrentModificationException
|
141
|
+
attr_accessor message: ::String
|
142
|
+
SENSITIVE: []
|
143
|
+
end
|
144
|
+
|
145
|
+
class ConferencePreference
|
146
|
+
attr_accessor default_conference_provider_arn: ::String
|
147
|
+
SENSITIVE: []
|
148
|
+
end
|
149
|
+
|
150
|
+
class ConferenceProvider
|
151
|
+
attr_accessor arn: ::String
|
152
|
+
attr_accessor name: ::String
|
153
|
+
attr_accessor type: ("CHIME" | "BLUEJEANS" | "FUZE" | "GOOGLE_HANGOUTS" | "POLYCOM" | "RINGCENTRAL" | "SKYPE_FOR_BUSINESS" | "WEBEX" | "ZOOM" | "CUSTOM")
|
154
|
+
attr_accessor ip_dial_in: Types::IPDialIn
|
155
|
+
attr_accessor pstn_dial_in: Types::PSTNDialIn
|
156
|
+
attr_accessor meeting_setting: Types::MeetingSetting
|
157
|
+
SENSITIVE: []
|
158
|
+
end
|
159
|
+
|
160
|
+
class Contact
|
161
|
+
attr_accessor contact_arn: ::String
|
162
|
+
attr_accessor display_name: ::String
|
163
|
+
attr_accessor first_name: ::String
|
164
|
+
attr_accessor last_name: ::String
|
165
|
+
attr_accessor phone_number: ::String
|
166
|
+
attr_accessor phone_numbers: ::Array[Types::PhoneNumber]
|
167
|
+
attr_accessor sip_addresses: ::Array[Types::SipAddress]
|
168
|
+
SENSITIVE: [:phone_number]
|
169
|
+
end
|
170
|
+
|
171
|
+
class ContactData
|
172
|
+
attr_accessor contact_arn: ::String
|
173
|
+
attr_accessor display_name: ::String
|
174
|
+
attr_accessor first_name: ::String
|
175
|
+
attr_accessor last_name: ::String
|
176
|
+
attr_accessor phone_number: ::String
|
177
|
+
attr_accessor phone_numbers: ::Array[Types::PhoneNumber]
|
178
|
+
attr_accessor sip_addresses: ::Array[Types::SipAddress]
|
179
|
+
SENSITIVE: [:phone_number]
|
180
|
+
end
|
181
|
+
|
182
|
+
class Content
|
183
|
+
attr_accessor text_list: ::Array[Types::Text]
|
184
|
+
attr_accessor ssml_list: ::Array[Types::Ssml]
|
185
|
+
attr_accessor audio_list: ::Array[Types::Audio]
|
186
|
+
SENSITIVE: []
|
187
|
+
end
|
188
|
+
|
189
|
+
class CreateAddressBookRequest
|
190
|
+
attr_accessor name: ::String
|
191
|
+
attr_accessor description: ::String
|
192
|
+
attr_accessor client_request_token: ::String
|
193
|
+
attr_accessor tags: ::Array[Types::Tag]
|
194
|
+
SENSITIVE: []
|
195
|
+
end
|
196
|
+
|
197
|
+
class CreateAddressBookResponse
|
198
|
+
attr_accessor address_book_arn: ::String
|
199
|
+
SENSITIVE: []
|
200
|
+
end
|
201
|
+
|
202
|
+
class CreateBusinessReportScheduleRequest
|
203
|
+
attr_accessor schedule_name: ::String
|
204
|
+
attr_accessor s3_bucket_name: ::String
|
205
|
+
attr_accessor s3_key_prefix: ::String
|
206
|
+
attr_accessor format: ("CSV" | "CSV_ZIP")
|
207
|
+
attr_accessor content_range: Types::BusinessReportContentRange
|
208
|
+
attr_accessor recurrence: Types::BusinessReportRecurrence
|
209
|
+
attr_accessor client_request_token: ::String
|
210
|
+
attr_accessor tags: ::Array[Types::Tag]
|
211
|
+
SENSITIVE: []
|
212
|
+
end
|
213
|
+
|
214
|
+
class CreateBusinessReportScheduleResponse
|
215
|
+
attr_accessor schedule_arn: ::String
|
216
|
+
SENSITIVE: []
|
217
|
+
end
|
218
|
+
|
219
|
+
class CreateConferenceProviderRequest
|
220
|
+
attr_accessor conference_provider_name: ::String
|
221
|
+
attr_accessor conference_provider_type: ("CHIME" | "BLUEJEANS" | "FUZE" | "GOOGLE_HANGOUTS" | "POLYCOM" | "RINGCENTRAL" | "SKYPE_FOR_BUSINESS" | "WEBEX" | "ZOOM" | "CUSTOM")
|
222
|
+
attr_accessor ip_dial_in: Types::IPDialIn
|
223
|
+
attr_accessor pstn_dial_in: Types::PSTNDialIn
|
224
|
+
attr_accessor meeting_setting: Types::MeetingSetting
|
225
|
+
attr_accessor client_request_token: ::String
|
226
|
+
attr_accessor tags: ::Array[Types::Tag]
|
227
|
+
SENSITIVE: []
|
228
|
+
end
|
229
|
+
|
230
|
+
class CreateConferenceProviderResponse
|
231
|
+
attr_accessor conference_provider_arn: ::String
|
232
|
+
SENSITIVE: []
|
233
|
+
end
|
234
|
+
|
235
|
+
class CreateContactRequest
|
236
|
+
attr_accessor display_name: ::String
|
237
|
+
attr_accessor first_name: ::String
|
238
|
+
attr_accessor last_name: ::String
|
239
|
+
attr_accessor phone_number: ::String
|
240
|
+
attr_accessor phone_numbers: ::Array[Types::PhoneNumber]
|
241
|
+
attr_accessor sip_addresses: ::Array[Types::SipAddress]
|
242
|
+
attr_accessor client_request_token: ::String
|
243
|
+
attr_accessor tags: ::Array[Types::Tag]
|
244
|
+
SENSITIVE: [:phone_number]
|
245
|
+
end
|
246
|
+
|
247
|
+
class CreateContactResponse
|
248
|
+
attr_accessor contact_arn: ::String
|
249
|
+
SENSITIVE: []
|
250
|
+
end
|
251
|
+
|
252
|
+
class CreateEndOfMeetingReminder
|
253
|
+
attr_accessor reminder_at_minutes: ::Array[::Integer]
|
254
|
+
attr_accessor reminder_type: ("ANNOUNCEMENT_TIME_CHECK" | "ANNOUNCEMENT_VARIABLE_TIME_LEFT" | "CHIME" | "KNOCK")
|
255
|
+
attr_accessor enabled: bool
|
256
|
+
SENSITIVE: []
|
257
|
+
end
|
258
|
+
|
259
|
+
class CreateGatewayGroupRequest
|
260
|
+
attr_accessor name: ::String
|
261
|
+
attr_accessor description: ::String
|
262
|
+
attr_accessor client_request_token: ::String
|
263
|
+
attr_accessor tags: ::Array[Types::Tag]
|
264
|
+
SENSITIVE: []
|
265
|
+
end
|
266
|
+
|
267
|
+
class CreateGatewayGroupResponse
|
268
|
+
attr_accessor gateway_group_arn: ::String
|
269
|
+
SENSITIVE: []
|
270
|
+
end
|
271
|
+
|
272
|
+
class CreateInstantBooking
|
273
|
+
attr_accessor duration_in_minutes: ::Integer
|
274
|
+
attr_accessor enabled: bool
|
275
|
+
SENSITIVE: []
|
276
|
+
end
|
277
|
+
|
278
|
+
class CreateMeetingRoomConfiguration
|
279
|
+
attr_accessor room_utilization_metrics_enabled: bool
|
280
|
+
attr_accessor end_of_meeting_reminder: Types::CreateEndOfMeetingReminder
|
281
|
+
attr_accessor instant_booking: Types::CreateInstantBooking
|
282
|
+
attr_accessor require_check_in: Types::CreateRequireCheckIn
|
283
|
+
attr_accessor proactive_join: Types::CreateProactiveJoin
|
284
|
+
SENSITIVE: []
|
285
|
+
end
|
286
|
+
|
287
|
+
class CreateNetworkProfileRequest
|
288
|
+
attr_accessor network_profile_name: ::String
|
289
|
+
attr_accessor description: ::String
|
290
|
+
attr_accessor ssid: ::String
|
291
|
+
attr_accessor security_type: ("OPEN" | "WEP" | "WPA_PSK" | "WPA2_PSK" | "WPA2_ENTERPRISE")
|
292
|
+
attr_accessor eap_method: ("EAP_TLS")
|
293
|
+
attr_accessor current_password: ::String
|
294
|
+
attr_accessor next_password: ::String
|
295
|
+
attr_accessor certificate_authority_arn: ::String
|
296
|
+
attr_accessor trust_anchors: ::Array[::String]
|
297
|
+
attr_accessor client_request_token: ::String
|
298
|
+
attr_accessor tags: ::Array[Types::Tag]
|
299
|
+
SENSITIVE: [:current_password, :next_password]
|
300
|
+
end
|
301
|
+
|
302
|
+
class CreateNetworkProfileResponse
|
303
|
+
attr_accessor network_profile_arn: ::String
|
304
|
+
SENSITIVE: []
|
305
|
+
end
|
306
|
+
|
307
|
+
class CreateProactiveJoin
|
308
|
+
attr_accessor enabled_by_motion: bool
|
309
|
+
SENSITIVE: []
|
310
|
+
end
|
311
|
+
|
312
|
+
class CreateProfileRequest
|
313
|
+
attr_accessor profile_name: ::String
|
314
|
+
attr_accessor timezone: ::String
|
315
|
+
attr_accessor address: ::String
|
316
|
+
attr_accessor distance_unit: ("METRIC" | "IMPERIAL")
|
317
|
+
attr_accessor temperature_unit: ("FAHRENHEIT" | "CELSIUS")
|
318
|
+
attr_accessor wake_word: ("ALEXA" | "AMAZON" | "ECHO" | "COMPUTER")
|
319
|
+
attr_accessor locale: ::String
|
320
|
+
attr_accessor client_request_token: ::String
|
321
|
+
attr_accessor setup_mode_disabled: bool
|
322
|
+
attr_accessor max_volume_limit: ::Integer
|
323
|
+
attr_accessor pstn_enabled: bool
|
324
|
+
attr_accessor data_retention_opt_in: bool
|
325
|
+
attr_accessor meeting_room_configuration: Types::CreateMeetingRoomConfiguration
|
326
|
+
attr_accessor tags: ::Array[Types::Tag]
|
327
|
+
SENSITIVE: []
|
328
|
+
end
|
329
|
+
|
330
|
+
class CreateProfileResponse
|
331
|
+
attr_accessor profile_arn: ::String
|
332
|
+
SENSITIVE: []
|
333
|
+
end
|
334
|
+
|
335
|
+
class CreateRequireCheckIn
|
336
|
+
attr_accessor release_after_minutes: ::Integer
|
337
|
+
attr_accessor enabled: bool
|
338
|
+
SENSITIVE: []
|
339
|
+
end
|
340
|
+
|
341
|
+
class CreateRoomRequest
|
342
|
+
attr_accessor room_name: ::String
|
343
|
+
attr_accessor description: ::String
|
344
|
+
attr_accessor profile_arn: ::String
|
345
|
+
attr_accessor provider_calendar_id: ::String
|
346
|
+
attr_accessor client_request_token: ::String
|
347
|
+
attr_accessor tags: ::Array[Types::Tag]
|
348
|
+
SENSITIVE: []
|
349
|
+
end
|
350
|
+
|
351
|
+
class CreateRoomResponse
|
352
|
+
attr_accessor room_arn: ::String
|
353
|
+
SENSITIVE: []
|
354
|
+
end
|
355
|
+
|
356
|
+
class CreateSkillGroupRequest
|
357
|
+
attr_accessor skill_group_name: ::String
|
358
|
+
attr_accessor description: ::String
|
359
|
+
attr_accessor client_request_token: ::String
|
360
|
+
attr_accessor tags: ::Array[Types::Tag]
|
361
|
+
SENSITIVE: []
|
362
|
+
end
|
363
|
+
|
364
|
+
class CreateSkillGroupResponse
|
365
|
+
attr_accessor skill_group_arn: ::String
|
366
|
+
SENSITIVE: []
|
367
|
+
end
|
368
|
+
|
369
|
+
class CreateUserRequest
|
370
|
+
attr_accessor user_id: ::String
|
371
|
+
attr_accessor first_name: ::String
|
372
|
+
attr_accessor last_name: ::String
|
373
|
+
attr_accessor email: ::String
|
374
|
+
attr_accessor client_request_token: ::String
|
375
|
+
attr_accessor tags: ::Array[Types::Tag]
|
376
|
+
SENSITIVE: []
|
377
|
+
end
|
378
|
+
|
379
|
+
class CreateUserResponse
|
380
|
+
attr_accessor user_arn: ::String
|
381
|
+
SENSITIVE: []
|
382
|
+
end
|
383
|
+
|
384
|
+
class DeleteAddressBookRequest
|
385
|
+
attr_accessor address_book_arn: ::String
|
386
|
+
SENSITIVE: []
|
387
|
+
end
|
388
|
+
|
389
|
+
class DeleteAddressBookResponse < Aws::EmptyStructure
|
390
|
+
end
|
391
|
+
|
392
|
+
class DeleteBusinessReportScheduleRequest
|
393
|
+
attr_accessor schedule_arn: ::String
|
394
|
+
SENSITIVE: []
|
395
|
+
end
|
396
|
+
|
397
|
+
class DeleteBusinessReportScheduleResponse < Aws::EmptyStructure
|
398
|
+
end
|
399
|
+
|
400
|
+
class DeleteConferenceProviderRequest
|
401
|
+
attr_accessor conference_provider_arn: ::String
|
402
|
+
SENSITIVE: []
|
403
|
+
end
|
404
|
+
|
405
|
+
class DeleteConferenceProviderResponse < Aws::EmptyStructure
|
406
|
+
end
|
407
|
+
|
408
|
+
class DeleteContactRequest
|
409
|
+
attr_accessor contact_arn: ::String
|
410
|
+
SENSITIVE: []
|
411
|
+
end
|
412
|
+
|
413
|
+
class DeleteContactResponse < Aws::EmptyStructure
|
414
|
+
end
|
415
|
+
|
416
|
+
class DeleteDeviceRequest
|
417
|
+
attr_accessor device_arn: ::String
|
418
|
+
SENSITIVE: []
|
419
|
+
end
|
420
|
+
|
421
|
+
class DeleteDeviceResponse < Aws::EmptyStructure
|
422
|
+
end
|
423
|
+
|
424
|
+
class DeleteDeviceUsageDataRequest
|
425
|
+
attr_accessor device_arn: ::String
|
426
|
+
attr_accessor device_usage_type: ("VOICE")
|
427
|
+
SENSITIVE: []
|
428
|
+
end
|
429
|
+
|
430
|
+
class DeleteDeviceUsageDataResponse < Aws::EmptyStructure
|
431
|
+
end
|
432
|
+
|
433
|
+
class DeleteGatewayGroupRequest
|
434
|
+
attr_accessor gateway_group_arn: ::String
|
435
|
+
SENSITIVE: []
|
436
|
+
end
|
437
|
+
|
438
|
+
class DeleteGatewayGroupResponse < Aws::EmptyStructure
|
439
|
+
end
|
440
|
+
|
441
|
+
class DeleteNetworkProfileRequest
|
442
|
+
attr_accessor network_profile_arn: ::String
|
443
|
+
SENSITIVE: []
|
444
|
+
end
|
445
|
+
|
446
|
+
class DeleteNetworkProfileResponse < Aws::EmptyStructure
|
447
|
+
end
|
448
|
+
|
449
|
+
class DeleteProfileRequest
|
450
|
+
attr_accessor profile_arn: ::String
|
451
|
+
SENSITIVE: []
|
452
|
+
end
|
453
|
+
|
454
|
+
class DeleteProfileResponse < Aws::EmptyStructure
|
455
|
+
end
|
456
|
+
|
457
|
+
class DeleteRoomRequest
|
458
|
+
attr_accessor room_arn: ::String
|
459
|
+
SENSITIVE: []
|
460
|
+
end
|
461
|
+
|
462
|
+
class DeleteRoomResponse < Aws::EmptyStructure
|
463
|
+
end
|
464
|
+
|
465
|
+
class DeleteRoomSkillParameterRequest
|
466
|
+
attr_accessor room_arn: ::String
|
467
|
+
attr_accessor skill_id: ::String
|
468
|
+
attr_accessor parameter_key: ::String
|
469
|
+
SENSITIVE: []
|
470
|
+
end
|
471
|
+
|
472
|
+
class DeleteRoomSkillParameterResponse < Aws::EmptyStructure
|
473
|
+
end
|
474
|
+
|
475
|
+
class DeleteSkillAuthorizationRequest
|
476
|
+
attr_accessor skill_id: ::String
|
477
|
+
attr_accessor room_arn: ::String
|
478
|
+
SENSITIVE: []
|
479
|
+
end
|
480
|
+
|
481
|
+
class DeleteSkillAuthorizationResponse < Aws::EmptyStructure
|
482
|
+
end
|
483
|
+
|
484
|
+
class DeleteSkillGroupRequest
|
485
|
+
attr_accessor skill_group_arn: ::String
|
486
|
+
SENSITIVE: []
|
487
|
+
end
|
488
|
+
|
489
|
+
class DeleteSkillGroupResponse < Aws::EmptyStructure
|
490
|
+
end
|
491
|
+
|
492
|
+
class DeleteUserRequest
|
493
|
+
attr_accessor user_arn: ::String
|
494
|
+
attr_accessor enrollment_id: ::String
|
495
|
+
SENSITIVE: []
|
496
|
+
end
|
497
|
+
|
498
|
+
class DeleteUserResponse < Aws::EmptyStructure
|
499
|
+
end
|
500
|
+
|
501
|
+
class DeveloperInfo
|
502
|
+
attr_accessor developer_name: ::String
|
503
|
+
attr_accessor privacy_policy: ::String
|
504
|
+
attr_accessor email: ::String
|
505
|
+
attr_accessor url: ::String
|
506
|
+
SENSITIVE: []
|
507
|
+
end
|
508
|
+
|
509
|
+
class Device
|
510
|
+
attr_accessor device_arn: ::String
|
511
|
+
attr_accessor device_serial_number: ::String
|
512
|
+
attr_accessor device_type: ::String
|
513
|
+
attr_accessor device_name: ::String
|
514
|
+
attr_accessor software_version: ::String
|
515
|
+
attr_accessor mac_address: ::String
|
516
|
+
attr_accessor room_arn: ::String
|
517
|
+
attr_accessor device_status: ("READY" | "PENDING" | "WAS_OFFLINE" | "DEREGISTERED" | "FAILED")
|
518
|
+
attr_accessor device_status_info: Types::DeviceStatusInfo
|
519
|
+
attr_accessor network_profile_info: Types::DeviceNetworkProfileInfo
|
520
|
+
SENSITIVE: []
|
521
|
+
end
|
522
|
+
|
523
|
+
class DeviceData
|
524
|
+
attr_accessor device_arn: ::String
|
525
|
+
attr_accessor device_serial_number: ::String
|
526
|
+
attr_accessor device_type: ::String
|
527
|
+
attr_accessor device_name: ::String
|
528
|
+
attr_accessor software_version: ::String
|
529
|
+
attr_accessor mac_address: ::String
|
530
|
+
attr_accessor device_status: ("READY" | "PENDING" | "WAS_OFFLINE" | "DEREGISTERED" | "FAILED")
|
531
|
+
attr_accessor network_profile_arn: ::String
|
532
|
+
attr_accessor network_profile_name: ::String
|
533
|
+
attr_accessor room_arn: ::String
|
534
|
+
attr_accessor room_name: ::String
|
535
|
+
attr_accessor device_status_info: Types::DeviceStatusInfo
|
536
|
+
attr_accessor created_time: ::Time
|
537
|
+
SENSITIVE: []
|
538
|
+
end
|
539
|
+
|
540
|
+
class DeviceEvent
|
541
|
+
attr_accessor type: ("CONNECTION_STATUS" | "DEVICE_STATUS")
|
542
|
+
attr_accessor value: ::String
|
543
|
+
attr_accessor timestamp: ::Time
|
544
|
+
SENSITIVE: []
|
545
|
+
end
|
546
|
+
|
547
|
+
class DeviceNetworkProfileInfo
|
548
|
+
attr_accessor network_profile_arn: ::String
|
549
|
+
attr_accessor certificate_arn: ::String
|
550
|
+
attr_accessor certificate_expiration_time: ::Time
|
551
|
+
SENSITIVE: []
|
552
|
+
end
|
553
|
+
|
554
|
+
class DeviceNotRegisteredException
|
555
|
+
attr_accessor message: ::String
|
556
|
+
SENSITIVE: []
|
557
|
+
end
|
558
|
+
|
559
|
+
class DeviceStatusDetail
|
560
|
+
attr_accessor feature: ("BLUETOOTH" | "VOLUME" | "NOTIFICATIONS" | "LISTS" | "SKILLS" | "NETWORK_PROFILE" | "SETTINGS" | "ALL")
|
561
|
+
attr_accessor code: ("DEVICE_SOFTWARE_UPDATE_NEEDED" | "DEVICE_WAS_OFFLINE" | "CREDENTIALS_ACCESS_FAILURE" | "TLS_VERSION_MISMATCH" | "ASSOCIATION_REJECTION" | "AUTHENTICATION_FAILURE" | "DHCP_FAILURE" | "INTERNET_UNAVAILABLE" | "DNS_FAILURE" | "UNKNOWN_FAILURE" | "CERTIFICATE_ISSUING_LIMIT_EXCEEDED" | "INVALID_CERTIFICATE_AUTHORITY" | "NETWORK_PROFILE_NOT_FOUND" | "INVALID_PASSWORD_STATE" | "PASSWORD_NOT_FOUND" | "PASSWORD_MANAGER_ACCESS_DENIED" | "CERTIFICATE_AUTHORITY_ACCESS_DENIED")
|
562
|
+
SENSITIVE: []
|
563
|
+
end
|
564
|
+
|
565
|
+
class DeviceStatusInfo
|
566
|
+
attr_accessor device_status_details: ::Array[Types::DeviceStatusDetail]
|
567
|
+
attr_accessor connection_status: ("ONLINE" | "OFFLINE")
|
568
|
+
attr_accessor connection_status_updated_time: ::Time
|
569
|
+
SENSITIVE: []
|
570
|
+
end
|
571
|
+
|
572
|
+
class DisassociateContactFromAddressBookRequest
|
573
|
+
attr_accessor contact_arn: ::String
|
574
|
+
attr_accessor address_book_arn: ::String
|
575
|
+
SENSITIVE: []
|
576
|
+
end
|
577
|
+
|
578
|
+
class DisassociateContactFromAddressBookResponse < Aws::EmptyStructure
|
579
|
+
end
|
580
|
+
|
581
|
+
class DisassociateDeviceFromRoomRequest
|
582
|
+
attr_accessor device_arn: ::String
|
583
|
+
SENSITIVE: []
|
584
|
+
end
|
585
|
+
|
586
|
+
class DisassociateDeviceFromRoomResponse < Aws::EmptyStructure
|
587
|
+
end
|
588
|
+
|
589
|
+
class DisassociateSkillFromSkillGroupRequest
|
590
|
+
attr_accessor skill_group_arn: ::String
|
591
|
+
attr_accessor skill_id: ::String
|
592
|
+
SENSITIVE: []
|
593
|
+
end
|
594
|
+
|
595
|
+
class DisassociateSkillFromSkillGroupResponse < Aws::EmptyStructure
|
596
|
+
end
|
597
|
+
|
598
|
+
class DisassociateSkillFromUsersRequest
|
599
|
+
attr_accessor skill_id: ::String
|
600
|
+
SENSITIVE: []
|
601
|
+
end
|
602
|
+
|
603
|
+
class DisassociateSkillFromUsersResponse < Aws::EmptyStructure
|
604
|
+
end
|
605
|
+
|
606
|
+
class DisassociateSkillGroupFromRoomRequest
|
607
|
+
attr_accessor skill_group_arn: ::String
|
608
|
+
attr_accessor room_arn: ::String
|
609
|
+
SENSITIVE: []
|
610
|
+
end
|
611
|
+
|
612
|
+
class DisassociateSkillGroupFromRoomResponse < Aws::EmptyStructure
|
613
|
+
end
|
614
|
+
|
615
|
+
class EndOfMeetingReminder
|
616
|
+
attr_accessor reminder_at_minutes: ::Array[::Integer]
|
617
|
+
attr_accessor reminder_type: ("ANNOUNCEMENT_TIME_CHECK" | "ANNOUNCEMENT_VARIABLE_TIME_LEFT" | "CHIME" | "KNOCK")
|
618
|
+
attr_accessor enabled: bool
|
619
|
+
SENSITIVE: []
|
620
|
+
end
|
621
|
+
|
622
|
+
class Filter
|
623
|
+
attr_accessor key: ::String
|
624
|
+
attr_accessor values: ::Array[::String]
|
625
|
+
SENSITIVE: []
|
626
|
+
end
|
627
|
+
|
628
|
+
class ForgetSmartHomeAppliancesRequest
|
629
|
+
attr_accessor room_arn: ::String
|
630
|
+
SENSITIVE: []
|
631
|
+
end
|
632
|
+
|
633
|
+
class ForgetSmartHomeAppliancesResponse < Aws::EmptyStructure
|
634
|
+
end
|
635
|
+
|
636
|
+
class Gateway
|
637
|
+
attr_accessor arn: ::String
|
638
|
+
attr_accessor name: ::String
|
639
|
+
attr_accessor description: ::String
|
640
|
+
attr_accessor gateway_group_arn: ::String
|
641
|
+
attr_accessor software_version: ::String
|
642
|
+
SENSITIVE: []
|
643
|
+
end
|
644
|
+
|
645
|
+
class GatewayGroup
|
646
|
+
attr_accessor arn: ::String
|
647
|
+
attr_accessor name: ::String
|
648
|
+
attr_accessor description: ::String
|
649
|
+
SENSITIVE: []
|
650
|
+
end
|
651
|
+
|
652
|
+
class GatewayGroupSummary
|
653
|
+
attr_accessor arn: ::String
|
654
|
+
attr_accessor name: ::String
|
655
|
+
attr_accessor description: ::String
|
656
|
+
SENSITIVE: []
|
657
|
+
end
|
658
|
+
|
659
|
+
class GatewaySummary
|
660
|
+
attr_accessor arn: ::String
|
661
|
+
attr_accessor name: ::String
|
662
|
+
attr_accessor description: ::String
|
663
|
+
attr_accessor gateway_group_arn: ::String
|
664
|
+
attr_accessor software_version: ::String
|
665
|
+
SENSITIVE: []
|
666
|
+
end
|
667
|
+
|
668
|
+
class GetAddressBookRequest
|
669
|
+
attr_accessor address_book_arn: ::String
|
670
|
+
SENSITIVE: []
|
671
|
+
end
|
672
|
+
|
673
|
+
class GetAddressBookResponse
|
674
|
+
attr_accessor address_book: Types::AddressBook
|
675
|
+
SENSITIVE: []
|
676
|
+
end
|
677
|
+
|
678
|
+
class GetConferencePreferenceRequest < Aws::EmptyStructure
|
679
|
+
end
|
680
|
+
|
681
|
+
class GetConferencePreferenceResponse
|
682
|
+
attr_accessor preference: Types::ConferencePreference
|
683
|
+
SENSITIVE: []
|
684
|
+
end
|
685
|
+
|
686
|
+
class GetConferenceProviderRequest
|
687
|
+
attr_accessor conference_provider_arn: ::String
|
688
|
+
SENSITIVE: []
|
689
|
+
end
|
690
|
+
|
691
|
+
class GetConferenceProviderResponse
|
692
|
+
attr_accessor conference_provider: Types::ConferenceProvider
|
693
|
+
SENSITIVE: []
|
694
|
+
end
|
695
|
+
|
696
|
+
class GetContactRequest
|
697
|
+
attr_accessor contact_arn: ::String
|
698
|
+
SENSITIVE: []
|
699
|
+
end
|
700
|
+
|
701
|
+
class GetContactResponse
|
702
|
+
attr_accessor contact: Types::Contact
|
703
|
+
SENSITIVE: []
|
704
|
+
end
|
705
|
+
|
706
|
+
class GetDeviceRequest
|
707
|
+
attr_accessor device_arn: ::String
|
708
|
+
SENSITIVE: []
|
709
|
+
end
|
710
|
+
|
711
|
+
class GetDeviceResponse
|
712
|
+
attr_accessor device: Types::Device
|
713
|
+
SENSITIVE: []
|
714
|
+
end
|
715
|
+
|
716
|
+
class GetGatewayGroupRequest
|
717
|
+
attr_accessor gateway_group_arn: ::String
|
718
|
+
SENSITIVE: []
|
719
|
+
end
|
720
|
+
|
721
|
+
class GetGatewayGroupResponse
|
722
|
+
attr_accessor gateway_group: Types::GatewayGroup
|
723
|
+
SENSITIVE: []
|
724
|
+
end
|
725
|
+
|
726
|
+
class GetGatewayRequest
|
727
|
+
attr_accessor gateway_arn: ::String
|
728
|
+
SENSITIVE: []
|
729
|
+
end
|
730
|
+
|
731
|
+
class GetGatewayResponse
|
732
|
+
attr_accessor gateway: Types::Gateway
|
733
|
+
SENSITIVE: []
|
734
|
+
end
|
735
|
+
|
736
|
+
class GetInvitationConfigurationRequest < Aws::EmptyStructure
|
737
|
+
end
|
738
|
+
|
739
|
+
class GetInvitationConfigurationResponse
|
740
|
+
attr_accessor organization_name: ::String
|
741
|
+
attr_accessor contact_email: ::String
|
742
|
+
attr_accessor private_skill_ids: ::Array[::String]
|
743
|
+
SENSITIVE: []
|
744
|
+
end
|
745
|
+
|
746
|
+
class GetNetworkProfileRequest
|
747
|
+
attr_accessor network_profile_arn: ::String
|
748
|
+
SENSITIVE: []
|
749
|
+
end
|
750
|
+
|
751
|
+
class GetNetworkProfileResponse
|
752
|
+
attr_accessor network_profile: Types::NetworkProfile
|
753
|
+
SENSITIVE: []
|
754
|
+
end
|
755
|
+
|
756
|
+
class GetProfileRequest
|
757
|
+
attr_accessor profile_arn: ::String
|
758
|
+
SENSITIVE: []
|
759
|
+
end
|
760
|
+
|
761
|
+
class GetProfileResponse
|
762
|
+
attr_accessor profile: Types::Profile
|
763
|
+
SENSITIVE: []
|
764
|
+
end
|
765
|
+
|
766
|
+
class GetRoomRequest
|
767
|
+
attr_accessor room_arn: ::String
|
768
|
+
SENSITIVE: []
|
769
|
+
end
|
770
|
+
|
771
|
+
class GetRoomResponse
|
772
|
+
attr_accessor room: Types::Room
|
773
|
+
SENSITIVE: []
|
774
|
+
end
|
775
|
+
|
776
|
+
class GetRoomSkillParameterRequest
|
777
|
+
attr_accessor room_arn: ::String
|
778
|
+
attr_accessor skill_id: ::String
|
779
|
+
attr_accessor parameter_key: ::String
|
780
|
+
SENSITIVE: []
|
781
|
+
end
|
782
|
+
|
783
|
+
class GetRoomSkillParameterResponse
|
784
|
+
attr_accessor room_skill_parameter: Types::RoomSkillParameter
|
785
|
+
SENSITIVE: []
|
786
|
+
end
|
787
|
+
|
788
|
+
class GetSkillGroupRequest
|
789
|
+
attr_accessor skill_group_arn: ::String
|
790
|
+
SENSITIVE: []
|
791
|
+
end
|
792
|
+
|
793
|
+
class GetSkillGroupResponse
|
794
|
+
attr_accessor skill_group: Types::SkillGroup
|
795
|
+
SENSITIVE: []
|
796
|
+
end
|
797
|
+
|
798
|
+
class IPDialIn
|
799
|
+
attr_accessor endpoint: ::String
|
800
|
+
attr_accessor comms_protocol: ("SIP" | "SIPS" | "H323")
|
801
|
+
SENSITIVE: []
|
802
|
+
end
|
803
|
+
|
804
|
+
class InstantBooking
|
805
|
+
attr_accessor duration_in_minutes: ::Integer
|
806
|
+
attr_accessor enabled: bool
|
807
|
+
SENSITIVE: []
|
808
|
+
end
|
809
|
+
|
810
|
+
class InvalidCertificateAuthorityException
|
811
|
+
attr_accessor message: ::String
|
812
|
+
SENSITIVE: []
|
813
|
+
end
|
814
|
+
|
815
|
+
class InvalidDeviceException
|
816
|
+
attr_accessor message: ::String
|
817
|
+
SENSITIVE: []
|
818
|
+
end
|
819
|
+
|
820
|
+
class InvalidSecretsManagerResourceException
|
821
|
+
attr_accessor message: ::String
|
822
|
+
SENSITIVE: []
|
823
|
+
end
|
824
|
+
|
825
|
+
class InvalidServiceLinkedRoleStateException
|
826
|
+
attr_accessor message: ::String
|
827
|
+
SENSITIVE: []
|
828
|
+
end
|
829
|
+
|
830
|
+
class InvalidUserStatusException
|
831
|
+
attr_accessor message: ::String
|
832
|
+
SENSITIVE: []
|
833
|
+
end
|
834
|
+
|
835
|
+
class LimitExceededException
|
836
|
+
attr_accessor message: ::String
|
837
|
+
SENSITIVE: []
|
838
|
+
end
|
839
|
+
|
840
|
+
class ListBusinessReportSchedulesRequest
|
841
|
+
attr_accessor next_token: ::String
|
842
|
+
attr_accessor max_results: ::Integer
|
843
|
+
SENSITIVE: []
|
844
|
+
end
|
845
|
+
|
846
|
+
class ListBusinessReportSchedulesResponse
|
847
|
+
attr_accessor business_report_schedules: ::Array[Types::BusinessReportSchedule]
|
848
|
+
attr_accessor next_token: ::String
|
849
|
+
SENSITIVE: []
|
850
|
+
end
|
851
|
+
|
852
|
+
class ListConferenceProvidersRequest
|
853
|
+
attr_accessor next_token: ::String
|
854
|
+
attr_accessor max_results: ::Integer
|
855
|
+
SENSITIVE: []
|
856
|
+
end
|
857
|
+
|
858
|
+
class ListConferenceProvidersResponse
|
859
|
+
attr_accessor conference_providers: ::Array[Types::ConferenceProvider]
|
860
|
+
attr_accessor next_token: ::String
|
861
|
+
SENSITIVE: []
|
862
|
+
end
|
863
|
+
|
864
|
+
class ListDeviceEventsRequest
|
865
|
+
attr_accessor device_arn: ::String
|
866
|
+
attr_accessor event_type: ("CONNECTION_STATUS" | "DEVICE_STATUS")
|
867
|
+
attr_accessor next_token: ::String
|
868
|
+
attr_accessor max_results: ::Integer
|
869
|
+
SENSITIVE: []
|
870
|
+
end
|
871
|
+
|
872
|
+
class ListDeviceEventsResponse
|
873
|
+
attr_accessor device_events: ::Array[Types::DeviceEvent]
|
874
|
+
attr_accessor next_token: ::String
|
875
|
+
SENSITIVE: []
|
876
|
+
end
|
877
|
+
|
878
|
+
class ListGatewayGroupsRequest
|
879
|
+
attr_accessor next_token: ::String
|
880
|
+
attr_accessor max_results: ::Integer
|
881
|
+
SENSITIVE: []
|
882
|
+
end
|
883
|
+
|
884
|
+
class ListGatewayGroupsResponse
|
885
|
+
attr_accessor gateway_groups: ::Array[Types::GatewayGroupSummary]
|
886
|
+
attr_accessor next_token: ::String
|
887
|
+
SENSITIVE: []
|
888
|
+
end
|
889
|
+
|
890
|
+
class ListGatewaysRequest
|
891
|
+
attr_accessor gateway_group_arn: ::String
|
892
|
+
attr_accessor next_token: ::String
|
893
|
+
attr_accessor max_results: ::Integer
|
894
|
+
SENSITIVE: []
|
895
|
+
end
|
896
|
+
|
897
|
+
class ListGatewaysResponse
|
898
|
+
attr_accessor gateways: ::Array[Types::GatewaySummary]
|
899
|
+
attr_accessor next_token: ::String
|
900
|
+
SENSITIVE: []
|
901
|
+
end
|
902
|
+
|
903
|
+
class ListSkillsRequest
|
904
|
+
attr_accessor skill_group_arn: ::String
|
905
|
+
attr_accessor enablement_type: ("ENABLED" | "PENDING")
|
906
|
+
attr_accessor skill_type: ("PUBLIC" | "PRIVATE" | "ALL")
|
907
|
+
attr_accessor next_token: ::String
|
908
|
+
attr_accessor max_results: ::Integer
|
909
|
+
SENSITIVE: []
|
910
|
+
end
|
911
|
+
|
912
|
+
class ListSkillsResponse
|
913
|
+
attr_accessor skill_summaries: ::Array[Types::SkillSummary]
|
914
|
+
attr_accessor next_token: ::String
|
915
|
+
SENSITIVE: []
|
916
|
+
end
|
917
|
+
|
918
|
+
class ListSkillsStoreCategoriesRequest
|
919
|
+
attr_accessor next_token: ::String
|
920
|
+
attr_accessor max_results: ::Integer
|
921
|
+
SENSITIVE: []
|
922
|
+
end
|
923
|
+
|
924
|
+
class ListSkillsStoreCategoriesResponse
|
925
|
+
attr_accessor category_list: ::Array[Types::Category]
|
926
|
+
attr_accessor next_token: ::String
|
927
|
+
SENSITIVE: []
|
928
|
+
end
|
929
|
+
|
930
|
+
class ListSkillsStoreSkillsByCategoryRequest
|
931
|
+
attr_accessor category_id: ::Integer
|
932
|
+
attr_accessor next_token: ::String
|
933
|
+
attr_accessor max_results: ::Integer
|
934
|
+
SENSITIVE: []
|
935
|
+
end
|
936
|
+
|
937
|
+
class ListSkillsStoreSkillsByCategoryResponse
|
938
|
+
attr_accessor skills_store_skills: ::Array[Types::SkillsStoreSkill]
|
939
|
+
attr_accessor next_token: ::String
|
940
|
+
SENSITIVE: []
|
941
|
+
end
|
942
|
+
|
943
|
+
class ListSmartHomeAppliancesRequest
|
944
|
+
attr_accessor room_arn: ::String
|
945
|
+
attr_accessor max_results: ::Integer
|
946
|
+
attr_accessor next_token: ::String
|
947
|
+
SENSITIVE: []
|
948
|
+
end
|
949
|
+
|
950
|
+
class ListSmartHomeAppliancesResponse
|
951
|
+
attr_accessor smart_home_appliances: ::Array[Types::SmartHomeAppliance]
|
952
|
+
attr_accessor next_token: ::String
|
953
|
+
SENSITIVE: []
|
954
|
+
end
|
955
|
+
|
956
|
+
class ListTagsRequest
|
957
|
+
attr_accessor arn: ::String
|
958
|
+
attr_accessor next_token: ::String
|
959
|
+
attr_accessor max_results: ::Integer
|
960
|
+
SENSITIVE: []
|
961
|
+
end
|
962
|
+
|
963
|
+
class ListTagsResponse
|
964
|
+
attr_accessor tags: ::Array[Types::Tag]
|
965
|
+
attr_accessor next_token: ::String
|
966
|
+
SENSITIVE: []
|
967
|
+
end
|
968
|
+
|
969
|
+
class MeetingRoomConfiguration
|
970
|
+
attr_accessor room_utilization_metrics_enabled: bool
|
971
|
+
attr_accessor end_of_meeting_reminder: Types::EndOfMeetingReminder
|
972
|
+
attr_accessor instant_booking: Types::InstantBooking
|
973
|
+
attr_accessor require_check_in: Types::RequireCheckIn
|
974
|
+
attr_accessor proactive_join: Types::ProactiveJoin
|
975
|
+
SENSITIVE: []
|
976
|
+
end
|
977
|
+
|
978
|
+
class MeetingSetting
|
979
|
+
attr_accessor require_pin: ("YES" | "NO" | "OPTIONAL")
|
980
|
+
SENSITIVE: []
|
981
|
+
end
|
982
|
+
|
983
|
+
class NameInUseException
|
984
|
+
attr_accessor message: ::String
|
985
|
+
SENSITIVE: []
|
986
|
+
end
|
987
|
+
|
988
|
+
class NetworkProfile
|
989
|
+
attr_accessor network_profile_arn: ::String
|
990
|
+
attr_accessor network_profile_name: ::String
|
991
|
+
attr_accessor description: ::String
|
992
|
+
attr_accessor ssid: ::String
|
993
|
+
attr_accessor security_type: ("OPEN" | "WEP" | "WPA_PSK" | "WPA2_PSK" | "WPA2_ENTERPRISE")
|
994
|
+
attr_accessor eap_method: ("EAP_TLS")
|
995
|
+
attr_accessor current_password: ::String
|
996
|
+
attr_accessor next_password: ::String
|
997
|
+
attr_accessor certificate_authority_arn: ::String
|
998
|
+
attr_accessor trust_anchors: ::Array[::String]
|
999
|
+
SENSITIVE: [:current_password, :next_password]
|
1000
|
+
end
|
1001
|
+
|
1002
|
+
class NetworkProfileData
|
1003
|
+
attr_accessor network_profile_arn: ::String
|
1004
|
+
attr_accessor network_profile_name: ::String
|
1005
|
+
attr_accessor description: ::String
|
1006
|
+
attr_accessor ssid: ::String
|
1007
|
+
attr_accessor security_type: ("OPEN" | "WEP" | "WPA_PSK" | "WPA2_PSK" | "WPA2_ENTERPRISE")
|
1008
|
+
attr_accessor eap_method: ("EAP_TLS")
|
1009
|
+
attr_accessor certificate_authority_arn: ::String
|
1010
|
+
SENSITIVE: []
|
1011
|
+
end
|
1012
|
+
|
1013
|
+
class NotFoundException
|
1014
|
+
attr_accessor message: ::String
|
1015
|
+
SENSITIVE: []
|
1016
|
+
end
|
1017
|
+
|
1018
|
+
class PSTNDialIn
|
1019
|
+
attr_accessor country_code: ::String
|
1020
|
+
attr_accessor phone_number: ::String
|
1021
|
+
attr_accessor one_click_id_delay: ::String
|
1022
|
+
attr_accessor one_click_pin_delay: ::String
|
1023
|
+
SENSITIVE: []
|
1024
|
+
end
|
1025
|
+
|
1026
|
+
class PhoneNumber
|
1027
|
+
attr_accessor number: ::String
|
1028
|
+
attr_accessor type: ("MOBILE" | "WORK" | "HOME")
|
1029
|
+
SENSITIVE: [:number, :type]
|
1030
|
+
end
|
1031
|
+
|
1032
|
+
class ProactiveJoin
|
1033
|
+
attr_accessor enabled_by_motion: bool
|
1034
|
+
SENSITIVE: []
|
1035
|
+
end
|
1036
|
+
|
1037
|
+
class Profile
|
1038
|
+
attr_accessor profile_arn: ::String
|
1039
|
+
attr_accessor profile_name: ::String
|
1040
|
+
attr_accessor is_default: bool
|
1041
|
+
attr_accessor address: ::String
|
1042
|
+
attr_accessor timezone: ::String
|
1043
|
+
attr_accessor distance_unit: ("METRIC" | "IMPERIAL")
|
1044
|
+
attr_accessor temperature_unit: ("FAHRENHEIT" | "CELSIUS")
|
1045
|
+
attr_accessor wake_word: ("ALEXA" | "AMAZON" | "ECHO" | "COMPUTER")
|
1046
|
+
attr_accessor locale: ::String
|
1047
|
+
attr_accessor setup_mode_disabled: bool
|
1048
|
+
attr_accessor max_volume_limit: ::Integer
|
1049
|
+
attr_accessor pstn_enabled: bool
|
1050
|
+
attr_accessor data_retention_opt_in: bool
|
1051
|
+
attr_accessor address_book_arn: ::String
|
1052
|
+
attr_accessor meeting_room_configuration: Types::MeetingRoomConfiguration
|
1053
|
+
SENSITIVE: []
|
1054
|
+
end
|
1055
|
+
|
1056
|
+
class ProfileData
|
1057
|
+
attr_accessor profile_arn: ::String
|
1058
|
+
attr_accessor profile_name: ::String
|
1059
|
+
attr_accessor is_default: bool
|
1060
|
+
attr_accessor address: ::String
|
1061
|
+
attr_accessor timezone: ::String
|
1062
|
+
attr_accessor distance_unit: ("METRIC" | "IMPERIAL")
|
1063
|
+
attr_accessor temperature_unit: ("FAHRENHEIT" | "CELSIUS")
|
1064
|
+
attr_accessor wake_word: ("ALEXA" | "AMAZON" | "ECHO" | "COMPUTER")
|
1065
|
+
attr_accessor locale: ::String
|
1066
|
+
SENSITIVE: []
|
1067
|
+
end
|
1068
|
+
|
1069
|
+
class PutConferencePreferenceRequest
|
1070
|
+
attr_accessor conference_preference: Types::ConferencePreference
|
1071
|
+
SENSITIVE: []
|
1072
|
+
end
|
1073
|
+
|
1074
|
+
class PutConferencePreferenceResponse < Aws::EmptyStructure
|
1075
|
+
end
|
1076
|
+
|
1077
|
+
class PutInvitationConfigurationRequest
|
1078
|
+
attr_accessor organization_name: ::String
|
1079
|
+
attr_accessor contact_email: ::String
|
1080
|
+
attr_accessor private_skill_ids: ::Array[::String]
|
1081
|
+
SENSITIVE: []
|
1082
|
+
end
|
1083
|
+
|
1084
|
+
class PutInvitationConfigurationResponse < Aws::EmptyStructure
|
1085
|
+
end
|
1086
|
+
|
1087
|
+
class PutRoomSkillParameterRequest
|
1088
|
+
attr_accessor room_arn: ::String
|
1089
|
+
attr_accessor skill_id: ::String
|
1090
|
+
attr_accessor room_skill_parameter: Types::RoomSkillParameter
|
1091
|
+
SENSITIVE: []
|
1092
|
+
end
|
1093
|
+
|
1094
|
+
class PutRoomSkillParameterResponse < Aws::EmptyStructure
|
1095
|
+
end
|
1096
|
+
|
1097
|
+
class PutSkillAuthorizationRequest
|
1098
|
+
attr_accessor authorization_result: ::Hash[::String, ::String]
|
1099
|
+
attr_accessor skill_id: ::String
|
1100
|
+
attr_accessor room_arn: ::String
|
1101
|
+
SENSITIVE: [:authorization_result]
|
1102
|
+
end
|
1103
|
+
|
1104
|
+
class PutSkillAuthorizationResponse < Aws::EmptyStructure
|
1105
|
+
end
|
1106
|
+
|
1107
|
+
class RegisterAVSDeviceRequest
|
1108
|
+
attr_accessor client_id: ::String
|
1109
|
+
attr_accessor user_code: ::String
|
1110
|
+
attr_accessor product_id: ::String
|
1111
|
+
attr_accessor device_serial_number: ::String
|
1112
|
+
attr_accessor amazon_id: ::String
|
1113
|
+
attr_accessor room_arn: ::String
|
1114
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1115
|
+
SENSITIVE: []
|
1116
|
+
end
|
1117
|
+
|
1118
|
+
class RegisterAVSDeviceResponse
|
1119
|
+
attr_accessor device_arn: ::String
|
1120
|
+
SENSITIVE: []
|
1121
|
+
end
|
1122
|
+
|
1123
|
+
class RejectSkillRequest
|
1124
|
+
attr_accessor skill_id: ::String
|
1125
|
+
SENSITIVE: []
|
1126
|
+
end
|
1127
|
+
|
1128
|
+
class RejectSkillResponse < Aws::EmptyStructure
|
1129
|
+
end
|
1130
|
+
|
1131
|
+
class RequireCheckIn
|
1132
|
+
attr_accessor release_after_minutes: ::Integer
|
1133
|
+
attr_accessor enabled: bool
|
1134
|
+
SENSITIVE: []
|
1135
|
+
end
|
1136
|
+
|
1137
|
+
class ResolveRoomRequest
|
1138
|
+
attr_accessor user_id: ::String
|
1139
|
+
attr_accessor skill_id: ::String
|
1140
|
+
SENSITIVE: []
|
1141
|
+
end
|
1142
|
+
|
1143
|
+
class ResolveRoomResponse
|
1144
|
+
attr_accessor room_arn: ::String
|
1145
|
+
attr_accessor room_name: ::String
|
1146
|
+
attr_accessor room_skill_parameters: ::Array[Types::RoomSkillParameter]
|
1147
|
+
SENSITIVE: []
|
1148
|
+
end
|
1149
|
+
|
1150
|
+
class ResourceAssociatedException
|
1151
|
+
attr_accessor message: ::String
|
1152
|
+
SENSITIVE: []
|
1153
|
+
end
|
1154
|
+
|
1155
|
+
class ResourceInUseException
|
1156
|
+
attr_accessor message: ::String
|
1157
|
+
attr_accessor client_request_token: ::String
|
1158
|
+
SENSITIVE: []
|
1159
|
+
end
|
1160
|
+
|
1161
|
+
class RevokeInvitationRequest
|
1162
|
+
attr_accessor user_arn: ::String
|
1163
|
+
attr_accessor enrollment_id: ::String
|
1164
|
+
SENSITIVE: []
|
1165
|
+
end
|
1166
|
+
|
1167
|
+
class RevokeInvitationResponse < Aws::EmptyStructure
|
1168
|
+
end
|
1169
|
+
|
1170
|
+
class Room
|
1171
|
+
attr_accessor room_arn: ::String
|
1172
|
+
attr_accessor room_name: ::String
|
1173
|
+
attr_accessor description: ::String
|
1174
|
+
attr_accessor provider_calendar_id: ::String
|
1175
|
+
attr_accessor profile_arn: ::String
|
1176
|
+
SENSITIVE: []
|
1177
|
+
end
|
1178
|
+
|
1179
|
+
class RoomData
|
1180
|
+
attr_accessor room_arn: ::String
|
1181
|
+
attr_accessor room_name: ::String
|
1182
|
+
attr_accessor description: ::String
|
1183
|
+
attr_accessor provider_calendar_id: ::String
|
1184
|
+
attr_accessor profile_arn: ::String
|
1185
|
+
attr_accessor profile_name: ::String
|
1186
|
+
SENSITIVE: []
|
1187
|
+
end
|
1188
|
+
|
1189
|
+
class RoomSkillParameter
|
1190
|
+
attr_accessor parameter_key: ::String
|
1191
|
+
attr_accessor parameter_value: ::String
|
1192
|
+
SENSITIVE: []
|
1193
|
+
end
|
1194
|
+
|
1195
|
+
class SearchAddressBooksRequest
|
1196
|
+
attr_accessor filters: ::Array[Types::Filter]
|
1197
|
+
attr_accessor sort_criteria: ::Array[Types::Sort]
|
1198
|
+
attr_accessor next_token: ::String
|
1199
|
+
attr_accessor max_results: ::Integer
|
1200
|
+
SENSITIVE: []
|
1201
|
+
end
|
1202
|
+
|
1203
|
+
class SearchAddressBooksResponse
|
1204
|
+
attr_accessor address_books: ::Array[Types::AddressBookData]
|
1205
|
+
attr_accessor next_token: ::String
|
1206
|
+
attr_accessor total_count: ::Integer
|
1207
|
+
SENSITIVE: []
|
1208
|
+
end
|
1209
|
+
|
1210
|
+
class SearchContactsRequest
|
1211
|
+
attr_accessor filters: ::Array[Types::Filter]
|
1212
|
+
attr_accessor sort_criteria: ::Array[Types::Sort]
|
1213
|
+
attr_accessor next_token: ::String
|
1214
|
+
attr_accessor max_results: ::Integer
|
1215
|
+
SENSITIVE: []
|
1216
|
+
end
|
1217
|
+
|
1218
|
+
class SearchContactsResponse
|
1219
|
+
attr_accessor contacts: ::Array[Types::ContactData]
|
1220
|
+
attr_accessor next_token: ::String
|
1221
|
+
attr_accessor total_count: ::Integer
|
1222
|
+
SENSITIVE: []
|
1223
|
+
end
|
1224
|
+
|
1225
|
+
class SearchDevicesRequest
|
1226
|
+
attr_accessor next_token: ::String
|
1227
|
+
attr_accessor max_results: ::Integer
|
1228
|
+
attr_accessor filters: ::Array[Types::Filter]
|
1229
|
+
attr_accessor sort_criteria: ::Array[Types::Sort]
|
1230
|
+
SENSITIVE: []
|
1231
|
+
end
|
1232
|
+
|
1233
|
+
class SearchDevicesResponse
|
1234
|
+
attr_accessor devices: ::Array[Types::DeviceData]
|
1235
|
+
attr_accessor next_token: ::String
|
1236
|
+
attr_accessor total_count: ::Integer
|
1237
|
+
SENSITIVE: []
|
1238
|
+
end
|
1239
|
+
|
1240
|
+
class SearchNetworkProfilesRequest
|
1241
|
+
attr_accessor next_token: ::String
|
1242
|
+
attr_accessor max_results: ::Integer
|
1243
|
+
attr_accessor filters: ::Array[Types::Filter]
|
1244
|
+
attr_accessor sort_criteria: ::Array[Types::Sort]
|
1245
|
+
SENSITIVE: []
|
1246
|
+
end
|
1247
|
+
|
1248
|
+
class SearchNetworkProfilesResponse
|
1249
|
+
attr_accessor network_profiles: ::Array[Types::NetworkProfileData]
|
1250
|
+
attr_accessor next_token: ::String
|
1251
|
+
attr_accessor total_count: ::Integer
|
1252
|
+
SENSITIVE: []
|
1253
|
+
end
|
1254
|
+
|
1255
|
+
class SearchProfilesRequest
|
1256
|
+
attr_accessor next_token: ::String
|
1257
|
+
attr_accessor max_results: ::Integer
|
1258
|
+
attr_accessor filters: ::Array[Types::Filter]
|
1259
|
+
attr_accessor sort_criteria: ::Array[Types::Sort]
|
1260
|
+
SENSITIVE: []
|
1261
|
+
end
|
1262
|
+
|
1263
|
+
class SearchProfilesResponse
|
1264
|
+
attr_accessor profiles: ::Array[Types::ProfileData]
|
1265
|
+
attr_accessor next_token: ::String
|
1266
|
+
attr_accessor total_count: ::Integer
|
1267
|
+
SENSITIVE: []
|
1268
|
+
end
|
1269
|
+
|
1270
|
+
class SearchRoomsRequest
|
1271
|
+
attr_accessor next_token: ::String
|
1272
|
+
attr_accessor max_results: ::Integer
|
1273
|
+
attr_accessor filters: ::Array[Types::Filter]
|
1274
|
+
attr_accessor sort_criteria: ::Array[Types::Sort]
|
1275
|
+
SENSITIVE: []
|
1276
|
+
end
|
1277
|
+
|
1278
|
+
class SearchRoomsResponse
|
1279
|
+
attr_accessor rooms: ::Array[Types::RoomData]
|
1280
|
+
attr_accessor next_token: ::String
|
1281
|
+
attr_accessor total_count: ::Integer
|
1282
|
+
SENSITIVE: []
|
1283
|
+
end
|
1284
|
+
|
1285
|
+
class SearchSkillGroupsRequest
|
1286
|
+
attr_accessor next_token: ::String
|
1287
|
+
attr_accessor max_results: ::Integer
|
1288
|
+
attr_accessor filters: ::Array[Types::Filter]
|
1289
|
+
attr_accessor sort_criteria: ::Array[Types::Sort]
|
1290
|
+
SENSITIVE: []
|
1291
|
+
end
|
1292
|
+
|
1293
|
+
class SearchSkillGroupsResponse
|
1294
|
+
attr_accessor skill_groups: ::Array[Types::SkillGroupData]
|
1295
|
+
attr_accessor next_token: ::String
|
1296
|
+
attr_accessor total_count: ::Integer
|
1297
|
+
SENSITIVE: []
|
1298
|
+
end
|
1299
|
+
|
1300
|
+
class SearchUsersRequest
|
1301
|
+
attr_accessor next_token: ::String
|
1302
|
+
attr_accessor max_results: ::Integer
|
1303
|
+
attr_accessor filters: ::Array[Types::Filter]
|
1304
|
+
attr_accessor sort_criteria: ::Array[Types::Sort]
|
1305
|
+
SENSITIVE: []
|
1306
|
+
end
|
1307
|
+
|
1308
|
+
class SearchUsersResponse
|
1309
|
+
attr_accessor users: ::Array[Types::UserData]
|
1310
|
+
attr_accessor next_token: ::String
|
1311
|
+
attr_accessor total_count: ::Integer
|
1312
|
+
SENSITIVE: []
|
1313
|
+
end
|
1314
|
+
|
1315
|
+
class SendAnnouncementRequest
|
1316
|
+
attr_accessor room_filters: ::Array[Types::Filter]
|
1317
|
+
attr_accessor content: Types::Content
|
1318
|
+
attr_accessor time_to_live_in_seconds: ::Integer
|
1319
|
+
attr_accessor client_request_token: ::String
|
1320
|
+
SENSITIVE: []
|
1321
|
+
end
|
1322
|
+
|
1323
|
+
class SendAnnouncementResponse
|
1324
|
+
attr_accessor announcement_arn: ::String
|
1325
|
+
SENSITIVE: []
|
1326
|
+
end
|
1327
|
+
|
1328
|
+
class SendInvitationRequest
|
1329
|
+
attr_accessor user_arn: ::String
|
1330
|
+
SENSITIVE: []
|
1331
|
+
end
|
1332
|
+
|
1333
|
+
class SendInvitationResponse < Aws::EmptyStructure
|
1334
|
+
end
|
1335
|
+
|
1336
|
+
class SipAddress
|
1337
|
+
attr_accessor uri: ::String
|
1338
|
+
attr_accessor type: ("WORK")
|
1339
|
+
SENSITIVE: [:uri, :type]
|
1340
|
+
end
|
1341
|
+
|
1342
|
+
class SkillDetails
|
1343
|
+
attr_accessor product_description: ::String
|
1344
|
+
attr_accessor invocation_phrase: ::String
|
1345
|
+
attr_accessor release_date: ::String
|
1346
|
+
attr_accessor end_user_license_agreement: ::String
|
1347
|
+
attr_accessor generic_keywords: ::Array[::String]
|
1348
|
+
attr_accessor bullet_points: ::Array[::String]
|
1349
|
+
attr_accessor new_in_this_version_bullet_points: ::Array[::String]
|
1350
|
+
attr_accessor skill_types: ::Array[::String]
|
1351
|
+
attr_accessor reviews: ::Hash[::String, ::String]
|
1352
|
+
attr_accessor developer_info: Types::DeveloperInfo
|
1353
|
+
SENSITIVE: []
|
1354
|
+
end
|
1355
|
+
|
1356
|
+
class SkillGroup
|
1357
|
+
attr_accessor skill_group_arn: ::String
|
1358
|
+
attr_accessor skill_group_name: ::String
|
1359
|
+
attr_accessor description: ::String
|
1360
|
+
SENSITIVE: []
|
1361
|
+
end
|
1362
|
+
|
1363
|
+
class SkillGroupData
|
1364
|
+
attr_accessor skill_group_arn: ::String
|
1365
|
+
attr_accessor skill_group_name: ::String
|
1366
|
+
attr_accessor description: ::String
|
1367
|
+
SENSITIVE: []
|
1368
|
+
end
|
1369
|
+
|
1370
|
+
class SkillNotLinkedException
|
1371
|
+
attr_accessor message: ::String
|
1372
|
+
SENSITIVE: []
|
1373
|
+
end
|
1374
|
+
|
1375
|
+
class SkillSummary
|
1376
|
+
attr_accessor skill_id: ::String
|
1377
|
+
attr_accessor skill_name: ::String
|
1378
|
+
attr_accessor supports_linking: bool
|
1379
|
+
attr_accessor enablement_type: ("ENABLED" | "PENDING")
|
1380
|
+
attr_accessor skill_type: ("PUBLIC" | "PRIVATE")
|
1381
|
+
SENSITIVE: []
|
1382
|
+
end
|
1383
|
+
|
1384
|
+
class SkillsStoreSkill
|
1385
|
+
attr_accessor skill_id: ::String
|
1386
|
+
attr_accessor skill_name: ::String
|
1387
|
+
attr_accessor short_description: ::String
|
1388
|
+
attr_accessor icon_url: ::String
|
1389
|
+
attr_accessor sample_utterances: ::Array[::String]
|
1390
|
+
attr_accessor skill_details: Types::SkillDetails
|
1391
|
+
attr_accessor supports_linking: bool
|
1392
|
+
SENSITIVE: []
|
1393
|
+
end
|
1394
|
+
|
1395
|
+
class SmartHomeAppliance
|
1396
|
+
attr_accessor friendly_name: ::String
|
1397
|
+
attr_accessor description: ::String
|
1398
|
+
attr_accessor manufacturer_name: ::String
|
1399
|
+
SENSITIVE: []
|
1400
|
+
end
|
1401
|
+
|
1402
|
+
class Sort
|
1403
|
+
attr_accessor key: ::String
|
1404
|
+
attr_accessor value: ("ASC" | "DESC")
|
1405
|
+
SENSITIVE: []
|
1406
|
+
end
|
1407
|
+
|
1408
|
+
class Ssml
|
1409
|
+
attr_accessor locale: ("en-US")
|
1410
|
+
attr_accessor value: ::String
|
1411
|
+
SENSITIVE: []
|
1412
|
+
end
|
1413
|
+
|
1414
|
+
class StartDeviceSyncRequest
|
1415
|
+
attr_accessor room_arn: ::String
|
1416
|
+
attr_accessor device_arn: ::String
|
1417
|
+
attr_accessor features: ::Array[("BLUETOOTH" | "VOLUME" | "NOTIFICATIONS" | "LISTS" | "SKILLS" | "NETWORK_PROFILE" | "SETTINGS" | "ALL")]
|
1418
|
+
SENSITIVE: []
|
1419
|
+
end
|
1420
|
+
|
1421
|
+
class StartDeviceSyncResponse < Aws::EmptyStructure
|
1422
|
+
end
|
1423
|
+
|
1424
|
+
class StartSmartHomeApplianceDiscoveryRequest
|
1425
|
+
attr_accessor room_arn: ::String
|
1426
|
+
SENSITIVE: []
|
1427
|
+
end
|
1428
|
+
|
1429
|
+
class StartSmartHomeApplianceDiscoveryResponse < Aws::EmptyStructure
|
1430
|
+
end
|
1431
|
+
|
1432
|
+
class Tag
|
1433
|
+
attr_accessor key: ::String
|
1434
|
+
attr_accessor value: ::String
|
1435
|
+
SENSITIVE: []
|
1436
|
+
end
|
1437
|
+
|
1438
|
+
class TagResourceRequest
|
1439
|
+
attr_accessor arn: ::String
|
1440
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1441
|
+
SENSITIVE: []
|
1442
|
+
end
|
1443
|
+
|
1444
|
+
class TagResourceResponse < Aws::EmptyStructure
|
1445
|
+
end
|
1446
|
+
|
1447
|
+
class Text
|
1448
|
+
attr_accessor locale: ("en-US")
|
1449
|
+
attr_accessor value: ::String
|
1450
|
+
SENSITIVE: []
|
1451
|
+
end
|
1452
|
+
|
1453
|
+
class UnauthorizedException
|
1454
|
+
attr_accessor message: ::String
|
1455
|
+
SENSITIVE: []
|
1456
|
+
end
|
1457
|
+
|
1458
|
+
class UntagResourceRequest
|
1459
|
+
attr_accessor arn: ::String
|
1460
|
+
attr_accessor tag_keys: ::Array[::String]
|
1461
|
+
SENSITIVE: []
|
1462
|
+
end
|
1463
|
+
|
1464
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
1465
|
+
end
|
1466
|
+
|
1467
|
+
class UpdateAddressBookRequest
|
1468
|
+
attr_accessor address_book_arn: ::String
|
1469
|
+
attr_accessor name: ::String
|
1470
|
+
attr_accessor description: ::String
|
1471
|
+
SENSITIVE: []
|
1472
|
+
end
|
1473
|
+
|
1474
|
+
class UpdateAddressBookResponse < Aws::EmptyStructure
|
1475
|
+
end
|
1476
|
+
|
1477
|
+
class UpdateBusinessReportScheduleRequest
|
1478
|
+
attr_accessor schedule_arn: ::String
|
1479
|
+
attr_accessor s3_bucket_name: ::String
|
1480
|
+
attr_accessor s3_key_prefix: ::String
|
1481
|
+
attr_accessor format: ("CSV" | "CSV_ZIP")
|
1482
|
+
attr_accessor schedule_name: ::String
|
1483
|
+
attr_accessor recurrence: Types::BusinessReportRecurrence
|
1484
|
+
SENSITIVE: []
|
1485
|
+
end
|
1486
|
+
|
1487
|
+
class UpdateBusinessReportScheduleResponse < Aws::EmptyStructure
|
1488
|
+
end
|
1489
|
+
|
1490
|
+
class UpdateConferenceProviderRequest
|
1491
|
+
attr_accessor conference_provider_arn: ::String
|
1492
|
+
attr_accessor conference_provider_type: ("CHIME" | "BLUEJEANS" | "FUZE" | "GOOGLE_HANGOUTS" | "POLYCOM" | "RINGCENTRAL" | "SKYPE_FOR_BUSINESS" | "WEBEX" | "ZOOM" | "CUSTOM")
|
1493
|
+
attr_accessor ip_dial_in: Types::IPDialIn
|
1494
|
+
attr_accessor pstn_dial_in: Types::PSTNDialIn
|
1495
|
+
attr_accessor meeting_setting: Types::MeetingSetting
|
1496
|
+
SENSITIVE: []
|
1497
|
+
end
|
1498
|
+
|
1499
|
+
class UpdateConferenceProviderResponse < Aws::EmptyStructure
|
1500
|
+
end
|
1501
|
+
|
1502
|
+
class UpdateContactRequest
|
1503
|
+
attr_accessor contact_arn: ::String
|
1504
|
+
attr_accessor display_name: ::String
|
1505
|
+
attr_accessor first_name: ::String
|
1506
|
+
attr_accessor last_name: ::String
|
1507
|
+
attr_accessor phone_number: ::String
|
1508
|
+
attr_accessor phone_numbers: ::Array[Types::PhoneNumber]
|
1509
|
+
attr_accessor sip_addresses: ::Array[Types::SipAddress]
|
1510
|
+
SENSITIVE: [:phone_number]
|
1511
|
+
end
|
1512
|
+
|
1513
|
+
class UpdateContactResponse < Aws::EmptyStructure
|
1514
|
+
end
|
1515
|
+
|
1516
|
+
class UpdateDeviceRequest
|
1517
|
+
attr_accessor device_arn: ::String
|
1518
|
+
attr_accessor device_name: ::String
|
1519
|
+
SENSITIVE: []
|
1520
|
+
end
|
1521
|
+
|
1522
|
+
class UpdateDeviceResponse < Aws::EmptyStructure
|
1523
|
+
end
|
1524
|
+
|
1525
|
+
class UpdateEndOfMeetingReminder
|
1526
|
+
attr_accessor reminder_at_minutes: ::Array[::Integer]
|
1527
|
+
attr_accessor reminder_type: ("ANNOUNCEMENT_TIME_CHECK" | "ANNOUNCEMENT_VARIABLE_TIME_LEFT" | "CHIME" | "KNOCK")
|
1528
|
+
attr_accessor enabled: bool
|
1529
|
+
SENSITIVE: []
|
1530
|
+
end
|
1531
|
+
|
1532
|
+
class UpdateGatewayGroupRequest
|
1533
|
+
attr_accessor gateway_group_arn: ::String
|
1534
|
+
attr_accessor name: ::String
|
1535
|
+
attr_accessor description: ::String
|
1536
|
+
SENSITIVE: []
|
1537
|
+
end
|
1538
|
+
|
1539
|
+
class UpdateGatewayGroupResponse < Aws::EmptyStructure
|
1540
|
+
end
|
1541
|
+
|
1542
|
+
class UpdateGatewayRequest
|
1543
|
+
attr_accessor gateway_arn: ::String
|
1544
|
+
attr_accessor name: ::String
|
1545
|
+
attr_accessor description: ::String
|
1546
|
+
attr_accessor software_version: ::String
|
1547
|
+
SENSITIVE: []
|
1548
|
+
end
|
1549
|
+
|
1550
|
+
class UpdateGatewayResponse < Aws::EmptyStructure
|
1551
|
+
end
|
1552
|
+
|
1553
|
+
class UpdateInstantBooking
|
1554
|
+
attr_accessor duration_in_minutes: ::Integer
|
1555
|
+
attr_accessor enabled: bool
|
1556
|
+
SENSITIVE: []
|
1557
|
+
end
|
1558
|
+
|
1559
|
+
class UpdateMeetingRoomConfiguration
|
1560
|
+
attr_accessor room_utilization_metrics_enabled: bool
|
1561
|
+
attr_accessor end_of_meeting_reminder: Types::UpdateEndOfMeetingReminder
|
1562
|
+
attr_accessor instant_booking: Types::UpdateInstantBooking
|
1563
|
+
attr_accessor require_check_in: Types::UpdateRequireCheckIn
|
1564
|
+
attr_accessor proactive_join: Types::UpdateProactiveJoin
|
1565
|
+
SENSITIVE: []
|
1566
|
+
end
|
1567
|
+
|
1568
|
+
class UpdateNetworkProfileRequest
|
1569
|
+
attr_accessor network_profile_arn: ::String
|
1570
|
+
attr_accessor network_profile_name: ::String
|
1571
|
+
attr_accessor description: ::String
|
1572
|
+
attr_accessor current_password: ::String
|
1573
|
+
attr_accessor next_password: ::String
|
1574
|
+
attr_accessor certificate_authority_arn: ::String
|
1575
|
+
attr_accessor trust_anchors: ::Array[::String]
|
1576
|
+
SENSITIVE: [:current_password, :next_password]
|
1577
|
+
end
|
1578
|
+
|
1579
|
+
class UpdateNetworkProfileResponse < Aws::EmptyStructure
|
1580
|
+
end
|
1581
|
+
|
1582
|
+
class UpdateProactiveJoin
|
1583
|
+
attr_accessor enabled_by_motion: bool
|
1584
|
+
SENSITIVE: []
|
1585
|
+
end
|
1586
|
+
|
1587
|
+
class UpdateProfileRequest
|
1588
|
+
attr_accessor profile_arn: ::String
|
1589
|
+
attr_accessor profile_name: ::String
|
1590
|
+
attr_accessor is_default: bool
|
1591
|
+
attr_accessor timezone: ::String
|
1592
|
+
attr_accessor address: ::String
|
1593
|
+
attr_accessor distance_unit: ("METRIC" | "IMPERIAL")
|
1594
|
+
attr_accessor temperature_unit: ("FAHRENHEIT" | "CELSIUS")
|
1595
|
+
attr_accessor wake_word: ("ALEXA" | "AMAZON" | "ECHO" | "COMPUTER")
|
1596
|
+
attr_accessor locale: ::String
|
1597
|
+
attr_accessor setup_mode_disabled: bool
|
1598
|
+
attr_accessor max_volume_limit: ::Integer
|
1599
|
+
attr_accessor pstn_enabled: bool
|
1600
|
+
attr_accessor data_retention_opt_in: bool
|
1601
|
+
attr_accessor meeting_room_configuration: Types::UpdateMeetingRoomConfiguration
|
1602
|
+
SENSITIVE: []
|
1603
|
+
end
|
1604
|
+
|
1605
|
+
class UpdateProfileResponse < Aws::EmptyStructure
|
1606
|
+
end
|
1607
|
+
|
1608
|
+
class UpdateRequireCheckIn
|
1609
|
+
attr_accessor release_after_minutes: ::Integer
|
1610
|
+
attr_accessor enabled: bool
|
1611
|
+
SENSITIVE: []
|
1612
|
+
end
|
1613
|
+
|
1614
|
+
class UpdateRoomRequest
|
1615
|
+
attr_accessor room_arn: ::String
|
1616
|
+
attr_accessor room_name: ::String
|
1617
|
+
attr_accessor description: ::String
|
1618
|
+
attr_accessor provider_calendar_id: ::String
|
1619
|
+
attr_accessor profile_arn: ::String
|
1620
|
+
SENSITIVE: []
|
1621
|
+
end
|
1622
|
+
|
1623
|
+
class UpdateRoomResponse < Aws::EmptyStructure
|
1624
|
+
end
|
1625
|
+
|
1626
|
+
class UpdateSkillGroupRequest
|
1627
|
+
attr_accessor skill_group_arn: ::String
|
1628
|
+
attr_accessor skill_group_name: ::String
|
1629
|
+
attr_accessor description: ::String
|
1630
|
+
SENSITIVE: []
|
1631
|
+
end
|
1632
|
+
|
1633
|
+
class UpdateSkillGroupResponse < Aws::EmptyStructure
|
1634
|
+
end
|
1635
|
+
|
1636
|
+
class UserData
|
1637
|
+
attr_accessor user_arn: ::String
|
1638
|
+
attr_accessor first_name: ::String
|
1639
|
+
attr_accessor last_name: ::String
|
1640
|
+
attr_accessor email: ::String
|
1641
|
+
attr_accessor enrollment_status: ("INITIALIZED" | "PENDING" | "REGISTERED" | "DISASSOCIATING" | "DEREGISTERING")
|
1642
|
+
attr_accessor enrollment_id: ::String
|
1643
|
+
SENSITIVE: []
|
1644
|
+
end
|
1645
|
+
end
|
1646
|
+
end
|