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
@@ -23,138 +23,172 @@ module Aws::WorkSpacesWeb
|
|
23
23
|
include Aws::Structure
|
24
24
|
end
|
25
25
|
|
26
|
-
# @!attribute [rw] browser_settings_arn
|
27
|
-
# The ARN of the browser settings.
|
28
|
-
# @return [String]
|
29
|
-
#
|
30
26
|
# @!attribute [rw] portal_arn
|
31
27
|
# The ARN of the web portal.
|
32
28
|
# @return [String]
|
33
29
|
#
|
30
|
+
# @!attribute [rw] browser_settings_arn
|
31
|
+
# The ARN of the browser settings.
|
32
|
+
# @return [String]
|
33
|
+
#
|
34
34
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/AssociateBrowserSettingsRequest AWS API Documentation
|
35
35
|
#
|
36
36
|
class AssociateBrowserSettingsRequest < Struct.new(
|
37
|
-
:
|
38
|
-
:
|
37
|
+
:portal_arn,
|
38
|
+
:browser_settings_arn)
|
39
39
|
SENSITIVE = []
|
40
40
|
include Aws::Structure
|
41
41
|
end
|
42
42
|
|
43
|
-
# @!attribute [rw] browser_settings_arn
|
44
|
-
# The ARN of the browser settings.
|
45
|
-
# @return [String]
|
46
|
-
#
|
47
43
|
# @!attribute [rw] portal_arn
|
48
44
|
# The ARN of the web portal.
|
49
45
|
# @return [String]
|
50
46
|
#
|
47
|
+
# @!attribute [rw] browser_settings_arn
|
48
|
+
# The ARN of the browser settings.
|
49
|
+
# @return [String]
|
50
|
+
#
|
51
51
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/AssociateBrowserSettingsResponse AWS API Documentation
|
52
52
|
#
|
53
53
|
class AssociateBrowserSettingsResponse < Struct.new(
|
54
|
-
:
|
55
|
-
:
|
54
|
+
:portal_arn,
|
55
|
+
:browser_settings_arn)
|
56
56
|
SENSITIVE = []
|
57
57
|
include Aws::Structure
|
58
58
|
end
|
59
59
|
|
60
|
-
# @!attribute [rw] data_protection_settings_arn
|
61
|
-
# The ARN of the data protection settings.
|
62
|
-
# @return [String]
|
63
|
-
#
|
64
60
|
# @!attribute [rw] portal_arn
|
65
61
|
# The ARN of the web portal.
|
66
62
|
# @return [String]
|
67
63
|
#
|
64
|
+
# @!attribute [rw] data_protection_settings_arn
|
65
|
+
# The ARN of the data protection settings.
|
66
|
+
# @return [String]
|
67
|
+
#
|
68
68
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/AssociateDataProtectionSettingsRequest AWS API Documentation
|
69
69
|
#
|
70
70
|
class AssociateDataProtectionSettingsRequest < Struct.new(
|
71
|
-
:
|
72
|
-
:
|
71
|
+
:portal_arn,
|
72
|
+
:data_protection_settings_arn)
|
73
73
|
SENSITIVE = []
|
74
74
|
include Aws::Structure
|
75
75
|
end
|
76
76
|
|
77
|
-
# @!attribute [rw] data_protection_settings_arn
|
78
|
-
# The ARN of the data protection settings resource.
|
79
|
-
# @return [String]
|
80
|
-
#
|
81
77
|
# @!attribute [rw] portal_arn
|
82
78
|
# The ARN of the web portal.
|
83
79
|
# @return [String]
|
84
80
|
#
|
81
|
+
# @!attribute [rw] data_protection_settings_arn
|
82
|
+
# The ARN of the data protection settings resource.
|
83
|
+
# @return [String]
|
84
|
+
#
|
85
85
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/AssociateDataProtectionSettingsResponse AWS API Documentation
|
86
86
|
#
|
87
87
|
class AssociateDataProtectionSettingsResponse < Struct.new(
|
88
|
-
:
|
89
|
-
:
|
88
|
+
:portal_arn,
|
89
|
+
:data_protection_settings_arn)
|
90
90
|
SENSITIVE = []
|
91
91
|
include Aws::Structure
|
92
92
|
end
|
93
93
|
|
94
|
-
# @!attribute [rw] ip_access_settings_arn
|
95
|
-
# The ARN of the IP access settings.
|
96
|
-
# @return [String]
|
97
|
-
#
|
98
94
|
# @!attribute [rw] portal_arn
|
99
95
|
# The ARN of the web portal.
|
100
96
|
# @return [String]
|
101
97
|
#
|
98
|
+
# @!attribute [rw] ip_access_settings_arn
|
99
|
+
# The ARN of the IP access settings.
|
100
|
+
# @return [String]
|
101
|
+
#
|
102
102
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/AssociateIpAccessSettingsRequest AWS API Documentation
|
103
103
|
#
|
104
104
|
class AssociateIpAccessSettingsRequest < Struct.new(
|
105
|
-
:
|
106
|
-
:
|
105
|
+
:portal_arn,
|
106
|
+
:ip_access_settings_arn)
|
107
107
|
SENSITIVE = []
|
108
108
|
include Aws::Structure
|
109
109
|
end
|
110
110
|
|
111
|
-
# @!attribute [rw] ip_access_settings_arn
|
112
|
-
# The ARN of the IP access settings resource.
|
113
|
-
# @return [String]
|
114
|
-
#
|
115
111
|
# @!attribute [rw] portal_arn
|
116
112
|
# The ARN of the web portal.
|
117
113
|
# @return [String]
|
118
114
|
#
|
115
|
+
# @!attribute [rw] ip_access_settings_arn
|
116
|
+
# The ARN of the IP access settings resource.
|
117
|
+
# @return [String]
|
118
|
+
#
|
119
119
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/AssociateIpAccessSettingsResponse AWS API Documentation
|
120
120
|
#
|
121
121
|
class AssociateIpAccessSettingsResponse < Struct.new(
|
122
|
-
:
|
123
|
-
:
|
122
|
+
:portal_arn,
|
123
|
+
:ip_access_settings_arn)
|
124
124
|
SENSITIVE = []
|
125
125
|
include Aws::Structure
|
126
126
|
end
|
127
127
|
|
128
|
-
# @!attribute [rw] network_settings_arn
|
129
|
-
# The ARN of the network settings.
|
130
|
-
# @return [String]
|
131
|
-
#
|
132
128
|
# @!attribute [rw] portal_arn
|
133
129
|
# The ARN of the web portal.
|
134
130
|
# @return [String]
|
135
131
|
#
|
132
|
+
# @!attribute [rw] network_settings_arn
|
133
|
+
# The ARN of the network settings.
|
134
|
+
# @return [String]
|
135
|
+
#
|
136
136
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/AssociateNetworkSettingsRequest AWS API Documentation
|
137
137
|
#
|
138
138
|
class AssociateNetworkSettingsRequest < Struct.new(
|
139
|
-
:
|
140
|
-
:
|
139
|
+
:portal_arn,
|
140
|
+
:network_settings_arn)
|
141
141
|
SENSITIVE = []
|
142
142
|
include Aws::Structure
|
143
143
|
end
|
144
144
|
|
145
|
+
# @!attribute [rw] portal_arn
|
146
|
+
# The ARN of the web portal.
|
147
|
+
# @return [String]
|
148
|
+
#
|
145
149
|
# @!attribute [rw] network_settings_arn
|
146
150
|
# The ARN of the network settings.
|
147
151
|
# @return [String]
|
148
152
|
#
|
153
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/AssociateNetworkSettingsResponse AWS API Documentation
|
154
|
+
#
|
155
|
+
class AssociateNetworkSettingsResponse < Struct.new(
|
156
|
+
:portal_arn,
|
157
|
+
:network_settings_arn)
|
158
|
+
SENSITIVE = []
|
159
|
+
include Aws::Structure
|
160
|
+
end
|
161
|
+
|
162
|
+
# @!attribute [rw] portal_arn
|
163
|
+
# The ARN of the portal to associate to the session logger ARN.
|
164
|
+
# @return [String]
|
165
|
+
#
|
166
|
+
# @!attribute [rw] session_logger_arn
|
167
|
+
# The ARN of the session logger to associate to the portal ARN.
|
168
|
+
# @return [String]
|
169
|
+
#
|
170
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/AssociateSessionLoggerRequest AWS API Documentation
|
171
|
+
#
|
172
|
+
class AssociateSessionLoggerRequest < Struct.new(
|
173
|
+
:portal_arn,
|
174
|
+
:session_logger_arn)
|
175
|
+
SENSITIVE = []
|
176
|
+
include Aws::Structure
|
177
|
+
end
|
178
|
+
|
149
179
|
# @!attribute [rw] portal_arn
|
150
|
-
# The ARN of the
|
180
|
+
# The ARN of the portal.
|
151
181
|
# @return [String]
|
152
182
|
#
|
153
|
-
#
|
183
|
+
# @!attribute [rw] session_logger_arn
|
184
|
+
# The ARN of the session logger.
|
185
|
+
# @return [String]
|
154
186
|
#
|
155
|
-
|
156
|
-
|
157
|
-
|
187
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/AssociateSessionLoggerResponse AWS API Documentation
|
188
|
+
#
|
189
|
+
class AssociateSessionLoggerResponse < Struct.new(
|
190
|
+
:portal_arn,
|
191
|
+
:session_logger_arn)
|
158
192
|
SENSITIVE = []
|
159
193
|
include Aws::Structure
|
160
194
|
end
|
@@ -266,9 +300,9 @@ module Aws::WorkSpacesWeb
|
|
266
300
|
# how the browser will behave once a user starts a streaming session for
|
267
301
|
# the web portal.
|
268
302
|
#
|
269
|
-
# @!attribute [rw]
|
270
|
-
# The
|
271
|
-
# @return [
|
303
|
+
# @!attribute [rw] browser_settings_arn
|
304
|
+
# The ARN of the browser settings.
|
305
|
+
# @return [String]
|
272
306
|
#
|
273
307
|
# @!attribute [rw] associated_portal_arns
|
274
308
|
# A list of web portal ARNs that this browser settings is associated
|
@@ -280,23 +314,23 @@ module Aws::WorkSpacesWeb
|
|
280
314
|
# applied to all streaming sessions.
|
281
315
|
# @return [String]
|
282
316
|
#
|
283
|
-
# @!attribute [rw] browser_settings_arn
|
284
|
-
# The ARN of the browser settings.
|
285
|
-
# @return [String]
|
286
|
-
#
|
287
317
|
# @!attribute [rw] customer_managed_key
|
288
318
|
# The customer managed key used to encrypt sensitive information in
|
289
319
|
# the browser settings.
|
290
320
|
# @return [String]
|
291
321
|
#
|
322
|
+
# @!attribute [rw] additional_encryption_context
|
323
|
+
# The additional encryption context of the browser settings.
|
324
|
+
# @return [Hash<String,String>]
|
325
|
+
#
|
292
326
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/BrowserSettings AWS API Documentation
|
293
327
|
#
|
294
328
|
class BrowserSettings < Struct.new(
|
295
|
-
:
|
329
|
+
:browser_settings_arn,
|
296
330
|
:associated_portal_arns,
|
297
331
|
:browser_policy,
|
298
|
-
:
|
299
|
-
:
|
332
|
+
:customer_managed_key,
|
333
|
+
:additional_encryption_context)
|
300
334
|
SENSITIVE = [:browser_policy]
|
301
335
|
include Aws::Structure
|
302
336
|
end
|
@@ -317,73 +351,73 @@ module Aws::WorkSpacesWeb
|
|
317
351
|
|
318
352
|
# The certificate.
|
319
353
|
#
|
320
|
-
# @!attribute [rw]
|
321
|
-
#
|
354
|
+
# @!attribute [rw] thumbprint
|
355
|
+
# A hexadecimal identifier for the certificate.
|
356
|
+
# @return [String]
|
357
|
+
#
|
358
|
+
# @!attribute [rw] subject
|
359
|
+
# The entity the certificate belongs to.
|
322
360
|
# @return [String]
|
323
361
|
#
|
324
362
|
# @!attribute [rw] issuer
|
325
363
|
# The entity that issued the certificate.
|
326
364
|
# @return [String]
|
327
365
|
#
|
328
|
-
# @!attribute [rw] not_valid_after
|
329
|
-
# The certificate is not valid after this date.
|
330
|
-
# @return [Time]
|
331
|
-
#
|
332
366
|
# @!attribute [rw] not_valid_before
|
333
367
|
# The certificate is not valid before this date.
|
334
368
|
# @return [Time]
|
335
369
|
#
|
336
|
-
# @!attribute [rw]
|
337
|
-
# The
|
338
|
-
# @return [
|
370
|
+
# @!attribute [rw] not_valid_after
|
371
|
+
# The certificate is not valid after this date.
|
372
|
+
# @return [Time]
|
339
373
|
#
|
340
|
-
# @!attribute [rw]
|
341
|
-
#
|
374
|
+
# @!attribute [rw] body
|
375
|
+
# The body of the certificate.
|
342
376
|
# @return [String]
|
343
377
|
#
|
344
378
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/Certificate AWS API Documentation
|
345
379
|
#
|
346
380
|
class Certificate < Struct.new(
|
347
|
-
:
|
381
|
+
:thumbprint,
|
382
|
+
:subject,
|
348
383
|
:issuer,
|
349
|
-
:not_valid_after,
|
350
384
|
:not_valid_before,
|
351
|
-
:
|
352
|
-
:
|
385
|
+
:not_valid_after,
|
386
|
+
:body)
|
353
387
|
SENSITIVE = []
|
354
388
|
include Aws::Structure
|
355
389
|
end
|
356
390
|
|
357
391
|
# The summary of the certificate.
|
358
392
|
#
|
393
|
+
# @!attribute [rw] thumbprint
|
394
|
+
# A hexadecimal identifier for the certificate.
|
395
|
+
# @return [String]
|
396
|
+
#
|
397
|
+
# @!attribute [rw] subject
|
398
|
+
# The entity the certificate belongs to.
|
399
|
+
# @return [String]
|
400
|
+
#
|
359
401
|
# @!attribute [rw] issuer
|
360
402
|
# The entity that issued the certificate.
|
361
403
|
# @return [String]
|
362
404
|
#
|
363
|
-
# @!attribute [rw] not_valid_after
|
364
|
-
# The certificate is not valid after this date.
|
365
|
-
# @return [Time]
|
366
|
-
#
|
367
405
|
# @!attribute [rw] not_valid_before
|
368
406
|
# The certificate is not valid before this date.
|
369
407
|
# @return [Time]
|
370
408
|
#
|
371
|
-
# @!attribute [rw]
|
372
|
-
# The
|
373
|
-
# @return [
|
374
|
-
#
|
375
|
-
# @!attribute [rw] thumbprint
|
376
|
-
# A hexadecimal identifier for the certificate.
|
377
|
-
# @return [String]
|
409
|
+
# @!attribute [rw] not_valid_after
|
410
|
+
# The certificate is not valid after this date.
|
411
|
+
# @return [Time]
|
378
412
|
#
|
379
413
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/CertificateSummary AWS API Documentation
|
380
414
|
#
|
381
415
|
class CertificateSummary < Struct.new(
|
416
|
+
:thumbprint,
|
417
|
+
:subject,
|
382
418
|
:issuer,
|
383
|
-
:not_valid_after,
|
384
419
|
:not_valid_before,
|
385
|
-
:
|
386
|
-
:thumbprint)
|
420
|
+
:not_valid_after)
|
387
421
|
SENSITIVE = []
|
388
422
|
include Aws::Structure
|
389
423
|
end
|
@@ -457,6 +491,15 @@ module Aws::WorkSpacesWeb
|
|
457
491
|
include Aws::Structure
|
458
492
|
end
|
459
493
|
|
494
|
+
# @!attribute [rw] tags
|
495
|
+
# The tags to add to the browser settings resource. A tag is a
|
496
|
+
# key-value pair.
|
497
|
+
# @return [Array<Types::Tag>]
|
498
|
+
#
|
499
|
+
# @!attribute [rw] customer_managed_key
|
500
|
+
# The custom managed key of the browser settings.
|
501
|
+
# @return [String]
|
502
|
+
#
|
460
503
|
# @!attribute [rw] additional_encryption_context
|
461
504
|
# Additional encryption context of the browser settings.
|
462
505
|
# @return [Hash<String,String>]
|
@@ -481,24 +524,15 @@ module Aws::WorkSpacesWeb
|
|
481
524
|
# not need to pass this option.
|
482
525
|
# @return [String]
|
483
526
|
#
|
484
|
-
# @!attribute [rw] customer_managed_key
|
485
|
-
# The custom managed key of the browser settings.
|
486
|
-
# @return [String]
|
487
|
-
#
|
488
|
-
# @!attribute [rw] tags
|
489
|
-
# The tags to add to the browser settings resource. A tag is a
|
490
|
-
# key-value pair.
|
491
|
-
# @return [Array<Types::Tag>]
|
492
|
-
#
|
493
527
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/CreateBrowserSettingsRequest AWS API Documentation
|
494
528
|
#
|
495
529
|
class CreateBrowserSettingsRequest < Struct.new(
|
530
|
+
:tags,
|
531
|
+
:customer_managed_key,
|
496
532
|
:additional_encryption_context,
|
497
533
|
:browser_policy,
|
498
|
-
:client_token
|
499
|
-
:
|
500
|
-
:tags)
|
501
|
-
SENSITIVE = [:browser_policy, :tags]
|
534
|
+
:client_token)
|
535
|
+
SENSITIVE = [:tags, :browser_policy]
|
502
536
|
include Aws::Structure
|
503
537
|
end
|
504
538
|
|
@@ -514,10 +548,32 @@ module Aws::WorkSpacesWeb
|
|
514
548
|
include Aws::Structure
|
515
549
|
end
|
516
550
|
|
551
|
+
# @!attribute [rw] display_name
|
552
|
+
# The display name of the data protection settings.
|
553
|
+
# @return [String]
|
554
|
+
#
|
555
|
+
# @!attribute [rw] description
|
556
|
+
# The description of the data protection settings.
|
557
|
+
# @return [String]
|
558
|
+
#
|
559
|
+
# @!attribute [rw] tags
|
560
|
+
# The tags to add to the data protection settings resource. A tag is a
|
561
|
+
# key-value pair.
|
562
|
+
# @return [Array<Types::Tag>]
|
563
|
+
#
|
564
|
+
# @!attribute [rw] customer_managed_key
|
565
|
+
# The custom managed key of the data protection settings.
|
566
|
+
# @return [String]
|
567
|
+
#
|
517
568
|
# @!attribute [rw] additional_encryption_context
|
518
569
|
# Additional encryption context of the data protection settings.
|
519
570
|
# @return [Hash<String,String>]
|
520
571
|
#
|
572
|
+
# @!attribute [rw] inline_redaction_configuration
|
573
|
+
# The inline redaction configuration of the data protection settings
|
574
|
+
# that will be applied to all sessions.
|
575
|
+
# @return [Types::InlineRedactionConfiguration]
|
576
|
+
#
|
521
577
|
# @!attribute [rw] client_token
|
522
578
|
# A unique, case-sensitive identifier that you provide to ensure the
|
523
579
|
# idempotency of the request. Idempotency ensures that an API request
|
@@ -533,44 +589,22 @@ module Aws::WorkSpacesWeb
|
|
533
589
|
# not need to pass this option.
|
534
590
|
# @return [String]
|
535
591
|
#
|
536
|
-
#
|
537
|
-
# The custom managed key of the data protection settings.
|
538
|
-
# @return [String]
|
592
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/CreateDataProtectionSettingsRequest AWS API Documentation
|
539
593
|
#
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
#
|
553
|
-
#
|
554
|
-
# The tags to add to the data protection settings resource. A tag is a
|
555
|
-
# key-value pair.
|
556
|
-
# @return [Array<Types::Tag>]
|
557
|
-
#
|
558
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/CreateDataProtectionSettingsRequest AWS API Documentation
|
559
|
-
#
|
560
|
-
class CreateDataProtectionSettingsRequest < Struct.new(
|
561
|
-
:additional_encryption_context,
|
562
|
-
:client_token,
|
563
|
-
:customer_managed_key,
|
564
|
-
:description,
|
565
|
-
:display_name,
|
566
|
-
:inline_redaction_configuration,
|
567
|
-
:tags)
|
568
|
-
SENSITIVE = [:description, :display_name, :tags]
|
569
|
-
include Aws::Structure
|
570
|
-
end
|
571
|
-
|
572
|
-
# @!attribute [rw] data_protection_settings_arn
|
573
|
-
# The ARN of the data protection settings resource.
|
594
|
+
class CreateDataProtectionSettingsRequest < Struct.new(
|
595
|
+
:display_name,
|
596
|
+
:description,
|
597
|
+
:tags,
|
598
|
+
:customer_managed_key,
|
599
|
+
:additional_encryption_context,
|
600
|
+
:inline_redaction_configuration,
|
601
|
+
:client_token)
|
602
|
+
SENSITIVE = [:display_name, :description, :tags]
|
603
|
+
include Aws::Structure
|
604
|
+
end
|
605
|
+
|
606
|
+
# @!attribute [rw] data_protection_settings_arn
|
607
|
+
# The ARN of the data protection settings resource.
|
574
608
|
# @return [String]
|
575
609
|
#
|
576
610
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/CreateDataProtectionSettingsResponse AWS API Documentation
|
@@ -581,19 +615,16 @@ module Aws::WorkSpacesWeb
|
|
581
615
|
include Aws::Structure
|
582
616
|
end
|
583
617
|
|
584
|
-
# @!attribute [rw]
|
585
|
-
#
|
586
|
-
#
|
587
|
-
# completes only once. With an idempotent request, if the original
|
588
|
-
# request completes successfully, subsequent retries with the same
|
589
|
-
# client token returns the result from the original successful
|
590
|
-
# request.
|
618
|
+
# @!attribute [rw] portal_arn
|
619
|
+
# The ARN of the web portal.
|
620
|
+
# @return [String]
|
591
621
|
#
|
592
|
-
#
|
593
|
-
#
|
622
|
+
# @!attribute [rw] identity_provider_name
|
623
|
+
# The identity provider name.
|
624
|
+
# @return [String]
|
594
625
|
#
|
595
|
-
#
|
596
|
-
#
|
626
|
+
# @!attribute [rw] identity_provider_type
|
627
|
+
# The identity provider type.
|
597
628
|
# @return [String]
|
598
629
|
#
|
599
630
|
# @!attribute [rw] identity_provider_details
|
@@ -664,16 +695,19 @@ module Aws::WorkSpacesWeb
|
|
664
695
|
# * `EncryptedResponses` (boolean) *optional*
|
665
696
|
# @return [Hash<String,String>]
|
666
697
|
#
|
667
|
-
# @!attribute [rw]
|
668
|
-
#
|
669
|
-
#
|
698
|
+
# @!attribute [rw] client_token
|
699
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
700
|
+
# idempotency of the request. Idempotency ensures that an API request
|
701
|
+
# completes only once. With an idempotent request, if the original
|
702
|
+
# request completes successfully, subsequent retries with the same
|
703
|
+
# client token returns the result from the original successful
|
704
|
+
# request.
|
670
705
|
#
|
671
|
-
#
|
672
|
-
#
|
673
|
-
# @return [String]
|
706
|
+
# If you do not specify a client token, one is automatically generated
|
707
|
+
# by the Amazon Web Services SDK.
|
674
708
|
#
|
675
|
-
#
|
676
|
-
#
|
709
|
+
# **A suitable default value is auto-generated.** You should normally
|
710
|
+
# not need to pass this option.
|
677
711
|
# @return [String]
|
678
712
|
#
|
679
713
|
# @!attribute [rw] tags
|
@@ -684,13 +718,13 @@ module Aws::WorkSpacesWeb
|
|
684
718
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/CreateIdentityProviderRequest AWS API Documentation
|
685
719
|
#
|
686
720
|
class CreateIdentityProviderRequest < Struct.new(
|
687
|
-
:
|
688
|
-
:identity_provider_details,
|
721
|
+
:portal_arn,
|
689
722
|
:identity_provider_name,
|
690
723
|
:identity_provider_type,
|
691
|
-
:
|
724
|
+
:identity_provider_details,
|
725
|
+
:client_token,
|
692
726
|
:tags)
|
693
|
-
SENSITIVE = [:
|
727
|
+
SENSITIVE = [:identity_provider_name, :identity_provider_details, :tags]
|
694
728
|
include Aws::Structure
|
695
729
|
end
|
696
730
|
|
@@ -706,10 +740,31 @@ module Aws::WorkSpacesWeb
|
|
706
740
|
include Aws::Structure
|
707
741
|
end
|
708
742
|
|
743
|
+
# @!attribute [rw] display_name
|
744
|
+
# The display name of the IP access settings.
|
745
|
+
# @return [String]
|
746
|
+
#
|
747
|
+
# @!attribute [rw] description
|
748
|
+
# The description of the IP access settings.
|
749
|
+
# @return [String]
|
750
|
+
#
|
751
|
+
# @!attribute [rw] tags
|
752
|
+
# The tags to add to the IP access settings resource. A tag is a
|
753
|
+
# key-value pair.
|
754
|
+
# @return [Array<Types::Tag>]
|
755
|
+
#
|
756
|
+
# @!attribute [rw] customer_managed_key
|
757
|
+
# The custom managed key of the IP access settings.
|
758
|
+
# @return [String]
|
759
|
+
#
|
709
760
|
# @!attribute [rw] additional_encryption_context
|
710
761
|
# Additional encryption context of the IP access settings.
|
711
762
|
# @return [Hash<String,String>]
|
712
763
|
#
|
764
|
+
# @!attribute [rw] ip_rules
|
765
|
+
# The IP rules of the IP access settings.
|
766
|
+
# @return [Array<Types::IpRule>]
|
767
|
+
#
|
713
768
|
# @!attribute [rw] client_token
|
714
769
|
# A unique, case-sensitive identifier that you provide to ensure the
|
715
770
|
# idempotency of the request. Idempotency ensures that an API request
|
@@ -725,38 +780,17 @@ module Aws::WorkSpacesWeb
|
|
725
780
|
# not need to pass this option.
|
726
781
|
# @return [String]
|
727
782
|
#
|
728
|
-
# @!attribute [rw] customer_managed_key
|
729
|
-
# The custom managed key of the IP access settings.
|
730
|
-
# @return [String]
|
731
|
-
#
|
732
|
-
# @!attribute [rw] description
|
733
|
-
# The description of the IP access settings.
|
734
|
-
# @return [String]
|
735
|
-
#
|
736
|
-
# @!attribute [rw] display_name
|
737
|
-
# The display name of the IP access settings.
|
738
|
-
# @return [String]
|
739
|
-
#
|
740
|
-
# @!attribute [rw] ip_rules
|
741
|
-
# The IP rules of the IP access settings.
|
742
|
-
# @return [Array<Types::IpRule>]
|
743
|
-
#
|
744
|
-
# @!attribute [rw] tags
|
745
|
-
# The tags to add to the IP access settings resource. A tag is a
|
746
|
-
# key-value pair.
|
747
|
-
# @return [Array<Types::Tag>]
|
748
|
-
#
|
749
783
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/CreateIpAccessSettingsRequest AWS API Documentation
|
750
784
|
#
|
751
785
|
class CreateIpAccessSettingsRequest < Struct.new(
|
752
|
-
:additional_encryption_context,
|
753
|
-
:client_token,
|
754
|
-
:customer_managed_key,
|
755
|
-
:description,
|
756
786
|
:display_name,
|
787
|
+
:description,
|
788
|
+
:tags,
|
789
|
+
:customer_managed_key,
|
790
|
+
:additional_encryption_context,
|
757
791
|
:ip_rules,
|
758
|
-
:
|
759
|
-
SENSITIVE = [:
|
792
|
+
:client_token)
|
793
|
+
SENSITIVE = [:display_name, :description, :tags, :ip_rules]
|
760
794
|
include Aws::Structure
|
761
795
|
end
|
762
796
|
|
@@ -772,49 +806,49 @@ module Aws::WorkSpacesWeb
|
|
772
806
|
include Aws::Structure
|
773
807
|
end
|
774
808
|
|
775
|
-
# @!attribute [rw]
|
776
|
-
#
|
777
|
-
# idempotency of the request. Idempotency ensures that an API request
|
778
|
-
# completes only once. With an idempotent request, if the original
|
779
|
-
# request completes successfully, subsequent retries with the same
|
780
|
-
# client token returns the result from the original successful
|
781
|
-
# request.
|
782
|
-
#
|
783
|
-
# If you do not specify a client token, one is automatically generated
|
784
|
-
# by the Amazon Web Services SDK.
|
785
|
-
#
|
786
|
-
# **A suitable default value is auto-generated.** You should normally
|
787
|
-
# not need to pass this option.
|
809
|
+
# @!attribute [rw] vpc_id
|
810
|
+
# The VPC that streaming instances will connect to.
|
788
811
|
# @return [String]
|
789
812
|
#
|
790
|
-
# @!attribute [rw] security_group_ids
|
791
|
-
# One or more security groups used to control access from streaming
|
792
|
-
# instances to your VPC.
|
793
|
-
# @return [Array<String>]
|
794
|
-
#
|
795
813
|
# @!attribute [rw] subnet_ids
|
796
814
|
# The subnets in which network interfaces are created to connect
|
797
815
|
# streaming instances to your VPC. At least two of these subnets must
|
798
816
|
# be in different availability zones.
|
799
817
|
# @return [Array<String>]
|
800
818
|
#
|
819
|
+
# @!attribute [rw] security_group_ids
|
820
|
+
# One or more security groups used to control access from streaming
|
821
|
+
# instances to your VPC.
|
822
|
+
# @return [Array<String>]
|
823
|
+
#
|
801
824
|
# @!attribute [rw] tags
|
802
825
|
# The tags to add to the network settings resource. A tag is a
|
803
826
|
# key-value pair.
|
804
827
|
# @return [Array<Types::Tag>]
|
805
828
|
#
|
806
|
-
# @!attribute [rw]
|
807
|
-
#
|
829
|
+
# @!attribute [rw] client_token
|
830
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
831
|
+
# idempotency of the request. Idempotency ensures that an API request
|
832
|
+
# completes only once. With an idempotent request, if the original
|
833
|
+
# request completes successfully, subsequent retries with the same
|
834
|
+
# client token returns the result from the original successful
|
835
|
+
# request.
|
836
|
+
#
|
837
|
+
# If you do not specify a client token, one is automatically generated
|
838
|
+
# by the Amazon Web Services SDK.
|
839
|
+
#
|
840
|
+
# **A suitable default value is auto-generated.** You should normally
|
841
|
+
# not need to pass this option.
|
808
842
|
# @return [String]
|
809
843
|
#
|
810
844
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/CreateNetworkSettingsRequest AWS API Documentation
|
811
845
|
#
|
812
846
|
class CreateNetworkSettingsRequest < Struct.new(
|
813
|
-
:
|
814
|
-
:security_group_ids,
|
847
|
+
:vpc_id,
|
815
848
|
:subnet_ids,
|
849
|
+
:security_group_ids,
|
816
850
|
:tags,
|
817
|
-
:
|
851
|
+
:client_token)
|
818
852
|
SENSITIVE = [:tags]
|
819
853
|
include Aws::Structure
|
820
854
|
end
|
@@ -831,26 +865,23 @@ module Aws::WorkSpacesWeb
|
|
831
865
|
include Aws::Structure
|
832
866
|
end
|
833
867
|
|
834
|
-
# @!attribute [rw]
|
835
|
-
# The
|
836
|
-
#
|
837
|
-
#
|
838
|
-
# @!attribute [rw] authentication_type
|
839
|
-
# The type of authentication integration points used when signing into
|
840
|
-
# the web portal. Defaults to `Standard`.
|
868
|
+
# @!attribute [rw] display_name
|
869
|
+
# The name of the web portal. This is not visible to users who log
|
870
|
+
# into the web portal.
|
871
|
+
# @return [String]
|
841
872
|
#
|
842
|
-
#
|
843
|
-
#
|
844
|
-
#
|
845
|
-
# group access to your web portal is controlled through your identity
|
846
|
-
# provider.
|
873
|
+
# @!attribute [rw] tags
|
874
|
+
# The tags to add to the web portal. A tag is a key-value pair.
|
875
|
+
# @return [Array<Types::Tag>]
|
847
876
|
#
|
848
|
-
#
|
849
|
-
#
|
850
|
-
# provider integration), plus user and group access to your web
|
851
|
-
# portal, can be configured in the IAM Identity Center.
|
877
|
+
# @!attribute [rw] customer_managed_key
|
878
|
+
# The customer managed key of the web portal.
|
852
879
|
# @return [String]
|
853
880
|
#
|
881
|
+
# @!attribute [rw] additional_encryption_context
|
882
|
+
# The additional encryption context of the portal.
|
883
|
+
# @return [Hash<String,String>]
|
884
|
+
#
|
854
885
|
# @!attribute [rw] client_token
|
855
886
|
# A unique, case-sensitive identifier that you provide to ensure the
|
856
887
|
# idempotency of the request. Idempotency ensures that an API request
|
@@ -866,13 +897,20 @@ module Aws::WorkSpacesWeb
|
|
866
897
|
# not need to pass this option.
|
867
898
|
# @return [String]
|
868
899
|
#
|
869
|
-
# @!attribute [rw]
|
870
|
-
# The
|
871
|
-
#
|
900
|
+
# @!attribute [rw] authentication_type
|
901
|
+
# The type of authentication integration points used when signing into
|
902
|
+
# the web portal. Defaults to `Standard`.
|
872
903
|
#
|
873
|
-
#
|
874
|
-
#
|
875
|
-
#
|
904
|
+
# `Standard` web portals are authenticated directly through your
|
905
|
+
# identity provider. You need to call `CreateIdentityProvider` to
|
906
|
+
# integrate your identity provider with your web portal. User and
|
907
|
+
# group access to your web portal is controlled through your identity
|
908
|
+
# provider.
|
909
|
+
#
|
910
|
+
# `IAM Identity Center` web portals are authenticated through IAM
|
911
|
+
# Identity Center. Identity sources (including external identity
|
912
|
+
# provider integration), plus user and group access to your web
|
913
|
+
# portal, can be configured in the IAM Identity Center.
|
876
914
|
# @return [String]
|
877
915
|
#
|
878
916
|
# @!attribute [rw] instance_type
|
@@ -883,21 +921,17 @@ module Aws::WorkSpacesWeb
|
|
883
921
|
# The maximum number of concurrent sessions for the portal.
|
884
922
|
# @return [Integer]
|
885
923
|
#
|
886
|
-
# @!attribute [rw] tags
|
887
|
-
# The tags to add to the web portal. A tag is a key-value pair.
|
888
|
-
# @return [Array<Types::Tag>]
|
889
|
-
#
|
890
924
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/CreatePortalRequest AWS API Documentation
|
891
925
|
#
|
892
926
|
class CreatePortalRequest < Struct.new(
|
927
|
+
:display_name,
|
928
|
+
:tags,
|
929
|
+
:customer_managed_key,
|
893
930
|
:additional_encryption_context,
|
894
|
-
:authentication_type,
|
895
931
|
:client_token,
|
896
|
-
:
|
897
|
-
:display_name,
|
932
|
+
:authentication_type,
|
898
933
|
:instance_type,
|
899
|
-
:max_concurrent_sessions
|
900
|
-
:tags)
|
934
|
+
:max_concurrent_sessions)
|
901
935
|
SENSITIVE = [:display_name, :tags]
|
902
936
|
include Aws::Structure
|
903
937
|
end
|
@@ -920,9 +954,29 @@ module Aws::WorkSpacesWeb
|
|
920
954
|
include Aws::Structure
|
921
955
|
end
|
922
956
|
|
923
|
-
# @!attribute [rw]
|
924
|
-
#
|
925
|
-
# @return [
|
957
|
+
# @!attribute [rw] event_filter
|
958
|
+
# The filter that specifies the events to monitor.
|
959
|
+
# @return [Types::EventFilter]
|
960
|
+
#
|
961
|
+
# @!attribute [rw] log_configuration
|
962
|
+
# The configuration that specifies where logs are delivered.
|
963
|
+
# @return [Types::LogConfiguration]
|
964
|
+
#
|
965
|
+
# @!attribute [rw] display_name
|
966
|
+
# The human-readable display name for the session logger resource.
|
967
|
+
# @return [String]
|
968
|
+
#
|
969
|
+
# @!attribute [rw] customer_managed_key
|
970
|
+
# The custom managed key of the session logger.
|
971
|
+
# @return [String]
|
972
|
+
#
|
973
|
+
# @!attribute [rw] additional_encryption_context
|
974
|
+
# The additional encryption context of the session logger.
|
975
|
+
# @return [Hash<String,String>]
|
976
|
+
#
|
977
|
+
# @!attribute [rw] tags
|
978
|
+
# The tags to add to the session logger.
|
979
|
+
# @return [Array<Types::Tag>]
|
926
980
|
#
|
927
981
|
# @!attribute [rw] client_token
|
928
982
|
# A unique, case-sensitive identifier that you provide to ensure the
|
@@ -930,41 +984,47 @@ module Aws::WorkSpacesWeb
|
|
930
984
|
# completes only once. With an idempotent request, if the original
|
931
985
|
# request completes successfully, subsequent retries with the same
|
932
986
|
# client token returns the result from the original successful
|
933
|
-
# request.
|
934
|
-
#
|
935
|
-
# If you do not specify a client token, one is automatically generated
|
936
|
-
# by the Amazon Web Services SDK.
|
987
|
+
# request. If you do not specify a client token, one is automatically
|
988
|
+
# generated by the AWS SDK.
|
937
989
|
#
|
938
990
|
# **A suitable default value is auto-generated.** You should normally
|
939
991
|
# not need to pass this option.
|
940
992
|
# @return [String]
|
941
993
|
#
|
942
|
-
#
|
943
|
-
# The tags to add to the trust store. A tag is a key-value pair.
|
944
|
-
# @return [Array<Types::Tag>]
|
945
|
-
#
|
946
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/CreateTrustStoreRequest AWS API Documentation
|
994
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/CreateSessionLoggerRequest AWS API Documentation
|
947
995
|
#
|
948
|
-
class
|
949
|
-
:
|
950
|
-
:
|
951
|
-
:
|
952
|
-
|
996
|
+
class CreateSessionLoggerRequest < Struct.new(
|
997
|
+
:event_filter,
|
998
|
+
:log_configuration,
|
999
|
+
:display_name,
|
1000
|
+
:customer_managed_key,
|
1001
|
+
:additional_encryption_context,
|
1002
|
+
:tags,
|
1003
|
+
:client_token)
|
1004
|
+
SENSITIVE = [:display_name, :tags]
|
953
1005
|
include Aws::Structure
|
954
1006
|
end
|
955
1007
|
|
956
|
-
# @!attribute [rw]
|
957
|
-
# The ARN of the
|
1008
|
+
# @!attribute [rw] session_logger_arn
|
1009
|
+
# The ARN of the session logger.
|
958
1010
|
# @return [String]
|
959
1011
|
#
|
960
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/
|
1012
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/CreateSessionLoggerResponse AWS API Documentation
|
961
1013
|
#
|
962
|
-
class
|
963
|
-
:
|
1014
|
+
class CreateSessionLoggerResponse < Struct.new(
|
1015
|
+
:session_logger_arn)
|
964
1016
|
SENSITIVE = []
|
965
1017
|
include Aws::Structure
|
966
1018
|
end
|
967
1019
|
|
1020
|
+
# @!attribute [rw] certificate_list
|
1021
|
+
# A list of CA certificates to be added to the trust store.
|
1022
|
+
# @return [Array<String>]
|
1023
|
+
#
|
1024
|
+
# @!attribute [rw] tags
|
1025
|
+
# The tags to add to the trust store. A tag is a key-value pair.
|
1026
|
+
# @return [Array<Types::Tag>]
|
1027
|
+
#
|
968
1028
|
# @!attribute [rw] client_token
|
969
1029
|
# A unique, case-sensitive identifier that you provide to ensure the
|
970
1030
|
# idempotency of the request. Idempotency ensures that an API request
|
@@ -980,6 +1040,28 @@ module Aws::WorkSpacesWeb
|
|
980
1040
|
# not need to pass this option.
|
981
1041
|
# @return [String]
|
982
1042
|
#
|
1043
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/CreateTrustStoreRequest AWS API Documentation
|
1044
|
+
#
|
1045
|
+
class CreateTrustStoreRequest < Struct.new(
|
1046
|
+
:certificate_list,
|
1047
|
+
:tags,
|
1048
|
+
:client_token)
|
1049
|
+
SENSITIVE = [:tags]
|
1050
|
+
include Aws::Structure
|
1051
|
+
end
|
1052
|
+
|
1053
|
+
# @!attribute [rw] trust_store_arn
|
1054
|
+
# The ARN of the trust store.
|
1055
|
+
# @return [String]
|
1056
|
+
#
|
1057
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/CreateTrustStoreResponse AWS API Documentation
|
1058
|
+
#
|
1059
|
+
class CreateTrustStoreResponse < Struct.new(
|
1060
|
+
:trust_store_arn)
|
1061
|
+
SENSITIVE = []
|
1062
|
+
include Aws::Structure
|
1063
|
+
end
|
1064
|
+
|
983
1065
|
# @!attribute [rw] kinesis_stream_arn
|
984
1066
|
# The ARN of the Kinesis stream.
|
985
1067
|
# @return [String]
|
@@ -989,12 +1071,27 @@ module Aws::WorkSpacesWeb
|
|
989
1071
|
# pair.
|
990
1072
|
# @return [Array<Types::Tag>]
|
991
1073
|
#
|
1074
|
+
# @!attribute [rw] client_token
|
1075
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
1076
|
+
# idempotency of the request. Idempotency ensures that an API request
|
1077
|
+
# completes only once. With an idempotent request, if the original
|
1078
|
+
# request completes successfully, subsequent retries with the same
|
1079
|
+
# client token returns the result from the original successful
|
1080
|
+
# request.
|
1081
|
+
#
|
1082
|
+
# If you do not specify a client token, one is automatically generated
|
1083
|
+
# by the Amazon Web Services SDK.
|
1084
|
+
#
|
1085
|
+
# **A suitable default value is auto-generated.** You should normally
|
1086
|
+
# not need to pass this option.
|
1087
|
+
# @return [String]
|
1088
|
+
#
|
992
1089
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/CreateUserAccessLoggingSettingsRequest AWS API Documentation
|
993
1090
|
#
|
994
1091
|
class CreateUserAccessLoggingSettingsRequest < Struct.new(
|
995
|
-
:client_token,
|
996
1092
|
:kinesis_stream_arn,
|
997
|
-
:tags
|
1093
|
+
:tags,
|
1094
|
+
:client_token)
|
998
1095
|
SENSITIVE = [:tags]
|
999
1096
|
include Aws::Structure
|
1000
1097
|
end
|
@@ -1011,9 +1108,45 @@ module Aws::WorkSpacesWeb
|
|
1011
1108
|
include Aws::Structure
|
1012
1109
|
end
|
1013
1110
|
|
1014
|
-
# @!attribute [rw]
|
1015
|
-
#
|
1016
|
-
#
|
1111
|
+
# @!attribute [rw] copy_allowed
|
1112
|
+
# Specifies whether the user can copy text from the streaming session
|
1113
|
+
# to the local device.
|
1114
|
+
# @return [String]
|
1115
|
+
#
|
1116
|
+
# @!attribute [rw] paste_allowed
|
1117
|
+
# Specifies whether the user can paste text from the local device to
|
1118
|
+
# the streaming session.
|
1119
|
+
# @return [String]
|
1120
|
+
#
|
1121
|
+
# @!attribute [rw] download_allowed
|
1122
|
+
# Specifies whether the user can download files from the streaming
|
1123
|
+
# session to the local device.
|
1124
|
+
# @return [String]
|
1125
|
+
#
|
1126
|
+
# @!attribute [rw] upload_allowed
|
1127
|
+
# Specifies whether the user can upload files from the local device to
|
1128
|
+
# the streaming session.
|
1129
|
+
# @return [String]
|
1130
|
+
#
|
1131
|
+
# @!attribute [rw] print_allowed
|
1132
|
+
# Specifies whether the user can print to the local device.
|
1133
|
+
# @return [String]
|
1134
|
+
#
|
1135
|
+
# @!attribute [rw] tags
|
1136
|
+
# The tags to add to the user settings resource. A tag is a key-value
|
1137
|
+
# pair.
|
1138
|
+
# @return [Array<Types::Tag>]
|
1139
|
+
#
|
1140
|
+
# @!attribute [rw] disconnect_timeout_in_minutes
|
1141
|
+
# The amount of time that a streaming session remains active after
|
1142
|
+
# users disconnect.
|
1143
|
+
# @return [Integer]
|
1144
|
+
#
|
1145
|
+
# @!attribute [rw] idle_disconnect_timeout_in_minutes
|
1146
|
+
# The amount of time that users can be idle (inactive) before they are
|
1147
|
+
# disconnected from their streaming session and the disconnect timeout
|
1148
|
+
# interval begins.
|
1149
|
+
# @return [Integer]
|
1017
1150
|
#
|
1018
1151
|
# @!attribute [rw] client_token
|
1019
1152
|
# A unique, case-sensitive identifier that you provide to ensure the
|
@@ -1036,51 +1169,20 @@ module Aws::WorkSpacesWeb
|
|
1036
1169
|
# browser.
|
1037
1170
|
# @return [Types::CookieSynchronizationConfiguration]
|
1038
1171
|
#
|
1039
|
-
# @!attribute [rw] copy_allowed
|
1040
|
-
# Specifies whether the user can copy text from the streaming session
|
1041
|
-
# to the local device.
|
1042
|
-
# @return [String]
|
1043
|
-
#
|
1044
1172
|
# @!attribute [rw] customer_managed_key
|
1045
1173
|
# The customer managed key used to encrypt sensitive information in
|
1046
1174
|
# the user settings.
|
1047
1175
|
# @return [String]
|
1048
1176
|
#
|
1177
|
+
# @!attribute [rw] additional_encryption_context
|
1178
|
+
# The additional encryption context of the user settings.
|
1179
|
+
# @return [Hash<String,String>]
|
1180
|
+
#
|
1049
1181
|
# @!attribute [rw] deep_link_allowed
|
1050
1182
|
# Specifies whether the user can use deep links that open
|
1051
1183
|
# automatically when connecting to a session.
|
1052
1184
|
# @return [String]
|
1053
1185
|
#
|
1054
|
-
# @!attribute [rw] disconnect_timeout_in_minutes
|
1055
|
-
# The amount of time that a streaming session remains active after
|
1056
|
-
# users disconnect.
|
1057
|
-
# @return [Integer]
|
1058
|
-
#
|
1059
|
-
# @!attribute [rw] download_allowed
|
1060
|
-
# Specifies whether the user can download files from the streaming
|
1061
|
-
# session to the local device.
|
1062
|
-
# @return [String]
|
1063
|
-
#
|
1064
|
-
# @!attribute [rw] idle_disconnect_timeout_in_minutes
|
1065
|
-
# The amount of time that users can be idle (inactive) before they are
|
1066
|
-
# disconnected from their streaming session and the disconnect timeout
|
1067
|
-
# interval begins.
|
1068
|
-
# @return [Integer]
|
1069
|
-
#
|
1070
|
-
# @!attribute [rw] paste_allowed
|
1071
|
-
# Specifies whether the user can paste text from the local device to
|
1072
|
-
# the streaming session.
|
1073
|
-
# @return [String]
|
1074
|
-
#
|
1075
|
-
# @!attribute [rw] print_allowed
|
1076
|
-
# Specifies whether the user can print to the local device.
|
1077
|
-
# @return [String]
|
1078
|
-
#
|
1079
|
-
# @!attribute [rw] tags
|
1080
|
-
# The tags to add to the user settings resource. A tag is a key-value
|
1081
|
-
# pair.
|
1082
|
-
# @return [Array<Types::Tag>]
|
1083
|
-
#
|
1084
1186
|
# @!attribute [rw] toolbar_configuration
|
1085
1187
|
# The configuration of the toolbar. This allows administrators to
|
1086
1188
|
# select the toolbar type and visual mode, set maximum display
|
@@ -1089,29 +1191,24 @@ module Aws::WorkSpacesWeb
|
|
1089
1191
|
# settings, end users retain control over their toolbar preferences.
|
1090
1192
|
# @return [Types::ToolbarConfiguration]
|
1091
1193
|
#
|
1092
|
-
# @!attribute [rw] upload_allowed
|
1093
|
-
# Specifies whether the user can upload files from the local device to
|
1094
|
-
# the streaming session.
|
1095
|
-
# @return [String]
|
1096
|
-
#
|
1097
1194
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/CreateUserSettingsRequest AWS API Documentation
|
1098
1195
|
#
|
1099
1196
|
class CreateUserSettingsRequest < Struct.new(
|
1100
|
-
:additional_encryption_context,
|
1101
|
-
:client_token,
|
1102
|
-
:cookie_synchronization_configuration,
|
1103
1197
|
:copy_allowed,
|
1104
|
-
:customer_managed_key,
|
1105
|
-
:deep_link_allowed,
|
1106
|
-
:disconnect_timeout_in_minutes,
|
1107
|
-
:download_allowed,
|
1108
|
-
:idle_disconnect_timeout_in_minutes,
|
1109
1198
|
:paste_allowed,
|
1199
|
+
:download_allowed,
|
1200
|
+
:upload_allowed,
|
1110
1201
|
:print_allowed,
|
1111
1202
|
:tags,
|
1112
|
-
:
|
1113
|
-
:
|
1114
|
-
|
1203
|
+
:disconnect_timeout_in_minutes,
|
1204
|
+
:idle_disconnect_timeout_in_minutes,
|
1205
|
+
:client_token,
|
1206
|
+
:cookie_synchronization_configuration,
|
1207
|
+
:customer_managed_key,
|
1208
|
+
:additional_encryption_context,
|
1209
|
+
:deep_link_allowed,
|
1210
|
+
:toolbar_configuration)
|
1211
|
+
SENSITIVE = [:tags, :cookie_synchronization_configuration]
|
1115
1212
|
include Aws::Structure
|
1116
1213
|
end
|
1117
1214
|
|
@@ -1129,21 +1226,6 @@ module Aws::WorkSpacesWeb
|
|
1129
1226
|
|
1130
1227
|
# The pattern configuration for redacting custom data types in session.
|
1131
1228
|
#
|
1132
|
-
# @!attribute [rw] keyword_regex
|
1133
|
-
# The keyword regex for the customer pattern. After there is a match
|
1134
|
-
# to the pattern regex, the keyword regex is used to search within the
|
1135
|
-
# proximity of the match. If there is a keyword match, then the match
|
1136
|
-
# is confirmed. If no keyword regex is provided, the pattern regex
|
1137
|
-
# match will automatically be confirmed. The format must follow
|
1138
|
-
# JavaScript regex format. The pattern must be enclosed between
|
1139
|
-
# slashes, and can have flags behind the second slash. For example,
|
1140
|
-
# “/ab+c/gi”
|
1141
|
-
# @return [String]
|
1142
|
-
#
|
1143
|
-
# @!attribute [rw] pattern_description
|
1144
|
-
# The pattern description for the customer pattern.
|
1145
|
-
# @return [String]
|
1146
|
-
#
|
1147
1229
|
# @!attribute [rw] pattern_name
|
1148
1230
|
# The pattern name for the custom pattern.
|
1149
1231
|
# @return [String]
|
@@ -1155,29 +1237,56 @@ module Aws::WorkSpacesWeb
|
|
1155
1237
|
# “/ab+c/gi”.
|
1156
1238
|
# @return [String]
|
1157
1239
|
#
|
1240
|
+
# @!attribute [rw] pattern_description
|
1241
|
+
# The pattern description for the customer pattern.
|
1242
|
+
# @return [String]
|
1243
|
+
#
|
1244
|
+
# @!attribute [rw] keyword_regex
|
1245
|
+
# The keyword regex for the customer pattern. After there is a match
|
1246
|
+
# to the pattern regex, the keyword regex is used to search within the
|
1247
|
+
# proximity of the match. If there is a keyword match, then the match
|
1248
|
+
# is confirmed. If no keyword regex is provided, the pattern regex
|
1249
|
+
# match will automatically be confirmed. The format must follow
|
1250
|
+
# JavaScript regex format. The pattern must be enclosed between
|
1251
|
+
# slashes, and can have flags behind the second slash. For example,
|
1252
|
+
# “/ab+c/gi”
|
1253
|
+
# @return [String]
|
1254
|
+
#
|
1158
1255
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/CustomPattern AWS API Documentation
|
1159
1256
|
#
|
1160
1257
|
class CustomPattern < Struct.new(
|
1161
|
-
:keyword_regex,
|
1162
|
-
:pattern_description,
|
1163
1258
|
:pattern_name,
|
1164
|
-
:pattern_regex
|
1165
|
-
|
1259
|
+
:pattern_regex,
|
1260
|
+
:pattern_description,
|
1261
|
+
:keyword_regex)
|
1262
|
+
SENSITIVE = [:pattern_name, :pattern_regex, :pattern_description, :keyword_regex]
|
1166
1263
|
include Aws::Structure
|
1167
1264
|
end
|
1168
1265
|
|
1169
1266
|
# The data protection settings resource that can be associated with a
|
1170
1267
|
# web portal.
|
1171
1268
|
#
|
1172
|
-
# @!attribute [rw]
|
1173
|
-
# The
|
1174
|
-
# @return [
|
1269
|
+
# @!attribute [rw] data_protection_settings_arn
|
1270
|
+
# The ARN of the data protection settings resource.
|
1271
|
+
# @return [String]
|
1272
|
+
#
|
1273
|
+
# @!attribute [rw] inline_redaction_configuration
|
1274
|
+
# The inline redaction configuration for the data protection settings.
|
1275
|
+
# @return [Types::InlineRedactionConfiguration]
|
1175
1276
|
#
|
1176
1277
|
# @!attribute [rw] associated_portal_arns
|
1177
1278
|
# A list of web portal ARNs that this data protection settings
|
1178
1279
|
# resource is associated with.
|
1179
1280
|
# @return [Array<String>]
|
1180
1281
|
#
|
1282
|
+
# @!attribute [rw] display_name
|
1283
|
+
# The display name of the data protection settings.
|
1284
|
+
# @return [String]
|
1285
|
+
#
|
1286
|
+
# @!attribute [rw] description
|
1287
|
+
# The description of the data protection settings.
|
1288
|
+
# @return [String]
|
1289
|
+
#
|
1181
1290
|
# @!attribute [rw] creation_date
|
1182
1291
|
# The creation date timestamp of the data protection settings.
|
1183
1292
|
# @return [Time]
|
@@ -1187,63 +1296,51 @@ module Aws::WorkSpacesWeb
|
|
1187
1296
|
# the data protection settings.
|
1188
1297
|
# @return [String]
|
1189
1298
|
#
|
1190
|
-
# @!attribute [rw]
|
1191
|
-
# The
|
1192
|
-
# @return [String]
|
1193
|
-
#
|
1194
|
-
# @!attribute [rw] description
|
1195
|
-
# The description of the data protection settings.
|
1196
|
-
# @return [String]
|
1197
|
-
#
|
1198
|
-
# @!attribute [rw] display_name
|
1199
|
-
# The display name of the data protection settings.
|
1200
|
-
# @return [String]
|
1201
|
-
#
|
1202
|
-
# @!attribute [rw] inline_redaction_configuration
|
1203
|
-
# The inline redaction configuration for the data protection settings.
|
1204
|
-
# @return [Types::InlineRedactionConfiguration]
|
1299
|
+
# @!attribute [rw] additional_encryption_context
|
1300
|
+
# The additional encryption context of the data protection settings.
|
1301
|
+
# @return [Hash<String,String>]
|
1205
1302
|
#
|
1206
1303
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/DataProtectionSettings AWS API Documentation
|
1207
1304
|
#
|
1208
1305
|
class DataProtectionSettings < Struct.new(
|
1209
|
-
:
|
1306
|
+
:data_protection_settings_arn,
|
1307
|
+
:inline_redaction_configuration,
|
1210
1308
|
:associated_portal_arns,
|
1309
|
+
:display_name,
|
1310
|
+
:description,
|
1211
1311
|
:creation_date,
|
1212
1312
|
:customer_managed_key,
|
1213
|
-
:
|
1214
|
-
:description
|
1215
|
-
:display_name,
|
1216
|
-
:inline_redaction_configuration)
|
1217
|
-
SENSITIVE = [:description, :display_name]
|
1313
|
+
:additional_encryption_context)
|
1314
|
+
SENSITIVE = [:display_name, :description]
|
1218
1315
|
include Aws::Structure
|
1219
1316
|
end
|
1220
1317
|
|
1221
1318
|
# The summary of the data protection settings.
|
1222
1319
|
#
|
1223
|
-
# @!attribute [rw] creation_date
|
1224
|
-
# The creation date timestamp of the data protection settings.
|
1225
|
-
# @return [Time]
|
1226
|
-
#
|
1227
1320
|
# @!attribute [rw] data_protection_settings_arn
|
1228
1321
|
# The ARN of the data protection settings.
|
1229
1322
|
# @return [String]
|
1230
1323
|
#
|
1231
|
-
# @!attribute [rw] description
|
1232
|
-
# The description of the data protection settings.
|
1233
|
-
# @return [String]
|
1234
|
-
#
|
1235
1324
|
# @!attribute [rw] display_name
|
1236
1325
|
# The display name of the data protection settings.
|
1237
1326
|
# @return [String]
|
1238
1327
|
#
|
1239
|
-
#
|
1328
|
+
# @!attribute [rw] description
|
1329
|
+
# The description of the data protection settings.
|
1330
|
+
# @return [String]
|
1240
1331
|
#
|
1241
|
-
|
1242
|
-
|
1332
|
+
# @!attribute [rw] creation_date
|
1333
|
+
# The creation date timestamp of the data protection settings.
|
1334
|
+
# @return [Time]
|
1335
|
+
#
|
1336
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/DataProtectionSettingsSummary AWS API Documentation
|
1337
|
+
#
|
1338
|
+
class DataProtectionSettingsSummary < Struct.new(
|
1243
1339
|
:data_protection_settings_arn,
|
1340
|
+
:display_name,
|
1244
1341
|
:description,
|
1245
|
-
:
|
1246
|
-
SENSITIVE = [:
|
1342
|
+
:creation_date)
|
1343
|
+
SENSITIVE = [:display_name, :description]
|
1247
1344
|
include Aws::Structure
|
1248
1345
|
end
|
1249
1346
|
|
@@ -1343,6 +1440,22 @@ module Aws::WorkSpacesWeb
|
|
1343
1440
|
#
|
1344
1441
|
class DeletePortalResponse < Aws::EmptyStructure; end
|
1345
1442
|
|
1443
|
+
# @!attribute [rw] session_logger_arn
|
1444
|
+
# The ARN of the session logger.
|
1445
|
+
# @return [String]
|
1446
|
+
#
|
1447
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/DeleteSessionLoggerRequest AWS API Documentation
|
1448
|
+
#
|
1449
|
+
class DeleteSessionLoggerRequest < Struct.new(
|
1450
|
+
:session_logger_arn)
|
1451
|
+
SENSITIVE = []
|
1452
|
+
include Aws::Structure
|
1453
|
+
end
|
1454
|
+
|
1455
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/DeleteSessionLoggerResponse AWS API Documentation
|
1456
|
+
#
|
1457
|
+
class DeleteSessionLoggerResponse < Aws::EmptyStructure; end
|
1458
|
+
|
1346
1459
|
# @!attribute [rw] trust_store_arn
|
1347
1460
|
# The ARN of the trust store.
|
1348
1461
|
# @return [String]
|
@@ -1455,6 +1568,22 @@ module Aws::WorkSpacesWeb
|
|
1455
1568
|
#
|
1456
1569
|
class DisassociateNetworkSettingsResponse < Aws::EmptyStructure; end
|
1457
1570
|
|
1571
|
+
# @!attribute [rw] portal_arn
|
1572
|
+
# The ARN of the portal to disassociate from the a session logger.
|
1573
|
+
# @return [String]
|
1574
|
+
#
|
1575
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/DisassociateSessionLoggerRequest AWS API Documentation
|
1576
|
+
#
|
1577
|
+
class DisassociateSessionLoggerRequest < Struct.new(
|
1578
|
+
:portal_arn)
|
1579
|
+
SENSITIVE = []
|
1580
|
+
include Aws::Structure
|
1581
|
+
end
|
1582
|
+
|
1583
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/DisassociateSessionLoggerResponse AWS API Documentation
|
1584
|
+
#
|
1585
|
+
class DisassociateSessionLoggerResponse < Aws::EmptyStructure; end
|
1586
|
+
|
1458
1587
|
# @!attribute [rw] portal_arn
|
1459
1588
|
# The ARN of the web portal.
|
1460
1589
|
# @return [String]
|
@@ -1503,6 +1632,37 @@ module Aws::WorkSpacesWeb
|
|
1503
1632
|
#
|
1504
1633
|
class DisassociateUserSettingsResponse < Aws::EmptyStructure; end
|
1505
1634
|
|
1635
|
+
# The filter that specifies the events to monitor.
|
1636
|
+
#
|
1637
|
+
# @note EventFilter is a union - when making an API calls you must set exactly one of the members.
|
1638
|
+
#
|
1639
|
+
# @note EventFilter is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of EventFilter corresponding to the set member.
|
1640
|
+
#
|
1641
|
+
# @!attribute [rw] all
|
1642
|
+
# The filter that monitors all of the available events, including any
|
1643
|
+
# new events emitted in the future.
|
1644
|
+
# @return [Types::Unit]
|
1645
|
+
#
|
1646
|
+
# @!attribute [rw] include
|
1647
|
+
# The filter that monitors only the listed set of events. New events
|
1648
|
+
# are not auto-monitored.
|
1649
|
+
# @return [Array<String>]
|
1650
|
+
#
|
1651
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/EventFilter AWS API Documentation
|
1652
|
+
#
|
1653
|
+
class EventFilter < Struct.new(
|
1654
|
+
:all,
|
1655
|
+
:include,
|
1656
|
+
:unknown)
|
1657
|
+
SENSITIVE = []
|
1658
|
+
include Aws::Structure
|
1659
|
+
include Aws::Structure::Union
|
1660
|
+
|
1661
|
+
class All < EventFilter; end
|
1662
|
+
class Include < EventFilter; end
|
1663
|
+
class Unknown < EventFilter; end
|
1664
|
+
end
|
1665
|
+
|
1506
1666
|
# @!attribute [rw] portal_id
|
1507
1667
|
# The ID of the web portal for the session.
|
1508
1668
|
# @return [String]
|
@@ -1697,6 +1857,30 @@ module Aws::WorkSpacesWeb
|
|
1697
1857
|
include Aws::Structure
|
1698
1858
|
end
|
1699
1859
|
|
1860
|
+
# @!attribute [rw] session_logger_arn
|
1861
|
+
# The ARN of the session logger.
|
1862
|
+
# @return [String]
|
1863
|
+
#
|
1864
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/GetSessionLoggerRequest AWS API Documentation
|
1865
|
+
#
|
1866
|
+
class GetSessionLoggerRequest < Struct.new(
|
1867
|
+
:session_logger_arn)
|
1868
|
+
SENSITIVE = []
|
1869
|
+
include Aws::Structure
|
1870
|
+
end
|
1871
|
+
|
1872
|
+
# @!attribute [rw] session_logger
|
1873
|
+
# The session logger details.
|
1874
|
+
# @return [Types::SessionLogger]
|
1875
|
+
#
|
1876
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/GetSessionLoggerResponse AWS API Documentation
|
1877
|
+
#
|
1878
|
+
class GetSessionLoggerResponse < Struct.new(
|
1879
|
+
:session_logger)
|
1880
|
+
SENSITIVE = []
|
1881
|
+
include Aws::Structure
|
1882
|
+
end
|
1883
|
+
|
1700
1884
|
# @!attribute [rw] portal_id
|
1701
1885
|
# The ID of the web portal for the session.
|
1702
1886
|
# @return [String]
|
@@ -1726,36 +1910,36 @@ module Aws::WorkSpacesWeb
|
|
1726
1910
|
include Aws::Structure
|
1727
1911
|
end
|
1728
1912
|
|
1729
|
-
# @!attribute [rw] thumbprint
|
1730
|
-
# The thumbprint of the trust store certificate.
|
1731
|
-
# @return [String]
|
1732
|
-
#
|
1733
1913
|
# @!attribute [rw] trust_store_arn
|
1734
1914
|
# The ARN of the trust store certificate.
|
1735
1915
|
# @return [String]
|
1736
1916
|
#
|
1917
|
+
# @!attribute [rw] thumbprint
|
1918
|
+
# The thumbprint of the trust store certificate.
|
1919
|
+
# @return [String]
|
1920
|
+
#
|
1737
1921
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/GetTrustStoreCertificateRequest AWS API Documentation
|
1738
1922
|
#
|
1739
1923
|
class GetTrustStoreCertificateRequest < Struct.new(
|
1740
|
-
:
|
1741
|
-
:
|
1924
|
+
:trust_store_arn,
|
1925
|
+
:thumbprint)
|
1742
1926
|
SENSITIVE = []
|
1743
1927
|
include Aws::Structure
|
1744
1928
|
end
|
1745
1929
|
|
1746
|
-
# @!attribute [rw] certificate
|
1747
|
-
# The certificate of the trust store certificate.
|
1748
|
-
# @return [Types::Certificate]
|
1749
|
-
#
|
1750
1930
|
# @!attribute [rw] trust_store_arn
|
1751
1931
|
# The ARN of the trust store certificate.
|
1752
1932
|
# @return [String]
|
1753
1933
|
#
|
1934
|
+
# @!attribute [rw] certificate
|
1935
|
+
# The certificate of the trust store certificate.
|
1936
|
+
# @return [Types::Certificate]
|
1937
|
+
#
|
1754
1938
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/GetTrustStoreCertificateResponse AWS API Documentation
|
1755
1939
|
#
|
1756
1940
|
class GetTrustStoreCertificateResponse < Struct.new(
|
1757
|
-
:
|
1758
|
-
:
|
1941
|
+
:trust_store_arn,
|
1942
|
+
:certificate)
|
1759
1943
|
SENSITIVE = []
|
1760
1944
|
include Aws::Structure
|
1761
1945
|
end
|
@@ -1838,6 +2022,14 @@ module Aws::WorkSpacesWeb
|
|
1838
2022
|
# The ARN of the identity provider.
|
1839
2023
|
# @return [String]
|
1840
2024
|
#
|
2025
|
+
# @!attribute [rw] identity_provider_name
|
2026
|
+
# The identity provider name.
|
2027
|
+
# @return [String]
|
2028
|
+
#
|
2029
|
+
# @!attribute [rw] identity_provider_type
|
2030
|
+
# The identity provider type.
|
2031
|
+
# @return [String]
|
2032
|
+
#
|
1841
2033
|
# @!attribute [rw] identity_provider_details
|
1842
2034
|
# The identity provider details. The following list describes the
|
1843
2035
|
# provider detail keys for each identity provider type.
|
@@ -1906,22 +2098,14 @@ module Aws::WorkSpacesWeb
|
|
1906
2098
|
# * `EncryptedResponses` (boolean) *optional*
|
1907
2099
|
# @return [Hash<String,String>]
|
1908
2100
|
#
|
1909
|
-
# @!attribute [rw] identity_provider_name
|
1910
|
-
# The identity provider name.
|
1911
|
-
# @return [String]
|
1912
|
-
#
|
1913
|
-
# @!attribute [rw] identity_provider_type
|
1914
|
-
# The identity provider type.
|
1915
|
-
# @return [String]
|
1916
|
-
#
|
1917
2101
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/IdentityProvider AWS API Documentation
|
1918
2102
|
#
|
1919
2103
|
class IdentityProvider < Struct.new(
|
1920
2104
|
:identity_provider_arn,
|
1921
|
-
:identity_provider_details,
|
1922
2105
|
:identity_provider_name,
|
1923
|
-
:identity_provider_type
|
1924
|
-
|
2106
|
+
:identity_provider_type,
|
2107
|
+
:identity_provider_details)
|
2108
|
+
SENSITIVE = [:identity_provider_name, :identity_provider_details]
|
1925
2109
|
include Aws::Structure
|
1926
2110
|
end
|
1927
2111
|
|
@@ -1951,18 +2135,10 @@ module Aws::WorkSpacesWeb
|
|
1951
2135
|
|
1952
2136
|
# The configuration for in-session inline redaction.
|
1953
2137
|
#
|
1954
|
-
# @!attribute [rw]
|
1955
|
-
# The
|
1956
|
-
#
|
1957
|
-
#
|
1958
|
-
# formatted text pattern match in order for content to be redacted.
|
1959
|
-
# Confidence level 2 means medium confidence, and redaction considers
|
1960
|
-
# both formatted and unformatted text, and adds keyword associate to
|
1961
|
-
# the logic. Confidence level 1 means low confidence, and redaction is
|
1962
|
-
# enforced for both formatted pattern + unformatted pattern without
|
1963
|
-
# keyword. This is applied to patterns that do not have a
|
1964
|
-
# pattern-level confidence level. Defaults to confidence level 2.
|
1965
|
-
# @return [Integer]
|
2138
|
+
# @!attribute [rw] inline_redaction_patterns
|
2139
|
+
# The inline redaction patterns to be enabled for the inline redaction
|
2140
|
+
# configuration.
|
2141
|
+
# @return [Array<Types::InlineRedactionPattern>]
|
1966
2142
|
#
|
1967
2143
|
# @!attribute [rw] global_enforced_urls
|
1968
2144
|
# The global enforced URL configuration for the inline redaction
|
@@ -1976,18 +2152,26 @@ module Aws::WorkSpacesWeb
|
|
1976
2152
|
# pattern-level exempt URL list.
|
1977
2153
|
# @return [Array<String>]
|
1978
2154
|
#
|
1979
|
-
# @!attribute [rw]
|
1980
|
-
# The
|
1981
|
-
#
|
1982
|
-
#
|
2155
|
+
# @!attribute [rw] global_confidence_level
|
2156
|
+
# The global confidence level for the inline redaction configuration.
|
2157
|
+
# This indicates the certainty of data type matches in the redaction
|
2158
|
+
# process. Confidence level 3 means high confidence, and requires a
|
2159
|
+
# formatted text pattern match in order for content to be redacted.
|
2160
|
+
# Confidence level 2 means medium confidence, and redaction considers
|
2161
|
+
# both formatted and unformatted text, and adds keyword associate to
|
2162
|
+
# the logic. Confidence level 1 means low confidence, and redaction is
|
2163
|
+
# enforced for both formatted pattern + unformatted pattern without
|
2164
|
+
# keyword. This is applied to patterns that do not have a
|
2165
|
+
# pattern-level confidence level. Defaults to confidence level 2.
|
2166
|
+
# @return [Integer]
|
1983
2167
|
#
|
1984
2168
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/InlineRedactionConfiguration AWS API Documentation
|
1985
2169
|
#
|
1986
2170
|
class InlineRedactionConfiguration < Struct.new(
|
1987
|
-
:
|
2171
|
+
:inline_redaction_patterns,
|
1988
2172
|
:global_enforced_urls,
|
1989
2173
|
:global_exempt_urls,
|
1990
|
-
:
|
2174
|
+
:global_confidence_level)
|
1991
2175
|
SENSITIVE = [:global_enforced_urls, :global_exempt_urls]
|
1992
2176
|
include Aws::Structure
|
1993
2177
|
end
|
@@ -1999,23 +2183,16 @@ module Aws::WorkSpacesWeb
|
|
1999
2183
|
# a customPattern or builtInPatternId is required.
|
2000
2184
|
# @return [String]
|
2001
2185
|
#
|
2002
|
-
# @!attribute [rw] confidence_level
|
2003
|
-
# The confidence level for inline redaction pattern. This indicates
|
2004
|
-
# the certainty of data type matches in the redaction process.
|
2005
|
-
# Confidence level 3 means high confidence, and requires a formatted
|
2006
|
-
# text pattern match in order for content to be redacted. Confidence
|
2007
|
-
# level 2 means medium confidence, and redaction considers both
|
2008
|
-
# formatted and unformatted text, and adds keyword associate to the
|
2009
|
-
# logic. Confidence level 1 means low confidence, and redaction is
|
2010
|
-
# enforced for both formatted pattern + unformatted pattern without
|
2011
|
-
# keyword. This overrides the global confidence level.
|
2012
|
-
# @return [Integer]
|
2013
|
-
#
|
2014
2186
|
# @!attribute [rw] custom_pattern
|
2015
2187
|
# >The configuration for a custom pattern. Either a customPattern
|
2016
2188
|
# or builtInPatternId is required.
|
2017
2189
|
# @return [Types::CustomPattern]
|
2018
2190
|
#
|
2191
|
+
# @!attribute [rw] redaction_place_holder
|
2192
|
+
# The redaction placeholder that will replace the redacted text in
|
2193
|
+
# session for the inline redaction pattern.
|
2194
|
+
# @return [Types::RedactionPlaceHolder]
|
2195
|
+
#
|
2019
2196
|
# @!attribute [rw] enforced_urls
|
2020
2197
|
# The enforced URL configuration for the inline redaction pattern.
|
2021
2198
|
# This will override the global enforced URL configuration.
|
@@ -2027,20 +2204,27 @@ module Aws::WorkSpacesWeb
|
|
2027
2204
|
# redaction pattern.
|
2028
2205
|
# @return [Array<String>]
|
2029
2206
|
#
|
2030
|
-
# @!attribute [rw]
|
2031
|
-
# The
|
2032
|
-
#
|
2033
|
-
#
|
2207
|
+
# @!attribute [rw] confidence_level
|
2208
|
+
# The confidence level for inline redaction pattern. This indicates
|
2209
|
+
# the certainty of data type matches in the redaction process.
|
2210
|
+
# Confidence level 3 means high confidence, and requires a formatted
|
2211
|
+
# text pattern match in order for content to be redacted. Confidence
|
2212
|
+
# level 2 means medium confidence, and redaction considers both
|
2213
|
+
# formatted and unformatted text, and adds keyword associate to the
|
2214
|
+
# logic. Confidence level 1 means low confidence, and redaction is
|
2215
|
+
# enforced for both formatted pattern + unformatted pattern without
|
2216
|
+
# keyword. This overrides the global confidence level.
|
2217
|
+
# @return [Integer]
|
2034
2218
|
#
|
2035
2219
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/InlineRedactionPattern AWS API Documentation
|
2036
2220
|
#
|
2037
2221
|
class InlineRedactionPattern < Struct.new(
|
2038
2222
|
:built_in_pattern_id,
|
2039
|
-
:confidence_level,
|
2040
2223
|
:custom_pattern,
|
2224
|
+
:redaction_place_holder,
|
2041
2225
|
:enforced_urls,
|
2042
2226
|
:exempt_urls,
|
2043
|
-
:
|
2227
|
+
:confidence_level)
|
2044
2228
|
SENSITIVE = [:built_in_pattern_id, :enforced_urls, :exempt_urls]
|
2045
2229
|
include Aws::Structure
|
2046
2230
|
end
|
@@ -2066,117 +2250,117 @@ module Aws::WorkSpacesWeb
|
|
2066
2250
|
# The IP access settings resource that can be associated with a web
|
2067
2251
|
# portal.
|
2068
2252
|
#
|
2069
|
-
# @!attribute [rw]
|
2070
|
-
# The
|
2071
|
-
# @return [
|
2253
|
+
# @!attribute [rw] ip_access_settings_arn
|
2254
|
+
# The ARN of the IP access settings resource.
|
2255
|
+
# @return [String]
|
2072
2256
|
#
|
2073
2257
|
# @!attribute [rw] associated_portal_arns
|
2074
2258
|
# A list of web portal ARNs that this IP access settings resource is
|
2075
2259
|
# associated with.
|
2076
2260
|
# @return [Array<String>]
|
2077
2261
|
#
|
2078
|
-
# @!attribute [rw]
|
2079
|
-
# The
|
2080
|
-
# @return [
|
2262
|
+
# @!attribute [rw] ip_rules
|
2263
|
+
# The IP rules of the IP access settings.
|
2264
|
+
# @return [Array<Types::IpRule>]
|
2081
2265
|
#
|
2082
|
-
# @!attribute [rw]
|
2083
|
-
# The
|
2084
|
-
# the IP access settings.
|
2266
|
+
# @!attribute [rw] display_name
|
2267
|
+
# The display name of the IP access settings.
|
2085
2268
|
# @return [String]
|
2086
2269
|
#
|
2087
2270
|
# @!attribute [rw] description
|
2088
2271
|
# The description of the IP access settings.
|
2089
2272
|
# @return [String]
|
2090
2273
|
#
|
2091
|
-
# @!attribute [rw]
|
2092
|
-
# The
|
2093
|
-
# @return [
|
2274
|
+
# @!attribute [rw] creation_date
|
2275
|
+
# The creation date timestamp of the IP access settings.
|
2276
|
+
# @return [Time]
|
2094
2277
|
#
|
2095
|
-
# @!attribute [rw]
|
2096
|
-
# The
|
2278
|
+
# @!attribute [rw] customer_managed_key
|
2279
|
+
# The customer managed key used to encrypt sensitive information in
|
2280
|
+
# the IP access settings.
|
2097
2281
|
# @return [String]
|
2098
2282
|
#
|
2099
|
-
# @!attribute [rw]
|
2100
|
-
# The
|
2101
|
-
# @return [
|
2283
|
+
# @!attribute [rw] additional_encryption_context
|
2284
|
+
# The additional encryption context of the IP access settings.
|
2285
|
+
# @return [Hash<String,String>]
|
2102
2286
|
#
|
2103
2287
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/IpAccessSettings AWS API Documentation
|
2104
2288
|
#
|
2105
2289
|
class IpAccessSettings < Struct.new(
|
2106
|
-
:
|
2290
|
+
:ip_access_settings_arn,
|
2107
2291
|
:associated_portal_arns,
|
2292
|
+
:ip_rules,
|
2293
|
+
:display_name,
|
2294
|
+
:description,
|
2108
2295
|
:creation_date,
|
2109
2296
|
:customer_managed_key,
|
2110
|
-
:
|
2111
|
-
:display_name,
|
2112
|
-
:ip_access_settings_arn,
|
2113
|
-
:ip_rules)
|
2114
|
-
SENSITIVE = [:description, :display_name, :ip_rules]
|
2297
|
+
:additional_encryption_context)
|
2298
|
+
SENSITIVE = [:ip_rules, :display_name, :description]
|
2115
2299
|
include Aws::Structure
|
2116
2300
|
end
|
2117
2301
|
|
2118
2302
|
# The summary of IP access settings.
|
2119
2303
|
#
|
2120
|
-
# @!attribute [rw]
|
2121
|
-
# The
|
2122
|
-
# @return [Time]
|
2123
|
-
#
|
2124
|
-
# @!attribute [rw] description
|
2125
|
-
# The description of the IP access settings.
|
2304
|
+
# @!attribute [rw] ip_access_settings_arn
|
2305
|
+
# The ARN of IP access settings.
|
2126
2306
|
# @return [String]
|
2127
2307
|
#
|
2128
2308
|
# @!attribute [rw] display_name
|
2129
2309
|
# The display name of the IP access settings.
|
2130
2310
|
# @return [String]
|
2131
2311
|
#
|
2132
|
-
# @!attribute [rw]
|
2133
|
-
# The
|
2312
|
+
# @!attribute [rw] description
|
2313
|
+
# The description of the IP access settings.
|
2134
2314
|
# @return [String]
|
2135
2315
|
#
|
2316
|
+
# @!attribute [rw] creation_date
|
2317
|
+
# The creation date timestamp of the IP access settings.
|
2318
|
+
# @return [Time]
|
2319
|
+
#
|
2136
2320
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/IpAccessSettingsSummary AWS API Documentation
|
2137
2321
|
#
|
2138
2322
|
class IpAccessSettingsSummary < Struct.new(
|
2139
|
-
:
|
2140
|
-
:description,
|
2323
|
+
:ip_access_settings_arn,
|
2141
2324
|
:display_name,
|
2142
|
-
:
|
2143
|
-
|
2325
|
+
:description,
|
2326
|
+
:creation_date)
|
2327
|
+
SENSITIVE = [:display_name, :description]
|
2144
2328
|
include Aws::Structure
|
2145
2329
|
end
|
2146
2330
|
|
2147
2331
|
# The IP rules of the IP access settings.
|
2148
2332
|
#
|
2149
|
-
# @!attribute [rw] description
|
2150
|
-
# The description of the IP rule.
|
2151
|
-
# @return [String]
|
2152
|
-
#
|
2153
2333
|
# @!attribute [rw] ip_range
|
2154
2334
|
# The IP range of the IP rule.
|
2155
2335
|
# @return [String]
|
2156
2336
|
#
|
2337
|
+
# @!attribute [rw] description
|
2338
|
+
# The description of the IP rule.
|
2339
|
+
# @return [String]
|
2340
|
+
#
|
2157
2341
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/IpRule AWS API Documentation
|
2158
2342
|
#
|
2159
2343
|
class IpRule < Struct.new(
|
2160
|
-
:
|
2161
|
-
:
|
2162
|
-
SENSITIVE = [:
|
2344
|
+
:ip_range,
|
2345
|
+
:description)
|
2346
|
+
SENSITIVE = [:ip_range, :description]
|
2163
2347
|
include Aws::Structure
|
2164
2348
|
end
|
2165
2349
|
|
2166
|
-
# @!attribute [rw] max_results
|
2167
|
-
# The maximum number of results to be included in the next page.
|
2168
|
-
# @return [Integer]
|
2169
|
-
#
|
2170
2350
|
# @!attribute [rw] next_token
|
2171
2351
|
# The pagination token used to retrieve the next page of results for
|
2172
2352
|
# this operation.
|
2173
2353
|
# @return [String]
|
2174
2354
|
#
|
2355
|
+
# @!attribute [rw] max_results
|
2356
|
+
# The maximum number of results to be included in the next page.
|
2357
|
+
# @return [Integer]
|
2358
|
+
#
|
2175
2359
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListBrowserSettingsRequest AWS API Documentation
|
2176
2360
|
#
|
2177
2361
|
class ListBrowserSettingsRequest < Struct.new(
|
2178
|
-
:
|
2179
|
-
:
|
2362
|
+
:next_token,
|
2363
|
+
:max_results)
|
2180
2364
|
SENSITIVE = []
|
2181
2365
|
include Aws::Structure
|
2182
2366
|
end
|
@@ -2199,20 +2383,20 @@ module Aws::WorkSpacesWeb
|
|
2199
2383
|
include Aws::Structure
|
2200
2384
|
end
|
2201
2385
|
|
2202
|
-
# @!attribute [rw] max_results
|
2203
|
-
# The maximum number of results to be included in the next page.
|
2204
|
-
# @return [Integer]
|
2205
|
-
#
|
2206
2386
|
# @!attribute [rw] next_token
|
2207
2387
|
# The pagination token used to retrieve the next page of results for
|
2208
2388
|
# this operation.
|
2209
2389
|
# @return [String]
|
2210
2390
|
#
|
2391
|
+
# @!attribute [rw] max_results
|
2392
|
+
# The maximum number of results to be included in the next page.
|
2393
|
+
# @return [Integer]
|
2394
|
+
#
|
2211
2395
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListDataProtectionSettingsRequest AWS API Documentation
|
2212
2396
|
#
|
2213
2397
|
class ListDataProtectionSettingsRequest < Struct.new(
|
2214
|
-
:
|
2215
|
-
:
|
2398
|
+
:next_token,
|
2399
|
+
:max_results)
|
2216
2400
|
SENSITIVE = []
|
2217
2401
|
include Aws::Structure
|
2218
2402
|
end
|
@@ -2235,15 +2419,15 @@ module Aws::WorkSpacesWeb
|
|
2235
2419
|
include Aws::Structure
|
2236
2420
|
end
|
2237
2421
|
|
2238
|
-
# @!attribute [rw] max_results
|
2239
|
-
# The maximum number of results to be included in the next page.
|
2240
|
-
# @return [Integer]
|
2241
|
-
#
|
2242
2422
|
# @!attribute [rw] next_token
|
2243
2423
|
# The pagination token used to retrieve the next page of results for
|
2244
2424
|
# this operation.
|
2245
2425
|
# @return [String]
|
2246
2426
|
#
|
2427
|
+
# @!attribute [rw] max_results
|
2428
|
+
# The maximum number of results to be included in the next page.
|
2429
|
+
# @return [Integer]
|
2430
|
+
#
|
2247
2431
|
# @!attribute [rw] portal_arn
|
2248
2432
|
# The ARN of the web portal.
|
2249
2433
|
# @return [String]
|
@@ -2251,45 +2435,45 @@ module Aws::WorkSpacesWeb
|
|
2251
2435
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListIdentityProvidersRequest AWS API Documentation
|
2252
2436
|
#
|
2253
2437
|
class ListIdentityProvidersRequest < Struct.new(
|
2254
|
-
:max_results,
|
2255
2438
|
:next_token,
|
2439
|
+
:max_results,
|
2256
2440
|
:portal_arn)
|
2257
2441
|
SENSITIVE = []
|
2258
2442
|
include Aws::Structure
|
2259
2443
|
end
|
2260
2444
|
|
2261
|
-
# @!attribute [rw] identity_providers
|
2262
|
-
# The identity providers.
|
2263
|
-
# @return [Array<Types::IdentityProviderSummary>]
|
2264
|
-
#
|
2265
2445
|
# @!attribute [rw] next_token
|
2266
2446
|
# The pagination token used to retrieve the next page of results for
|
2267
2447
|
# this operation.
|
2268
2448
|
# @return [String]
|
2269
2449
|
#
|
2450
|
+
# @!attribute [rw] identity_providers
|
2451
|
+
# The identity providers.
|
2452
|
+
# @return [Array<Types::IdentityProviderSummary>]
|
2453
|
+
#
|
2270
2454
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListIdentityProvidersResponse AWS API Documentation
|
2271
2455
|
#
|
2272
2456
|
class ListIdentityProvidersResponse < Struct.new(
|
2273
|
-
:
|
2274
|
-
:
|
2457
|
+
:next_token,
|
2458
|
+
:identity_providers)
|
2275
2459
|
SENSITIVE = []
|
2276
2460
|
include Aws::Structure
|
2277
2461
|
end
|
2278
2462
|
|
2279
|
-
# @!attribute [rw] max_results
|
2280
|
-
# The maximum number of results to be included in the next page.
|
2281
|
-
# @return [Integer]
|
2282
|
-
#
|
2283
2463
|
# @!attribute [rw] next_token
|
2284
2464
|
# The pagination token used to retrieve the next page of results for
|
2285
2465
|
# this operation.
|
2286
2466
|
# @return [String]
|
2287
2467
|
#
|
2468
|
+
# @!attribute [rw] max_results
|
2469
|
+
# The maximum number of results to be included in the next page.
|
2470
|
+
# @return [Integer]
|
2471
|
+
#
|
2288
2472
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListIpAccessSettingsRequest AWS API Documentation
|
2289
2473
|
#
|
2290
2474
|
class ListIpAccessSettingsRequest < Struct.new(
|
2291
|
-
:
|
2292
|
-
:
|
2475
|
+
:next_token,
|
2476
|
+
:max_results)
|
2293
2477
|
SENSITIVE = []
|
2294
2478
|
include Aws::Structure
|
2295
2479
|
end
|
@@ -2312,20 +2496,20 @@ module Aws::WorkSpacesWeb
|
|
2312
2496
|
include Aws::Structure
|
2313
2497
|
end
|
2314
2498
|
|
2315
|
-
# @!attribute [rw] max_results
|
2316
|
-
# The maximum number of results to be included in the next page.
|
2317
|
-
# @return [Integer]
|
2318
|
-
#
|
2319
2499
|
# @!attribute [rw] next_token
|
2320
2500
|
# The pagination token used to retrieve the next page of results for
|
2321
2501
|
# this operation.
|
2322
2502
|
# @return [String]
|
2323
2503
|
#
|
2504
|
+
# @!attribute [rw] max_results
|
2505
|
+
# The maximum number of results to be included in the next page.
|
2506
|
+
# @return [Integer]
|
2507
|
+
#
|
2324
2508
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListNetworkSettingsRequest AWS API Documentation
|
2325
2509
|
#
|
2326
2510
|
class ListNetworkSettingsRequest < Struct.new(
|
2327
|
-
:
|
2328
|
-
:
|
2511
|
+
:next_token,
|
2512
|
+
:max_results)
|
2329
2513
|
SENSITIVE = []
|
2330
2514
|
include Aws::Structure
|
2331
2515
|
end
|
@@ -2348,55 +2532,86 @@ module Aws::WorkSpacesWeb
|
|
2348
2532
|
include Aws::Structure
|
2349
2533
|
end
|
2350
2534
|
|
2351
|
-
# @!attribute [rw] max_results
|
2352
|
-
# The maximum number of results to be included in the next page.
|
2353
|
-
# @return [Integer]
|
2354
|
-
#
|
2355
2535
|
# @!attribute [rw] next_token
|
2356
2536
|
# The pagination token used to retrieve the next page of results for
|
2357
2537
|
# this operation.
|
2358
2538
|
# @return [String]
|
2359
2539
|
#
|
2540
|
+
# @!attribute [rw] max_results
|
2541
|
+
# The maximum number of results to be included in the next page.
|
2542
|
+
# @return [Integer]
|
2543
|
+
#
|
2360
2544
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListPortalsRequest AWS API Documentation
|
2361
2545
|
#
|
2362
2546
|
class ListPortalsRequest < Struct.new(
|
2363
|
-
:
|
2364
|
-
:
|
2547
|
+
:next_token,
|
2548
|
+
:max_results)
|
2365
2549
|
SENSITIVE = []
|
2366
2550
|
include Aws::Structure
|
2367
2551
|
end
|
2368
2552
|
|
2553
|
+
# @!attribute [rw] portals
|
2554
|
+
# The portals in the list.
|
2555
|
+
# @return [Array<Types::PortalSummary>]
|
2556
|
+
#
|
2369
2557
|
# @!attribute [rw] next_token
|
2370
2558
|
# The pagination token used to retrieve the next page of results for
|
2371
2559
|
# this operation.
|
2372
2560
|
# @return [String]
|
2373
2561
|
#
|
2374
|
-
# @!attribute [rw] portals
|
2375
|
-
# The portals in the list.
|
2376
|
-
# @return [Array<Types::PortalSummary>]
|
2377
|
-
#
|
2378
2562
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListPortalsResponse AWS API Documentation
|
2379
2563
|
#
|
2380
2564
|
class ListPortalsResponse < Struct.new(
|
2381
|
-
:
|
2382
|
-
:
|
2565
|
+
:portals,
|
2566
|
+
:next_token)
|
2383
2567
|
SENSITIVE = []
|
2384
2568
|
include Aws::Structure
|
2385
2569
|
end
|
2386
2570
|
|
2571
|
+
# @!attribute [rw] next_token
|
2572
|
+
# The pagination token used to retrieve the next page of results for
|
2573
|
+
# this operation.
|
2574
|
+
# @return [String]
|
2575
|
+
#
|
2387
2576
|
# @!attribute [rw] max_results
|
2388
2577
|
# The maximum number of results to be included in the next page.
|
2389
2578
|
# @return [Integer]
|
2390
2579
|
#
|
2580
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListSessionLoggersRequest AWS API Documentation
|
2581
|
+
#
|
2582
|
+
class ListSessionLoggersRequest < Struct.new(
|
2583
|
+
:next_token,
|
2584
|
+
:max_results)
|
2585
|
+
SENSITIVE = []
|
2586
|
+
include Aws::Structure
|
2587
|
+
end
|
2588
|
+
|
2589
|
+
# @!attribute [rw] session_loggers
|
2590
|
+
# The list of session loggers, including summaries of their details.
|
2591
|
+
# @return [Array<Types::SessionLoggerSummary>]
|
2592
|
+
#
|
2391
2593
|
# @!attribute [rw] next_token
|
2392
2594
|
# The pagination token used to retrieve the next page of results for
|
2393
2595
|
# this operation.
|
2394
2596
|
# @return [String]
|
2395
2597
|
#
|
2598
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListSessionLoggersResponse AWS API Documentation
|
2599
|
+
#
|
2600
|
+
class ListSessionLoggersResponse < Struct.new(
|
2601
|
+
:session_loggers,
|
2602
|
+
:next_token)
|
2603
|
+
SENSITIVE = []
|
2604
|
+
include Aws::Structure
|
2605
|
+
end
|
2606
|
+
|
2396
2607
|
# @!attribute [rw] portal_id
|
2397
2608
|
# The ID of the web portal for the sessions.
|
2398
2609
|
# @return [String]
|
2399
2610
|
#
|
2611
|
+
# @!attribute [rw] username
|
2612
|
+
# The username of the session.
|
2613
|
+
# @return [String]
|
2614
|
+
#
|
2400
2615
|
# @!attribute [rw] session_id
|
2401
2616
|
# The ID of the session.
|
2402
2617
|
# @return [String]
|
@@ -2409,38 +2624,43 @@ module Aws::WorkSpacesWeb
|
|
2409
2624
|
# The status of the session.
|
2410
2625
|
# @return [String]
|
2411
2626
|
#
|
2412
|
-
# @!attribute [rw]
|
2413
|
-
# The
|
2627
|
+
# @!attribute [rw] max_results
|
2628
|
+
# The maximum number of results to be included in the next page.
|
2629
|
+
# @return [Integer]
|
2630
|
+
#
|
2631
|
+
# @!attribute [rw] next_token
|
2632
|
+
# The pagination token used to retrieve the next page of results for
|
2633
|
+
# this operation.
|
2414
2634
|
# @return [String]
|
2415
2635
|
#
|
2416
2636
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListSessionsRequest AWS API Documentation
|
2417
2637
|
#
|
2418
2638
|
class ListSessionsRequest < Struct.new(
|
2419
|
-
:max_results,
|
2420
|
-
:next_token,
|
2421
2639
|
:portal_id,
|
2640
|
+
:username,
|
2422
2641
|
:session_id,
|
2423
2642
|
:sort_by,
|
2424
2643
|
:status,
|
2425
|
-
:
|
2644
|
+
:max_results,
|
2645
|
+
:next_token)
|
2426
2646
|
SENSITIVE = [:username]
|
2427
2647
|
include Aws::Structure
|
2428
2648
|
end
|
2429
2649
|
|
2650
|
+
# @!attribute [rw] sessions
|
2651
|
+
# The sessions in a list.
|
2652
|
+
# @return [Array<Types::SessionSummary>]
|
2653
|
+
#
|
2430
2654
|
# @!attribute [rw] next_token
|
2431
2655
|
# The pagination token used to retrieve the next page of results for
|
2432
2656
|
# this operation.
|
2433
2657
|
# @return [String]
|
2434
2658
|
#
|
2435
|
-
# @!attribute [rw] sessions
|
2436
|
-
# The sessions in a list.
|
2437
|
-
# @return [Array<Types::SessionSummary>]
|
2438
|
-
#
|
2439
2659
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListSessionsResponse AWS API Documentation
|
2440
2660
|
#
|
2441
2661
|
class ListSessionsResponse < Struct.new(
|
2442
|
-
:
|
2443
|
-
:
|
2662
|
+
:sessions,
|
2663
|
+
:next_token)
|
2444
2664
|
SENSITIVE = []
|
2445
2665
|
include Aws::Structure
|
2446
2666
|
end
|
@@ -2469,25 +2689,25 @@ module Aws::WorkSpacesWeb
|
|
2469
2689
|
include Aws::Structure
|
2470
2690
|
end
|
2471
2691
|
|
2472
|
-
# @!attribute [rw]
|
2473
|
-
# The
|
2474
|
-
# @return [
|
2692
|
+
# @!attribute [rw] trust_store_arn
|
2693
|
+
# The ARN of the trust store
|
2694
|
+
# @return [String]
|
2475
2695
|
#
|
2476
2696
|
# @!attribute [rw] next_token
|
2477
2697
|
# The pagination token used to retrieve the next page of results for
|
2478
2698
|
# this operation.
|
2479
2699
|
# @return [String]
|
2480
2700
|
#
|
2481
|
-
# @!attribute [rw]
|
2482
|
-
# The
|
2483
|
-
# @return [
|
2701
|
+
# @!attribute [rw] max_results
|
2702
|
+
# The maximum number of results to be included in the next page.
|
2703
|
+
# @return [Integer]
|
2484
2704
|
#
|
2485
2705
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListTrustStoreCertificatesRequest AWS API Documentation
|
2486
2706
|
#
|
2487
2707
|
class ListTrustStoreCertificatesRequest < Struct.new(
|
2488
|
-
:
|
2708
|
+
:trust_store_arn,
|
2489
2709
|
:next_token,
|
2490
|
-
:
|
2710
|
+
:max_results)
|
2491
2711
|
SENSITIVE = []
|
2492
2712
|
include Aws::Structure
|
2493
2713
|
end
|
@@ -2496,129 +2716,143 @@ module Aws::WorkSpacesWeb
|
|
2496
2716
|
# The certificate list.
|
2497
2717
|
# @return [Array<Types::CertificateSummary>]
|
2498
2718
|
#
|
2719
|
+
# @!attribute [rw] trust_store_arn
|
2720
|
+
# The ARN of the trust store.
|
2721
|
+
# @return [String]
|
2722
|
+
#
|
2499
2723
|
# @!attribute [rw] next_token
|
2500
2724
|
# The pagination token used to retrieve the next page of results for
|
2501
2725
|
# this operation.>
|
2502
2726
|
# @return [String]
|
2503
2727
|
#
|
2504
|
-
# @!attribute [rw] trust_store_arn
|
2505
|
-
# The ARN of the trust store.
|
2506
|
-
# @return [String]
|
2507
|
-
#
|
2508
2728
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListTrustStoreCertificatesResponse AWS API Documentation
|
2509
2729
|
#
|
2510
2730
|
class ListTrustStoreCertificatesResponse < Struct.new(
|
2511
2731
|
:certificate_list,
|
2512
|
-
:
|
2513
|
-
:
|
2732
|
+
:trust_store_arn,
|
2733
|
+
:next_token)
|
2514
2734
|
SENSITIVE = []
|
2515
2735
|
include Aws::Structure
|
2516
2736
|
end
|
2517
2737
|
|
2518
|
-
# @!attribute [rw] max_results
|
2519
|
-
# The maximum number of results to be included in the next page.
|
2520
|
-
# @return [Integer]
|
2521
|
-
#
|
2522
2738
|
# @!attribute [rw] next_token
|
2523
2739
|
# The pagination token used to retrieve the next page of results for
|
2524
2740
|
# this operation.
|
2525
2741
|
# @return [String]
|
2526
2742
|
#
|
2743
|
+
# @!attribute [rw] max_results
|
2744
|
+
# The maximum number of results to be included in the next page.
|
2745
|
+
# @return [Integer]
|
2746
|
+
#
|
2527
2747
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListTrustStoresRequest AWS API Documentation
|
2528
2748
|
#
|
2529
2749
|
class ListTrustStoresRequest < Struct.new(
|
2530
|
-
:
|
2531
|
-
:
|
2750
|
+
:next_token,
|
2751
|
+
:max_results)
|
2532
2752
|
SENSITIVE = []
|
2533
2753
|
include Aws::Structure
|
2534
2754
|
end
|
2535
2755
|
|
2756
|
+
# @!attribute [rw] trust_stores
|
2757
|
+
# The trust stores.
|
2758
|
+
# @return [Array<Types::TrustStoreSummary>]
|
2759
|
+
#
|
2536
2760
|
# @!attribute [rw] next_token
|
2537
2761
|
# The pagination token used to retrieve the next page of results for
|
2538
2762
|
# this operation.
|
2539
2763
|
# @return [String]
|
2540
2764
|
#
|
2541
|
-
# @!attribute [rw] trust_stores
|
2542
|
-
# The trust stores.
|
2543
|
-
# @return [Array<Types::TrustStoreSummary>]
|
2544
|
-
#
|
2545
2765
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListTrustStoresResponse AWS API Documentation
|
2546
2766
|
#
|
2547
2767
|
class ListTrustStoresResponse < Struct.new(
|
2548
|
-
:
|
2549
|
-
:
|
2768
|
+
:trust_stores,
|
2769
|
+
:next_token)
|
2550
2770
|
SENSITIVE = []
|
2551
2771
|
include Aws::Structure
|
2552
2772
|
end
|
2553
2773
|
|
2554
|
-
# @!attribute [rw] max_results
|
2555
|
-
# The maximum number of results to be included in the next page.
|
2556
|
-
# @return [Integer]
|
2557
|
-
#
|
2558
2774
|
# @!attribute [rw] next_token
|
2559
2775
|
# The pagination token used to retrieve the next page of results for
|
2560
2776
|
# this operation.
|
2561
2777
|
# @return [String]
|
2562
2778
|
#
|
2779
|
+
# @!attribute [rw] max_results
|
2780
|
+
# The maximum number of results to be included in the next page.
|
2781
|
+
# @return [Integer]
|
2782
|
+
#
|
2563
2783
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListUserAccessLoggingSettingsRequest AWS API Documentation
|
2564
2784
|
#
|
2565
2785
|
class ListUserAccessLoggingSettingsRequest < Struct.new(
|
2566
|
-
:
|
2567
|
-
:
|
2786
|
+
:next_token,
|
2787
|
+
:max_results)
|
2568
2788
|
SENSITIVE = []
|
2569
2789
|
include Aws::Structure
|
2570
2790
|
end
|
2571
2791
|
|
2792
|
+
# @!attribute [rw] user_access_logging_settings
|
2793
|
+
# The user access logging settings.
|
2794
|
+
# @return [Array<Types::UserAccessLoggingSettingsSummary>]
|
2795
|
+
#
|
2572
2796
|
# @!attribute [rw] next_token
|
2573
2797
|
# The pagination token used to retrieve the next page of results for
|
2574
2798
|
# this operation.
|
2575
2799
|
# @return [String]
|
2576
2800
|
#
|
2577
|
-
# @!attribute [rw] user_access_logging_settings
|
2578
|
-
# The user access logging settings.
|
2579
|
-
# @return [Array<Types::UserAccessLoggingSettingsSummary>]
|
2580
|
-
#
|
2581
2801
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListUserAccessLoggingSettingsResponse AWS API Documentation
|
2582
2802
|
#
|
2583
2803
|
class ListUserAccessLoggingSettingsResponse < Struct.new(
|
2584
|
-
:
|
2585
|
-
:
|
2804
|
+
:user_access_logging_settings,
|
2805
|
+
:next_token)
|
2586
2806
|
SENSITIVE = []
|
2587
2807
|
include Aws::Structure
|
2588
2808
|
end
|
2589
2809
|
|
2590
|
-
# @!attribute [rw] max_results
|
2591
|
-
# The maximum number of results to be included in the next page.
|
2592
|
-
# @return [Integer]
|
2593
|
-
#
|
2594
2810
|
# @!attribute [rw] next_token
|
2595
2811
|
# The pagination token used to retrieve the next page of results for
|
2596
2812
|
# this operation.
|
2597
2813
|
# @return [String]
|
2598
2814
|
#
|
2815
|
+
# @!attribute [rw] max_results
|
2816
|
+
# The maximum number of results to be included in the next page.
|
2817
|
+
# @return [Integer]
|
2818
|
+
#
|
2599
2819
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListUserSettingsRequest AWS API Documentation
|
2600
2820
|
#
|
2601
2821
|
class ListUserSettingsRequest < Struct.new(
|
2602
|
-
:
|
2603
|
-
:
|
2822
|
+
:next_token,
|
2823
|
+
:max_results)
|
2604
2824
|
SENSITIVE = []
|
2605
2825
|
include Aws::Structure
|
2606
2826
|
end
|
2607
2827
|
|
2828
|
+
# @!attribute [rw] user_settings
|
2829
|
+
# The user settings.
|
2830
|
+
# @return [Array<Types::UserSettingsSummary>]
|
2831
|
+
#
|
2608
2832
|
# @!attribute [rw] next_token
|
2609
2833
|
# The pagination token used to retrieve the next page of results for
|
2610
2834
|
# this operation.
|
2611
2835
|
# @return [String]
|
2612
2836
|
#
|
2613
|
-
# @!attribute [rw] user_settings
|
2614
|
-
# The user settings.
|
2615
|
-
# @return [Array<Types::UserSettingsSummary>]
|
2616
|
-
#
|
2617
2837
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListUserSettingsResponse AWS API Documentation
|
2618
2838
|
#
|
2619
2839
|
class ListUserSettingsResponse < Struct.new(
|
2620
|
-
:
|
2621
|
-
:
|
2840
|
+
:user_settings,
|
2841
|
+
:next_token)
|
2842
|
+
SENSITIVE = []
|
2843
|
+
include Aws::Structure
|
2844
|
+
end
|
2845
|
+
|
2846
|
+
# The configuration of the log.
|
2847
|
+
#
|
2848
|
+
# @!attribute [rw] s3
|
2849
|
+
# The configuration for delivering the logs to S3.
|
2850
|
+
# @return [Types::S3LogConfiguration]
|
2851
|
+
#
|
2852
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/LogConfiguration AWS API Documentation
|
2853
|
+
#
|
2854
|
+
class LogConfiguration < Struct.new(
|
2855
|
+
:s3)
|
2622
2856
|
SENSITIVE = []
|
2623
2857
|
include Aws::Structure
|
2624
2858
|
end
|
@@ -2627,38 +2861,38 @@ module Aws::WorkSpacesWeb
|
|
2627
2861
|
# Once associated with a web portal, network settings define how
|
2628
2862
|
# streaming instances will connect with your specified VPC.
|
2629
2863
|
#
|
2864
|
+
# @!attribute [rw] network_settings_arn
|
2865
|
+
# The ARN of the network settings.
|
2866
|
+
# @return [String]
|
2867
|
+
#
|
2630
2868
|
# @!attribute [rw] associated_portal_arns
|
2631
2869
|
# A list of web portal ARNs that this network settings is associated
|
2632
2870
|
# with.
|
2633
2871
|
# @return [Array<String>]
|
2634
2872
|
#
|
2635
|
-
# @!attribute [rw]
|
2636
|
-
# The
|
2873
|
+
# @!attribute [rw] vpc_id
|
2874
|
+
# The VPC that streaming instances will connect to.
|
2637
2875
|
# @return [String]
|
2638
2876
|
#
|
2639
|
-
# @!attribute [rw] security_group_ids
|
2640
|
-
# One or more security groups used to control access from streaming
|
2641
|
-
# instances to your VPC.
|
2642
|
-
# @return [Array<String>]
|
2643
|
-
#
|
2644
2877
|
# @!attribute [rw] subnet_ids
|
2645
2878
|
# The subnets in which network interfaces are created to connect
|
2646
2879
|
# streaming instances to your VPC. At least two of these subnets must
|
2647
2880
|
# be in different availability zones.
|
2648
2881
|
# @return [Array<String>]
|
2649
2882
|
#
|
2650
|
-
# @!attribute [rw]
|
2651
|
-
#
|
2652
|
-
#
|
2883
|
+
# @!attribute [rw] security_group_ids
|
2884
|
+
# One or more security groups used to control access from streaming
|
2885
|
+
# instances to your VPC.
|
2886
|
+
# @return [Array<String>]
|
2653
2887
|
#
|
2654
2888
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/NetworkSettings AWS API Documentation
|
2655
2889
|
#
|
2656
2890
|
class NetworkSettings < Struct.new(
|
2657
|
-
:associated_portal_arns,
|
2658
2891
|
:network_settings_arn,
|
2659
|
-
:
|
2892
|
+
:associated_portal_arns,
|
2893
|
+
:vpc_id,
|
2660
2894
|
:subnet_ids,
|
2661
|
-
:
|
2895
|
+
:security_group_ids)
|
2662
2896
|
SENSITIVE = []
|
2663
2897
|
include Aws::Structure
|
2664
2898
|
end
|
@@ -2684,236 +2918,246 @@ module Aws::WorkSpacesWeb
|
|
2684
2918
|
|
2685
2919
|
# The web portal.
|
2686
2920
|
#
|
2687
|
-
# @!attribute [rw]
|
2688
|
-
# The
|
2689
|
-
# @return [Hash<String,String>]
|
2690
|
-
#
|
2691
|
-
# @!attribute [rw] authentication_type
|
2692
|
-
# The type of authentication integration points used when signing into
|
2693
|
-
# the web portal. Defaults to `Standard`.
|
2694
|
-
#
|
2695
|
-
# `Standard` web portals are authenticated directly through your
|
2696
|
-
# identity provider. You need to call `CreateIdentityProvider` to
|
2697
|
-
# integrate your identity provider with your web portal. User and
|
2698
|
-
# group access to your web portal is controlled through your identity
|
2699
|
-
# provider.
|
2700
|
-
#
|
2701
|
-
# `IAM Identity Center` web portals are authenticated through IAM
|
2702
|
-
# Identity Center. Identity sources (including external identity
|
2703
|
-
# provider integration), plus user and group access to your web
|
2704
|
-
# portal, can be configured in the IAM Identity Center.
|
2921
|
+
# @!attribute [rw] portal_arn
|
2922
|
+
# The ARN of the web portal.
|
2705
2923
|
# @return [String]
|
2706
2924
|
#
|
2707
|
-
# @!attribute [rw]
|
2708
|
-
# The
|
2709
|
-
# portal.
|
2925
|
+
# @!attribute [rw] renderer_type
|
2926
|
+
# The renderer that is used in streaming sessions.
|
2710
2927
|
# @return [String]
|
2711
2928
|
#
|
2712
2929
|
# @!attribute [rw] browser_type
|
2713
2930
|
# The browser that users see when using a streaming session.
|
2714
2931
|
# @return [String]
|
2715
2932
|
#
|
2716
|
-
# @!attribute [rw]
|
2717
|
-
# The
|
2718
|
-
# @return [Time]
|
2719
|
-
#
|
2720
|
-
# @!attribute [rw] customer_managed_key
|
2721
|
-
# The customer managed key used to encrypt sensitive information in
|
2722
|
-
# the portal.
|
2933
|
+
# @!attribute [rw] portal_status
|
2934
|
+
# The status of the web portal.
|
2723
2935
|
# @return [String]
|
2724
2936
|
#
|
2725
|
-
# @!attribute [rw]
|
2726
|
-
# The
|
2937
|
+
# @!attribute [rw] portal_endpoint
|
2938
|
+
# The endpoint URL of the web portal that users access in order to
|
2939
|
+
# start streaming sessions.
|
2727
2940
|
# @return [String]
|
2728
2941
|
#
|
2729
2942
|
# @!attribute [rw] display_name
|
2730
2943
|
# The name of the web portal.
|
2731
2944
|
# @return [String]
|
2732
2945
|
#
|
2733
|
-
# @!attribute [rw]
|
2734
|
-
# The
|
2946
|
+
# @!attribute [rw] creation_date
|
2947
|
+
# The creation date of the web portal.
|
2948
|
+
# @return [Time]
|
2949
|
+
#
|
2950
|
+
# @!attribute [rw] browser_settings_arn
|
2951
|
+
# The ARN of the browser settings that is associated with this web
|
2952
|
+
# portal.
|
2735
2953
|
# @return [String]
|
2736
2954
|
#
|
2737
|
-
# @!attribute [rw]
|
2738
|
-
# The ARN of the
|
2955
|
+
# @!attribute [rw] data_protection_settings_arn
|
2956
|
+
# The ARN of the data protection settings.
|
2739
2957
|
# @return [String]
|
2740
2958
|
#
|
2741
|
-
# @!attribute [rw]
|
2742
|
-
# The
|
2743
|
-
# @return [
|
2959
|
+
# @!attribute [rw] user_settings_arn
|
2960
|
+
# The ARN of the user settings that is associated with the web portal.
|
2961
|
+
# @return [String]
|
2744
2962
|
#
|
2745
2963
|
# @!attribute [rw] network_settings_arn
|
2746
2964
|
# The ARN of the network settings that is associated with the web
|
2747
2965
|
# portal.
|
2748
2966
|
# @return [String]
|
2749
2967
|
#
|
2750
|
-
# @!attribute [rw]
|
2751
|
-
# The ARN of the
|
2968
|
+
# @!attribute [rw] session_logger_arn
|
2969
|
+
# The ARN of the session logger that is assocaited with the portal.
|
2752
2970
|
# @return [String]
|
2753
2971
|
#
|
2754
|
-
# @!attribute [rw]
|
2755
|
-
# The
|
2756
|
-
# start streaming sessions.
|
2972
|
+
# @!attribute [rw] trust_store_arn
|
2973
|
+
# The ARN of the trust store that is associated with the web portal.
|
2757
2974
|
# @return [String]
|
2758
2975
|
#
|
2759
|
-
# @!attribute [rw]
|
2760
|
-
#
|
2976
|
+
# @!attribute [rw] status_reason
|
2977
|
+
# A message that explains why the web portal is in its current status.
|
2761
2978
|
# @return [String]
|
2762
2979
|
#
|
2763
|
-
# @!attribute [rw]
|
2764
|
-
# The
|
2980
|
+
# @!attribute [rw] user_access_logging_settings_arn
|
2981
|
+
# The ARN of the user access logging settings that is associated with
|
2982
|
+
# the web portal.
|
2765
2983
|
# @return [String]
|
2766
2984
|
#
|
2767
|
-
# @!attribute [rw]
|
2768
|
-
#
|
2985
|
+
# @!attribute [rw] authentication_type
|
2986
|
+
# The type of authentication integration points used when signing into
|
2987
|
+
# the web portal. Defaults to `Standard`.
|
2988
|
+
#
|
2989
|
+
# `Standard` web portals are authenticated directly through your
|
2990
|
+
# identity provider. You need to call `CreateIdentityProvider` to
|
2991
|
+
# integrate your identity provider with your web portal. User and
|
2992
|
+
# group access to your web portal is controlled through your identity
|
2993
|
+
# provider.
|
2994
|
+
#
|
2995
|
+
# `IAM Identity Center` web portals are authenticated through IAM
|
2996
|
+
# Identity Center. Identity sources (including external identity
|
2997
|
+
# provider integration), plus user and group access to your web
|
2998
|
+
# portal, can be configured in the IAM Identity Center.
|
2769
2999
|
# @return [String]
|
2770
3000
|
#
|
2771
|
-
# @!attribute [rw]
|
2772
|
-
# The ARN of the
|
3001
|
+
# @!attribute [rw] ip_access_settings_arn
|
3002
|
+
# The ARN of the IP access settings.
|
2773
3003
|
# @return [String]
|
2774
3004
|
#
|
2775
|
-
# @!attribute [rw]
|
2776
|
-
# The
|
2777
|
-
# the
|
3005
|
+
# @!attribute [rw] customer_managed_key
|
3006
|
+
# The customer managed key used to encrypt sensitive information in
|
3007
|
+
# the portal.
|
2778
3008
|
# @return [String]
|
2779
3009
|
#
|
2780
|
-
# @!attribute [rw]
|
2781
|
-
# The
|
3010
|
+
# @!attribute [rw] additional_encryption_context
|
3011
|
+
# The additional encryption context of the portal.
|
3012
|
+
# @return [Hash<String,String>]
|
3013
|
+
#
|
3014
|
+
# @!attribute [rw] instance_type
|
3015
|
+
# The type and resources of the underlying instance.
|
2782
3016
|
# @return [String]
|
2783
3017
|
#
|
3018
|
+
# @!attribute [rw] max_concurrent_sessions
|
3019
|
+
# The maximum number of concurrent sessions for the portal.
|
3020
|
+
# @return [Integer]
|
3021
|
+
#
|
2784
3022
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/Portal AWS API Documentation
|
2785
3023
|
#
|
2786
3024
|
class Portal < Struct.new(
|
2787
|
-
:
|
2788
|
-
:
|
2789
|
-
:browser_settings_arn,
|
3025
|
+
:portal_arn,
|
3026
|
+
:renderer_type,
|
2790
3027
|
:browser_type,
|
3028
|
+
:portal_status,
|
3029
|
+
:portal_endpoint,
|
3030
|
+
:display_name,
|
2791
3031
|
:creation_date,
|
2792
|
-
:
|
3032
|
+
:browser_settings_arn,
|
2793
3033
|
:data_protection_settings_arn,
|
2794
|
-
:
|
2795
|
-
:instance_type,
|
2796
|
-
:ip_access_settings_arn,
|
2797
|
-
:max_concurrent_sessions,
|
3034
|
+
:user_settings_arn,
|
2798
3035
|
:network_settings_arn,
|
2799
|
-
:
|
2800
|
-
:portal_endpoint,
|
2801
|
-
:portal_status,
|
2802
|
-
:renderer_type,
|
2803
|
-
:status_reason,
|
3036
|
+
:session_logger_arn,
|
2804
3037
|
:trust_store_arn,
|
3038
|
+
:status_reason,
|
2805
3039
|
:user_access_logging_settings_arn,
|
2806
|
-
:
|
3040
|
+
:authentication_type,
|
3041
|
+
:ip_access_settings_arn,
|
3042
|
+
:customer_managed_key,
|
3043
|
+
:additional_encryption_context,
|
3044
|
+
:instance_type,
|
3045
|
+
:max_concurrent_sessions)
|
2807
3046
|
SENSITIVE = [:display_name]
|
2808
3047
|
include Aws::Structure
|
2809
3048
|
end
|
2810
3049
|
|
2811
3050
|
# The summary of the portal.
|
2812
3051
|
#
|
2813
|
-
# @!attribute [rw]
|
2814
|
-
# The
|
2815
|
-
# the web portal. Defaults to `Standard`.
|
2816
|
-
#
|
2817
|
-
# `Standard` web portals are authenticated directly through your
|
2818
|
-
# identity provider. You need to call `CreateIdentityProvider` to
|
2819
|
-
# integrate your identity provider with your web portal. User and
|
2820
|
-
# group access to your web portal is controlled through your identity
|
2821
|
-
# provider.
|
2822
|
-
#
|
2823
|
-
# `IAM Identity Center` web portals are authenticated through IAM
|
2824
|
-
# Identity Center. Identity sources (including external identity
|
2825
|
-
# provider integration), plus user and group access to your web
|
2826
|
-
# portal, can be configured in the IAM Identity Center.
|
3052
|
+
# @!attribute [rw] portal_arn
|
3053
|
+
# The ARN of the web portal.
|
2827
3054
|
# @return [String]
|
2828
3055
|
#
|
2829
|
-
# @!attribute [rw]
|
2830
|
-
# The
|
2831
|
-
# portal.
|
3056
|
+
# @!attribute [rw] renderer_type
|
3057
|
+
# The renderer that is used in streaming sessions.
|
2832
3058
|
# @return [String]
|
2833
3059
|
#
|
2834
3060
|
# @!attribute [rw] browser_type
|
2835
3061
|
# The browser type of the web portal.
|
2836
3062
|
# @return [String]
|
2837
3063
|
#
|
2838
|
-
# @!attribute [rw]
|
2839
|
-
# The
|
2840
|
-
# @return [
|
3064
|
+
# @!attribute [rw] portal_status
|
3065
|
+
# The status of the web portal.
|
3066
|
+
# @return [String]
|
2841
3067
|
#
|
2842
|
-
# @!attribute [rw]
|
2843
|
-
# The
|
3068
|
+
# @!attribute [rw] portal_endpoint
|
3069
|
+
# The endpoint URL of the web portal that users access in order to
|
3070
|
+
# start streaming sessions.
|
2844
3071
|
# @return [String]
|
2845
3072
|
#
|
2846
3073
|
# @!attribute [rw] display_name
|
2847
3074
|
# The name of the web portal.
|
2848
3075
|
# @return [String]
|
2849
3076
|
#
|
2850
|
-
# @!attribute [rw]
|
2851
|
-
# The
|
3077
|
+
# @!attribute [rw] creation_date
|
3078
|
+
# The creation date of the web portal.
|
3079
|
+
# @return [Time]
|
3080
|
+
#
|
3081
|
+
# @!attribute [rw] browser_settings_arn
|
3082
|
+
# The ARN of the browser settings that is associated with the web
|
3083
|
+
# portal.
|
2852
3084
|
# @return [String]
|
2853
3085
|
#
|
2854
|
-
# @!attribute [rw]
|
2855
|
-
# The ARN of the
|
3086
|
+
# @!attribute [rw] data_protection_settings_arn
|
3087
|
+
# The ARN of the data protection settings.
|
2856
3088
|
# @return [String]
|
2857
3089
|
#
|
2858
|
-
# @!attribute [rw]
|
2859
|
-
# The
|
2860
|
-
# @return [
|
3090
|
+
# @!attribute [rw] user_settings_arn
|
3091
|
+
# The ARN of the user settings that is associated with the web portal.
|
3092
|
+
# @return [String]
|
2861
3093
|
#
|
2862
3094
|
# @!attribute [rw] network_settings_arn
|
2863
3095
|
# The ARN of the network settings that is associated with the web
|
2864
3096
|
# portal.
|
2865
3097
|
# @return [String]
|
2866
3098
|
#
|
2867
|
-
# @!attribute [rw]
|
2868
|
-
# The ARN of the
|
3099
|
+
# @!attribute [rw] session_logger_arn
|
3100
|
+
# The ARN of the session logger that is assocaited with the portal.
|
2869
3101
|
# @return [String]
|
2870
3102
|
#
|
2871
|
-
# @!attribute [rw]
|
2872
|
-
# The
|
2873
|
-
# start streaming sessions.
|
3103
|
+
# @!attribute [rw] trust_store_arn
|
3104
|
+
# The ARN of the trust that is associated with this web portal.
|
2874
3105
|
# @return [String]
|
2875
3106
|
#
|
2876
|
-
# @!attribute [rw]
|
2877
|
-
# The
|
3107
|
+
# @!attribute [rw] user_access_logging_settings_arn
|
3108
|
+
# The ARN of the user access logging settings that is associated with
|
3109
|
+
# the web portal.
|
2878
3110
|
# @return [String]
|
2879
3111
|
#
|
2880
|
-
# @!attribute [rw]
|
2881
|
-
# The
|
3112
|
+
# @!attribute [rw] authentication_type
|
3113
|
+
# The type of authentication integration points used when signing into
|
3114
|
+
# the web portal. Defaults to `Standard`.
|
3115
|
+
#
|
3116
|
+
# `Standard` web portals are authenticated directly through your
|
3117
|
+
# identity provider. You need to call `CreateIdentityProvider` to
|
3118
|
+
# integrate your identity provider with your web portal. User and
|
3119
|
+
# group access to your web portal is controlled through your identity
|
3120
|
+
# provider.
|
3121
|
+
#
|
3122
|
+
# `IAM Identity Center` web portals are authenticated through IAM
|
3123
|
+
# Identity Center. Identity sources (including external identity
|
3124
|
+
# provider integration), plus user and group access to your web
|
3125
|
+
# portal, can be configured in the IAM Identity Center.
|
2882
3126
|
# @return [String]
|
2883
3127
|
#
|
2884
|
-
# @!attribute [rw]
|
2885
|
-
# The ARN of the
|
3128
|
+
# @!attribute [rw] ip_access_settings_arn
|
3129
|
+
# The ARN of the IP access settings.
|
2886
3130
|
# @return [String]
|
2887
3131
|
#
|
2888
|
-
# @!attribute [rw]
|
2889
|
-
# The
|
2890
|
-
# the web portal.
|
3132
|
+
# @!attribute [rw] instance_type
|
3133
|
+
# The type and resources of the underlying instance.
|
2891
3134
|
# @return [String]
|
2892
3135
|
#
|
2893
|
-
# @!attribute [rw]
|
2894
|
-
# The
|
2895
|
-
# @return [
|
3136
|
+
# @!attribute [rw] max_concurrent_sessions
|
3137
|
+
# The maximum number of concurrent sessions for the portal.
|
3138
|
+
# @return [Integer]
|
2896
3139
|
#
|
2897
3140
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/PortalSummary AWS API Documentation
|
2898
3141
|
#
|
2899
3142
|
class PortalSummary < Struct.new(
|
2900
|
-
:
|
2901
|
-
:
|
3143
|
+
:portal_arn,
|
3144
|
+
:renderer_type,
|
2902
3145
|
:browser_type,
|
3146
|
+
:portal_status,
|
3147
|
+
:portal_endpoint,
|
3148
|
+
:display_name,
|
2903
3149
|
:creation_date,
|
3150
|
+
:browser_settings_arn,
|
2904
3151
|
:data_protection_settings_arn,
|
2905
|
-
:
|
2906
|
-
:instance_type,
|
2907
|
-
:ip_access_settings_arn,
|
2908
|
-
:max_concurrent_sessions,
|
3152
|
+
:user_settings_arn,
|
2909
3153
|
:network_settings_arn,
|
2910
|
-
:
|
2911
|
-
:portal_endpoint,
|
2912
|
-
:portal_status,
|
2913
|
-
:renderer_type,
|
3154
|
+
:session_logger_arn,
|
2914
3155
|
:trust_store_arn,
|
2915
3156
|
:user_access_logging_settings_arn,
|
2916
|
-
:
|
3157
|
+
:authentication_type,
|
3158
|
+
:ip_access_settings_arn,
|
3159
|
+
:instance_type,
|
3160
|
+
:max_concurrent_sessions)
|
2917
3161
|
SENSITIVE = [:display_name]
|
2918
3162
|
include Aws::Structure
|
2919
3163
|
end
|
@@ -2921,21 +3165,21 @@ module Aws::WorkSpacesWeb
|
|
2921
3165
|
# The redaction placeholder that will replace the redacted text in
|
2922
3166
|
# session.
|
2923
3167
|
#
|
2924
|
-
# @!attribute [rw] redaction_place_holder_text
|
2925
|
-
# The redaction placeholder text that will replace the redacted text
|
2926
|
-
# in session for the custom text redaction placeholder type.
|
2927
|
-
# @return [String]
|
2928
|
-
#
|
2929
3168
|
# @!attribute [rw] redaction_place_holder_type
|
2930
3169
|
# The redaction placeholder type that will replace the redacted text
|
2931
3170
|
# in session.
|
2932
3171
|
# @return [String]
|
2933
3172
|
#
|
3173
|
+
# @!attribute [rw] redaction_place_holder_text
|
3174
|
+
# The redaction placeholder text that will replace the redacted text
|
3175
|
+
# in session for the custom text redaction placeholder type.
|
3176
|
+
# @return [String]
|
3177
|
+
#
|
2934
3178
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/RedactionPlaceHolder AWS API Documentation
|
2935
3179
|
#
|
2936
3180
|
class RedactionPlaceHolder < Struct.new(
|
2937
|
-
:
|
2938
|
-
:
|
3181
|
+
:redaction_place_holder_type,
|
3182
|
+
:redaction_place_holder_text)
|
2939
3183
|
SENSITIVE = [:redaction_place_holder_text]
|
2940
3184
|
include Aws::Structure
|
2941
3185
|
end
|
@@ -2963,13 +3207,45 @@ module Aws::WorkSpacesWeb
|
|
2963
3207
|
include Aws::Structure
|
2964
3208
|
end
|
2965
3209
|
|
2966
|
-
# The
|
3210
|
+
# The S3 log configuration.
|
2967
3211
|
#
|
2968
|
-
# @!attribute [rw]
|
3212
|
+
# @!attribute [rw] bucket
|
3213
|
+
# The S3 bucket name where logs are delivered.
|
2969
3214
|
# @return [String]
|
2970
3215
|
#
|
2971
|
-
# @!attribute [rw]
|
2972
|
-
# The
|
3216
|
+
# @!attribute [rw] key_prefix
|
3217
|
+
# The S3 path prefix that determines where log files are stored.
|
3218
|
+
# @return [String]
|
3219
|
+
#
|
3220
|
+
# @!attribute [rw] bucket_owner
|
3221
|
+
# The expected bucket owner of the target S3 bucket. The caller must
|
3222
|
+
# have permissions to write to the target bucket.
|
3223
|
+
# @return [String]
|
3224
|
+
#
|
3225
|
+
# @!attribute [rw] log_file_format
|
3226
|
+
# The format of the LogFile that is written to S3.
|
3227
|
+
# @return [String]
|
3228
|
+
#
|
3229
|
+
# @!attribute [rw] folder_structure
|
3230
|
+
# The folder structure that defines the organizational structure for
|
3231
|
+
# log files in S3.
|
3232
|
+
# @return [String]
|
3233
|
+
#
|
3234
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/S3LogConfiguration AWS API Documentation
|
3235
|
+
#
|
3236
|
+
class S3LogConfiguration < Struct.new(
|
3237
|
+
:bucket,
|
3238
|
+
:key_prefix,
|
3239
|
+
:bucket_owner,
|
3240
|
+
:log_file_format,
|
3241
|
+
:folder_structure)
|
3242
|
+
SENSITIVE = [:bucket, :key_prefix]
|
3243
|
+
include Aws::Structure
|
3244
|
+
end
|
3245
|
+
|
3246
|
+
# The service quota has been exceeded.
|
3247
|
+
#
|
3248
|
+
# @!attribute [rw] message
|
2973
3249
|
# @return [String]
|
2974
3250
|
#
|
2975
3251
|
# @!attribute [rw] resource_id
|
@@ -2984,28 +3260,24 @@ module Aws::WorkSpacesWeb
|
|
2984
3260
|
# The originating service.
|
2985
3261
|
# @return [String]
|
2986
3262
|
#
|
3263
|
+
# @!attribute [rw] quota_code
|
3264
|
+
# The originating quota.
|
3265
|
+
# @return [String]
|
3266
|
+
#
|
2987
3267
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ServiceQuotaExceededException AWS API Documentation
|
2988
3268
|
#
|
2989
3269
|
class ServiceQuotaExceededException < Struct.new(
|
2990
3270
|
:message,
|
2991
|
-
:quota_code,
|
2992
3271
|
:resource_id,
|
2993
3272
|
:resource_type,
|
2994
|
-
:service_code
|
3273
|
+
:service_code,
|
3274
|
+
:quota_code)
|
2995
3275
|
SENSITIVE = []
|
2996
3276
|
include Aws::Structure
|
2997
3277
|
end
|
2998
3278
|
|
2999
3279
|
# Information about a secure browser session.
|
3000
3280
|
#
|
3001
|
-
# @!attribute [rw] client_ip_addresses
|
3002
|
-
# The IP address of the client.
|
3003
|
-
# @return [Array<String>]
|
3004
|
-
#
|
3005
|
-
# @!attribute [rw] end_time
|
3006
|
-
# The end time of the session.
|
3007
|
-
# @return [Time]
|
3008
|
-
#
|
3009
3281
|
# @!attribute [rw] portal_arn
|
3010
3282
|
# The ARN of the web portal.
|
3011
3283
|
# @return [String]
|
@@ -3014,38 +3286,120 @@ module Aws::WorkSpacesWeb
|
|
3014
3286
|
# The ID of the session.
|
3015
3287
|
# @return [String]
|
3016
3288
|
#
|
3017
|
-
# @!attribute [rw]
|
3018
|
-
# The
|
3019
|
-
# @return [
|
3289
|
+
# @!attribute [rw] username
|
3290
|
+
# The username of the session.
|
3291
|
+
# @return [String]
|
3292
|
+
#
|
3293
|
+
# @!attribute [rw] client_ip_addresses
|
3294
|
+
# The IP address of the client.
|
3295
|
+
# @return [Array<String>]
|
3020
3296
|
#
|
3021
3297
|
# @!attribute [rw] status
|
3022
3298
|
# The status of the session.
|
3023
3299
|
# @return [String]
|
3024
3300
|
#
|
3025
|
-
# @!attribute [rw]
|
3026
|
-
# The
|
3027
|
-
# @return [
|
3301
|
+
# @!attribute [rw] start_time
|
3302
|
+
# The start time of the session.
|
3303
|
+
# @return [Time]
|
3304
|
+
#
|
3305
|
+
# @!attribute [rw] end_time
|
3306
|
+
# The end time of the session.
|
3307
|
+
# @return [Time]
|
3028
3308
|
#
|
3029
3309
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/Session AWS API Documentation
|
3030
3310
|
#
|
3031
3311
|
class Session < Struct.new(
|
3032
|
-
:client_ip_addresses,
|
3033
|
-
:end_time,
|
3034
3312
|
:portal_arn,
|
3035
3313
|
:session_id,
|
3036
|
-
:
|
3314
|
+
:username,
|
3315
|
+
:client_ip_addresses,
|
3037
3316
|
:status,
|
3038
|
-
:
|
3039
|
-
|
3317
|
+
:start_time,
|
3318
|
+
:end_time)
|
3319
|
+
SENSITIVE = [:username, :client_ip_addresses]
|
3040
3320
|
include Aws::Structure
|
3041
3321
|
end
|
3042
3322
|
|
3043
|
-
#
|
3323
|
+
# The session logger resource.
|
3044
3324
|
#
|
3045
|
-
# @!attribute [rw]
|
3046
|
-
# The
|
3325
|
+
# @!attribute [rw] session_logger_arn
|
3326
|
+
# The ARN of the session logger resource.
|
3327
|
+
# @return [String]
|
3328
|
+
#
|
3329
|
+
# @!attribute [rw] event_filter
|
3330
|
+
# The filter that specifies which events to monitor.
|
3331
|
+
# @return [Types::EventFilter]
|
3332
|
+
#
|
3333
|
+
# @!attribute [rw] log_configuration
|
3334
|
+
# The configuration that specifies where logs are fowarded.
|
3335
|
+
# @return [Types::LogConfiguration]
|
3336
|
+
#
|
3337
|
+
# @!attribute [rw] customer_managed_key
|
3338
|
+
# The custom managed key of the session logger.
|
3339
|
+
# @return [String]
|
3340
|
+
#
|
3341
|
+
# @!attribute [rw] additional_encryption_context
|
3342
|
+
# The additional encryption context of the session logger.
|
3343
|
+
# @return [Hash<String,String>]
|
3344
|
+
#
|
3345
|
+
# @!attribute [rw] associated_portal_arns
|
3346
|
+
# The associated portal ARN.
|
3347
|
+
# @return [Array<String>]
|
3348
|
+
#
|
3349
|
+
# @!attribute [rw] display_name
|
3350
|
+
# The human-readable display name.
|
3351
|
+
# @return [String]
|
3352
|
+
#
|
3353
|
+
# @!attribute [rw] creation_date
|
3354
|
+
# The date the session logger resource was created.
|
3355
|
+
# @return [Time]
|
3356
|
+
#
|
3357
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/SessionLogger AWS API Documentation
|
3358
|
+
#
|
3359
|
+
class SessionLogger < Struct.new(
|
3360
|
+
:session_logger_arn,
|
3361
|
+
:event_filter,
|
3362
|
+
:log_configuration,
|
3363
|
+
:customer_managed_key,
|
3364
|
+
:additional_encryption_context,
|
3365
|
+
:associated_portal_arns,
|
3366
|
+
:display_name,
|
3367
|
+
:creation_date)
|
3368
|
+
SENSITIVE = [:display_name]
|
3369
|
+
include Aws::Structure
|
3370
|
+
end
|
3371
|
+
|
3372
|
+
# The summary of the session logger resource.
|
3373
|
+
#
|
3374
|
+
# @!attribute [rw] session_logger_arn
|
3375
|
+
# The ARN of the session logger resource.
|
3376
|
+
# @return [String]
|
3377
|
+
#
|
3378
|
+
# @!attribute [rw] log_configuration
|
3379
|
+
# The configuration that specifies where the logs are fowarded.
|
3380
|
+
# @return [Types::LogConfiguration]
|
3381
|
+
#
|
3382
|
+
# @!attribute [rw] display_name
|
3383
|
+
# The human-readable display name.
|
3384
|
+
# @return [String]
|
3385
|
+
#
|
3386
|
+
# @!attribute [rw] creation_date
|
3387
|
+
# The date the session logger resource was created.
|
3047
3388
|
# @return [Time]
|
3048
3389
|
#
|
3390
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/SessionLoggerSummary AWS API Documentation
|
3391
|
+
#
|
3392
|
+
class SessionLoggerSummary < Struct.new(
|
3393
|
+
:session_logger_arn,
|
3394
|
+
:log_configuration,
|
3395
|
+
:display_name,
|
3396
|
+
:creation_date)
|
3397
|
+
SENSITIVE = [:display_name]
|
3398
|
+
include Aws::Structure
|
3399
|
+
end
|
3400
|
+
|
3401
|
+
# Summary information about a secure browser session.
|
3402
|
+
#
|
3049
3403
|
# @!attribute [rw] portal_arn
|
3050
3404
|
# The ARN of the web portal.
|
3051
3405
|
# @return [String]
|
@@ -3054,27 +3408,31 @@ module Aws::WorkSpacesWeb
|
|
3054
3408
|
# The ID of the session.
|
3055
3409
|
# @return [String]
|
3056
3410
|
#
|
3057
|
-
# @!attribute [rw]
|
3058
|
-
# The
|
3059
|
-
# @return [
|
3411
|
+
# @!attribute [rw] username
|
3412
|
+
# The username of the session.
|
3413
|
+
# @return [String]
|
3060
3414
|
#
|
3061
3415
|
# @!attribute [rw] status
|
3062
3416
|
# The status of the session.
|
3063
3417
|
# @return [String]
|
3064
3418
|
#
|
3065
|
-
# @!attribute [rw]
|
3066
|
-
# The
|
3067
|
-
# @return [
|
3419
|
+
# @!attribute [rw] start_time
|
3420
|
+
# The start time of the session.
|
3421
|
+
# @return [Time]
|
3422
|
+
#
|
3423
|
+
# @!attribute [rw] end_time
|
3424
|
+
# The end time of the session.
|
3425
|
+
# @return [Time]
|
3068
3426
|
#
|
3069
3427
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/SessionSummary AWS API Documentation
|
3070
3428
|
#
|
3071
3429
|
class SessionSummary < Struct.new(
|
3072
|
-
:end_time,
|
3073
3430
|
:portal_arn,
|
3074
3431
|
:session_id,
|
3075
|
-
:
|
3432
|
+
:username,
|
3076
3433
|
:status,
|
3077
|
-
:
|
3434
|
+
:start_time,
|
3435
|
+
:end_time)
|
3078
3436
|
SENSITIVE = [:username]
|
3079
3437
|
include Aws::Structure
|
3080
3438
|
end
|
@@ -3098,6 +3456,14 @@ module Aws::WorkSpacesWeb
|
|
3098
3456
|
include Aws::Structure
|
3099
3457
|
end
|
3100
3458
|
|
3459
|
+
# @!attribute [rw] resource_arn
|
3460
|
+
# The ARN of the resource.
|
3461
|
+
# @return [String]
|
3462
|
+
#
|
3463
|
+
# @!attribute [rw] tags
|
3464
|
+
# The tags of the resource.
|
3465
|
+
# @return [Array<Types::Tag>]
|
3466
|
+
#
|
3101
3467
|
# @!attribute [rw] client_token
|
3102
3468
|
# A unique, case-sensitive identifier that you provide to ensure the
|
3103
3469
|
# idempotency of the request. Idempotency ensures that an API request
|
@@ -3113,20 +3479,12 @@ module Aws::WorkSpacesWeb
|
|
3113
3479
|
# not need to pass this option.
|
3114
3480
|
# @return [String]
|
3115
3481
|
#
|
3116
|
-
# @!attribute [rw] resource_arn
|
3117
|
-
# The ARN of the resource.
|
3118
|
-
# @return [String]
|
3119
|
-
#
|
3120
|
-
# @!attribute [rw] tags
|
3121
|
-
# The tags of the resource.
|
3122
|
-
# @return [Array<Types::Tag>]
|
3123
|
-
#
|
3124
3482
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/TagResourceRequest AWS API Documentation
|
3125
3483
|
#
|
3126
3484
|
class TagResourceRequest < Struct.new(
|
3127
|
-
:client_token,
|
3128
3485
|
:resource_arn,
|
3129
|
-
:tags
|
3486
|
+
:tags,
|
3487
|
+
:client_token)
|
3130
3488
|
SENSITIVE = [:tags]
|
3131
3489
|
include Aws::Structure
|
3132
3490
|
end
|
@@ -3140,6 +3498,10 @@ module Aws::WorkSpacesWeb
|
|
3140
3498
|
# @!attribute [rw] message
|
3141
3499
|
# @return [String]
|
3142
3500
|
#
|
3501
|
+
# @!attribute [rw] service_code
|
3502
|
+
# The originating service.
|
3503
|
+
# @return [String]
|
3504
|
+
#
|
3143
3505
|
# @!attribute [rw] quota_code
|
3144
3506
|
# The originating quota.
|
3145
3507
|
# @return [String]
|
@@ -3148,17 +3510,13 @@ module Aws::WorkSpacesWeb
|
|
3148
3510
|
# Advice to clients on when the call can be safely retried.
|
3149
3511
|
# @return [Integer]
|
3150
3512
|
#
|
3151
|
-
# @!attribute [rw] service_code
|
3152
|
-
# The originating service.
|
3153
|
-
# @return [String]
|
3154
|
-
#
|
3155
3513
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ThrottlingException AWS API Documentation
|
3156
3514
|
#
|
3157
3515
|
class ThrottlingException < Struct.new(
|
3158
3516
|
:message,
|
3517
|
+
:service_code,
|
3159
3518
|
:quota_code,
|
3160
|
-
:retry_after_seconds
|
3161
|
-
:service_code)
|
3519
|
+
:retry_after_seconds)
|
3162
3520
|
SENSITIVE = []
|
3163
3521
|
include Aws::Structure
|
3164
3522
|
end
|
@@ -3187,14 +3545,6 @@ module Aws::WorkSpacesWeb
|
|
3187
3545
|
# sessions. If administrators do not modify these settings, end users
|
3188
3546
|
# retain control over their toolbar preferences.
|
3189
3547
|
#
|
3190
|
-
# @!attribute [rw] hidden_toolbar_items
|
3191
|
-
# The list of toolbar items to be hidden.
|
3192
|
-
# @return [Array<String>]
|
3193
|
-
#
|
3194
|
-
# @!attribute [rw] max_display_resolution
|
3195
|
-
# The maximum display resolution that is allowed for the session.
|
3196
|
-
# @return [String]
|
3197
|
-
#
|
3198
3548
|
# @!attribute [rw] toolbar_type
|
3199
3549
|
# The type of toolbar displayed during the session.
|
3200
3550
|
# @return [String]
|
@@ -3203,13 +3553,21 @@ module Aws::WorkSpacesWeb
|
|
3203
3553
|
# The visual mode of the toolbar.
|
3204
3554
|
# @return [String]
|
3205
3555
|
#
|
3556
|
+
# @!attribute [rw] hidden_toolbar_items
|
3557
|
+
# The list of toolbar items to be hidden.
|
3558
|
+
# @return [Array<String>]
|
3559
|
+
#
|
3560
|
+
# @!attribute [rw] max_display_resolution
|
3561
|
+
# The maximum display resolution that is allowed for the session.
|
3562
|
+
# @return [String]
|
3563
|
+
#
|
3206
3564
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ToolbarConfiguration AWS API Documentation
|
3207
3565
|
#
|
3208
3566
|
class ToolbarConfiguration < Struct.new(
|
3209
|
-
:hidden_toolbar_items,
|
3210
|
-
:max_display_resolution,
|
3211
3567
|
:toolbar_type,
|
3212
|
-
:visual_mode
|
3568
|
+
:visual_mode,
|
3569
|
+
:hidden_toolbar_items,
|
3570
|
+
:max_display_resolution)
|
3213
3571
|
SENSITIVE = []
|
3214
3572
|
include Aws::Structure
|
3215
3573
|
end
|
@@ -3253,6 +3611,12 @@ module Aws::WorkSpacesWeb
|
|
3253
3611
|
include Aws::Structure
|
3254
3612
|
end
|
3255
3613
|
|
3614
|
+
# @api private
|
3615
|
+
#
|
3616
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/Unit AWS API Documentation
|
3617
|
+
#
|
3618
|
+
class Unit < Aws::EmptyStructure; end
|
3619
|
+
|
3256
3620
|
# @!attribute [rw] resource_arn
|
3257
3621
|
# The ARN of the resource.
|
3258
3622
|
# @return [String]
|
@@ -3274,15 +3638,15 @@ module Aws::WorkSpacesWeb
|
|
3274
3638
|
#
|
3275
3639
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
3276
3640
|
|
3641
|
+
# @!attribute [rw] browser_settings_arn
|
3642
|
+
# The ARN of the browser settings.
|
3643
|
+
# @return [String]
|
3644
|
+
#
|
3277
3645
|
# @!attribute [rw] browser_policy
|
3278
3646
|
# A JSON string containing Chrome Enterprise policies that will be
|
3279
3647
|
# applied to all streaming sessions.
|
3280
3648
|
# @return [String]
|
3281
3649
|
#
|
3282
|
-
# @!attribute [rw] browser_settings_arn
|
3283
|
-
# The ARN of the browser settings.
|
3284
|
-
# @return [String]
|
3285
|
-
#
|
3286
3650
|
# @!attribute [rw] client_token
|
3287
3651
|
# A unique, case-sensitive identifier that you provide to ensure the
|
3288
3652
|
# idempotency of the request. Idempotency ensures that an API request
|
@@ -3300,8 +3664,8 @@ module Aws::WorkSpacesWeb
|
|
3300
3664
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UpdateBrowserSettingsRequest AWS API Documentation
|
3301
3665
|
#
|
3302
3666
|
class UpdateBrowserSettingsRequest < Struct.new(
|
3303
|
-
:browser_policy,
|
3304
3667
|
:browser_settings_arn,
|
3668
|
+
:browser_policy,
|
3305
3669
|
:client_token)
|
3306
3670
|
SENSITIVE = [:browser_policy]
|
3307
3671
|
include Aws::Structure
|
@@ -3319,6 +3683,23 @@ module Aws::WorkSpacesWeb
|
|
3319
3683
|
include Aws::Structure
|
3320
3684
|
end
|
3321
3685
|
|
3686
|
+
# @!attribute [rw] data_protection_settings_arn
|
3687
|
+
# The ARN of the data protection settings.
|
3688
|
+
# @return [String]
|
3689
|
+
#
|
3690
|
+
# @!attribute [rw] inline_redaction_configuration
|
3691
|
+
# The inline redaction configuration of the data protection settings
|
3692
|
+
# that will be applied to all sessions.
|
3693
|
+
# @return [Types::InlineRedactionConfiguration]
|
3694
|
+
#
|
3695
|
+
# @!attribute [rw] display_name
|
3696
|
+
# The display name of the data protection settings.
|
3697
|
+
# @return [String]
|
3698
|
+
#
|
3699
|
+
# @!attribute [rw] description
|
3700
|
+
# The description of the data protection settings.
|
3701
|
+
# @return [String]
|
3702
|
+
#
|
3322
3703
|
# @!attribute [rw] client_token
|
3323
3704
|
# A unique, case-sensitive identifier that you provide to ensure the
|
3324
3705
|
# idempotency of the request. Idempotency ensures that an API request
|
@@ -3327,38 +3708,21 @@ module Aws::WorkSpacesWeb
|
|
3327
3708
|
# client token return the result from the original successful request.
|
3328
3709
|
#
|
3329
3710
|
# If you do not specify a client token, one is automatically generated
|
3330
|
-
# by the Amazon Web Services SDK.
|
3331
|
-
#
|
3332
|
-
# **A suitable default value is auto-generated.** You should normally
|
3333
|
-
# not need to pass this option.
|
3334
|
-
# @return [String]
|
3335
|
-
#
|
3336
|
-
# @!attribute [rw] data_protection_settings_arn
|
3337
|
-
# The ARN of the data protection settings.
|
3338
|
-
# @return [String]
|
3339
|
-
#
|
3340
|
-
# @!attribute [rw] description
|
3341
|
-
# The description of the data protection settings.
|
3342
|
-
# @return [String]
|
3711
|
+
# by the Amazon Web Services SDK.
|
3343
3712
|
#
|
3344
|
-
#
|
3345
|
-
#
|
3713
|
+
# **A suitable default value is auto-generated.** You should normally
|
3714
|
+
# not need to pass this option.
|
3346
3715
|
# @return [String]
|
3347
3716
|
#
|
3348
|
-
# @!attribute [rw] inline_redaction_configuration
|
3349
|
-
# The inline redaction configuration of the data protection settings
|
3350
|
-
# that will be applied to all sessions.
|
3351
|
-
# @return [Types::InlineRedactionConfiguration]
|
3352
|
-
#
|
3353
3717
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UpdateDataProtectionSettingsRequest AWS API Documentation
|
3354
3718
|
#
|
3355
3719
|
class UpdateDataProtectionSettingsRequest < Struct.new(
|
3356
|
-
:client_token,
|
3357
3720
|
:data_protection_settings_arn,
|
3358
|
-
:
|
3721
|
+
:inline_redaction_configuration,
|
3359
3722
|
:display_name,
|
3360
|
-
:
|
3361
|
-
|
3723
|
+
:description,
|
3724
|
+
:client_token)
|
3725
|
+
SENSITIVE = [:display_name, :description]
|
3362
3726
|
include Aws::Structure
|
3363
3727
|
end
|
3364
3728
|
|
@@ -3374,22 +3738,16 @@ module Aws::WorkSpacesWeb
|
|
3374
3738
|
include Aws::Structure
|
3375
3739
|
end
|
3376
3740
|
|
3377
|
-
# @!attribute [rw]
|
3378
|
-
#
|
3379
|
-
#
|
3380
|
-
# completes only once. With an idempotent request, if the original
|
3381
|
-
# request completes successfully, subsequent retries with the same
|
3382
|
-
# client token return the result from the original successful request.
|
3383
|
-
#
|
3384
|
-
# If you do not specify a client token, one is automatically generated
|
3385
|
-
# by the Amazon Web Services SDK.
|
3741
|
+
# @!attribute [rw] identity_provider_arn
|
3742
|
+
# The ARN of the identity provider.
|
3743
|
+
# @return [String]
|
3386
3744
|
#
|
3387
|
-
#
|
3388
|
-
#
|
3745
|
+
# @!attribute [rw] identity_provider_name
|
3746
|
+
# The name of the identity provider.
|
3389
3747
|
# @return [String]
|
3390
3748
|
#
|
3391
|
-
# @!attribute [rw]
|
3392
|
-
# The
|
3749
|
+
# @!attribute [rw] identity_provider_type
|
3750
|
+
# The type of the identity provider.
|
3393
3751
|
# @return [String]
|
3394
3752
|
#
|
3395
3753
|
# @!attribute [rw] identity_provider_details
|
@@ -3460,23 +3818,29 @@ module Aws::WorkSpacesWeb
|
|
3460
3818
|
# * `EncryptedResponses` (boolean) *optional*
|
3461
3819
|
# @return [Hash<String,String>]
|
3462
3820
|
#
|
3463
|
-
# @!attribute [rw]
|
3464
|
-
#
|
3465
|
-
#
|
3821
|
+
# @!attribute [rw] client_token
|
3822
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
3823
|
+
# idempotency of the request. Idempotency ensures that an API request
|
3824
|
+
# completes only once. With an idempotent request, if the original
|
3825
|
+
# request completes successfully, subsequent retries with the same
|
3826
|
+
# client token return the result from the original successful request.
|
3466
3827
|
#
|
3467
|
-
#
|
3468
|
-
#
|
3828
|
+
# If you do not specify a client token, one is automatically generated
|
3829
|
+
# by the Amazon Web Services SDK.
|
3830
|
+
#
|
3831
|
+
# **A suitable default value is auto-generated.** You should normally
|
3832
|
+
# not need to pass this option.
|
3469
3833
|
# @return [String]
|
3470
3834
|
#
|
3471
3835
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UpdateIdentityProviderRequest AWS API Documentation
|
3472
3836
|
#
|
3473
3837
|
class UpdateIdentityProviderRequest < Struct.new(
|
3474
|
-
:client_token,
|
3475
3838
|
:identity_provider_arn,
|
3476
|
-
:identity_provider_details,
|
3477
3839
|
:identity_provider_name,
|
3478
|
-
:identity_provider_type
|
3479
|
-
|
3840
|
+
:identity_provider_type,
|
3841
|
+
:identity_provider_details,
|
3842
|
+
:client_token)
|
3843
|
+
SENSITIVE = [:identity_provider_name, :identity_provider_details]
|
3480
3844
|
include Aws::Structure
|
3481
3845
|
end
|
3482
3846
|
|
@@ -3492,6 +3856,22 @@ module Aws::WorkSpacesWeb
|
|
3492
3856
|
include Aws::Structure
|
3493
3857
|
end
|
3494
3858
|
|
3859
|
+
# @!attribute [rw] ip_access_settings_arn
|
3860
|
+
# The ARN of the IP access settings.
|
3861
|
+
# @return [String]
|
3862
|
+
#
|
3863
|
+
# @!attribute [rw] display_name
|
3864
|
+
# The display name of the IP access settings.
|
3865
|
+
# @return [String]
|
3866
|
+
#
|
3867
|
+
# @!attribute [rw] description
|
3868
|
+
# The description of the IP access settings.
|
3869
|
+
# @return [String]
|
3870
|
+
#
|
3871
|
+
# @!attribute [rw] ip_rules
|
3872
|
+
# The updated IP rules of the IP access settings.
|
3873
|
+
# @return [Array<Types::IpRule>]
|
3874
|
+
#
|
3495
3875
|
# @!attribute [rw] client_token
|
3496
3876
|
# A unique, case-sensitive identifier that you provide to ensure the
|
3497
3877
|
# idempotency of the request. Idempotency ensures that an API request
|
@@ -3506,31 +3886,15 @@ module Aws::WorkSpacesWeb
|
|
3506
3886
|
# not need to pass this option.
|
3507
3887
|
# @return [String]
|
3508
3888
|
#
|
3509
|
-
# @!attribute [rw] description
|
3510
|
-
# The description of the IP access settings.
|
3511
|
-
# @return [String]
|
3512
|
-
#
|
3513
|
-
# @!attribute [rw] display_name
|
3514
|
-
# The display name of the IP access settings.
|
3515
|
-
# @return [String]
|
3516
|
-
#
|
3517
|
-
# @!attribute [rw] ip_access_settings_arn
|
3518
|
-
# The ARN of the IP access settings.
|
3519
|
-
# @return [String]
|
3520
|
-
#
|
3521
|
-
# @!attribute [rw] ip_rules
|
3522
|
-
# The updated IP rules of the IP access settings.
|
3523
|
-
# @return [Array<Types::IpRule>]
|
3524
|
-
#
|
3525
3889
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UpdateIpAccessSettingsRequest AWS API Documentation
|
3526
3890
|
#
|
3527
3891
|
class UpdateIpAccessSettingsRequest < Struct.new(
|
3528
|
-
:client_token,
|
3529
|
-
:description,
|
3530
|
-
:display_name,
|
3531
3892
|
:ip_access_settings_arn,
|
3532
|
-
:
|
3533
|
-
|
3893
|
+
:display_name,
|
3894
|
+
:description,
|
3895
|
+
:ip_rules,
|
3896
|
+
:client_token)
|
3897
|
+
SENSITIVE = [:display_name, :description, :ip_rules]
|
3534
3898
|
include Aws::Structure
|
3535
3899
|
end
|
3536
3900
|
|
@@ -3546,6 +3910,25 @@ module Aws::WorkSpacesWeb
|
|
3546
3910
|
include Aws::Structure
|
3547
3911
|
end
|
3548
3912
|
|
3913
|
+
# @!attribute [rw] network_settings_arn
|
3914
|
+
# The ARN of the network settings.
|
3915
|
+
# @return [String]
|
3916
|
+
#
|
3917
|
+
# @!attribute [rw] vpc_id
|
3918
|
+
# The VPC that streaming instances will connect to.
|
3919
|
+
# @return [String]
|
3920
|
+
#
|
3921
|
+
# @!attribute [rw] subnet_ids
|
3922
|
+
# The subnets in which network interfaces are created to connect
|
3923
|
+
# streaming instances to your VPC. At least two of these subnets must
|
3924
|
+
# be in different availability zones.
|
3925
|
+
# @return [Array<String>]
|
3926
|
+
#
|
3927
|
+
# @!attribute [rw] security_group_ids
|
3928
|
+
# One or more security groups used to control access from streaming
|
3929
|
+
# instances to your VPC.
|
3930
|
+
# @return [Array<String>]
|
3931
|
+
#
|
3549
3932
|
# @!attribute [rw] client_token
|
3550
3933
|
# A unique, case-sensitive identifier that you provide to ensure the
|
3551
3934
|
# idempotency of the request. Idempotency ensures that an API request
|
@@ -3560,33 +3943,14 @@ module Aws::WorkSpacesWeb
|
|
3560
3943
|
# not need to pass this option.
|
3561
3944
|
# @return [String]
|
3562
3945
|
#
|
3563
|
-
# @!attribute [rw] network_settings_arn
|
3564
|
-
# The ARN of the network settings.
|
3565
|
-
# @return [String]
|
3566
|
-
#
|
3567
|
-
# @!attribute [rw] security_group_ids
|
3568
|
-
# One or more security groups used to control access from streaming
|
3569
|
-
# instances to your VPC.
|
3570
|
-
# @return [Array<String>]
|
3571
|
-
#
|
3572
|
-
# @!attribute [rw] subnet_ids
|
3573
|
-
# The subnets in which network interfaces are created to connect
|
3574
|
-
# streaming instances to your VPC. At least two of these subnets must
|
3575
|
-
# be in different availability zones.
|
3576
|
-
# @return [Array<String>]
|
3577
|
-
#
|
3578
|
-
# @!attribute [rw] vpc_id
|
3579
|
-
# The VPC that streaming instances will connect to.
|
3580
|
-
# @return [String]
|
3581
|
-
#
|
3582
3946
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UpdateNetworkSettingsRequest AWS API Documentation
|
3583
3947
|
#
|
3584
3948
|
class UpdateNetworkSettingsRequest < Struct.new(
|
3585
|
-
:client_token,
|
3586
3949
|
:network_settings_arn,
|
3587
|
-
:
|
3950
|
+
:vpc_id,
|
3588
3951
|
:subnet_ids,
|
3589
|
-
:
|
3952
|
+
:security_group_ids,
|
3953
|
+
:client_token)
|
3590
3954
|
SENSITIVE = []
|
3591
3955
|
include Aws::Structure
|
3592
3956
|
end
|
@@ -3603,6 +3967,15 @@ module Aws::WorkSpacesWeb
|
|
3603
3967
|
include Aws::Structure
|
3604
3968
|
end
|
3605
3969
|
|
3970
|
+
# @!attribute [rw] portal_arn
|
3971
|
+
# The ARN of the web portal.
|
3972
|
+
# @return [String]
|
3973
|
+
#
|
3974
|
+
# @!attribute [rw] display_name
|
3975
|
+
# The name of the web portal. This is not visible to users who log
|
3976
|
+
# into the web portal.
|
3977
|
+
# @return [String]
|
3978
|
+
#
|
3606
3979
|
# @!attribute [rw] authentication_type
|
3607
3980
|
# The type of authentication integration points used when signing into
|
3608
3981
|
# the web portal. Defaults to `Standard`.
|
@@ -3619,11 +3992,6 @@ module Aws::WorkSpacesWeb
|
|
3619
3992
|
# portal, can be configured in the IAM Identity Center.
|
3620
3993
|
# @return [String]
|
3621
3994
|
#
|
3622
|
-
# @!attribute [rw] display_name
|
3623
|
-
# The name of the web portal. This is not visible to users who log
|
3624
|
-
# into the web portal.
|
3625
|
-
# @return [String]
|
3626
|
-
#
|
3627
3995
|
# @!attribute [rw] instance_type
|
3628
3996
|
# The type and resources of the underlying instance.
|
3629
3997
|
# @return [String]
|
@@ -3632,18 +4000,14 @@ module Aws::WorkSpacesWeb
|
|
3632
4000
|
# The maximum number of concurrent sessions for the portal.
|
3633
4001
|
# @return [Integer]
|
3634
4002
|
#
|
3635
|
-
# @!attribute [rw] portal_arn
|
3636
|
-
# The ARN of the web portal.
|
3637
|
-
# @return [String]
|
3638
|
-
#
|
3639
4003
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UpdatePortalRequest AWS API Documentation
|
3640
4004
|
#
|
3641
4005
|
class UpdatePortalRequest < Struct.new(
|
3642
|
-
:
|
4006
|
+
:portal_arn,
|
3643
4007
|
:display_name,
|
4008
|
+
:authentication_type,
|
3644
4009
|
:instance_type,
|
3645
|
-
:max_concurrent_sessions
|
3646
|
-
:portal_arn)
|
4010
|
+
:max_concurrent_sessions)
|
3647
4011
|
SENSITIVE = [:display_name]
|
3648
4012
|
include Aws::Structure
|
3649
4013
|
end
|
@@ -3660,6 +4024,49 @@ module Aws::WorkSpacesWeb
|
|
3660
4024
|
include Aws::Structure
|
3661
4025
|
end
|
3662
4026
|
|
4027
|
+
# @!attribute [rw] session_logger_arn
|
4028
|
+
# The ARN of the session logger to update.
|
4029
|
+
# @return [String]
|
4030
|
+
#
|
4031
|
+
# @!attribute [rw] event_filter
|
4032
|
+
# The updated eventFilter.
|
4033
|
+
# @return [Types::EventFilter]
|
4034
|
+
#
|
4035
|
+
# @!attribute [rw] log_configuration
|
4036
|
+
# The updated logConfiguration.
|
4037
|
+
# @return [Types::LogConfiguration]
|
4038
|
+
#
|
4039
|
+
# @!attribute [rw] display_name
|
4040
|
+
# The updated display name.
|
4041
|
+
# @return [String]
|
4042
|
+
#
|
4043
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UpdateSessionLoggerRequest AWS API Documentation
|
4044
|
+
#
|
4045
|
+
class UpdateSessionLoggerRequest < Struct.new(
|
4046
|
+
:session_logger_arn,
|
4047
|
+
:event_filter,
|
4048
|
+
:log_configuration,
|
4049
|
+
:display_name)
|
4050
|
+
SENSITIVE = [:display_name]
|
4051
|
+
include Aws::Structure
|
4052
|
+
end
|
4053
|
+
|
4054
|
+
# @!attribute [rw] session_logger
|
4055
|
+
# The updated details of the session logger.
|
4056
|
+
# @return [Types::SessionLogger]
|
4057
|
+
#
|
4058
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UpdateSessionLoggerResponse AWS API Documentation
|
4059
|
+
#
|
4060
|
+
class UpdateSessionLoggerResponse < Struct.new(
|
4061
|
+
:session_logger)
|
4062
|
+
SENSITIVE = []
|
4063
|
+
include Aws::Structure
|
4064
|
+
end
|
4065
|
+
|
4066
|
+
# @!attribute [rw] trust_store_arn
|
4067
|
+
# The ARN of the trust store.
|
4068
|
+
# @return [String]
|
4069
|
+
#
|
3663
4070
|
# @!attribute [rw] certificates_to_add
|
3664
4071
|
# A list of CA certificates to add to the trust store.
|
3665
4072
|
# @return [Array<String>]
|
@@ -3682,17 +4089,13 @@ module Aws::WorkSpacesWeb
|
|
3682
4089
|
# not need to pass this option.
|
3683
4090
|
# @return [String]
|
3684
4091
|
#
|
3685
|
-
# @!attribute [rw] trust_store_arn
|
3686
|
-
# The ARN of the trust store.
|
3687
|
-
# @return [String]
|
3688
|
-
#
|
3689
4092
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UpdateTrustStoreRequest AWS API Documentation
|
3690
4093
|
#
|
3691
4094
|
class UpdateTrustStoreRequest < Struct.new(
|
4095
|
+
:trust_store_arn,
|
3692
4096
|
:certificates_to_add,
|
3693
4097
|
:certificates_to_delete,
|
3694
|
-
:client_token
|
3695
|
-
:trust_store_arn)
|
4098
|
+
:client_token)
|
3696
4099
|
SENSITIVE = []
|
3697
4100
|
include Aws::Structure
|
3698
4101
|
end
|
@@ -3709,6 +4112,14 @@ module Aws::WorkSpacesWeb
|
|
3709
4112
|
include Aws::Structure
|
3710
4113
|
end
|
3711
4114
|
|
4115
|
+
# @!attribute [rw] user_access_logging_settings_arn
|
4116
|
+
# The ARN of the user access logging settings.
|
4117
|
+
# @return [String]
|
4118
|
+
#
|
4119
|
+
# @!attribute [rw] kinesis_stream_arn
|
4120
|
+
# The ARN of the Kinesis stream.
|
4121
|
+
# @return [String]
|
4122
|
+
#
|
3712
4123
|
# @!attribute [rw] client_token
|
3713
4124
|
# A unique, case-sensitive identifier that you provide to ensure the
|
3714
4125
|
# idempotency of the request. Idempotency ensures that an API request
|
@@ -3723,20 +4134,12 @@ module Aws::WorkSpacesWeb
|
|
3723
4134
|
# not need to pass this option.
|
3724
4135
|
# @return [String]
|
3725
4136
|
#
|
3726
|
-
# @!attribute [rw] kinesis_stream_arn
|
3727
|
-
# The ARN of the Kinesis stream.
|
3728
|
-
# @return [String]
|
3729
|
-
#
|
3730
|
-
# @!attribute [rw] user_access_logging_settings_arn
|
3731
|
-
# The ARN of the user access logging settings.
|
3732
|
-
# @return [String]
|
3733
|
-
#
|
3734
4137
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UpdateUserAccessLoggingSettingsRequest AWS API Documentation
|
3735
4138
|
#
|
3736
4139
|
class UpdateUserAccessLoggingSettingsRequest < Struct.new(
|
3737
|
-
:
|
4140
|
+
:user_access_logging_settings_arn,
|
3738
4141
|
:kinesis_stream_arn,
|
3739
|
-
:
|
4142
|
+
:client_token)
|
3740
4143
|
SENSITIVE = []
|
3741
4144
|
include Aws::Structure
|
3742
4145
|
end
|
@@ -3747,12 +4150,51 @@ module Aws::WorkSpacesWeb
|
|
3747
4150
|
#
|
3748
4151
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UpdateUserAccessLoggingSettingsResponse AWS API Documentation
|
3749
4152
|
#
|
3750
|
-
class UpdateUserAccessLoggingSettingsResponse < Struct.new(
|
3751
|
-
:user_access_logging_settings)
|
3752
|
-
SENSITIVE = []
|
3753
|
-
include Aws::Structure
|
3754
|
-
end
|
3755
|
-
|
4153
|
+
class UpdateUserAccessLoggingSettingsResponse < Struct.new(
|
4154
|
+
:user_access_logging_settings)
|
4155
|
+
SENSITIVE = []
|
4156
|
+
include Aws::Structure
|
4157
|
+
end
|
4158
|
+
|
4159
|
+
# @!attribute [rw] user_settings_arn
|
4160
|
+
# The ARN of the user settings.
|
4161
|
+
# @return [String]
|
4162
|
+
#
|
4163
|
+
# @!attribute [rw] copy_allowed
|
4164
|
+
# Specifies whether the user can copy text from the streaming session
|
4165
|
+
# to the local device.
|
4166
|
+
# @return [String]
|
4167
|
+
#
|
4168
|
+
# @!attribute [rw] paste_allowed
|
4169
|
+
# Specifies whether the user can paste text from the local device to
|
4170
|
+
# the streaming session.
|
4171
|
+
# @return [String]
|
4172
|
+
#
|
4173
|
+
# @!attribute [rw] download_allowed
|
4174
|
+
# Specifies whether the user can download files from the streaming
|
4175
|
+
# session to the local device.
|
4176
|
+
# @return [String]
|
4177
|
+
#
|
4178
|
+
# @!attribute [rw] upload_allowed
|
4179
|
+
# Specifies whether the user can upload files from the local device to
|
4180
|
+
# the streaming session.
|
4181
|
+
# @return [String]
|
4182
|
+
#
|
4183
|
+
# @!attribute [rw] print_allowed
|
4184
|
+
# Specifies whether the user can print to the local device.
|
4185
|
+
# @return [String]
|
4186
|
+
#
|
4187
|
+
# @!attribute [rw] disconnect_timeout_in_minutes
|
4188
|
+
# The amount of time that a streaming session remains active after
|
4189
|
+
# users disconnect.
|
4190
|
+
# @return [Integer]
|
4191
|
+
#
|
4192
|
+
# @!attribute [rw] idle_disconnect_timeout_in_minutes
|
4193
|
+
# The amount of time that users can be idle (inactive) before they are
|
4194
|
+
# disconnected from their streaming session and the disconnect timeout
|
4195
|
+
# interval begins.
|
4196
|
+
# @return [Integer]
|
4197
|
+
#
|
3756
4198
|
# @!attribute [rw] client_token
|
3757
4199
|
# A unique, case-sensitive identifier that you provide to ensure the
|
3758
4200
|
# idempotency of the request. Idempotency ensures that an API request
|
@@ -3776,41 +4218,11 @@ module Aws::WorkSpacesWeb
|
|
3776
4218
|
# null.
|
3777
4219
|
# @return [Types::CookieSynchronizationConfiguration]
|
3778
4220
|
#
|
3779
|
-
# @!attribute [rw] copy_allowed
|
3780
|
-
# Specifies whether the user can copy text from the streaming session
|
3781
|
-
# to the local device.
|
3782
|
-
# @return [String]
|
3783
|
-
#
|
3784
4221
|
# @!attribute [rw] deep_link_allowed
|
3785
4222
|
# Specifies whether the user can use deep links that open
|
3786
4223
|
# automatically when connecting to a session.
|
3787
4224
|
# @return [String]
|
3788
4225
|
#
|
3789
|
-
# @!attribute [rw] disconnect_timeout_in_minutes
|
3790
|
-
# The amount of time that a streaming session remains active after
|
3791
|
-
# users disconnect.
|
3792
|
-
# @return [Integer]
|
3793
|
-
#
|
3794
|
-
# @!attribute [rw] download_allowed
|
3795
|
-
# Specifies whether the user can download files from the streaming
|
3796
|
-
# session to the local device.
|
3797
|
-
# @return [String]
|
3798
|
-
#
|
3799
|
-
# @!attribute [rw] idle_disconnect_timeout_in_minutes
|
3800
|
-
# The amount of time that users can be idle (inactive) before they are
|
3801
|
-
# disconnected from their streaming session and the disconnect timeout
|
3802
|
-
# interval begins.
|
3803
|
-
# @return [Integer]
|
3804
|
-
#
|
3805
|
-
# @!attribute [rw] paste_allowed
|
3806
|
-
# Specifies whether the user can paste text from the local device to
|
3807
|
-
# the streaming session.
|
3808
|
-
# @return [String]
|
3809
|
-
#
|
3810
|
-
# @!attribute [rw] print_allowed
|
3811
|
-
# Specifies whether the user can print to the local device.
|
3812
|
-
# @return [String]
|
3813
|
-
#
|
3814
4226
|
# @!attribute [rw] toolbar_configuration
|
3815
4227
|
# The configuration of the toolbar. This allows administrators to
|
3816
4228
|
# select the toolbar type and visual mode, set maximum display
|
@@ -3819,30 +4231,21 @@ module Aws::WorkSpacesWeb
|
|
3819
4231
|
# settings, end users retain control over their toolbar preferences.
|
3820
4232
|
# @return [Types::ToolbarConfiguration]
|
3821
4233
|
#
|
3822
|
-
# @!attribute [rw] upload_allowed
|
3823
|
-
# Specifies whether the user can upload files from the local device to
|
3824
|
-
# the streaming session.
|
3825
|
-
# @return [String]
|
3826
|
-
#
|
3827
|
-
# @!attribute [rw] user_settings_arn
|
3828
|
-
# The ARN of the user settings.
|
3829
|
-
# @return [String]
|
3830
|
-
#
|
3831
4234
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UpdateUserSettingsRequest AWS API Documentation
|
3832
4235
|
#
|
3833
4236
|
class UpdateUserSettingsRequest < Struct.new(
|
3834
|
-
:
|
3835
|
-
:cookie_synchronization_configuration,
|
4237
|
+
:user_settings_arn,
|
3836
4238
|
:copy_allowed,
|
3837
|
-
:deep_link_allowed,
|
3838
|
-
:disconnect_timeout_in_minutes,
|
3839
|
-
:download_allowed,
|
3840
|
-
:idle_disconnect_timeout_in_minutes,
|
3841
4239
|
:paste_allowed,
|
3842
|
-
:
|
3843
|
-
:toolbar_configuration,
|
4240
|
+
:download_allowed,
|
3844
4241
|
:upload_allowed,
|
3845
|
-
:
|
4242
|
+
:print_allowed,
|
4243
|
+
:disconnect_timeout_in_minutes,
|
4244
|
+
:idle_disconnect_timeout_in_minutes,
|
4245
|
+
:client_token,
|
4246
|
+
:cookie_synchronization_configuration,
|
4247
|
+
:deep_link_allowed,
|
4248
|
+
:toolbar_configuration)
|
3846
4249
|
SENSITIVE = [:cookie_synchronization_configuration]
|
3847
4250
|
include Aws::Structure
|
3848
4251
|
end
|
@@ -3862,6 +4265,10 @@ module Aws::WorkSpacesWeb
|
|
3862
4265
|
# A user access logging settings resource that can be associated with a
|
3863
4266
|
# web portal.
|
3864
4267
|
#
|
4268
|
+
# @!attribute [rw] user_access_logging_settings_arn
|
4269
|
+
# The ARN of the user access logging settings.
|
4270
|
+
# @return [String]
|
4271
|
+
#
|
3865
4272
|
# @!attribute [rw] associated_portal_arns
|
3866
4273
|
# A list of web portal ARNs that this user access logging settings is
|
3867
4274
|
# associated with.
|
@@ -3871,35 +4278,31 @@ module Aws::WorkSpacesWeb
|
|
3871
4278
|
# The ARN of the Kinesis stream.
|
3872
4279
|
# @return [String]
|
3873
4280
|
#
|
3874
|
-
# @!attribute [rw] user_access_logging_settings_arn
|
3875
|
-
# The ARN of the user access logging settings.
|
3876
|
-
# @return [String]
|
3877
|
-
#
|
3878
4281
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UserAccessLoggingSettings AWS API Documentation
|
3879
4282
|
#
|
3880
4283
|
class UserAccessLoggingSettings < Struct.new(
|
4284
|
+
:user_access_logging_settings_arn,
|
3881
4285
|
:associated_portal_arns,
|
3882
|
-
:kinesis_stream_arn
|
3883
|
-
:user_access_logging_settings_arn)
|
4286
|
+
:kinesis_stream_arn)
|
3884
4287
|
SENSITIVE = []
|
3885
4288
|
include Aws::Structure
|
3886
4289
|
end
|
3887
4290
|
|
3888
4291
|
# The summary of user access logging settings.
|
3889
4292
|
#
|
3890
|
-
# @!attribute [rw] kinesis_stream_arn
|
3891
|
-
# The ARN of the Kinesis stream.
|
3892
|
-
# @return [String]
|
3893
|
-
#
|
3894
4293
|
# @!attribute [rw] user_access_logging_settings_arn
|
3895
4294
|
# The ARN of the user access logging settings.
|
3896
4295
|
# @return [String]
|
3897
4296
|
#
|
4297
|
+
# @!attribute [rw] kinesis_stream_arn
|
4298
|
+
# The ARN of the Kinesis stream.
|
4299
|
+
# @return [String]
|
4300
|
+
#
|
3898
4301
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UserAccessLoggingSettingsSummary AWS API Documentation
|
3899
4302
|
#
|
3900
4303
|
class UserAccessLoggingSettingsSummary < Struct.new(
|
3901
|
-
:
|
3902
|
-
:
|
4304
|
+
:user_access_logging_settings_arn,
|
4305
|
+
:kinesis_stream_arn)
|
3903
4306
|
SENSITIVE = []
|
3904
4307
|
include Aws::Structure
|
3905
4308
|
end
|
@@ -3908,34 +4311,37 @@ module Aws::WorkSpacesWeb
|
|
3908
4311
|
# Once associated with a web portal, user settings control how users can
|
3909
4312
|
# transfer data between a streaming session and the their local devices.
|
3910
4313
|
#
|
3911
|
-
# @!attribute [rw]
|
3912
|
-
# The
|
3913
|
-
# @return [
|
4314
|
+
# @!attribute [rw] user_settings_arn
|
4315
|
+
# The ARN of the user settings.
|
4316
|
+
# @return [String]
|
3914
4317
|
#
|
3915
4318
|
# @!attribute [rw] associated_portal_arns
|
3916
4319
|
# A list of web portal ARNs that this user settings is associated
|
3917
4320
|
# with.
|
3918
4321
|
# @return [Array<String>]
|
3919
4322
|
#
|
3920
|
-
# @!attribute [rw] cookie_synchronization_configuration
|
3921
|
-
# The configuration that specifies which cookies should be
|
3922
|
-
# synchronized from the end user's local browser to the remote
|
3923
|
-
# browser.
|
3924
|
-
# @return [Types::CookieSynchronizationConfiguration]
|
3925
|
-
#
|
3926
4323
|
# @!attribute [rw] copy_allowed
|
3927
4324
|
# Specifies whether the user can copy text from the streaming session
|
3928
4325
|
# to the local device.
|
3929
4326
|
# @return [String]
|
3930
4327
|
#
|
3931
|
-
# @!attribute [rw]
|
3932
|
-
#
|
3933
|
-
# the
|
4328
|
+
# @!attribute [rw] paste_allowed
|
4329
|
+
# Specifies whether the user can paste text from the local device to
|
4330
|
+
# the streaming session.
|
3934
4331
|
# @return [String]
|
3935
4332
|
#
|
3936
|
-
# @!attribute [rw]
|
3937
|
-
# Specifies whether the user can
|
3938
|
-
#
|
4333
|
+
# @!attribute [rw] download_allowed
|
4334
|
+
# Specifies whether the user can download files from the streaming
|
4335
|
+
# session to the local device.
|
4336
|
+
# @return [String]
|
4337
|
+
#
|
4338
|
+
# @!attribute [rw] upload_allowed
|
4339
|
+
# Specifies whether the user can upload files from the local device to
|
4340
|
+
# the streaming session.
|
4341
|
+
# @return [String]
|
4342
|
+
#
|
4343
|
+
# @!attribute [rw] print_allowed
|
4344
|
+
# Specifies whether the user can print to the local device.
|
3939
4345
|
# @return [String]
|
3940
4346
|
#
|
3941
4347
|
# @!attribute [rw] disconnect_timeout_in_minutes
|
@@ -3943,24 +4349,30 @@ module Aws::WorkSpacesWeb
|
|
3943
4349
|
# users disconnect.
|
3944
4350
|
# @return [Integer]
|
3945
4351
|
#
|
3946
|
-
# @!attribute [rw] download_allowed
|
3947
|
-
# Specifies whether the user can download files from the streaming
|
3948
|
-
# session to the local device.
|
3949
|
-
# @return [String]
|
3950
|
-
#
|
3951
4352
|
# @!attribute [rw] idle_disconnect_timeout_in_minutes
|
3952
4353
|
# The amount of time that users can be idle (inactive) before they are
|
3953
4354
|
# disconnected from their streaming session and the disconnect timeout
|
3954
4355
|
# interval begins.
|
3955
4356
|
# @return [Integer]
|
3956
4357
|
#
|
3957
|
-
# @!attribute [rw]
|
3958
|
-
#
|
3959
|
-
# the
|
4358
|
+
# @!attribute [rw] cookie_synchronization_configuration
|
4359
|
+
# The configuration that specifies which cookies should be
|
4360
|
+
# synchronized from the end user's local browser to the remote
|
4361
|
+
# browser.
|
4362
|
+
# @return [Types::CookieSynchronizationConfiguration]
|
4363
|
+
#
|
4364
|
+
# @!attribute [rw] customer_managed_key
|
4365
|
+
# The customer managed key used to encrypt sensitive information in
|
4366
|
+
# the user settings.
|
3960
4367
|
# @return [String]
|
3961
4368
|
#
|
3962
|
-
# @!attribute [rw]
|
3963
|
-
#
|
4369
|
+
# @!attribute [rw] additional_encryption_context
|
4370
|
+
# The additional encryption context of the user settings.
|
4371
|
+
# @return [Hash<String,String>]
|
4372
|
+
#
|
4373
|
+
# @!attribute [rw] deep_link_allowed
|
4374
|
+
# Specifies whether the user can use deep links that open
|
4375
|
+
# automatically when connecting to a session.
|
3964
4376
|
# @return [String]
|
3965
4377
|
#
|
3966
4378
|
# @!attribute [rw] toolbar_configuration
|
@@ -3971,77 +4383,77 @@ module Aws::WorkSpacesWeb
|
|
3971
4383
|
# settings, end users retain control over their toolbar preferences.
|
3972
4384
|
# @return [Types::ToolbarConfiguration]
|
3973
4385
|
#
|
3974
|
-
# @!attribute [rw] upload_allowed
|
3975
|
-
# Specifies whether the user can upload files from the local device to
|
3976
|
-
# the streaming session.
|
3977
|
-
# @return [String]
|
3978
|
-
#
|
3979
|
-
# @!attribute [rw] user_settings_arn
|
3980
|
-
# The ARN of the user settings.
|
3981
|
-
# @return [String]
|
3982
|
-
#
|
3983
4386
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UserSettings AWS API Documentation
|
3984
4387
|
#
|
3985
4388
|
class UserSettings < Struct.new(
|
3986
|
-
:
|
4389
|
+
:user_settings_arn,
|
3987
4390
|
:associated_portal_arns,
|
3988
|
-
:cookie_synchronization_configuration,
|
3989
4391
|
:copy_allowed,
|
3990
|
-
:customer_managed_key,
|
3991
|
-
:deep_link_allowed,
|
3992
|
-
:disconnect_timeout_in_minutes,
|
3993
|
-
:download_allowed,
|
3994
|
-
:idle_disconnect_timeout_in_minutes,
|
3995
4392
|
:paste_allowed,
|
3996
|
-
:
|
3997
|
-
:toolbar_configuration,
|
4393
|
+
:download_allowed,
|
3998
4394
|
:upload_allowed,
|
3999
|
-
:
|
4395
|
+
:print_allowed,
|
4396
|
+
:disconnect_timeout_in_minutes,
|
4397
|
+
:idle_disconnect_timeout_in_minutes,
|
4398
|
+
:cookie_synchronization_configuration,
|
4399
|
+
:customer_managed_key,
|
4400
|
+
:additional_encryption_context,
|
4401
|
+
:deep_link_allowed,
|
4402
|
+
:toolbar_configuration)
|
4000
4403
|
SENSITIVE = [:cookie_synchronization_configuration]
|
4001
4404
|
include Aws::Structure
|
4002
4405
|
end
|
4003
4406
|
|
4004
4407
|
# The summary of user settings.
|
4005
4408
|
#
|
4006
|
-
# @!attribute [rw]
|
4007
|
-
# The
|
4008
|
-
#
|
4009
|
-
# browser.
|
4010
|
-
# @return [Types::CookieSynchronizationConfiguration]
|
4409
|
+
# @!attribute [rw] user_settings_arn
|
4410
|
+
# The ARN of the user settings.
|
4411
|
+
# @return [String]
|
4011
4412
|
#
|
4012
4413
|
# @!attribute [rw] copy_allowed
|
4013
4414
|
# Specifies whether the user can copy text from the streaming session
|
4014
4415
|
# to the local device.
|
4015
4416
|
# @return [String]
|
4016
4417
|
#
|
4017
|
-
# @!attribute [rw]
|
4018
|
-
# Specifies whether the user can
|
4019
|
-
#
|
4418
|
+
# @!attribute [rw] paste_allowed
|
4419
|
+
# Specifies whether the user can paste text from the local device to
|
4420
|
+
# the streaming session.
|
4020
4421
|
# @return [String]
|
4021
4422
|
#
|
4022
|
-
# @!attribute [rw] disconnect_timeout_in_minutes
|
4023
|
-
# The amount of time that a streaming session remains active after
|
4024
|
-
# users disconnect.
|
4025
|
-
# @return [Integer]
|
4026
|
-
#
|
4027
4423
|
# @!attribute [rw] download_allowed
|
4028
4424
|
# Specifies whether the user can download files from the streaming
|
4029
4425
|
# session to the local device.
|
4030
4426
|
# @return [String]
|
4031
4427
|
#
|
4428
|
+
# @!attribute [rw] upload_allowed
|
4429
|
+
# Specifies whether the user can upload files from the local device to
|
4430
|
+
# the streaming session.
|
4431
|
+
# @return [String]
|
4432
|
+
#
|
4433
|
+
# @!attribute [rw] print_allowed
|
4434
|
+
# Specifies whether the user can print to the local device.
|
4435
|
+
# @return [String]
|
4436
|
+
#
|
4437
|
+
# @!attribute [rw] disconnect_timeout_in_minutes
|
4438
|
+
# The amount of time that a streaming session remains active after
|
4439
|
+
# users disconnect.
|
4440
|
+
# @return [Integer]
|
4441
|
+
#
|
4032
4442
|
# @!attribute [rw] idle_disconnect_timeout_in_minutes
|
4033
4443
|
# The amount of time that users can be idle (inactive) before they are
|
4034
4444
|
# disconnected from their streaming session and the disconnect timeout
|
4035
4445
|
# interval begins.
|
4036
4446
|
# @return [Integer]
|
4037
4447
|
#
|
4038
|
-
# @!attribute [rw]
|
4039
|
-
#
|
4040
|
-
# the
|
4041
|
-
#
|
4448
|
+
# @!attribute [rw] cookie_synchronization_configuration
|
4449
|
+
# The configuration that specifies which cookies should be
|
4450
|
+
# synchronized from the end user's local browser to the remote
|
4451
|
+
# browser.
|
4452
|
+
# @return [Types::CookieSynchronizationConfiguration]
|
4042
4453
|
#
|
4043
|
-
# @!attribute [rw]
|
4044
|
-
# Specifies whether the user can
|
4454
|
+
# @!attribute [rw] deep_link_allowed
|
4455
|
+
# Specifies whether the user can use deep links that open
|
4456
|
+
# automatically when connecting to a session.
|
4045
4457
|
# @return [String]
|
4046
4458
|
#
|
4047
4459
|
# @!attribute [rw] toolbar_configuration
|
@@ -4052,39 +4464,26 @@ module Aws::WorkSpacesWeb
|
|
4052
4464
|
# settings, end users retain control over their toolbar preferences.
|
4053
4465
|
# @return [Types::ToolbarConfiguration]
|
4054
4466
|
#
|
4055
|
-
# @!attribute [rw] upload_allowed
|
4056
|
-
# Specifies whether the user can upload files from the local device to
|
4057
|
-
# the streaming session.
|
4058
|
-
# @return [String]
|
4059
|
-
#
|
4060
|
-
# @!attribute [rw] user_settings_arn
|
4061
|
-
# The ARN of the user settings.
|
4062
|
-
# @return [String]
|
4063
|
-
#
|
4064
4467
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UserSettingsSummary AWS API Documentation
|
4065
4468
|
#
|
4066
4469
|
class UserSettingsSummary < Struct.new(
|
4067
|
-
:
|
4470
|
+
:user_settings_arn,
|
4068
4471
|
:copy_allowed,
|
4069
|
-
:deep_link_allowed,
|
4070
|
-
:disconnect_timeout_in_minutes,
|
4071
|
-
:download_allowed,
|
4072
|
-
:idle_disconnect_timeout_in_minutes,
|
4073
4472
|
:paste_allowed,
|
4074
|
-
:
|
4075
|
-
:toolbar_configuration,
|
4473
|
+
:download_allowed,
|
4076
4474
|
:upload_allowed,
|
4077
|
-
:
|
4475
|
+
:print_allowed,
|
4476
|
+
:disconnect_timeout_in_minutes,
|
4477
|
+
:idle_disconnect_timeout_in_minutes,
|
4478
|
+
:cookie_synchronization_configuration,
|
4479
|
+
:deep_link_allowed,
|
4480
|
+
:toolbar_configuration)
|
4078
4481
|
SENSITIVE = [:cookie_synchronization_configuration]
|
4079
4482
|
include Aws::Structure
|
4080
4483
|
end
|
4081
4484
|
|
4082
4485
|
# There is a validation error.
|
4083
4486
|
#
|
4084
|
-
# @!attribute [rw] field_list
|
4085
|
-
# The field that caused the error.
|
4086
|
-
# @return [Array<Types::ValidationExceptionField>]
|
4087
|
-
#
|
4088
4487
|
# @!attribute [rw] message
|
4089
4488
|
# @return [String]
|
4090
4489
|
#
|
@@ -4092,12 +4491,16 @@ module Aws::WorkSpacesWeb
|
|
4092
4491
|
# Reason the request failed validation
|
4093
4492
|
# @return [String]
|
4094
4493
|
#
|
4494
|
+
# @!attribute [rw] field_list
|
4495
|
+
# The field that caused the error.
|
4496
|
+
# @return [Array<Types::ValidationExceptionField>]
|
4497
|
+
#
|
4095
4498
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ValidationException AWS API Documentation
|
4096
4499
|
#
|
4097
4500
|
class ValidationException < Struct.new(
|
4098
|
-
:field_list,
|
4099
4501
|
:message,
|
4100
|
-
:reason
|
4502
|
+
:reason,
|
4503
|
+
:field_list)
|
4101
4504
|
SENSITIVE = []
|
4102
4505
|
include Aws::Structure
|
4103
4506
|
end
|
@@ -4105,19 +4508,19 @@ module Aws::WorkSpacesWeb
|
|
4105
4508
|
# Information about a field passed inside a request that resulted in an
|
4106
4509
|
# exception.
|
4107
4510
|
#
|
4108
|
-
# @!attribute [rw] message
|
4109
|
-
# The message describing why the field failed validation.
|
4110
|
-
# @return [String]
|
4111
|
-
#
|
4112
4511
|
# @!attribute [rw] name
|
4113
4512
|
# The name of the field that failed validation.
|
4114
4513
|
# @return [String]
|
4115
4514
|
#
|
4515
|
+
# @!attribute [rw] message
|
4516
|
+
# The message describing why the field failed validation.
|
4517
|
+
# @return [String]
|
4518
|
+
#
|
4116
4519
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ValidationExceptionField AWS API Documentation
|
4117
4520
|
#
|
4118
4521
|
class ValidationExceptionField < Struct.new(
|
4119
|
-
:
|
4120
|
-
:
|
4522
|
+
:name,
|
4523
|
+
:message)
|
4121
4524
|
SENSITIVE = []
|
4122
4525
|
include Aws::Structure
|
4123
4526
|
end
|