aws-sdk-workspacesweb 1.13.0 → 1.14.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 +82 -4
- data/lib/aws-sdk-workspacesweb/client_api.rb +40 -16
- data/lib/aws-sdk-workspacesweb/types.rb +92 -4
- data/lib/aws-sdk-workspacesweb.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: be0938e0148430098b65f2ac4bac1bbac6cde8a0fa0bf1c4ed784a5fc64883ce
|
4
|
+
data.tar.gz: 81abce46d10c34aa6ed5a3e323cfea3cb2f63937e158f09742015430eddd7ccf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8ab8ab819752d8963902fd1755b54b5d06ef8ae77248a5c9d0ba04ff33c26e51a7958e6a9eeb923d532ff7185d3860cc20845cdc22d2a267a41ce53d13db4f5e
|
7
|
+
data.tar.gz: f32c25db9cddd21d432c7cbb073a9e3e2ae12183b4b88c377310be7595b9511d749315bcafe11cb829ad326c534ecc4c9fc886e752611b227f434c6a98f64a9d
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.14.0 (2023-08-28)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - WorkSpaces Web now enables Admins to configure which cookies are synchronized from an end-user's local browser to the in-session browser. In conjunction with a browser extension, this feature enables enhanced Single-Sign On capability by reducing the number of times an end-user has to authenticate.
|
8
|
+
|
4
9
|
1.13.0 (2023-07-11)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.14.0
|
@@ -1114,6 +1114,9 @@ module Aws::WorkSpacesWeb
|
|
1114
1114
|
# users can transfer data between a streaming session and the their
|
1115
1115
|
# local devices.
|
1116
1116
|
#
|
1117
|
+
# @option params [Hash<String,String>] :additional_encryption_context
|
1118
|
+
# The additional encryption context of the user settings.
|
1119
|
+
#
|
1117
1120
|
# @option params [String] :client_token
|
1118
1121
|
# A unique, case-sensitive identifier that you provide to ensure the
|
1119
1122
|
# idempotency of the request. Idempotency ensures that an API request
|
@@ -1127,10 +1130,18 @@ module Aws::WorkSpacesWeb
|
|
1127
1130
|
# **A suitable default value is auto-generated.** You should normally
|
1128
1131
|
# not need to pass this option.**
|
1129
1132
|
#
|
1133
|
+
# @option params [Types::CookieSynchronizationConfiguration] :cookie_synchronization_configuration
|
1134
|
+
# The configuration that specifies which cookies should be synchronized
|
1135
|
+
# from the end user's local browser to the remote browser.
|
1136
|
+
#
|
1130
1137
|
# @option params [required, String] :copy_allowed
|
1131
1138
|
# Specifies whether the user can copy text from the streaming session to
|
1132
1139
|
# the local device.
|
1133
1140
|
#
|
1141
|
+
# @option params [String] :customer_managed_key
|
1142
|
+
# The customer managed key used to encrypt sensitive information in the
|
1143
|
+
# user settings.
|
1144
|
+
#
|
1134
1145
|
# @option params [Integer] :disconnect_timeout_in_minutes
|
1135
1146
|
# The amount of time that a streaming session remains active after users
|
1136
1147
|
# disconnect.
|
@@ -1166,8 +1177,28 @@ module Aws::WorkSpacesWeb
|
|
1166
1177
|
# @example Request syntax with placeholder values
|
1167
1178
|
#
|
1168
1179
|
# resp = client.create_user_settings({
|
1180
|
+
# additional_encryption_context: {
|
1181
|
+
# "StringType" => "StringType",
|
1182
|
+
# },
|
1169
1183
|
# client_token: "ClientToken",
|
1184
|
+
# cookie_synchronization_configuration: {
|
1185
|
+
# allowlist: [ # required
|
1186
|
+
# {
|
1187
|
+
# domain: "CookieDomain", # required
|
1188
|
+
# name: "CookieName",
|
1189
|
+
# path: "CookiePath",
|
1190
|
+
# },
|
1191
|
+
# ],
|
1192
|
+
# blocklist: [
|
1193
|
+
# {
|
1194
|
+
# domain: "CookieDomain", # required
|
1195
|
+
# name: "CookieName",
|
1196
|
+
# path: "CookiePath",
|
1197
|
+
# },
|
1198
|
+
# ],
|
1199
|
+
# },
|
1170
1200
|
# copy_allowed: "Disabled", # required, accepts Disabled, Enabled
|
1201
|
+
# customer_managed_key: "keyArn",
|
1171
1202
|
# disconnect_timeout_in_minutes: 1,
|
1172
1203
|
# download_allowed: "Disabled", # required, accepts Disabled, Enabled
|
1173
1204
|
# idle_disconnect_timeout_in_minutes: 1,
|
@@ -1227,7 +1258,7 @@ module Aws::WorkSpacesWeb
|
|
1227
1258
|
# @example Request syntax with placeholder values
|
1228
1259
|
#
|
1229
1260
|
# resp = client.delete_identity_provider({
|
1230
|
-
# identity_provider_arn: "
|
1261
|
+
# identity_provider_arn: "SubresourceARN", # required
|
1231
1262
|
# })
|
1232
1263
|
#
|
1233
1264
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/DeleteIdentityProvider AWS API Documentation
|
@@ -1546,7 +1577,7 @@ module Aws::WorkSpacesWeb
|
|
1546
1577
|
# @example Request syntax with placeholder values
|
1547
1578
|
#
|
1548
1579
|
# resp = client.get_identity_provider({
|
1549
|
-
# identity_provider_arn: "
|
1580
|
+
# identity_provider_arn: "SubresourceARN", # required
|
1550
1581
|
# })
|
1551
1582
|
#
|
1552
1583
|
# @example Response structure
|
@@ -1828,6 +1859,14 @@ module Aws::WorkSpacesWeb
|
|
1828
1859
|
#
|
1829
1860
|
# resp.user_settings.associated_portal_arns #=> Array
|
1830
1861
|
# resp.user_settings.associated_portal_arns[0] #=> String
|
1862
|
+
# resp.user_settings.cookie_synchronization_configuration.allowlist #=> Array
|
1863
|
+
# resp.user_settings.cookie_synchronization_configuration.allowlist[0].domain #=> String
|
1864
|
+
# resp.user_settings.cookie_synchronization_configuration.allowlist[0].name #=> String
|
1865
|
+
# resp.user_settings.cookie_synchronization_configuration.allowlist[0].path #=> String
|
1866
|
+
# resp.user_settings.cookie_synchronization_configuration.blocklist #=> Array
|
1867
|
+
# resp.user_settings.cookie_synchronization_configuration.blocklist[0].domain #=> String
|
1868
|
+
# resp.user_settings.cookie_synchronization_configuration.blocklist[0].name #=> String
|
1869
|
+
# resp.user_settings.cookie_synchronization_configuration.blocklist[0].path #=> String
|
1831
1870
|
# resp.user_settings.copy_allowed #=> String, one of "Disabled", "Enabled"
|
1832
1871
|
# resp.user_settings.disconnect_timeout_in_minutes #=> Integer
|
1833
1872
|
# resp.user_settings.download_allowed #=> String, one of "Disabled", "Enabled"
|
@@ -2241,6 +2280,14 @@ module Aws::WorkSpacesWeb
|
|
2241
2280
|
#
|
2242
2281
|
# resp.next_token #=> String
|
2243
2282
|
# resp.user_settings #=> Array
|
2283
|
+
# resp.user_settings[0].cookie_synchronization_configuration.allowlist #=> Array
|
2284
|
+
# resp.user_settings[0].cookie_synchronization_configuration.allowlist[0].domain #=> String
|
2285
|
+
# resp.user_settings[0].cookie_synchronization_configuration.allowlist[0].name #=> String
|
2286
|
+
# resp.user_settings[0].cookie_synchronization_configuration.allowlist[0].path #=> String
|
2287
|
+
# resp.user_settings[0].cookie_synchronization_configuration.blocklist #=> Array
|
2288
|
+
# resp.user_settings[0].cookie_synchronization_configuration.blocklist[0].domain #=> String
|
2289
|
+
# resp.user_settings[0].cookie_synchronization_configuration.blocklist[0].name #=> String
|
2290
|
+
# resp.user_settings[0].cookie_synchronization_configuration.blocklist[0].path #=> String
|
2244
2291
|
# resp.user_settings[0].copy_allowed #=> String, one of "Disabled", "Enabled"
|
2245
2292
|
# resp.user_settings[0].disconnect_timeout_in_minutes #=> Integer
|
2246
2293
|
# resp.user_settings[0].download_allowed #=> String, one of "Disabled", "Enabled"
|
@@ -2476,7 +2523,7 @@ module Aws::WorkSpacesWeb
|
|
2476
2523
|
#
|
2477
2524
|
# resp = client.update_identity_provider({
|
2478
2525
|
# client_token: "ClientToken",
|
2479
|
-
# identity_provider_arn: "
|
2526
|
+
# identity_provider_arn: "SubresourceARN", # required
|
2480
2527
|
# identity_provider_details: {
|
2481
2528
|
# "StringType" => "StringType",
|
2482
2529
|
# },
|
@@ -2811,6 +2858,13 @@ module Aws::WorkSpacesWeb
|
|
2811
2858
|
# **A suitable default value is auto-generated.** You should normally
|
2812
2859
|
# not need to pass this option.**
|
2813
2860
|
#
|
2861
|
+
# @option params [Types::CookieSynchronizationConfiguration] :cookie_synchronization_configuration
|
2862
|
+
# The configuration that specifies which cookies should be synchronized
|
2863
|
+
# from the end user's local browser to the remote browser.
|
2864
|
+
#
|
2865
|
+
# If the allowlist and blocklist are empty, the configuration becomes
|
2866
|
+
# null.
|
2867
|
+
#
|
2814
2868
|
# @option params [String] :copy_allowed
|
2815
2869
|
# Specifies whether the user can copy text from the streaming session to
|
2816
2870
|
# the local device.
|
@@ -2850,6 +2904,22 @@ module Aws::WorkSpacesWeb
|
|
2850
2904
|
#
|
2851
2905
|
# resp = client.update_user_settings({
|
2852
2906
|
# client_token: "ClientToken",
|
2907
|
+
# cookie_synchronization_configuration: {
|
2908
|
+
# allowlist: [ # required
|
2909
|
+
# {
|
2910
|
+
# domain: "CookieDomain", # required
|
2911
|
+
# name: "CookieName",
|
2912
|
+
# path: "CookiePath",
|
2913
|
+
# },
|
2914
|
+
# ],
|
2915
|
+
# blocklist: [
|
2916
|
+
# {
|
2917
|
+
# domain: "CookieDomain", # required
|
2918
|
+
# name: "CookieName",
|
2919
|
+
# path: "CookiePath",
|
2920
|
+
# },
|
2921
|
+
# ],
|
2922
|
+
# },
|
2853
2923
|
# copy_allowed: "Disabled", # accepts Disabled, Enabled
|
2854
2924
|
# disconnect_timeout_in_minutes: 1,
|
2855
2925
|
# download_allowed: "Disabled", # accepts Disabled, Enabled
|
@@ -2864,6 +2934,14 @@ module Aws::WorkSpacesWeb
|
|
2864
2934
|
#
|
2865
2935
|
# resp.user_settings.associated_portal_arns #=> Array
|
2866
2936
|
# resp.user_settings.associated_portal_arns[0] #=> String
|
2937
|
+
# resp.user_settings.cookie_synchronization_configuration.allowlist #=> Array
|
2938
|
+
# resp.user_settings.cookie_synchronization_configuration.allowlist[0].domain #=> String
|
2939
|
+
# resp.user_settings.cookie_synchronization_configuration.allowlist[0].name #=> String
|
2940
|
+
# resp.user_settings.cookie_synchronization_configuration.allowlist[0].path #=> String
|
2941
|
+
# resp.user_settings.cookie_synchronization_configuration.blocklist #=> Array
|
2942
|
+
# resp.user_settings.cookie_synchronization_configuration.blocklist[0].domain #=> String
|
2943
|
+
# resp.user_settings.cookie_synchronization_configuration.blocklist[0].name #=> String
|
2944
|
+
# resp.user_settings.cookie_synchronization_configuration.blocklist[0].path #=> String
|
2867
2945
|
# resp.user_settings.copy_allowed #=> String, one of "Disabled", "Enabled"
|
2868
2946
|
# resp.user_settings.disconnect_timeout_in_minutes #=> Integer
|
2869
2947
|
# resp.user_settings.download_allowed #=> String, one of "Disabled", "Enabled"
|
@@ -2895,7 +2973,7 @@ module Aws::WorkSpacesWeb
|
|
2895
2973
|
params: params,
|
2896
2974
|
config: config)
|
2897
2975
|
context[:gem_name] = 'aws-sdk-workspacesweb'
|
2898
|
-
context[:gem_version] = '1.
|
2976
|
+
context[:gem_version] = '1.14.0'
|
2899
2977
|
Seahorse::Client::Request.new(handlers, context)
|
2900
2978
|
end
|
2901
2979
|
|
@@ -44,6 +44,12 @@ module Aws::WorkSpacesWeb
|
|
44
44
|
CertificateThumbprintList = Shapes::ListShape.new(name: 'CertificateThumbprintList')
|
45
45
|
ClientToken = Shapes::StringShape.new(name: 'ClientToken')
|
46
46
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
47
|
+
CookieDomain = Shapes::StringShape.new(name: 'CookieDomain')
|
48
|
+
CookieName = Shapes::StringShape.new(name: 'CookieName')
|
49
|
+
CookiePath = Shapes::StringShape.new(name: 'CookiePath')
|
50
|
+
CookieSpecification = Shapes::StructureShape.new(name: 'CookieSpecification')
|
51
|
+
CookieSpecifications = Shapes::ListShape.new(name: 'CookieSpecifications')
|
52
|
+
CookieSynchronizationConfiguration = Shapes::StructureShape.new(name: 'CookieSynchronizationConfiguration')
|
47
53
|
CreateBrowserSettingsRequest = Shapes::StructureShape.new(name: 'CreateBrowserSettingsRequest')
|
48
54
|
CreateBrowserSettingsResponse = Shapes::StructureShape.new(name: 'CreateBrowserSettingsResponse')
|
49
55
|
CreateIdentityProviderRequest = Shapes::StructureShape.new(name: 'CreateIdentityProviderRequest')
|
@@ -175,6 +181,7 @@ module Aws::WorkSpacesWeb
|
|
175
181
|
StringType = Shapes::StringShape.new(name: 'StringType')
|
176
182
|
SubnetId = Shapes::StringShape.new(name: 'SubnetId')
|
177
183
|
SubnetIdList = Shapes::ListShape.new(name: 'SubnetIdList')
|
184
|
+
SubresourceARN = Shapes::StringShape.new(name: 'SubresourceARN')
|
178
185
|
Tag = Shapes::StructureShape.new(name: 'Tag')
|
179
186
|
TagExceptionMessage = Shapes::StringShape.new(name: 'TagExceptionMessage')
|
180
187
|
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
@@ -280,7 +287,7 @@ module Aws::WorkSpacesWeb
|
|
280
287
|
|
281
288
|
BrowserSettingsList.member = Shapes::ShapeRef.new(shape: BrowserSettingsSummary)
|
282
289
|
|
283
|
-
BrowserSettingsSummary.add_member(:browser_settings_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "browserSettingsArn"))
|
290
|
+
BrowserSettingsSummary.add_member(:browser_settings_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "browserSettingsArn"))
|
284
291
|
BrowserSettingsSummary.struct_class = Types::BrowserSettingsSummary
|
285
292
|
|
286
293
|
Certificate.add_member(:body, Shapes::ShapeRef.new(shape: CertificateAuthorityBody, location_name: "body"))
|
@@ -309,6 +316,17 @@ module Aws::WorkSpacesWeb
|
|
309
316
|
ConflictException.add_member(:resource_type, Shapes::ShapeRef.new(shape: ResourceType, location_name: "resourceType"))
|
310
317
|
ConflictException.struct_class = Types::ConflictException
|
311
318
|
|
319
|
+
CookieSpecification.add_member(:domain, Shapes::ShapeRef.new(shape: CookieDomain, required: true, location_name: "domain"))
|
320
|
+
CookieSpecification.add_member(:name, Shapes::ShapeRef.new(shape: CookieName, location_name: "name"))
|
321
|
+
CookieSpecification.add_member(:path, Shapes::ShapeRef.new(shape: CookiePath, location_name: "path"))
|
322
|
+
CookieSpecification.struct_class = Types::CookieSpecification
|
323
|
+
|
324
|
+
CookieSpecifications.member = Shapes::ShapeRef.new(shape: CookieSpecification)
|
325
|
+
|
326
|
+
CookieSynchronizationConfiguration.add_member(:allowlist, Shapes::ShapeRef.new(shape: CookieSpecifications, required: true, location_name: "allowlist"))
|
327
|
+
CookieSynchronizationConfiguration.add_member(:blocklist, Shapes::ShapeRef.new(shape: CookieSpecifications, location_name: "blocklist"))
|
328
|
+
CookieSynchronizationConfiguration.struct_class = Types::CookieSynchronizationConfiguration
|
329
|
+
|
312
330
|
CreateBrowserSettingsRequest.add_member(:additional_encryption_context, Shapes::ShapeRef.new(shape: EncryptionContextMap, location_name: "additionalEncryptionContext"))
|
313
331
|
CreateBrowserSettingsRequest.add_member(:browser_policy, Shapes::ShapeRef.new(shape: BrowserPolicy, required: true, location_name: "browserPolicy"))
|
314
332
|
CreateBrowserSettingsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
@@ -326,7 +344,7 @@ module Aws::WorkSpacesWeb
|
|
326
344
|
CreateIdentityProviderRequest.add_member(:portal_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "portalArn"))
|
327
345
|
CreateIdentityProviderRequest.struct_class = Types::CreateIdentityProviderRequest
|
328
346
|
|
329
|
-
CreateIdentityProviderResponse.add_member(:identity_provider_arn, Shapes::ShapeRef.new(shape:
|
347
|
+
CreateIdentityProviderResponse.add_member(:identity_provider_arn, Shapes::ShapeRef.new(shape: SubresourceARN, required: true, location_name: "identityProviderArn"))
|
330
348
|
CreateIdentityProviderResponse.struct_class = Types::CreateIdentityProviderResponse
|
331
349
|
|
332
350
|
CreateIpAccessSettingsRequest.add_member(:additional_encryption_context, Shapes::ShapeRef.new(shape: EncryptionContextMap, location_name: "additionalEncryptionContext"))
|
@@ -379,8 +397,11 @@ module Aws::WorkSpacesWeb
|
|
379
397
|
CreateUserAccessLoggingSettingsResponse.add_member(:user_access_logging_settings_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "userAccessLoggingSettingsArn"))
|
380
398
|
CreateUserAccessLoggingSettingsResponse.struct_class = Types::CreateUserAccessLoggingSettingsResponse
|
381
399
|
|
400
|
+
CreateUserSettingsRequest.add_member(:additional_encryption_context, Shapes::ShapeRef.new(shape: EncryptionContextMap, location_name: "additionalEncryptionContext"))
|
382
401
|
CreateUserSettingsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
402
|
+
CreateUserSettingsRequest.add_member(:cookie_synchronization_configuration, Shapes::ShapeRef.new(shape: CookieSynchronizationConfiguration, location_name: "cookieSynchronizationConfiguration"))
|
383
403
|
CreateUserSettingsRequest.add_member(:copy_allowed, Shapes::ShapeRef.new(shape: EnabledType, required: true, location_name: "copyAllowed"))
|
404
|
+
CreateUserSettingsRequest.add_member(:customer_managed_key, Shapes::ShapeRef.new(shape: keyArn, location_name: "customerManagedKey"))
|
384
405
|
CreateUserSettingsRequest.add_member(:disconnect_timeout_in_minutes, Shapes::ShapeRef.new(shape: DisconnectTimeoutInMinutes, location_name: "disconnectTimeoutInMinutes"))
|
385
406
|
CreateUserSettingsRequest.add_member(:download_allowed, Shapes::ShapeRef.new(shape: EnabledType, required: true, location_name: "downloadAllowed"))
|
386
407
|
CreateUserSettingsRequest.add_member(:idle_disconnect_timeout_in_minutes, Shapes::ShapeRef.new(shape: IdleDisconnectTimeoutInMinutes, location_name: "idleDisconnectTimeoutInMinutes"))
|
@@ -398,7 +419,7 @@ module Aws::WorkSpacesWeb
|
|
398
419
|
|
399
420
|
DeleteBrowserSettingsResponse.struct_class = Types::DeleteBrowserSettingsResponse
|
400
421
|
|
401
|
-
DeleteIdentityProviderRequest.add_member(:identity_provider_arn, Shapes::ShapeRef.new(shape:
|
422
|
+
DeleteIdentityProviderRequest.add_member(:identity_provider_arn, Shapes::ShapeRef.new(shape: SubresourceARN, required: true, location: "uri", location_name: "identityProviderArn"))
|
402
423
|
DeleteIdentityProviderRequest.struct_class = Types::DeleteIdentityProviderRequest
|
403
424
|
|
404
425
|
DeleteIdentityProviderResponse.struct_class = Types::DeleteIdentityProviderResponse
|
@@ -472,7 +493,7 @@ module Aws::WorkSpacesWeb
|
|
472
493
|
GetBrowserSettingsResponse.add_member(:browser_settings, Shapes::ShapeRef.new(shape: BrowserSettings, location_name: "browserSettings"))
|
473
494
|
GetBrowserSettingsResponse.struct_class = Types::GetBrowserSettingsResponse
|
474
495
|
|
475
|
-
GetIdentityProviderRequest.add_member(:identity_provider_arn, Shapes::ShapeRef.new(shape:
|
496
|
+
GetIdentityProviderRequest.add_member(:identity_provider_arn, Shapes::ShapeRef.new(shape: SubresourceARN, required: true, location: "uri", location_name: "identityProviderArn"))
|
476
497
|
GetIdentityProviderRequest.struct_class = Types::GetIdentityProviderRequest
|
477
498
|
|
478
499
|
GetIdentityProviderResponse.add_member(:identity_provider, Shapes::ShapeRef.new(shape: IdentityProvider, location_name: "identityProvider"))
|
@@ -508,7 +529,7 @@ module Aws::WorkSpacesWeb
|
|
508
529
|
GetTrustStoreCertificateRequest.struct_class = Types::GetTrustStoreCertificateRequest
|
509
530
|
|
510
531
|
GetTrustStoreCertificateResponse.add_member(:certificate, Shapes::ShapeRef.new(shape: Certificate, location_name: "certificate"))
|
511
|
-
GetTrustStoreCertificateResponse.add_member(:trust_store_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "trustStoreArn"))
|
532
|
+
GetTrustStoreCertificateResponse.add_member(:trust_store_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "trustStoreArn"))
|
512
533
|
GetTrustStoreCertificateResponse.struct_class = Types::GetTrustStoreCertificateResponse
|
513
534
|
|
514
535
|
GetTrustStoreRequest.add_member(:trust_store_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location: "uri", location_name: "trustStoreArn"))
|
@@ -529,7 +550,7 @@ module Aws::WorkSpacesWeb
|
|
529
550
|
GetUserSettingsResponse.add_member(:user_settings, Shapes::ShapeRef.new(shape: UserSettings, location_name: "userSettings"))
|
530
551
|
GetUserSettingsResponse.struct_class = Types::GetUserSettingsResponse
|
531
552
|
|
532
|
-
IdentityProvider.add_member(:identity_provider_arn, Shapes::ShapeRef.new(shape:
|
553
|
+
IdentityProvider.add_member(:identity_provider_arn, Shapes::ShapeRef.new(shape: SubresourceARN, required: true, location_name: "identityProviderArn"))
|
533
554
|
IdentityProvider.add_member(:identity_provider_details, Shapes::ShapeRef.new(shape: IdentityProviderDetails, location_name: "identityProviderDetails"))
|
534
555
|
IdentityProvider.add_member(:identity_provider_name, Shapes::ShapeRef.new(shape: IdentityProviderName, location_name: "identityProviderName"))
|
535
556
|
IdentityProvider.add_member(:identity_provider_type, Shapes::ShapeRef.new(shape: IdentityProviderType, location_name: "identityProviderType"))
|
@@ -540,7 +561,7 @@ module Aws::WorkSpacesWeb
|
|
540
561
|
|
541
562
|
IdentityProviderList.member = Shapes::ShapeRef.new(shape: IdentityProviderSummary)
|
542
563
|
|
543
|
-
IdentityProviderSummary.add_member(:identity_provider_arn, Shapes::ShapeRef.new(shape:
|
564
|
+
IdentityProviderSummary.add_member(:identity_provider_arn, Shapes::ShapeRef.new(shape: SubresourceARN, required: true, location_name: "identityProviderArn"))
|
544
565
|
IdentityProviderSummary.add_member(:identity_provider_name, Shapes::ShapeRef.new(shape: IdentityProviderName, location_name: "identityProviderName"))
|
545
566
|
IdentityProviderSummary.add_member(:identity_provider_type, Shapes::ShapeRef.new(shape: IdentityProviderType, location_name: "identityProviderType"))
|
546
567
|
IdentityProviderSummary.struct_class = Types::IdentityProviderSummary
|
@@ -562,7 +583,7 @@ module Aws::WorkSpacesWeb
|
|
562
583
|
IpAccessSettingsSummary.add_member(:creation_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "creationDate"))
|
563
584
|
IpAccessSettingsSummary.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
564
585
|
IpAccessSettingsSummary.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "displayName"))
|
565
|
-
IpAccessSettingsSummary.add_member(:ip_access_settings_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "ipAccessSettingsArn"))
|
586
|
+
IpAccessSettingsSummary.add_member(:ip_access_settings_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "ipAccessSettingsArn"))
|
566
587
|
IpAccessSettingsSummary.struct_class = Types::IpAccessSettingsSummary
|
567
588
|
|
568
589
|
IpRule.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
@@ -625,7 +646,7 @@ module Aws::WorkSpacesWeb
|
|
625
646
|
|
626
647
|
ListTrustStoreCertificatesResponse.add_member(:certificate_list, Shapes::ShapeRef.new(shape: CertificateSummaryList, location_name: "certificateList"))
|
627
648
|
ListTrustStoreCertificatesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
628
|
-
ListTrustStoreCertificatesResponse.add_member(:trust_store_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "trustStoreArn"))
|
649
|
+
ListTrustStoreCertificatesResponse.add_member(:trust_store_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "trustStoreArn"))
|
629
650
|
ListTrustStoreCertificatesResponse.struct_class = Types::ListTrustStoreCertificatesResponse
|
630
651
|
|
631
652
|
ListTrustStoresRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
@@ -661,7 +682,7 @@ module Aws::WorkSpacesWeb
|
|
661
682
|
|
662
683
|
NetworkSettingsList.member = Shapes::ShapeRef.new(shape: NetworkSettingsSummary)
|
663
684
|
|
664
|
-
NetworkSettingsSummary.add_member(:network_settings_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "networkSettingsArn"))
|
685
|
+
NetworkSettingsSummary.add_member(:network_settings_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "networkSettingsArn"))
|
665
686
|
NetworkSettingsSummary.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, location_name: "vpcId"))
|
666
687
|
NetworkSettingsSummary.struct_class = Types::NetworkSettingsSummary
|
667
688
|
|
@@ -672,7 +693,7 @@ module Aws::WorkSpacesWeb
|
|
672
693
|
Portal.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "displayName"))
|
673
694
|
Portal.add_member(:ip_access_settings_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "ipAccessSettingsArn"))
|
674
695
|
Portal.add_member(:network_settings_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "networkSettingsArn"))
|
675
|
-
Portal.add_member(:portal_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "portalArn"))
|
696
|
+
Portal.add_member(:portal_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "portalArn"))
|
676
697
|
Portal.add_member(:portal_endpoint, Shapes::ShapeRef.new(shape: PortalEndpoint, location_name: "portalEndpoint"))
|
677
698
|
Portal.add_member(:portal_status, Shapes::ShapeRef.new(shape: PortalStatus, location_name: "portalStatus"))
|
678
699
|
Portal.add_member(:renderer_type, Shapes::ShapeRef.new(shape: RendererType, location_name: "rendererType"))
|
@@ -691,7 +712,7 @@ module Aws::WorkSpacesWeb
|
|
691
712
|
PortalSummary.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "displayName"))
|
692
713
|
PortalSummary.add_member(:ip_access_settings_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "ipAccessSettingsArn"))
|
693
714
|
PortalSummary.add_member(:network_settings_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "networkSettingsArn"))
|
694
|
-
PortalSummary.add_member(:portal_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "portalArn"))
|
715
|
+
PortalSummary.add_member(:portal_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "portalArn"))
|
695
716
|
PortalSummary.add_member(:portal_endpoint, Shapes::ShapeRef.new(shape: PortalEndpoint, location_name: "portalEndpoint"))
|
696
717
|
PortalSummary.add_member(:portal_status, Shapes::ShapeRef.new(shape: PortalStatus, location_name: "portalStatus"))
|
697
718
|
PortalSummary.add_member(:renderer_type, Shapes::ShapeRef.new(shape: RendererType, location_name: "rendererType"))
|
@@ -742,7 +763,7 @@ module Aws::WorkSpacesWeb
|
|
742
763
|
TooManyTagsException.struct_class = Types::TooManyTagsException
|
743
764
|
|
744
765
|
TrustStore.add_member(:associated_portal_arns, Shapes::ShapeRef.new(shape: ArnList, location_name: "associatedPortalArns"))
|
745
|
-
TrustStore.add_member(:trust_store_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "trustStoreArn"))
|
766
|
+
TrustStore.add_member(:trust_store_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "trustStoreArn"))
|
746
767
|
TrustStore.struct_class = Types::TrustStore
|
747
768
|
|
748
769
|
TrustStoreSummary.add_member(:trust_store_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "trustStoreArn"))
|
@@ -765,7 +786,7 @@ module Aws::WorkSpacesWeb
|
|
765
786
|
UpdateBrowserSettingsResponse.struct_class = Types::UpdateBrowserSettingsResponse
|
766
787
|
|
767
788
|
UpdateIdentityProviderRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
768
|
-
UpdateIdentityProviderRequest.add_member(:identity_provider_arn, Shapes::ShapeRef.new(shape:
|
789
|
+
UpdateIdentityProviderRequest.add_member(:identity_provider_arn, Shapes::ShapeRef.new(shape: SubresourceARN, required: true, location: "uri", location_name: "identityProviderArn"))
|
769
790
|
UpdateIdentityProviderRequest.add_member(:identity_provider_details, Shapes::ShapeRef.new(shape: IdentityProviderDetails, location_name: "identityProviderDetails"))
|
770
791
|
UpdateIdentityProviderRequest.add_member(:identity_provider_name, Shapes::ShapeRef.new(shape: IdentityProviderName, location_name: "identityProviderName"))
|
771
792
|
UpdateIdentityProviderRequest.add_member(:identity_provider_type, Shapes::ShapeRef.new(shape: IdentityProviderType, location_name: "identityProviderType"))
|
@@ -820,6 +841,7 @@ module Aws::WorkSpacesWeb
|
|
820
841
|
UpdateUserAccessLoggingSettingsResponse.struct_class = Types::UpdateUserAccessLoggingSettingsResponse
|
821
842
|
|
822
843
|
UpdateUserSettingsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
844
|
+
UpdateUserSettingsRequest.add_member(:cookie_synchronization_configuration, Shapes::ShapeRef.new(shape: CookieSynchronizationConfiguration, location_name: "cookieSynchronizationConfiguration"))
|
823
845
|
UpdateUserSettingsRequest.add_member(:copy_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "copyAllowed"))
|
824
846
|
UpdateUserSettingsRequest.add_member(:disconnect_timeout_in_minutes, Shapes::ShapeRef.new(shape: DisconnectTimeoutInMinutes, location_name: "disconnectTimeoutInMinutes"))
|
825
847
|
UpdateUserSettingsRequest.add_member(:download_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "downloadAllowed"))
|
@@ -841,10 +863,11 @@ module Aws::WorkSpacesWeb
|
|
841
863
|
UserAccessLoggingSettingsList.member = Shapes::ShapeRef.new(shape: UserAccessLoggingSettingsSummary)
|
842
864
|
|
843
865
|
UserAccessLoggingSettingsSummary.add_member(:kinesis_stream_arn, Shapes::ShapeRef.new(shape: KinesisStreamArn, location_name: "kinesisStreamArn"))
|
844
|
-
UserAccessLoggingSettingsSummary.add_member(:user_access_logging_settings_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "userAccessLoggingSettingsArn"))
|
866
|
+
UserAccessLoggingSettingsSummary.add_member(:user_access_logging_settings_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "userAccessLoggingSettingsArn"))
|
845
867
|
UserAccessLoggingSettingsSummary.struct_class = Types::UserAccessLoggingSettingsSummary
|
846
868
|
|
847
869
|
UserSettings.add_member(:associated_portal_arns, Shapes::ShapeRef.new(shape: ArnList, location_name: "associatedPortalArns"))
|
870
|
+
UserSettings.add_member(:cookie_synchronization_configuration, Shapes::ShapeRef.new(shape: CookieSynchronizationConfiguration, location_name: "cookieSynchronizationConfiguration"))
|
848
871
|
UserSettings.add_member(:copy_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "copyAllowed"))
|
849
872
|
UserSettings.add_member(:disconnect_timeout_in_minutes, Shapes::ShapeRef.new(shape: DisconnectTimeoutInMinutes, location_name: "disconnectTimeoutInMinutes"))
|
850
873
|
UserSettings.add_member(:download_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "downloadAllowed"))
|
@@ -857,6 +880,7 @@ module Aws::WorkSpacesWeb
|
|
857
880
|
|
858
881
|
UserSettingsList.member = Shapes::ShapeRef.new(shape: UserSettingsSummary)
|
859
882
|
|
883
|
+
UserSettingsSummary.add_member(:cookie_synchronization_configuration, Shapes::ShapeRef.new(shape: CookieSynchronizationConfiguration, location_name: "cookieSynchronizationConfiguration"))
|
860
884
|
UserSettingsSummary.add_member(:copy_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "copyAllowed"))
|
861
885
|
UserSettingsSummary.add_member(:disconnect_timeout_in_minutes, Shapes::ShapeRef.new(shape: DisconnectTimeoutInMinutes, location_name: "disconnectTimeoutInMinutes"))
|
862
886
|
UserSettingsSummary.add_member(:download_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "downloadAllowed"))
|
@@ -864,7 +888,7 @@ module Aws::WorkSpacesWeb
|
|
864
888
|
UserSettingsSummary.add_member(:paste_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "pasteAllowed"))
|
865
889
|
UserSettingsSummary.add_member(:print_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "printAllowed"))
|
866
890
|
UserSettingsSummary.add_member(:upload_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "uploadAllowed"))
|
867
|
-
UserSettingsSummary.add_member(:user_settings_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "userSettingsArn"))
|
891
|
+
UserSettingsSummary.add_member(:user_settings_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "userSettingsArn"))
|
868
892
|
UserSettingsSummary.struct_class = Types::UserSettingsSummary
|
869
893
|
|
870
894
|
ValidationException.add_member(:field_list, Shapes::ShapeRef.new(shape: ValidationExceptionFieldList, location_name: "fieldList"))
|
@@ -366,6 +366,52 @@ module Aws::WorkSpacesWeb
|
|
366
366
|
include Aws::Structure
|
367
367
|
end
|
368
368
|
|
369
|
+
# Specifies a single cookie or set of cookies in an end user's browser.
|
370
|
+
#
|
371
|
+
# @!attribute [rw] domain
|
372
|
+
# The domain of the cookie.
|
373
|
+
# @return [String]
|
374
|
+
#
|
375
|
+
# @!attribute [rw] name
|
376
|
+
# The name of the cookie.
|
377
|
+
# @return [String]
|
378
|
+
#
|
379
|
+
# @!attribute [rw] path
|
380
|
+
# The path of the cookie.
|
381
|
+
# @return [String]
|
382
|
+
#
|
383
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/CookieSpecification AWS API Documentation
|
384
|
+
#
|
385
|
+
class CookieSpecification < Struct.new(
|
386
|
+
:domain,
|
387
|
+
:name,
|
388
|
+
:path)
|
389
|
+
SENSITIVE = []
|
390
|
+
include Aws::Structure
|
391
|
+
end
|
392
|
+
|
393
|
+
# The configuration that specifies which cookies should be synchronized
|
394
|
+
# from the end user's local browser to the remote browser.
|
395
|
+
#
|
396
|
+
# @!attribute [rw] allowlist
|
397
|
+
# The list of cookie specifications that are allowed to be
|
398
|
+
# synchronized to the remote browser.
|
399
|
+
# @return [Array<Types::CookieSpecification>]
|
400
|
+
#
|
401
|
+
# @!attribute [rw] blocklist
|
402
|
+
# The list of cookie specifications that are blocked from being
|
403
|
+
# synchronized to the remote browser.
|
404
|
+
# @return [Array<Types::CookieSpecification>]
|
405
|
+
#
|
406
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/CookieSynchronizationConfiguration AWS API Documentation
|
407
|
+
#
|
408
|
+
class CookieSynchronizationConfiguration < Struct.new(
|
409
|
+
:allowlist,
|
410
|
+
:blocklist)
|
411
|
+
SENSITIVE = []
|
412
|
+
include Aws::Structure
|
413
|
+
end
|
414
|
+
|
369
415
|
# @!attribute [rw] additional_encryption_context
|
370
416
|
# Additional encryption context of the browser settings.
|
371
417
|
# @return [Hash<String,String>]
|
@@ -836,6 +882,10 @@ module Aws::WorkSpacesWeb
|
|
836
882
|
include Aws::Structure
|
837
883
|
end
|
838
884
|
|
885
|
+
# @!attribute [rw] additional_encryption_context
|
886
|
+
# The additional encryption context of the user settings.
|
887
|
+
# @return [Hash<String,String>]
|
888
|
+
#
|
839
889
|
# @!attribute [rw] client_token
|
840
890
|
# A unique, case-sensitive identifier that you provide to ensure the
|
841
891
|
# idempotency of the request. Idempotency ensures that an API request
|
@@ -851,11 +901,22 @@ module Aws::WorkSpacesWeb
|
|
851
901
|
# not need to pass this option.
|
852
902
|
# @return [String]
|
853
903
|
#
|
904
|
+
# @!attribute [rw] cookie_synchronization_configuration
|
905
|
+
# The configuration that specifies which cookies should be
|
906
|
+
# synchronized from the end user's local browser to the remote
|
907
|
+
# browser.
|
908
|
+
# @return [Types::CookieSynchronizationConfiguration]
|
909
|
+
#
|
854
910
|
# @!attribute [rw] copy_allowed
|
855
911
|
# Specifies whether the user can copy text from the streaming session
|
856
912
|
# to the local device.
|
857
913
|
# @return [String]
|
858
914
|
#
|
915
|
+
# @!attribute [rw] customer_managed_key
|
916
|
+
# The customer managed key used to encrypt sensitive information in
|
917
|
+
# the user settings.
|
918
|
+
# @return [String]
|
919
|
+
#
|
859
920
|
# @!attribute [rw] disconnect_timeout_in_minutes
|
860
921
|
# The amount of time that a streaming session remains active after
|
861
922
|
# users disconnect.
|
@@ -894,8 +955,11 @@ module Aws::WorkSpacesWeb
|
|
894
955
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/CreateUserSettingsRequest AWS API Documentation
|
895
956
|
#
|
896
957
|
class CreateUserSettingsRequest < Struct.new(
|
958
|
+
:additional_encryption_context,
|
897
959
|
:client_token,
|
960
|
+
:cookie_synchronization_configuration,
|
898
961
|
:copy_allowed,
|
962
|
+
:customer_managed_key,
|
899
963
|
:disconnect_timeout_in_minutes,
|
900
964
|
:download_allowed,
|
901
965
|
:idle_disconnect_timeout_in_minutes,
|
@@ -903,7 +967,7 @@ module Aws::WorkSpacesWeb
|
|
903
967
|
:print_allowed,
|
904
968
|
:tags,
|
905
969
|
:upload_allowed)
|
906
|
-
SENSITIVE = []
|
970
|
+
SENSITIVE = [:cookie_synchronization_configuration]
|
907
971
|
include Aws::Structure
|
908
972
|
end
|
909
973
|
|
@@ -2885,6 +2949,15 @@ module Aws::WorkSpacesWeb
|
|
2885
2949
|
# not need to pass this option.
|
2886
2950
|
# @return [String]
|
2887
2951
|
#
|
2952
|
+
# @!attribute [rw] cookie_synchronization_configuration
|
2953
|
+
# The configuration that specifies which cookies should be
|
2954
|
+
# synchronized from the end user's local browser to the remote
|
2955
|
+
# browser.
|
2956
|
+
#
|
2957
|
+
# If the allowlist and blocklist are empty, the configuration becomes
|
2958
|
+
# null.
|
2959
|
+
# @return [Types::CookieSynchronizationConfiguration]
|
2960
|
+
#
|
2888
2961
|
# @!attribute [rw] copy_allowed
|
2889
2962
|
# Specifies whether the user can copy text from the streaming session
|
2890
2963
|
# to the local device.
|
@@ -2928,6 +3001,7 @@ module Aws::WorkSpacesWeb
|
|
2928
3001
|
#
|
2929
3002
|
class UpdateUserSettingsRequest < Struct.new(
|
2930
3003
|
:client_token,
|
3004
|
+
:cookie_synchronization_configuration,
|
2931
3005
|
:copy_allowed,
|
2932
3006
|
:disconnect_timeout_in_minutes,
|
2933
3007
|
:download_allowed,
|
@@ -2936,7 +3010,7 @@ module Aws::WorkSpacesWeb
|
|
2936
3010
|
:print_allowed,
|
2937
3011
|
:upload_allowed,
|
2938
3012
|
:user_settings_arn)
|
2939
|
-
SENSITIVE = []
|
3013
|
+
SENSITIVE = [:cookie_synchronization_configuration]
|
2940
3014
|
include Aws::Structure
|
2941
3015
|
end
|
2942
3016
|
|
@@ -3006,6 +3080,12 @@ module Aws::WorkSpacesWeb
|
|
3006
3080
|
# with.
|
3007
3081
|
# @return [Array<String>]
|
3008
3082
|
#
|
3083
|
+
# @!attribute [rw] cookie_synchronization_configuration
|
3084
|
+
# The configuration that specifies which cookies should be
|
3085
|
+
# synchronized from the end user's local browser to the remote
|
3086
|
+
# browser.
|
3087
|
+
# @return [Types::CookieSynchronizationConfiguration]
|
3088
|
+
#
|
3009
3089
|
# @!attribute [rw] copy_allowed
|
3010
3090
|
# Specifies whether the user can copy text from the streaming session
|
3011
3091
|
# to the local device.
|
@@ -3049,6 +3129,7 @@ module Aws::WorkSpacesWeb
|
|
3049
3129
|
#
|
3050
3130
|
class UserSettings < Struct.new(
|
3051
3131
|
:associated_portal_arns,
|
3132
|
+
:cookie_synchronization_configuration,
|
3052
3133
|
:copy_allowed,
|
3053
3134
|
:disconnect_timeout_in_minutes,
|
3054
3135
|
:download_allowed,
|
@@ -3057,12 +3138,18 @@ module Aws::WorkSpacesWeb
|
|
3057
3138
|
:print_allowed,
|
3058
3139
|
:upload_allowed,
|
3059
3140
|
:user_settings_arn)
|
3060
|
-
SENSITIVE = []
|
3141
|
+
SENSITIVE = [:cookie_synchronization_configuration]
|
3061
3142
|
include Aws::Structure
|
3062
3143
|
end
|
3063
3144
|
|
3064
3145
|
# The summary of user settings.
|
3065
3146
|
#
|
3147
|
+
# @!attribute [rw] cookie_synchronization_configuration
|
3148
|
+
# The configuration that specifies which cookies should be
|
3149
|
+
# synchronized from the end user's local browser to the remote
|
3150
|
+
# browser.
|
3151
|
+
# @return [Types::CookieSynchronizationConfiguration]
|
3152
|
+
#
|
3066
3153
|
# @!attribute [rw] copy_allowed
|
3067
3154
|
# Specifies whether the user can copy text from the streaming session
|
3068
3155
|
# to the local device.
|
@@ -3105,6 +3192,7 @@ module Aws::WorkSpacesWeb
|
|
3105
3192
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UserSettingsSummary AWS API Documentation
|
3106
3193
|
#
|
3107
3194
|
class UserSettingsSummary < Struct.new(
|
3195
|
+
:cookie_synchronization_configuration,
|
3108
3196
|
:copy_allowed,
|
3109
3197
|
:disconnect_timeout_in_minutes,
|
3110
3198
|
:download_allowed,
|
@@ -3113,7 +3201,7 @@ module Aws::WorkSpacesWeb
|
|
3113
3201
|
:print_allowed,
|
3114
3202
|
:upload_allowed,
|
3115
3203
|
:user_settings_arn)
|
3116
|
-
SENSITIVE = []
|
3204
|
+
SENSITIVE = [:cookie_synchronization_configuration]
|
3117
3205
|
include Aws::Structure
|
3118
3206
|
end
|
3119
3207
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-workspacesweb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.14.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-08-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|