aws-sdk-workspacesweb 1.44.0 → 1.45.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-workspacesweb/client.rb +1300 -643
- data/lib/aws-sdk-workspacesweb/client_api.rb +403 -183
- data/lib/aws-sdk-workspacesweb/errors.rb +15 -15
- data/lib/aws-sdk-workspacesweb/types.rb +1476 -1073
- data/lib/aws-sdk-workspacesweb/waiters.rb +15 -0
- data/lib/aws-sdk-workspacesweb.rb +2 -1
- data/sig/client.rbs +277 -167
- data/sig/errors.rbs +3 -3
- data/sig/types.rbs +325 -193
- metadata +4 -3
data/sig/types.rbs
CHANGED
@@ -14,50 +14,62 @@ module Aws::WorkSpacesWeb
|
|
14
14
|
end
|
15
15
|
|
16
16
|
class AssociateBrowserSettingsRequest
|
17
|
-
attr_accessor browser_settings_arn: ::String
|
18
17
|
attr_accessor portal_arn: ::String
|
18
|
+
attr_accessor browser_settings_arn: ::String
|
19
19
|
SENSITIVE: []
|
20
20
|
end
|
21
21
|
|
22
22
|
class AssociateBrowserSettingsResponse
|
23
|
-
attr_accessor browser_settings_arn: ::String
|
24
23
|
attr_accessor portal_arn: ::String
|
24
|
+
attr_accessor browser_settings_arn: ::String
|
25
25
|
SENSITIVE: []
|
26
26
|
end
|
27
27
|
|
28
28
|
class AssociateDataProtectionSettingsRequest
|
29
|
-
attr_accessor data_protection_settings_arn: ::String
|
30
29
|
attr_accessor portal_arn: ::String
|
30
|
+
attr_accessor data_protection_settings_arn: ::String
|
31
31
|
SENSITIVE: []
|
32
32
|
end
|
33
33
|
|
34
34
|
class AssociateDataProtectionSettingsResponse
|
35
|
-
attr_accessor data_protection_settings_arn: ::String
|
36
35
|
attr_accessor portal_arn: ::String
|
36
|
+
attr_accessor data_protection_settings_arn: ::String
|
37
37
|
SENSITIVE: []
|
38
38
|
end
|
39
39
|
|
40
40
|
class AssociateIpAccessSettingsRequest
|
41
|
-
attr_accessor ip_access_settings_arn: ::String
|
42
41
|
attr_accessor portal_arn: ::String
|
42
|
+
attr_accessor ip_access_settings_arn: ::String
|
43
43
|
SENSITIVE: []
|
44
44
|
end
|
45
45
|
|
46
46
|
class AssociateIpAccessSettingsResponse
|
47
|
-
attr_accessor ip_access_settings_arn: ::String
|
48
47
|
attr_accessor portal_arn: ::String
|
48
|
+
attr_accessor ip_access_settings_arn: ::String
|
49
49
|
SENSITIVE: []
|
50
50
|
end
|
51
51
|
|
52
52
|
class AssociateNetworkSettingsRequest
|
53
|
-
attr_accessor network_settings_arn: ::String
|
54
53
|
attr_accessor portal_arn: ::String
|
54
|
+
attr_accessor network_settings_arn: ::String
|
55
55
|
SENSITIVE: []
|
56
56
|
end
|
57
57
|
|
58
58
|
class AssociateNetworkSettingsResponse
|
59
|
+
attr_accessor portal_arn: ::String
|
59
60
|
attr_accessor network_settings_arn: ::String
|
61
|
+
SENSITIVE: []
|
62
|
+
end
|
63
|
+
|
64
|
+
class AssociateSessionLoggerRequest
|
65
|
+
attr_accessor portal_arn: ::String
|
66
|
+
attr_accessor session_logger_arn: ::String
|
67
|
+
SENSITIVE: []
|
68
|
+
end
|
69
|
+
|
70
|
+
class AssociateSessionLoggerResponse
|
60
71
|
attr_accessor portal_arn: ::String
|
72
|
+
attr_accessor session_logger_arn: ::String
|
61
73
|
SENSITIVE: []
|
62
74
|
end
|
63
75
|
|
@@ -98,11 +110,11 @@ module Aws::WorkSpacesWeb
|
|
98
110
|
end
|
99
111
|
|
100
112
|
class BrowserSettings
|
101
|
-
attr_accessor
|
113
|
+
attr_accessor browser_settings_arn: ::String
|
102
114
|
attr_accessor associated_portal_arns: ::Array[::String]
|
103
115
|
attr_accessor browser_policy: ::String
|
104
|
-
attr_accessor browser_settings_arn: ::String
|
105
116
|
attr_accessor customer_managed_key: ::String
|
117
|
+
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
106
118
|
SENSITIVE: [:browser_policy]
|
107
119
|
end
|
108
120
|
|
@@ -112,21 +124,21 @@ module Aws::WorkSpacesWeb
|
|
112
124
|
end
|
113
125
|
|
114
126
|
class Certificate
|
115
|
-
attr_accessor
|
127
|
+
attr_accessor thumbprint: ::String
|
128
|
+
attr_accessor subject: ::String
|
116
129
|
attr_accessor issuer: ::String
|
117
|
-
attr_accessor not_valid_after: ::Time
|
118
130
|
attr_accessor not_valid_before: ::Time
|
119
|
-
attr_accessor
|
120
|
-
attr_accessor
|
131
|
+
attr_accessor not_valid_after: ::Time
|
132
|
+
attr_accessor body: ::String
|
121
133
|
SENSITIVE: []
|
122
134
|
end
|
123
135
|
|
124
136
|
class CertificateSummary
|
137
|
+
attr_accessor thumbprint: ::String
|
138
|
+
attr_accessor subject: ::String
|
125
139
|
attr_accessor issuer: ::String
|
126
|
-
attr_accessor not_valid_after: ::Time
|
127
140
|
attr_accessor not_valid_before: ::Time
|
128
|
-
attr_accessor
|
129
|
-
attr_accessor thumbprint: ::String
|
141
|
+
attr_accessor not_valid_after: ::Time
|
130
142
|
SENSITIVE: []
|
131
143
|
end
|
132
144
|
|
@@ -151,11 +163,11 @@ module Aws::WorkSpacesWeb
|
|
151
163
|
end
|
152
164
|
|
153
165
|
class CreateBrowserSettingsRequest
|
166
|
+
attr_accessor tags: ::Array[Types::Tag]
|
167
|
+
attr_accessor customer_managed_key: ::String
|
154
168
|
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
155
169
|
attr_accessor browser_policy: ::String
|
156
170
|
attr_accessor client_token: ::String
|
157
|
-
attr_accessor customer_managed_key: ::String
|
158
|
-
attr_accessor tags: ::Array[Types::Tag]
|
159
171
|
SENSITIVE: [:browser_policy]
|
160
172
|
end
|
161
173
|
|
@@ -165,14 +177,14 @@ module Aws::WorkSpacesWeb
|
|
165
177
|
end
|
166
178
|
|
167
179
|
class CreateDataProtectionSettingsRequest
|
168
|
-
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
169
|
-
attr_accessor client_token: ::String
|
170
|
-
attr_accessor customer_managed_key: ::String
|
171
|
-
attr_accessor description: ::String
|
172
180
|
attr_accessor display_name: ::String
|
173
|
-
attr_accessor
|
181
|
+
attr_accessor description: ::String
|
174
182
|
attr_accessor tags: ::Array[Types::Tag]
|
175
|
-
|
183
|
+
attr_accessor customer_managed_key: ::String
|
184
|
+
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
185
|
+
attr_accessor inline_redaction_configuration: Types::InlineRedactionConfiguration
|
186
|
+
attr_accessor client_token: ::String
|
187
|
+
SENSITIVE: [:display_name, :description]
|
176
188
|
end
|
177
189
|
|
178
190
|
class CreateDataProtectionSettingsResponse
|
@@ -181,13 +193,13 @@ module Aws::WorkSpacesWeb
|
|
181
193
|
end
|
182
194
|
|
183
195
|
class CreateIdentityProviderRequest
|
184
|
-
attr_accessor
|
185
|
-
attr_accessor identity_provider_details: ::Hash[::String, ::String]
|
196
|
+
attr_accessor portal_arn: ::String
|
186
197
|
attr_accessor identity_provider_name: ::String
|
187
198
|
attr_accessor identity_provider_type: ("SAML" | "Facebook" | "Google" | "LoginWithAmazon" | "SignInWithApple" | "OIDC")
|
188
|
-
attr_accessor
|
199
|
+
attr_accessor identity_provider_details: ::Hash[::String, ::String]
|
200
|
+
attr_accessor client_token: ::String
|
189
201
|
attr_accessor tags: ::Array[Types::Tag]
|
190
|
-
SENSITIVE: [:
|
202
|
+
SENSITIVE: [:identity_provider_name, :identity_provider_details]
|
191
203
|
end
|
192
204
|
|
193
205
|
class CreateIdentityProviderResponse
|
@@ -196,14 +208,14 @@ module Aws::WorkSpacesWeb
|
|
196
208
|
end
|
197
209
|
|
198
210
|
class CreateIpAccessSettingsRequest
|
199
|
-
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
200
|
-
attr_accessor client_token: ::String
|
201
|
-
attr_accessor customer_managed_key: ::String
|
202
|
-
attr_accessor description: ::String
|
203
211
|
attr_accessor display_name: ::String
|
204
|
-
attr_accessor
|
212
|
+
attr_accessor description: ::String
|
205
213
|
attr_accessor tags: ::Array[Types::Tag]
|
206
|
-
|
214
|
+
attr_accessor customer_managed_key: ::String
|
215
|
+
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
216
|
+
attr_accessor ip_rules: ::Array[Types::IpRule]
|
217
|
+
attr_accessor client_token: ::String
|
218
|
+
SENSITIVE: [:display_name, :description, :ip_rules]
|
207
219
|
end
|
208
220
|
|
209
221
|
class CreateIpAccessSettingsResponse
|
@@ -212,11 +224,11 @@ module Aws::WorkSpacesWeb
|
|
212
224
|
end
|
213
225
|
|
214
226
|
class CreateNetworkSettingsRequest
|
215
|
-
attr_accessor
|
216
|
-
attr_accessor security_group_ids: ::Array[::String]
|
227
|
+
attr_accessor vpc_id: ::String
|
217
228
|
attr_accessor subnet_ids: ::Array[::String]
|
229
|
+
attr_accessor security_group_ids: ::Array[::String]
|
218
230
|
attr_accessor tags: ::Array[Types::Tag]
|
219
|
-
attr_accessor
|
231
|
+
attr_accessor client_token: ::String
|
220
232
|
SENSITIVE: []
|
221
233
|
end
|
222
234
|
|
@@ -226,14 +238,14 @@ module Aws::WorkSpacesWeb
|
|
226
238
|
end
|
227
239
|
|
228
240
|
class CreatePortalRequest
|
241
|
+
attr_accessor display_name: ::String
|
242
|
+
attr_accessor tags: ::Array[Types::Tag]
|
243
|
+
attr_accessor customer_managed_key: ::String
|
229
244
|
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
230
|
-
attr_accessor authentication_type: ("Standard" | "IAM_Identity_Center")
|
231
245
|
attr_accessor client_token: ::String
|
232
|
-
attr_accessor
|
233
|
-
attr_accessor display_name: ::String
|
246
|
+
attr_accessor authentication_type: ("Standard" | "IAM_Identity_Center")
|
234
247
|
attr_accessor instance_type: ("standard.regular" | "standard.large" | "standard.xlarge")
|
235
248
|
attr_accessor max_concurrent_sessions: ::Integer
|
236
|
-
attr_accessor tags: ::Array[Types::Tag]
|
237
249
|
SENSITIVE: [:display_name]
|
238
250
|
end
|
239
251
|
|
@@ -243,10 +255,26 @@ module Aws::WorkSpacesWeb
|
|
243
255
|
SENSITIVE: []
|
244
256
|
end
|
245
257
|
|
258
|
+
class CreateSessionLoggerRequest
|
259
|
+
attr_accessor event_filter: Types::EventFilter
|
260
|
+
attr_accessor log_configuration: Types::LogConfiguration
|
261
|
+
attr_accessor display_name: ::String
|
262
|
+
attr_accessor customer_managed_key: ::String
|
263
|
+
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
264
|
+
attr_accessor tags: ::Array[Types::Tag]
|
265
|
+
attr_accessor client_token: ::String
|
266
|
+
SENSITIVE: [:display_name]
|
267
|
+
end
|
268
|
+
|
269
|
+
class CreateSessionLoggerResponse
|
270
|
+
attr_accessor session_logger_arn: ::String
|
271
|
+
SENSITIVE: []
|
272
|
+
end
|
273
|
+
|
246
274
|
class CreateTrustStoreRequest
|
247
275
|
attr_accessor certificate_list: ::Array[::String]
|
248
|
-
attr_accessor client_token: ::String
|
249
276
|
attr_accessor tags: ::Array[Types::Tag]
|
277
|
+
attr_accessor client_token: ::String
|
250
278
|
SENSITIVE: []
|
251
279
|
end
|
252
280
|
|
@@ -256,9 +284,9 @@ module Aws::WorkSpacesWeb
|
|
256
284
|
end
|
257
285
|
|
258
286
|
class CreateUserAccessLoggingSettingsRequest
|
259
|
-
attr_accessor client_token: ::String
|
260
287
|
attr_accessor kinesis_stream_arn: ::String
|
261
288
|
attr_accessor tags: ::Array[Types::Tag]
|
289
|
+
attr_accessor client_token: ::String
|
262
290
|
SENSITIVE: []
|
263
291
|
end
|
264
292
|
|
@@ -268,20 +296,20 @@ module Aws::WorkSpacesWeb
|
|
268
296
|
end
|
269
297
|
|
270
298
|
class CreateUserSettingsRequest
|
271
|
-
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
272
|
-
attr_accessor client_token: ::String
|
273
|
-
attr_accessor cookie_synchronization_configuration: Types::CookieSynchronizationConfiguration
|
274
299
|
attr_accessor copy_allowed: ("Disabled" | "Enabled")
|
275
|
-
attr_accessor customer_managed_key: ::String
|
276
|
-
attr_accessor deep_link_allowed: ("Disabled" | "Enabled")
|
277
|
-
attr_accessor disconnect_timeout_in_minutes: ::Integer
|
278
|
-
attr_accessor download_allowed: ("Disabled" | "Enabled")
|
279
|
-
attr_accessor idle_disconnect_timeout_in_minutes: ::Integer
|
280
300
|
attr_accessor paste_allowed: ("Disabled" | "Enabled")
|
301
|
+
attr_accessor download_allowed: ("Disabled" | "Enabled")
|
302
|
+
attr_accessor upload_allowed: ("Disabled" | "Enabled")
|
281
303
|
attr_accessor print_allowed: ("Disabled" | "Enabled")
|
282
304
|
attr_accessor tags: ::Array[Types::Tag]
|
305
|
+
attr_accessor disconnect_timeout_in_minutes: ::Integer
|
306
|
+
attr_accessor idle_disconnect_timeout_in_minutes: ::Integer
|
307
|
+
attr_accessor client_token: ::String
|
308
|
+
attr_accessor cookie_synchronization_configuration: Types::CookieSynchronizationConfiguration
|
309
|
+
attr_accessor customer_managed_key: ::String
|
310
|
+
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
311
|
+
attr_accessor deep_link_allowed: ("Disabled" | "Enabled")
|
283
312
|
attr_accessor toolbar_configuration: Types::ToolbarConfiguration
|
284
|
-
attr_accessor upload_allowed: ("Disabled" | "Enabled")
|
285
313
|
SENSITIVE: [:cookie_synchronization_configuration]
|
286
314
|
end
|
287
315
|
|
@@ -291,31 +319,31 @@ module Aws::WorkSpacesWeb
|
|
291
319
|
end
|
292
320
|
|
293
321
|
class CustomPattern
|
294
|
-
attr_accessor keyword_regex: ::String
|
295
|
-
attr_accessor pattern_description: ::String
|
296
322
|
attr_accessor pattern_name: ::String
|
297
323
|
attr_accessor pattern_regex: ::String
|
298
|
-
|
324
|
+
attr_accessor pattern_description: ::String
|
325
|
+
attr_accessor keyword_regex: ::String
|
326
|
+
SENSITIVE: [:pattern_name, :pattern_regex, :pattern_description, :keyword_regex]
|
299
327
|
end
|
300
328
|
|
301
329
|
class DataProtectionSettings
|
302
|
-
attr_accessor
|
330
|
+
attr_accessor data_protection_settings_arn: ::String
|
331
|
+
attr_accessor inline_redaction_configuration: Types::InlineRedactionConfiguration
|
303
332
|
attr_accessor associated_portal_arns: ::Array[::String]
|
333
|
+
attr_accessor display_name: ::String
|
334
|
+
attr_accessor description: ::String
|
304
335
|
attr_accessor creation_date: ::Time
|
305
336
|
attr_accessor customer_managed_key: ::String
|
306
|
-
attr_accessor
|
307
|
-
|
308
|
-
attr_accessor display_name: ::String
|
309
|
-
attr_accessor inline_redaction_configuration: Types::InlineRedactionConfiguration
|
310
|
-
SENSITIVE: [:description, :display_name]
|
337
|
+
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
338
|
+
SENSITIVE: [:display_name, :description]
|
311
339
|
end
|
312
340
|
|
313
341
|
class DataProtectionSettingsSummary
|
314
|
-
attr_accessor creation_date: ::Time
|
315
342
|
attr_accessor data_protection_settings_arn: ::String
|
316
|
-
attr_accessor description: ::String
|
317
343
|
attr_accessor display_name: ::String
|
318
|
-
|
344
|
+
attr_accessor description: ::String
|
345
|
+
attr_accessor creation_date: ::Time
|
346
|
+
SENSITIVE: [:display_name, :description]
|
319
347
|
end
|
320
348
|
|
321
349
|
class DeleteBrowserSettingsRequest
|
@@ -366,6 +394,14 @@ module Aws::WorkSpacesWeb
|
|
366
394
|
class DeletePortalResponse < Aws::EmptyStructure
|
367
395
|
end
|
368
396
|
|
397
|
+
class DeleteSessionLoggerRequest
|
398
|
+
attr_accessor session_logger_arn: ::String
|
399
|
+
SENSITIVE: []
|
400
|
+
end
|
401
|
+
|
402
|
+
class DeleteSessionLoggerResponse < Aws::EmptyStructure
|
403
|
+
end
|
404
|
+
|
369
405
|
class DeleteTrustStoreRequest
|
370
406
|
attr_accessor trust_store_arn: ::String
|
371
407
|
SENSITIVE: []
|
@@ -422,6 +458,14 @@ module Aws::WorkSpacesWeb
|
|
422
458
|
class DisassociateNetworkSettingsResponse < Aws::EmptyStructure
|
423
459
|
end
|
424
460
|
|
461
|
+
class DisassociateSessionLoggerRequest
|
462
|
+
attr_accessor portal_arn: ::String
|
463
|
+
SENSITIVE: []
|
464
|
+
end
|
465
|
+
|
466
|
+
class DisassociateSessionLoggerResponse < Aws::EmptyStructure
|
467
|
+
end
|
468
|
+
|
425
469
|
class DisassociateTrustStoreRequest
|
426
470
|
attr_accessor portal_arn: ::String
|
427
471
|
SENSITIVE: []
|
@@ -446,6 +490,20 @@ module Aws::WorkSpacesWeb
|
|
446
490
|
class DisassociateUserSettingsResponse < Aws::EmptyStructure
|
447
491
|
end
|
448
492
|
|
493
|
+
class EventFilter
|
494
|
+
attr_accessor all: Types::Unit
|
495
|
+
attr_accessor include: ::Array[("WebsiteInteract" | "FileDownloadFromSecureBrowserToRemoteDisk" | "FileTransferFromRemoteToLocalDisk" | "FileTransferFromLocalToRemoteDisk" | "FileUploadFromRemoteDiskToSecureBrowser" | "ContentPasteToWebsite" | "ContentTransferFromLocalToRemoteClipboard" | "ContentCopyFromWebsite" | "UrlLoad" | "TabOpen" | "TabClose" | "PrintJobSubmit" | "SessionConnect" | "SessionStart" | "SessionDisconnect" | "SessionEnd")]
|
496
|
+
attr_accessor unknown: untyped
|
497
|
+
SENSITIVE: []
|
498
|
+
|
499
|
+
class All < EventFilter
|
500
|
+
end
|
501
|
+
class Include < EventFilter
|
502
|
+
end
|
503
|
+
class Unknown < EventFilter
|
504
|
+
end
|
505
|
+
end
|
506
|
+
|
449
507
|
class ExpireSessionRequest
|
450
508
|
attr_accessor portal_id: ::String
|
451
509
|
attr_accessor session_id: ::String
|
@@ -526,6 +584,16 @@ module Aws::WorkSpacesWeb
|
|
526
584
|
SENSITIVE: []
|
527
585
|
end
|
528
586
|
|
587
|
+
class GetSessionLoggerRequest
|
588
|
+
attr_accessor session_logger_arn: ::String
|
589
|
+
SENSITIVE: []
|
590
|
+
end
|
591
|
+
|
592
|
+
class GetSessionLoggerResponse
|
593
|
+
attr_accessor session_logger: Types::SessionLogger
|
594
|
+
SENSITIVE: []
|
595
|
+
end
|
596
|
+
|
529
597
|
class GetSessionRequest
|
530
598
|
attr_accessor portal_id: ::String
|
531
599
|
attr_accessor session_id: ::String
|
@@ -538,14 +606,14 @@ module Aws::WorkSpacesWeb
|
|
538
606
|
end
|
539
607
|
|
540
608
|
class GetTrustStoreCertificateRequest
|
541
|
-
attr_accessor thumbprint: ::String
|
542
609
|
attr_accessor trust_store_arn: ::String
|
610
|
+
attr_accessor thumbprint: ::String
|
543
611
|
SENSITIVE: []
|
544
612
|
end
|
545
613
|
|
546
614
|
class GetTrustStoreCertificateResponse
|
547
|
-
attr_accessor certificate: Types::Certificate
|
548
615
|
attr_accessor trust_store_arn: ::String
|
616
|
+
attr_accessor certificate: Types::Certificate
|
549
617
|
SENSITIVE: []
|
550
618
|
end
|
551
619
|
|
@@ -581,10 +649,10 @@ module Aws::WorkSpacesWeb
|
|
581
649
|
|
582
650
|
class IdentityProvider
|
583
651
|
attr_accessor identity_provider_arn: ::String
|
584
|
-
attr_accessor identity_provider_details: ::Hash[::String, ::String]
|
585
652
|
attr_accessor identity_provider_name: ::String
|
586
653
|
attr_accessor identity_provider_type: ("SAML" | "Facebook" | "Google" | "LoginWithAmazon" | "SignInWithApple" | "OIDC")
|
587
|
-
|
654
|
+
attr_accessor identity_provider_details: ::Hash[::String, ::String]
|
655
|
+
SENSITIVE: [:identity_provider_name, :identity_provider_details]
|
588
656
|
end
|
589
657
|
|
590
658
|
class IdentityProviderSummary
|
@@ -595,20 +663,20 @@ module Aws::WorkSpacesWeb
|
|
595
663
|
end
|
596
664
|
|
597
665
|
class InlineRedactionConfiguration
|
598
|
-
attr_accessor
|
666
|
+
attr_accessor inline_redaction_patterns: ::Array[Types::InlineRedactionPattern]
|
599
667
|
attr_accessor global_enforced_urls: ::Array[::String]
|
600
668
|
attr_accessor global_exempt_urls: ::Array[::String]
|
601
|
-
attr_accessor
|
669
|
+
attr_accessor global_confidence_level: ::Integer
|
602
670
|
SENSITIVE: []
|
603
671
|
end
|
604
672
|
|
605
673
|
class InlineRedactionPattern
|
606
674
|
attr_accessor built_in_pattern_id: ::String
|
607
|
-
attr_accessor confidence_level: ::Integer
|
608
675
|
attr_accessor custom_pattern: Types::CustomPattern
|
676
|
+
attr_accessor redaction_place_holder: Types::RedactionPlaceHolder
|
609
677
|
attr_accessor enforced_urls: ::Array[::String]
|
610
678
|
attr_accessor exempt_urls: ::Array[::String]
|
611
|
-
attr_accessor
|
679
|
+
attr_accessor confidence_level: ::Integer
|
612
680
|
SENSITIVE: [:built_in_pattern_id]
|
613
681
|
end
|
614
682
|
|
@@ -619,34 +687,34 @@ module Aws::WorkSpacesWeb
|
|
619
687
|
end
|
620
688
|
|
621
689
|
class IpAccessSettings
|
622
|
-
attr_accessor
|
690
|
+
attr_accessor ip_access_settings_arn: ::String
|
623
691
|
attr_accessor associated_portal_arns: ::Array[::String]
|
692
|
+
attr_accessor ip_rules: ::Array[Types::IpRule]
|
693
|
+
attr_accessor display_name: ::String
|
694
|
+
attr_accessor description: ::String
|
624
695
|
attr_accessor creation_date: ::Time
|
625
696
|
attr_accessor customer_managed_key: ::String
|
626
|
-
attr_accessor
|
627
|
-
|
628
|
-
attr_accessor ip_access_settings_arn: ::String
|
629
|
-
attr_accessor ip_rules: ::Array[Types::IpRule]
|
630
|
-
SENSITIVE: [:description, :display_name, :ip_rules]
|
697
|
+
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
698
|
+
SENSITIVE: [:ip_rules, :display_name, :description]
|
631
699
|
end
|
632
700
|
|
633
701
|
class IpAccessSettingsSummary
|
634
|
-
attr_accessor creation_date: ::Time
|
635
|
-
attr_accessor description: ::String
|
636
|
-
attr_accessor display_name: ::String
|
637
702
|
attr_accessor ip_access_settings_arn: ::String
|
638
|
-
|
703
|
+
attr_accessor display_name: ::String
|
704
|
+
attr_accessor description: ::String
|
705
|
+
attr_accessor creation_date: ::Time
|
706
|
+
SENSITIVE: [:display_name, :description]
|
639
707
|
end
|
640
708
|
|
641
709
|
class IpRule
|
642
|
-
attr_accessor description: ::String
|
643
710
|
attr_accessor ip_range: ::String
|
644
|
-
|
711
|
+
attr_accessor description: ::String
|
712
|
+
SENSITIVE: [:ip_range, :description]
|
645
713
|
end
|
646
714
|
|
647
715
|
class ListBrowserSettingsRequest
|
648
|
-
attr_accessor max_results: ::Integer
|
649
716
|
attr_accessor next_token: ::String
|
717
|
+
attr_accessor max_results: ::Integer
|
650
718
|
SENSITIVE: []
|
651
719
|
end
|
652
720
|
|
@@ -657,8 +725,8 @@ module Aws::WorkSpacesWeb
|
|
657
725
|
end
|
658
726
|
|
659
727
|
class ListDataProtectionSettingsRequest
|
660
|
-
attr_accessor max_results: ::Integer
|
661
728
|
attr_accessor next_token: ::String
|
729
|
+
attr_accessor max_results: ::Integer
|
662
730
|
SENSITIVE: []
|
663
731
|
end
|
664
732
|
|
@@ -669,21 +737,21 @@ module Aws::WorkSpacesWeb
|
|
669
737
|
end
|
670
738
|
|
671
739
|
class ListIdentityProvidersRequest
|
672
|
-
attr_accessor max_results: ::Integer
|
673
740
|
attr_accessor next_token: ::String
|
741
|
+
attr_accessor max_results: ::Integer
|
674
742
|
attr_accessor portal_arn: ::String
|
675
743
|
SENSITIVE: []
|
676
744
|
end
|
677
745
|
|
678
746
|
class ListIdentityProvidersResponse
|
679
|
-
attr_accessor identity_providers: ::Array[Types::IdentityProviderSummary]
|
680
747
|
attr_accessor next_token: ::String
|
748
|
+
attr_accessor identity_providers: ::Array[Types::IdentityProviderSummary]
|
681
749
|
SENSITIVE: []
|
682
750
|
end
|
683
751
|
|
684
752
|
class ListIpAccessSettingsRequest
|
685
|
-
attr_accessor max_results: ::Integer
|
686
753
|
attr_accessor next_token: ::String
|
754
|
+
attr_accessor max_results: ::Integer
|
687
755
|
SENSITIVE: []
|
688
756
|
end
|
689
757
|
|
@@ -694,8 +762,8 @@ module Aws::WorkSpacesWeb
|
|
694
762
|
end
|
695
763
|
|
696
764
|
class ListNetworkSettingsRequest
|
697
|
-
attr_accessor max_results: ::Integer
|
698
765
|
attr_accessor next_token: ::String
|
766
|
+
attr_accessor max_results: ::Integer
|
699
767
|
SENSITIVE: []
|
700
768
|
end
|
701
769
|
|
@@ -706,31 +774,43 @@ module Aws::WorkSpacesWeb
|
|
706
774
|
end
|
707
775
|
|
708
776
|
class ListPortalsRequest
|
709
|
-
attr_accessor max_results: ::Integer
|
710
777
|
attr_accessor next_token: ::String
|
778
|
+
attr_accessor max_results: ::Integer
|
711
779
|
SENSITIVE: []
|
712
780
|
end
|
713
781
|
|
714
782
|
class ListPortalsResponse
|
715
|
-
attr_accessor next_token: ::String
|
716
783
|
attr_accessor portals: ::Array[Types::PortalSummary]
|
784
|
+
attr_accessor next_token: ::String
|
717
785
|
SENSITIVE: []
|
718
786
|
end
|
719
787
|
|
720
|
-
class
|
788
|
+
class ListSessionLoggersRequest
|
789
|
+
attr_accessor next_token: ::String
|
721
790
|
attr_accessor max_results: ::Integer
|
791
|
+
SENSITIVE: []
|
792
|
+
end
|
793
|
+
|
794
|
+
class ListSessionLoggersResponse
|
795
|
+
attr_accessor session_loggers: ::Array[Types::SessionLoggerSummary]
|
722
796
|
attr_accessor next_token: ::String
|
797
|
+
SENSITIVE: []
|
798
|
+
end
|
799
|
+
|
800
|
+
class ListSessionsRequest
|
723
801
|
attr_accessor portal_id: ::String
|
802
|
+
attr_accessor username: ::String
|
724
803
|
attr_accessor session_id: ::String
|
725
804
|
attr_accessor sort_by: ("StartTimeAscending" | "StartTimeDescending")
|
726
805
|
attr_accessor status: ("Active" | "Terminated")
|
727
|
-
attr_accessor
|
806
|
+
attr_accessor max_results: ::Integer
|
807
|
+
attr_accessor next_token: ::String
|
728
808
|
SENSITIVE: [:username]
|
729
809
|
end
|
730
810
|
|
731
811
|
class ListSessionsResponse
|
732
|
-
attr_accessor next_token: ::String
|
733
812
|
attr_accessor sessions: ::Array[Types::SessionSummary]
|
813
|
+
attr_accessor next_token: ::String
|
734
814
|
SENSITIVE: []
|
735
815
|
end
|
736
816
|
|
@@ -745,61 +825,66 @@ module Aws::WorkSpacesWeb
|
|
745
825
|
end
|
746
826
|
|
747
827
|
class ListTrustStoreCertificatesRequest
|
748
|
-
attr_accessor max_results: ::Integer
|
749
|
-
attr_accessor next_token: ::String
|
750
828
|
attr_accessor trust_store_arn: ::String
|
829
|
+
attr_accessor next_token: ::String
|
830
|
+
attr_accessor max_results: ::Integer
|
751
831
|
SENSITIVE: []
|
752
832
|
end
|
753
833
|
|
754
834
|
class ListTrustStoreCertificatesResponse
|
755
835
|
attr_accessor certificate_list: ::Array[Types::CertificateSummary]
|
756
|
-
attr_accessor next_token: ::String
|
757
836
|
attr_accessor trust_store_arn: ::String
|
837
|
+
attr_accessor next_token: ::String
|
758
838
|
SENSITIVE: []
|
759
839
|
end
|
760
840
|
|
761
841
|
class ListTrustStoresRequest
|
762
|
-
attr_accessor max_results: ::Integer
|
763
842
|
attr_accessor next_token: ::String
|
843
|
+
attr_accessor max_results: ::Integer
|
764
844
|
SENSITIVE: []
|
765
845
|
end
|
766
846
|
|
767
847
|
class ListTrustStoresResponse
|
768
|
-
attr_accessor next_token: ::String
|
769
848
|
attr_accessor trust_stores: ::Array[Types::TrustStoreSummary]
|
849
|
+
attr_accessor next_token: ::String
|
770
850
|
SENSITIVE: []
|
771
851
|
end
|
772
852
|
|
773
853
|
class ListUserAccessLoggingSettingsRequest
|
774
|
-
attr_accessor max_results: ::Integer
|
775
854
|
attr_accessor next_token: ::String
|
855
|
+
attr_accessor max_results: ::Integer
|
776
856
|
SENSITIVE: []
|
777
857
|
end
|
778
858
|
|
779
859
|
class ListUserAccessLoggingSettingsResponse
|
780
|
-
attr_accessor next_token: ::String
|
781
860
|
attr_accessor user_access_logging_settings: ::Array[Types::UserAccessLoggingSettingsSummary]
|
861
|
+
attr_accessor next_token: ::String
|
782
862
|
SENSITIVE: []
|
783
863
|
end
|
784
864
|
|
785
865
|
class ListUserSettingsRequest
|
786
|
-
attr_accessor max_results: ::Integer
|
787
866
|
attr_accessor next_token: ::String
|
867
|
+
attr_accessor max_results: ::Integer
|
788
868
|
SENSITIVE: []
|
789
869
|
end
|
790
870
|
|
791
871
|
class ListUserSettingsResponse
|
792
|
-
attr_accessor next_token: ::String
|
793
872
|
attr_accessor user_settings: ::Array[Types::UserSettingsSummary]
|
873
|
+
attr_accessor next_token: ::String
|
874
|
+
SENSITIVE: []
|
875
|
+
end
|
876
|
+
|
877
|
+
class LogConfiguration
|
878
|
+
attr_accessor s3: Types::S3LogConfiguration
|
794
879
|
SENSITIVE: []
|
795
880
|
end
|
796
881
|
|
797
882
|
class NetworkSettings
|
798
|
-
attr_accessor associated_portal_arns: ::Array[::String]
|
799
883
|
attr_accessor network_settings_arn: ::String
|
800
|
-
attr_accessor
|
801
|
-
attr_accessor subnet_ids: ::Array[::String]
|
884
|
+
attr_accessor associated_portal_arns: ::Array[::String]
|
802
885
|
attr_accessor vpc_id: ::String
|
886
|
+
attr_accessor subnet_ids: ::Array[::String]
|
887
|
+
attr_accessor security_group_ids: ::Array[::String]
|
803
888
|
SENSITIVE: []
|
804
889
|
end
|
805
890
|
|
@@ -810,53 +895,55 @@ module Aws::WorkSpacesWeb
|
|
810
895
|
end
|
811
896
|
|
812
897
|
class Portal
|
813
|
-
attr_accessor
|
814
|
-
attr_accessor
|
815
|
-
attr_accessor browser_settings_arn: ::String
|
898
|
+
attr_accessor portal_arn: ::String
|
899
|
+
attr_accessor renderer_type: ("AppStream")
|
816
900
|
attr_accessor browser_type: ("Chrome")
|
901
|
+
attr_accessor portal_status: ("Incomplete" | "Pending" | "Active")
|
902
|
+
attr_accessor portal_endpoint: ::String
|
903
|
+
attr_accessor display_name: ::String
|
817
904
|
attr_accessor creation_date: ::Time
|
818
|
-
attr_accessor
|
905
|
+
attr_accessor browser_settings_arn: ::String
|
819
906
|
attr_accessor data_protection_settings_arn: ::String
|
820
|
-
attr_accessor
|
821
|
-
attr_accessor instance_type: ("standard.regular" | "standard.large" | "standard.xlarge")
|
822
|
-
attr_accessor ip_access_settings_arn: ::String
|
823
|
-
attr_accessor max_concurrent_sessions: ::Integer
|
907
|
+
attr_accessor user_settings_arn: ::String
|
824
908
|
attr_accessor network_settings_arn: ::String
|
825
|
-
attr_accessor
|
826
|
-
attr_accessor portal_endpoint: ::String
|
827
|
-
attr_accessor portal_status: ("Incomplete" | "Pending" | "Active")
|
828
|
-
attr_accessor renderer_type: ("AppStream")
|
829
|
-
attr_accessor status_reason: ::String
|
909
|
+
attr_accessor session_logger_arn: ::String
|
830
910
|
attr_accessor trust_store_arn: ::String
|
911
|
+
attr_accessor status_reason: ::String
|
831
912
|
attr_accessor user_access_logging_settings_arn: ::String
|
832
|
-
attr_accessor
|
913
|
+
attr_accessor authentication_type: ("Standard" | "IAM_Identity_Center")
|
914
|
+
attr_accessor ip_access_settings_arn: ::String
|
915
|
+
attr_accessor customer_managed_key: ::String
|
916
|
+
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
917
|
+
attr_accessor instance_type: ("standard.regular" | "standard.large" | "standard.xlarge")
|
918
|
+
attr_accessor max_concurrent_sessions: ::Integer
|
833
919
|
SENSITIVE: [:display_name]
|
834
920
|
end
|
835
921
|
|
836
922
|
class PortalSummary
|
837
|
-
attr_accessor
|
838
|
-
attr_accessor
|
923
|
+
attr_accessor portal_arn: ::String
|
924
|
+
attr_accessor renderer_type: ("AppStream")
|
839
925
|
attr_accessor browser_type: ("Chrome")
|
926
|
+
attr_accessor portal_status: ("Incomplete" | "Pending" | "Active")
|
927
|
+
attr_accessor portal_endpoint: ::String
|
928
|
+
attr_accessor display_name: ::String
|
840
929
|
attr_accessor creation_date: ::Time
|
930
|
+
attr_accessor browser_settings_arn: ::String
|
841
931
|
attr_accessor data_protection_settings_arn: ::String
|
842
|
-
attr_accessor
|
843
|
-
attr_accessor instance_type: ("standard.regular" | "standard.large" | "standard.xlarge")
|
844
|
-
attr_accessor ip_access_settings_arn: ::String
|
845
|
-
attr_accessor max_concurrent_sessions: ::Integer
|
932
|
+
attr_accessor user_settings_arn: ::String
|
846
933
|
attr_accessor network_settings_arn: ::String
|
847
|
-
attr_accessor
|
848
|
-
attr_accessor portal_endpoint: ::String
|
849
|
-
attr_accessor portal_status: ("Incomplete" | "Pending" | "Active")
|
850
|
-
attr_accessor renderer_type: ("AppStream")
|
934
|
+
attr_accessor session_logger_arn: ::String
|
851
935
|
attr_accessor trust_store_arn: ::String
|
852
936
|
attr_accessor user_access_logging_settings_arn: ::String
|
853
|
-
attr_accessor
|
937
|
+
attr_accessor authentication_type: ("Standard" | "IAM_Identity_Center")
|
938
|
+
attr_accessor ip_access_settings_arn: ::String
|
939
|
+
attr_accessor instance_type: ("standard.regular" | "standard.large" | "standard.xlarge")
|
940
|
+
attr_accessor max_concurrent_sessions: ::Integer
|
854
941
|
SENSITIVE: [:display_name]
|
855
942
|
end
|
856
943
|
|
857
944
|
class RedactionPlaceHolder
|
858
|
-
attr_accessor redaction_place_holder_text: ::String
|
859
945
|
attr_accessor redaction_place_holder_type: ("CustomText")
|
946
|
+
attr_accessor redaction_place_holder_text: ::String
|
860
947
|
SENSITIVE: [:redaction_place_holder_text]
|
861
948
|
end
|
862
949
|
|
@@ -867,33 +954,62 @@ module Aws::WorkSpacesWeb
|
|
867
954
|
SENSITIVE: []
|
868
955
|
end
|
869
956
|
|
957
|
+
class S3LogConfiguration
|
958
|
+
attr_accessor bucket: ::String
|
959
|
+
attr_accessor key_prefix: ::String
|
960
|
+
attr_accessor bucket_owner: ::String
|
961
|
+
attr_accessor log_file_format: ("JSONLines" | "Json")
|
962
|
+
attr_accessor folder_structure: ("Flat" | "NestedByDate")
|
963
|
+
SENSITIVE: [:bucket, :key_prefix]
|
964
|
+
end
|
965
|
+
|
870
966
|
class ServiceQuotaExceededException
|
871
967
|
attr_accessor message: ::String
|
872
|
-
attr_accessor quota_code: ::String
|
873
968
|
attr_accessor resource_id: ::String
|
874
969
|
attr_accessor resource_type: ::String
|
875
970
|
attr_accessor service_code: ::String
|
971
|
+
attr_accessor quota_code: ::String
|
876
972
|
SENSITIVE: []
|
877
973
|
end
|
878
974
|
|
879
975
|
class Session
|
880
|
-
attr_accessor client_ip_addresses: ::Array[::String]
|
881
|
-
attr_accessor end_time: ::Time
|
882
976
|
attr_accessor portal_arn: ::String
|
883
977
|
attr_accessor session_id: ::String
|
884
|
-
attr_accessor start_time: ::Time
|
885
|
-
attr_accessor status: ("Active" | "Terminated")
|
886
978
|
attr_accessor username: ::String
|
979
|
+
attr_accessor client_ip_addresses: ::Array[::String]
|
980
|
+
attr_accessor status: ("Active" | "Terminated")
|
981
|
+
attr_accessor start_time: ::Time
|
982
|
+
attr_accessor end_time: ::Time
|
887
983
|
SENSITIVE: [:username]
|
888
984
|
end
|
889
985
|
|
986
|
+
class SessionLogger
|
987
|
+
attr_accessor session_logger_arn: ::String
|
988
|
+
attr_accessor event_filter: Types::EventFilter
|
989
|
+
attr_accessor log_configuration: Types::LogConfiguration
|
990
|
+
attr_accessor customer_managed_key: ::String
|
991
|
+
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
992
|
+
attr_accessor associated_portal_arns: ::Array[::String]
|
993
|
+
attr_accessor display_name: ::String
|
994
|
+
attr_accessor creation_date: ::Time
|
995
|
+
SENSITIVE: [:display_name]
|
996
|
+
end
|
997
|
+
|
998
|
+
class SessionLoggerSummary
|
999
|
+
attr_accessor session_logger_arn: ::String
|
1000
|
+
attr_accessor log_configuration: Types::LogConfiguration
|
1001
|
+
attr_accessor display_name: ::String
|
1002
|
+
attr_accessor creation_date: ::Time
|
1003
|
+
SENSITIVE: [:display_name]
|
1004
|
+
end
|
1005
|
+
|
890
1006
|
class SessionSummary
|
891
|
-
attr_accessor end_time: ::Time
|
892
1007
|
attr_accessor portal_arn: ::String
|
893
1008
|
attr_accessor session_id: ::String
|
894
|
-
attr_accessor start_time: ::Time
|
895
|
-
attr_accessor status: ("Active" | "Terminated")
|
896
1009
|
attr_accessor username: ::String
|
1010
|
+
attr_accessor status: ("Active" | "Terminated")
|
1011
|
+
attr_accessor start_time: ::Time
|
1012
|
+
attr_accessor end_time: ::Time
|
897
1013
|
SENSITIVE: [:username]
|
898
1014
|
end
|
899
1015
|
|
@@ -904,9 +1020,9 @@ module Aws::WorkSpacesWeb
|
|
904
1020
|
end
|
905
1021
|
|
906
1022
|
class TagResourceRequest
|
907
|
-
attr_accessor client_token: ::String
|
908
1023
|
attr_accessor resource_arn: ::String
|
909
1024
|
attr_accessor tags: ::Array[Types::Tag]
|
1025
|
+
attr_accessor client_token: ::String
|
910
1026
|
SENSITIVE: []
|
911
1027
|
end
|
912
1028
|
|
@@ -915,9 +1031,9 @@ module Aws::WorkSpacesWeb
|
|
915
1031
|
|
916
1032
|
class ThrottlingException
|
917
1033
|
attr_accessor message: ::String
|
1034
|
+
attr_accessor service_code: ::String
|
918
1035
|
attr_accessor quota_code: ::String
|
919
1036
|
attr_accessor retry_after_seconds: ::Integer
|
920
|
-
attr_accessor service_code: ::String
|
921
1037
|
SENSITIVE: []
|
922
1038
|
end
|
923
1039
|
|
@@ -928,10 +1044,10 @@ module Aws::WorkSpacesWeb
|
|
928
1044
|
end
|
929
1045
|
|
930
1046
|
class ToolbarConfiguration
|
931
|
-
attr_accessor hidden_toolbar_items: ::Array[("Windows" | "DualMonitor" | "FullScreen" | "Webcam" | "Microphone")]
|
932
|
-
attr_accessor max_display_resolution: ("size4096X2160" | "size3840X2160" | "size3440X1440" | "size2560X1440" | "size1920X1080" | "size1280X720" | "size1024X768" | "size800X600")
|
933
1047
|
attr_accessor toolbar_type: ("Floating" | "Docked")
|
934
1048
|
attr_accessor visual_mode: ("Dark" | "Light")
|
1049
|
+
attr_accessor hidden_toolbar_items: ::Array[("Windows" | "DualMonitor" | "FullScreen" | "Webcam" | "Microphone")]
|
1050
|
+
attr_accessor max_display_resolution: ("size4096X2160" | "size3840X2160" | "size3440X1440" | "size2560X1440" | "size1920X1080" | "size1280X720" | "size1024X768" | "size800X600")
|
935
1051
|
SENSITIVE: []
|
936
1052
|
end
|
937
1053
|
|
@@ -946,6 +1062,9 @@ module Aws::WorkSpacesWeb
|
|
946
1062
|
SENSITIVE: []
|
947
1063
|
end
|
948
1064
|
|
1065
|
+
class Unit < Aws::EmptyStructure
|
1066
|
+
end
|
1067
|
+
|
949
1068
|
class UntagResourceRequest
|
950
1069
|
attr_accessor resource_arn: ::String
|
951
1070
|
attr_accessor tag_keys: ::Array[::String]
|
@@ -956,8 +1075,8 @@ module Aws::WorkSpacesWeb
|
|
956
1075
|
end
|
957
1076
|
|
958
1077
|
class UpdateBrowserSettingsRequest
|
959
|
-
attr_accessor browser_policy: ::String
|
960
1078
|
attr_accessor browser_settings_arn: ::String
|
1079
|
+
attr_accessor browser_policy: ::String
|
961
1080
|
attr_accessor client_token: ::String
|
962
1081
|
SENSITIVE: [:browser_policy]
|
963
1082
|
end
|
@@ -968,12 +1087,12 @@ module Aws::WorkSpacesWeb
|
|
968
1087
|
end
|
969
1088
|
|
970
1089
|
class UpdateDataProtectionSettingsRequest
|
971
|
-
attr_accessor client_token: ::String
|
972
1090
|
attr_accessor data_protection_settings_arn: ::String
|
973
|
-
attr_accessor description: ::String
|
974
|
-
attr_accessor display_name: ::String
|
975
1091
|
attr_accessor inline_redaction_configuration: Types::InlineRedactionConfiguration
|
976
|
-
|
1092
|
+
attr_accessor display_name: ::String
|
1093
|
+
attr_accessor description: ::String
|
1094
|
+
attr_accessor client_token: ::String
|
1095
|
+
SENSITIVE: [:display_name, :description]
|
977
1096
|
end
|
978
1097
|
|
979
1098
|
class UpdateDataProtectionSettingsResponse
|
@@ -982,12 +1101,12 @@ module Aws::WorkSpacesWeb
|
|
982
1101
|
end
|
983
1102
|
|
984
1103
|
class UpdateIdentityProviderRequest
|
985
|
-
attr_accessor client_token: ::String
|
986
1104
|
attr_accessor identity_provider_arn: ::String
|
987
|
-
attr_accessor identity_provider_details: ::Hash[::String, ::String]
|
988
1105
|
attr_accessor identity_provider_name: ::String
|
989
1106
|
attr_accessor identity_provider_type: ("SAML" | "Facebook" | "Google" | "LoginWithAmazon" | "SignInWithApple" | "OIDC")
|
990
|
-
|
1107
|
+
attr_accessor identity_provider_details: ::Hash[::String, ::String]
|
1108
|
+
attr_accessor client_token: ::String
|
1109
|
+
SENSITIVE: [:identity_provider_name, :identity_provider_details]
|
991
1110
|
end
|
992
1111
|
|
993
1112
|
class UpdateIdentityProviderResponse
|
@@ -996,12 +1115,12 @@ module Aws::WorkSpacesWeb
|
|
996
1115
|
end
|
997
1116
|
|
998
1117
|
class UpdateIpAccessSettingsRequest
|
999
|
-
attr_accessor client_token: ::String
|
1000
|
-
attr_accessor description: ::String
|
1001
|
-
attr_accessor display_name: ::String
|
1002
1118
|
attr_accessor ip_access_settings_arn: ::String
|
1119
|
+
attr_accessor display_name: ::String
|
1120
|
+
attr_accessor description: ::String
|
1003
1121
|
attr_accessor ip_rules: ::Array[Types::IpRule]
|
1004
|
-
|
1122
|
+
attr_accessor client_token: ::String
|
1123
|
+
SENSITIVE: [:display_name, :description, :ip_rules]
|
1005
1124
|
end
|
1006
1125
|
|
1007
1126
|
class UpdateIpAccessSettingsResponse
|
@@ -1010,11 +1129,11 @@ module Aws::WorkSpacesWeb
|
|
1010
1129
|
end
|
1011
1130
|
|
1012
1131
|
class UpdateNetworkSettingsRequest
|
1013
|
-
attr_accessor client_token: ::String
|
1014
1132
|
attr_accessor network_settings_arn: ::String
|
1015
|
-
attr_accessor security_group_ids: ::Array[::String]
|
1016
|
-
attr_accessor subnet_ids: ::Array[::String]
|
1017
1133
|
attr_accessor vpc_id: ::String
|
1134
|
+
attr_accessor subnet_ids: ::Array[::String]
|
1135
|
+
attr_accessor security_group_ids: ::Array[::String]
|
1136
|
+
attr_accessor client_token: ::String
|
1018
1137
|
SENSITIVE: []
|
1019
1138
|
end
|
1020
1139
|
|
@@ -1024,11 +1143,11 @@ module Aws::WorkSpacesWeb
|
|
1024
1143
|
end
|
1025
1144
|
|
1026
1145
|
class UpdatePortalRequest
|
1027
|
-
attr_accessor
|
1146
|
+
attr_accessor portal_arn: ::String
|
1028
1147
|
attr_accessor display_name: ::String
|
1148
|
+
attr_accessor authentication_type: ("Standard" | "IAM_Identity_Center")
|
1029
1149
|
attr_accessor instance_type: ("standard.regular" | "standard.large" | "standard.xlarge")
|
1030
1150
|
attr_accessor max_concurrent_sessions: ::Integer
|
1031
|
-
attr_accessor portal_arn: ::String
|
1032
1151
|
SENSITIVE: [:display_name]
|
1033
1152
|
end
|
1034
1153
|
|
@@ -1037,11 +1156,24 @@ module Aws::WorkSpacesWeb
|
|
1037
1156
|
SENSITIVE: []
|
1038
1157
|
end
|
1039
1158
|
|
1159
|
+
class UpdateSessionLoggerRequest
|
1160
|
+
attr_accessor session_logger_arn: ::String
|
1161
|
+
attr_accessor event_filter: Types::EventFilter
|
1162
|
+
attr_accessor log_configuration: Types::LogConfiguration
|
1163
|
+
attr_accessor display_name: ::String
|
1164
|
+
SENSITIVE: [:display_name]
|
1165
|
+
end
|
1166
|
+
|
1167
|
+
class UpdateSessionLoggerResponse
|
1168
|
+
attr_accessor session_logger: Types::SessionLogger
|
1169
|
+
SENSITIVE: []
|
1170
|
+
end
|
1171
|
+
|
1040
1172
|
class UpdateTrustStoreRequest
|
1173
|
+
attr_accessor trust_store_arn: ::String
|
1041
1174
|
attr_accessor certificates_to_add: ::Array[::String]
|
1042
1175
|
attr_accessor certificates_to_delete: ::Array[::String]
|
1043
1176
|
attr_accessor client_token: ::String
|
1044
|
-
attr_accessor trust_store_arn: ::String
|
1045
1177
|
SENSITIVE: []
|
1046
1178
|
end
|
1047
1179
|
|
@@ -1051,9 +1183,9 @@ module Aws::WorkSpacesWeb
|
|
1051
1183
|
end
|
1052
1184
|
|
1053
1185
|
class UpdateUserAccessLoggingSettingsRequest
|
1054
|
-
attr_accessor client_token: ::String
|
1055
|
-
attr_accessor kinesis_stream_arn: ::String
|
1056
1186
|
attr_accessor user_access_logging_settings_arn: ::String
|
1187
|
+
attr_accessor kinesis_stream_arn: ::String
|
1188
|
+
attr_accessor client_token: ::String
|
1057
1189
|
SENSITIVE: []
|
1058
1190
|
end
|
1059
1191
|
|
@@ -1063,18 +1195,18 @@ module Aws::WorkSpacesWeb
|
|
1063
1195
|
end
|
1064
1196
|
|
1065
1197
|
class UpdateUserSettingsRequest
|
1066
|
-
attr_accessor
|
1067
|
-
attr_accessor cookie_synchronization_configuration: Types::CookieSynchronizationConfiguration
|
1198
|
+
attr_accessor user_settings_arn: ::String
|
1068
1199
|
attr_accessor copy_allowed: ("Disabled" | "Enabled")
|
1069
|
-
attr_accessor deep_link_allowed: ("Disabled" | "Enabled")
|
1070
|
-
attr_accessor disconnect_timeout_in_minutes: ::Integer
|
1071
|
-
attr_accessor download_allowed: ("Disabled" | "Enabled")
|
1072
|
-
attr_accessor idle_disconnect_timeout_in_minutes: ::Integer
|
1073
1200
|
attr_accessor paste_allowed: ("Disabled" | "Enabled")
|
1201
|
+
attr_accessor download_allowed: ("Disabled" | "Enabled")
|
1202
|
+
attr_accessor upload_allowed: ("Disabled" | "Enabled")
|
1074
1203
|
attr_accessor print_allowed: ("Disabled" | "Enabled")
|
1204
|
+
attr_accessor disconnect_timeout_in_minutes: ::Integer
|
1205
|
+
attr_accessor idle_disconnect_timeout_in_minutes: ::Integer
|
1206
|
+
attr_accessor client_token: ::String
|
1207
|
+
attr_accessor cookie_synchronization_configuration: Types::CookieSynchronizationConfiguration
|
1208
|
+
attr_accessor deep_link_allowed: ("Disabled" | "Enabled")
|
1075
1209
|
attr_accessor toolbar_configuration: Types::ToolbarConfiguration
|
1076
|
-
attr_accessor upload_allowed: ("Disabled" | "Enabled")
|
1077
|
-
attr_accessor user_settings_arn: ::String
|
1078
1210
|
SENSITIVE: [:cookie_synchronization_configuration]
|
1079
1211
|
end
|
1080
1212
|
|
@@ -1084,61 +1216,61 @@ module Aws::WorkSpacesWeb
|
|
1084
1216
|
end
|
1085
1217
|
|
1086
1218
|
class UserAccessLoggingSettings
|
1219
|
+
attr_accessor user_access_logging_settings_arn: ::String
|
1087
1220
|
attr_accessor associated_portal_arns: ::Array[::String]
|
1088
1221
|
attr_accessor kinesis_stream_arn: ::String
|
1089
|
-
attr_accessor user_access_logging_settings_arn: ::String
|
1090
1222
|
SENSITIVE: []
|
1091
1223
|
end
|
1092
1224
|
|
1093
1225
|
class UserAccessLoggingSettingsSummary
|
1094
|
-
attr_accessor kinesis_stream_arn: ::String
|
1095
1226
|
attr_accessor user_access_logging_settings_arn: ::String
|
1227
|
+
attr_accessor kinesis_stream_arn: ::String
|
1096
1228
|
SENSITIVE: []
|
1097
1229
|
end
|
1098
1230
|
|
1099
1231
|
class UserSettings
|
1100
|
-
attr_accessor
|
1232
|
+
attr_accessor user_settings_arn: ::String
|
1101
1233
|
attr_accessor associated_portal_arns: ::Array[::String]
|
1102
|
-
attr_accessor cookie_synchronization_configuration: Types::CookieSynchronizationConfiguration
|
1103
1234
|
attr_accessor copy_allowed: ("Disabled" | "Enabled")
|
1104
|
-
attr_accessor customer_managed_key: ::String
|
1105
|
-
attr_accessor deep_link_allowed: ("Disabled" | "Enabled")
|
1106
|
-
attr_accessor disconnect_timeout_in_minutes: ::Integer
|
1107
|
-
attr_accessor download_allowed: ("Disabled" | "Enabled")
|
1108
|
-
attr_accessor idle_disconnect_timeout_in_minutes: ::Integer
|
1109
1235
|
attr_accessor paste_allowed: ("Disabled" | "Enabled")
|
1236
|
+
attr_accessor download_allowed: ("Disabled" | "Enabled")
|
1237
|
+
attr_accessor upload_allowed: ("Disabled" | "Enabled")
|
1110
1238
|
attr_accessor print_allowed: ("Disabled" | "Enabled")
|
1239
|
+
attr_accessor disconnect_timeout_in_minutes: ::Integer
|
1240
|
+
attr_accessor idle_disconnect_timeout_in_minutes: ::Integer
|
1241
|
+
attr_accessor cookie_synchronization_configuration: Types::CookieSynchronizationConfiguration
|
1242
|
+
attr_accessor customer_managed_key: ::String
|
1243
|
+
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
1244
|
+
attr_accessor deep_link_allowed: ("Disabled" | "Enabled")
|
1111
1245
|
attr_accessor toolbar_configuration: Types::ToolbarConfiguration
|
1112
|
-
attr_accessor upload_allowed: ("Disabled" | "Enabled")
|
1113
|
-
attr_accessor user_settings_arn: ::String
|
1114
1246
|
SENSITIVE: [:cookie_synchronization_configuration]
|
1115
1247
|
end
|
1116
1248
|
|
1117
1249
|
class UserSettingsSummary
|
1118
|
-
attr_accessor
|
1250
|
+
attr_accessor user_settings_arn: ::String
|
1119
1251
|
attr_accessor copy_allowed: ("Disabled" | "Enabled")
|
1120
|
-
attr_accessor deep_link_allowed: ("Disabled" | "Enabled")
|
1121
|
-
attr_accessor disconnect_timeout_in_minutes: ::Integer
|
1122
|
-
attr_accessor download_allowed: ("Disabled" | "Enabled")
|
1123
|
-
attr_accessor idle_disconnect_timeout_in_minutes: ::Integer
|
1124
1252
|
attr_accessor paste_allowed: ("Disabled" | "Enabled")
|
1253
|
+
attr_accessor download_allowed: ("Disabled" | "Enabled")
|
1254
|
+
attr_accessor upload_allowed: ("Disabled" | "Enabled")
|
1125
1255
|
attr_accessor print_allowed: ("Disabled" | "Enabled")
|
1256
|
+
attr_accessor disconnect_timeout_in_minutes: ::Integer
|
1257
|
+
attr_accessor idle_disconnect_timeout_in_minutes: ::Integer
|
1258
|
+
attr_accessor cookie_synchronization_configuration: Types::CookieSynchronizationConfiguration
|
1259
|
+
attr_accessor deep_link_allowed: ("Disabled" | "Enabled")
|
1126
1260
|
attr_accessor toolbar_configuration: Types::ToolbarConfiguration
|
1127
|
-
attr_accessor upload_allowed: ("Disabled" | "Enabled")
|
1128
|
-
attr_accessor user_settings_arn: ::String
|
1129
1261
|
SENSITIVE: [:cookie_synchronization_configuration]
|
1130
1262
|
end
|
1131
1263
|
|
1132
1264
|
class ValidationException
|
1133
|
-
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|
1134
1265
|
attr_accessor message: ::String
|
1135
1266
|
attr_accessor reason: ("unknownOperation" | "cannotParse" | "fieldValidationFailed" | "other")
|
1267
|
+
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|
1136
1268
|
SENSITIVE: []
|
1137
1269
|
end
|
1138
1270
|
|
1139
1271
|
class ValidationExceptionField
|
1140
|
-
attr_accessor message: ::String
|
1141
1272
|
attr_accessor name: ::String
|
1273
|
+
attr_accessor message: ::String
|
1142
1274
|
SENSITIVE: []
|
1143
1275
|
end
|
1144
1276
|
end
|