aws-sdk-workspacesweb 1.52.0 → 1.54.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-workspacesweb/client.rb +144 -1
- data/lib/aws-sdk-workspacesweb/client_api.rb +90 -0
- data/lib/aws-sdk-workspacesweb/types.rb +344 -4
- data/lib/aws-sdk-workspacesweb.rb +1 -1
- data/sig/client.rbs +56 -2
- data/sig/types.rbs +85 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 02a1d3613f05cb7217c2a77b9c706a3de736afc920847266b25679eab6cd569a
|
|
4
|
+
data.tar.gz: 43e335b223f147bd7c52a053f511b259b7f7a3d9f9a3deca4fa104209e2267c9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 415e8cbafdb504a82d16d7faf79f147aa605029298f87f98c45fb5f4c02e5ee0436da34333c057e216f14c1b0f38f4ada472f5c8b737c0fa10d13b31971d58e7
|
|
7
|
+
data.tar.gz: 62e1ca0b65ce57737143027b1bdbf9619aae13324b9cfe42ef4e57fa56a52c29722ecd811d9f0de8cbf3a7e20233feb62c9d5a17140da85704bdf47e3563d1eb
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.54.0 (2025-12-19)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Add support for WebAuthn under user settings.
|
|
8
|
+
|
|
9
|
+
1.53.0 (2025-12-12)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Adds support for portal branding customization, enabling administrators to personalize end-user portals with custom assets.
|
|
13
|
+
|
|
4
14
|
1.52.0 (2025-11-21)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.54.0
|
|
@@ -1627,6 +1627,16 @@ module Aws::WorkSpacesWeb
|
|
|
1627
1627
|
# sessions. If administrators do not modify these settings, end users
|
|
1628
1628
|
# retain control over their toolbar preferences.
|
|
1629
1629
|
#
|
|
1630
|
+
# @option params [Types::BrandingConfigurationCreateInput] :branding_configuration_input
|
|
1631
|
+
# The branding configuration input that customizes the appearance of the
|
|
1632
|
+
# web portal for end users. This includes a custom logo, favicon,
|
|
1633
|
+
# wallpaper, localized strings, color theme, and an optional terms of
|
|
1634
|
+
# service.
|
|
1635
|
+
#
|
|
1636
|
+
# @option params [String] :web_authn_allowed
|
|
1637
|
+
# Specifies whether the user can use WebAuthn redirection for
|
|
1638
|
+
# passwordless login to websites within the streaming session.
|
|
1639
|
+
#
|
|
1630
1640
|
# @return [Types::CreateUserSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1631
1641
|
#
|
|
1632
1642
|
# * {Types::CreateUserSettingsResponse#user_settings_arn #user_settings_arn} => String
|
|
@@ -1675,6 +1685,35 @@ module Aws::WorkSpacesWeb
|
|
|
1675
1685
|
# hidden_toolbar_items: ["Windows"], # accepts Windows, DualMonitor, FullScreen, Webcam, Microphone
|
|
1676
1686
|
# max_display_resolution: "size4096X2160", # accepts size4096X2160, size3840X2160, size3440X1440, size2560X1440, size1920X1080, size1280X720, size1024X768, size800X600
|
|
1677
1687
|
# },
|
|
1688
|
+
# branding_configuration_input: {
|
|
1689
|
+
# logo: { # required
|
|
1690
|
+
# blob: "data",
|
|
1691
|
+
# s3_uri: "S3Uri",
|
|
1692
|
+
# },
|
|
1693
|
+
# wallpaper: { # required
|
|
1694
|
+
# blob: "data",
|
|
1695
|
+
# s3_uri: "S3Uri",
|
|
1696
|
+
# },
|
|
1697
|
+
# favicon: { # required
|
|
1698
|
+
# blob: "data",
|
|
1699
|
+
# s3_uri: "S3Uri",
|
|
1700
|
+
# },
|
|
1701
|
+
# localized_strings: { # required
|
|
1702
|
+
# "de-DE" => {
|
|
1703
|
+
# browser_tab_title: "LocalizedBrandingStringsBrowserTabTitleString", # required
|
|
1704
|
+
# welcome_text: "LocalizedBrandingStringsWelcomeTextString", # required
|
|
1705
|
+
# login_title: "LocalizedBrandingStringsLoginTitleString",
|
|
1706
|
+
# login_description: "LocalizedBrandingStringsLoginDescriptionString",
|
|
1707
|
+
# login_button_text: "LocalizedBrandingStringsLoginButtonTextString",
|
|
1708
|
+
# contact_link: "ContactLinkUrl",
|
|
1709
|
+
# contact_button_text: "LocalizedBrandingStringsContactButtonTextString",
|
|
1710
|
+
# loading_text: "LocalizedBrandingStringsLoadingTextString",
|
|
1711
|
+
# },
|
|
1712
|
+
# },
|
|
1713
|
+
# color_theme: "Light", # required, accepts Light, Dark
|
|
1714
|
+
# terms_of_service: "Markdown",
|
|
1715
|
+
# },
|
|
1716
|
+
# web_authn_allowed: "Disabled", # accepts Disabled, Enabled
|
|
1678
1717
|
# })
|
|
1679
1718
|
#
|
|
1680
1719
|
# @example Response structure
|
|
@@ -2714,6 +2753,27 @@ module Aws::WorkSpacesWeb
|
|
|
2714
2753
|
# resp.user_settings.toolbar_configuration.hidden_toolbar_items #=> Array
|
|
2715
2754
|
# resp.user_settings.toolbar_configuration.hidden_toolbar_items[0] #=> String, one of "Windows", "DualMonitor", "FullScreen", "Webcam", "Microphone"
|
|
2716
2755
|
# resp.user_settings.toolbar_configuration.max_display_resolution #=> String, one of "size4096X2160", "size3840X2160", "size3440X1440", "size2560X1440", "size1920X1080", "size1280X720", "size1024X768", "size800X600"
|
|
2756
|
+
# resp.user_settings.branding_configuration.logo.mime_type #=> String, one of "image/png", "image/jpeg", "image/x-icon"
|
|
2757
|
+
# resp.user_settings.branding_configuration.logo.file_extension #=> String
|
|
2758
|
+
# resp.user_settings.branding_configuration.logo.last_upload_timestamp #=> Time
|
|
2759
|
+
# resp.user_settings.branding_configuration.wallpaper.mime_type #=> String, one of "image/png", "image/jpeg", "image/x-icon"
|
|
2760
|
+
# resp.user_settings.branding_configuration.wallpaper.file_extension #=> String
|
|
2761
|
+
# resp.user_settings.branding_configuration.wallpaper.last_upload_timestamp #=> Time
|
|
2762
|
+
# resp.user_settings.branding_configuration.favicon.mime_type #=> String, one of "image/png", "image/jpeg", "image/x-icon"
|
|
2763
|
+
# resp.user_settings.branding_configuration.favicon.file_extension #=> String
|
|
2764
|
+
# resp.user_settings.branding_configuration.favicon.last_upload_timestamp #=> Time
|
|
2765
|
+
# resp.user_settings.branding_configuration.localized_strings #=> Hash
|
|
2766
|
+
# resp.user_settings.branding_configuration.localized_strings["Locale"].browser_tab_title #=> String
|
|
2767
|
+
# resp.user_settings.branding_configuration.localized_strings["Locale"].welcome_text #=> String
|
|
2768
|
+
# resp.user_settings.branding_configuration.localized_strings["Locale"].login_title #=> String
|
|
2769
|
+
# resp.user_settings.branding_configuration.localized_strings["Locale"].login_description #=> String
|
|
2770
|
+
# resp.user_settings.branding_configuration.localized_strings["Locale"].login_button_text #=> String
|
|
2771
|
+
# resp.user_settings.branding_configuration.localized_strings["Locale"].contact_link #=> String
|
|
2772
|
+
# resp.user_settings.branding_configuration.localized_strings["Locale"].contact_button_text #=> String
|
|
2773
|
+
# resp.user_settings.branding_configuration.localized_strings["Locale"].loading_text #=> String
|
|
2774
|
+
# resp.user_settings.branding_configuration.color_theme #=> String, one of "Light", "Dark"
|
|
2775
|
+
# resp.user_settings.branding_configuration.terms_of_service #=> String
|
|
2776
|
+
# resp.user_settings.web_authn_allowed #=> String, one of "Disabled", "Enabled"
|
|
2717
2777
|
#
|
|
2718
2778
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/GetUserSettings AWS API Documentation
|
|
2719
2779
|
#
|
|
@@ -3366,6 +3426,27 @@ module Aws::WorkSpacesWeb
|
|
|
3366
3426
|
# resp.user_settings[0].toolbar_configuration.hidden_toolbar_items #=> Array
|
|
3367
3427
|
# resp.user_settings[0].toolbar_configuration.hidden_toolbar_items[0] #=> String, one of "Windows", "DualMonitor", "FullScreen", "Webcam", "Microphone"
|
|
3368
3428
|
# resp.user_settings[0].toolbar_configuration.max_display_resolution #=> String, one of "size4096X2160", "size3840X2160", "size3440X1440", "size2560X1440", "size1920X1080", "size1280X720", "size1024X768", "size800X600"
|
|
3429
|
+
# resp.user_settings[0].branding_configuration.logo.mime_type #=> String, one of "image/png", "image/jpeg", "image/x-icon"
|
|
3430
|
+
# resp.user_settings[0].branding_configuration.logo.file_extension #=> String
|
|
3431
|
+
# resp.user_settings[0].branding_configuration.logo.last_upload_timestamp #=> Time
|
|
3432
|
+
# resp.user_settings[0].branding_configuration.wallpaper.mime_type #=> String, one of "image/png", "image/jpeg", "image/x-icon"
|
|
3433
|
+
# resp.user_settings[0].branding_configuration.wallpaper.file_extension #=> String
|
|
3434
|
+
# resp.user_settings[0].branding_configuration.wallpaper.last_upload_timestamp #=> Time
|
|
3435
|
+
# resp.user_settings[0].branding_configuration.favicon.mime_type #=> String, one of "image/png", "image/jpeg", "image/x-icon"
|
|
3436
|
+
# resp.user_settings[0].branding_configuration.favicon.file_extension #=> String
|
|
3437
|
+
# resp.user_settings[0].branding_configuration.favicon.last_upload_timestamp #=> Time
|
|
3438
|
+
# resp.user_settings[0].branding_configuration.localized_strings #=> Hash
|
|
3439
|
+
# resp.user_settings[0].branding_configuration.localized_strings["Locale"].browser_tab_title #=> String
|
|
3440
|
+
# resp.user_settings[0].branding_configuration.localized_strings["Locale"].welcome_text #=> String
|
|
3441
|
+
# resp.user_settings[0].branding_configuration.localized_strings["Locale"].login_title #=> String
|
|
3442
|
+
# resp.user_settings[0].branding_configuration.localized_strings["Locale"].login_description #=> String
|
|
3443
|
+
# resp.user_settings[0].branding_configuration.localized_strings["Locale"].login_button_text #=> String
|
|
3444
|
+
# resp.user_settings[0].branding_configuration.localized_strings["Locale"].contact_link #=> String
|
|
3445
|
+
# resp.user_settings[0].branding_configuration.localized_strings["Locale"].contact_button_text #=> String
|
|
3446
|
+
# resp.user_settings[0].branding_configuration.localized_strings["Locale"].loading_text #=> String
|
|
3447
|
+
# resp.user_settings[0].branding_configuration.color_theme #=> String, one of "Light", "Dark"
|
|
3448
|
+
# resp.user_settings[0].branding_configuration.terms_of_service #=> String
|
|
3449
|
+
# resp.user_settings[0].web_authn_allowed #=> String, one of "Disabled", "Enabled"
|
|
3369
3450
|
# resp.next_token #=> String
|
|
3370
3451
|
#
|
|
3371
3452
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ListUserSettings AWS API Documentation
|
|
@@ -4271,6 +4352,18 @@ module Aws::WorkSpacesWeb
|
|
|
4271
4352
|
# sessions. If administrators do not modify these settings, end users
|
|
4272
4353
|
# retain control over their toolbar preferences.
|
|
4273
4354
|
#
|
|
4355
|
+
# @option params [Types::BrandingConfigurationUpdateInput] :branding_configuration_input
|
|
4356
|
+
# The branding configuration that customizes the appearance of the web
|
|
4357
|
+
# portal for end users. When updating user settings without an existing
|
|
4358
|
+
# branding configuration, all fields (logo, favicon, wallpaper,
|
|
4359
|
+
# localized strings, and color theme) are required except for terms of
|
|
4360
|
+
# service. When updating user settings with an existing branding
|
|
4361
|
+
# configuration, all fields are optional.
|
|
4362
|
+
#
|
|
4363
|
+
# @option params [String] :web_authn_allowed
|
|
4364
|
+
# Specifies whether the user can use WebAuthn redirection for
|
|
4365
|
+
# passwordless login to websites within the streaming session.
|
|
4366
|
+
#
|
|
4274
4367
|
# @return [Types::UpdateUserSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4275
4368
|
#
|
|
4276
4369
|
# * {Types::UpdateUserSettingsResponse#user_settings #user_settings} => Types::UserSettings
|
|
@@ -4310,6 +4403,35 @@ module Aws::WorkSpacesWeb
|
|
|
4310
4403
|
# hidden_toolbar_items: ["Windows"], # accepts Windows, DualMonitor, FullScreen, Webcam, Microphone
|
|
4311
4404
|
# max_display_resolution: "size4096X2160", # accepts size4096X2160, size3840X2160, size3440X1440, size2560X1440, size1920X1080, size1280X720, size1024X768, size800X600
|
|
4312
4405
|
# },
|
|
4406
|
+
# branding_configuration_input: {
|
|
4407
|
+
# logo: {
|
|
4408
|
+
# blob: "data",
|
|
4409
|
+
# s3_uri: "S3Uri",
|
|
4410
|
+
# },
|
|
4411
|
+
# wallpaper: {
|
|
4412
|
+
# blob: "data",
|
|
4413
|
+
# s3_uri: "S3Uri",
|
|
4414
|
+
# },
|
|
4415
|
+
# favicon: {
|
|
4416
|
+
# blob: "data",
|
|
4417
|
+
# s3_uri: "S3Uri",
|
|
4418
|
+
# },
|
|
4419
|
+
# localized_strings: {
|
|
4420
|
+
# "de-DE" => {
|
|
4421
|
+
# browser_tab_title: "LocalizedBrandingStringsBrowserTabTitleString", # required
|
|
4422
|
+
# welcome_text: "LocalizedBrandingStringsWelcomeTextString", # required
|
|
4423
|
+
# login_title: "LocalizedBrandingStringsLoginTitleString",
|
|
4424
|
+
# login_description: "LocalizedBrandingStringsLoginDescriptionString",
|
|
4425
|
+
# login_button_text: "LocalizedBrandingStringsLoginButtonTextString",
|
|
4426
|
+
# contact_link: "ContactLinkUrl",
|
|
4427
|
+
# contact_button_text: "LocalizedBrandingStringsContactButtonTextString",
|
|
4428
|
+
# loading_text: "LocalizedBrandingStringsLoadingTextString",
|
|
4429
|
+
# },
|
|
4430
|
+
# },
|
|
4431
|
+
# color_theme: "Light", # accepts Light, Dark
|
|
4432
|
+
# terms_of_service: "Markdown",
|
|
4433
|
+
# },
|
|
4434
|
+
# web_authn_allowed: "Disabled", # accepts Disabled, Enabled
|
|
4313
4435
|
# })
|
|
4314
4436
|
#
|
|
4315
4437
|
# @example Response structure
|
|
@@ -4341,6 +4463,27 @@ module Aws::WorkSpacesWeb
|
|
|
4341
4463
|
# resp.user_settings.toolbar_configuration.hidden_toolbar_items #=> Array
|
|
4342
4464
|
# resp.user_settings.toolbar_configuration.hidden_toolbar_items[0] #=> String, one of "Windows", "DualMonitor", "FullScreen", "Webcam", "Microphone"
|
|
4343
4465
|
# resp.user_settings.toolbar_configuration.max_display_resolution #=> String, one of "size4096X2160", "size3840X2160", "size3440X1440", "size2560X1440", "size1920X1080", "size1280X720", "size1024X768", "size800X600"
|
|
4466
|
+
# resp.user_settings.branding_configuration.logo.mime_type #=> String, one of "image/png", "image/jpeg", "image/x-icon"
|
|
4467
|
+
# resp.user_settings.branding_configuration.logo.file_extension #=> String
|
|
4468
|
+
# resp.user_settings.branding_configuration.logo.last_upload_timestamp #=> Time
|
|
4469
|
+
# resp.user_settings.branding_configuration.wallpaper.mime_type #=> String, one of "image/png", "image/jpeg", "image/x-icon"
|
|
4470
|
+
# resp.user_settings.branding_configuration.wallpaper.file_extension #=> String
|
|
4471
|
+
# resp.user_settings.branding_configuration.wallpaper.last_upload_timestamp #=> Time
|
|
4472
|
+
# resp.user_settings.branding_configuration.favicon.mime_type #=> String, one of "image/png", "image/jpeg", "image/x-icon"
|
|
4473
|
+
# resp.user_settings.branding_configuration.favicon.file_extension #=> String
|
|
4474
|
+
# resp.user_settings.branding_configuration.favicon.last_upload_timestamp #=> Time
|
|
4475
|
+
# resp.user_settings.branding_configuration.localized_strings #=> Hash
|
|
4476
|
+
# resp.user_settings.branding_configuration.localized_strings["Locale"].browser_tab_title #=> String
|
|
4477
|
+
# resp.user_settings.branding_configuration.localized_strings["Locale"].welcome_text #=> String
|
|
4478
|
+
# resp.user_settings.branding_configuration.localized_strings["Locale"].login_title #=> String
|
|
4479
|
+
# resp.user_settings.branding_configuration.localized_strings["Locale"].login_description #=> String
|
|
4480
|
+
# resp.user_settings.branding_configuration.localized_strings["Locale"].login_button_text #=> String
|
|
4481
|
+
# resp.user_settings.branding_configuration.localized_strings["Locale"].contact_link #=> String
|
|
4482
|
+
# resp.user_settings.branding_configuration.localized_strings["Locale"].contact_button_text #=> String
|
|
4483
|
+
# resp.user_settings.branding_configuration.localized_strings["Locale"].loading_text #=> String
|
|
4484
|
+
# resp.user_settings.branding_configuration.color_theme #=> String, one of "Light", "Dark"
|
|
4485
|
+
# resp.user_settings.branding_configuration.terms_of_service #=> String
|
|
4486
|
+
# resp.user_settings.web_authn_allowed #=> String, one of "Disabled", "Enabled"
|
|
4344
4487
|
#
|
|
4345
4488
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UpdateUserSettings AWS API Documentation
|
|
4346
4489
|
#
|
|
@@ -4369,7 +4512,7 @@ module Aws::WorkSpacesWeb
|
|
|
4369
4512
|
tracer: tracer
|
|
4370
4513
|
)
|
|
4371
4514
|
context[:gem_name] = 'aws-sdk-workspacesweb'
|
|
4372
|
-
context[:gem_version] = '1.
|
|
4515
|
+
context[:gem_version] = '1.54.0'
|
|
4373
4516
|
Seahorse::Client::Request.new(handlers, context)
|
|
4374
4517
|
end
|
|
4375
4518
|
|
|
@@ -35,6 +35,9 @@ module Aws::WorkSpacesWeb
|
|
|
35
35
|
AssociateUserSettingsResponse = Shapes::StructureShape.new(name: 'AssociateUserSettingsResponse')
|
|
36
36
|
AuthenticationType = Shapes::StringShape.new(name: 'AuthenticationType')
|
|
37
37
|
BlockedCategories = Shapes::ListShape.new(name: 'BlockedCategories')
|
|
38
|
+
BrandingConfiguration = Shapes::StructureShape.new(name: 'BrandingConfiguration')
|
|
39
|
+
BrandingConfigurationCreateInput = Shapes::StructureShape.new(name: 'BrandingConfigurationCreateInput')
|
|
40
|
+
BrandingConfigurationUpdateInput = Shapes::StructureShape.new(name: 'BrandingConfigurationUpdateInput')
|
|
38
41
|
BrowserPolicy = Shapes::StringShape.new(name: 'BrowserPolicy')
|
|
39
42
|
BrowserSettings = Shapes::StructureShape.new(name: 'BrowserSettings')
|
|
40
43
|
BrowserSettingsList = Shapes::ListShape.new(name: 'BrowserSettingsList')
|
|
@@ -51,8 +54,10 @@ module Aws::WorkSpacesWeb
|
|
|
51
54
|
CertificateThumbprint = Shapes::StringShape.new(name: 'CertificateThumbprint')
|
|
52
55
|
CertificateThumbprintList = Shapes::ListShape.new(name: 'CertificateThumbprintList')
|
|
53
56
|
ClientToken = Shapes::StringShape.new(name: 'ClientToken')
|
|
57
|
+
ColorTheme = Shapes::StringShape.new(name: 'ColorTheme')
|
|
54
58
|
ConfidenceLevel = Shapes::IntegerShape.new(name: 'ConfidenceLevel')
|
|
55
59
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
|
60
|
+
ContactLinkUrl = Shapes::StringShape.new(name: 'ContactLinkUrl')
|
|
56
61
|
CookieDomain = Shapes::StringShape.new(name: 'CookieDomain')
|
|
57
62
|
CookieName = Shapes::StringShape.new(name: 'CookieName')
|
|
58
63
|
CookiePath = Shapes::StringShape.new(name: 'CookiePath')
|
|
@@ -162,6 +167,8 @@ module Aws::WorkSpacesWeb
|
|
|
162
167
|
GetUserSettingsResponse = Shapes::StructureShape.new(name: 'GetUserSettingsResponse')
|
|
163
168
|
GlobalInlineRedactionUrls = Shapes::ListShape.new(name: 'GlobalInlineRedactionUrls')
|
|
164
169
|
HiddenToolbarItemList = Shapes::ListShape.new(name: 'HiddenToolbarItemList')
|
|
170
|
+
IconImage = Shapes::BlobShape.new(name: 'IconImage')
|
|
171
|
+
IconImageInput = Shapes::UnionShape.new(name: 'IconImageInput')
|
|
165
172
|
IdentityProvider = Shapes::StructureShape.new(name: 'IdentityProvider')
|
|
166
173
|
IdentityProviderDetails = Shapes::MapShape.new(name: 'IdentityProviderDetails')
|
|
167
174
|
IdentityProviderList = Shapes::ListShape.new(name: 'IdentityProviderList')
|
|
@@ -169,6 +176,7 @@ module Aws::WorkSpacesWeb
|
|
|
169
176
|
IdentityProviderSummary = Shapes::StructureShape.new(name: 'IdentityProviderSummary')
|
|
170
177
|
IdentityProviderType = Shapes::StringShape.new(name: 'IdentityProviderType')
|
|
171
178
|
IdleDisconnectTimeoutInMinutes = Shapes::IntegerShape.new(name: 'IdleDisconnectTimeoutInMinutes')
|
|
179
|
+
ImageMetadata = Shapes::StructureShape.new(name: 'ImageMetadata')
|
|
172
180
|
InlineRedactionConfiguration = Shapes::StructureShape.new(name: 'InlineRedactionConfiguration')
|
|
173
181
|
InlineRedactionPattern = Shapes::StructureShape.new(name: 'InlineRedactionPattern')
|
|
174
182
|
InlineRedactionPatterns = Shapes::ListShape.new(name: 'InlineRedactionPatterns')
|
|
@@ -211,11 +219,23 @@ module Aws::WorkSpacesWeb
|
|
|
211
219
|
ListUserAccessLoggingSettingsResponse = Shapes::StructureShape.new(name: 'ListUserAccessLoggingSettingsResponse')
|
|
212
220
|
ListUserSettingsRequest = Shapes::StructureShape.new(name: 'ListUserSettingsRequest')
|
|
213
221
|
ListUserSettingsResponse = Shapes::StructureShape.new(name: 'ListUserSettingsResponse')
|
|
222
|
+
Locale = Shapes::StringShape.new(name: 'Locale')
|
|
223
|
+
LocalizedBrandingStringMap = Shapes::MapShape.new(name: 'LocalizedBrandingStringMap')
|
|
224
|
+
LocalizedBrandingStrings = Shapes::StructureShape.new(name: 'LocalizedBrandingStrings')
|
|
225
|
+
LocalizedBrandingStringsBrowserTabTitleString = Shapes::StringShape.new(name: 'LocalizedBrandingStringsBrowserTabTitleString')
|
|
226
|
+
LocalizedBrandingStringsContactButtonTextString = Shapes::StringShape.new(name: 'LocalizedBrandingStringsContactButtonTextString')
|
|
227
|
+
LocalizedBrandingStringsLoadingTextString = Shapes::StringShape.new(name: 'LocalizedBrandingStringsLoadingTextString')
|
|
228
|
+
LocalizedBrandingStringsLoginButtonTextString = Shapes::StringShape.new(name: 'LocalizedBrandingStringsLoginButtonTextString')
|
|
229
|
+
LocalizedBrandingStringsLoginDescriptionString = Shapes::StringShape.new(name: 'LocalizedBrandingStringsLoginDescriptionString')
|
|
230
|
+
LocalizedBrandingStringsLoginTitleString = Shapes::StringShape.new(name: 'LocalizedBrandingStringsLoginTitleString')
|
|
231
|
+
LocalizedBrandingStringsWelcomeTextString = Shapes::StringShape.new(name: 'LocalizedBrandingStringsWelcomeTextString')
|
|
214
232
|
LogConfiguration = Shapes::StructureShape.new(name: 'LogConfiguration')
|
|
215
233
|
LogFileFormat = Shapes::StringShape.new(name: 'LogFileFormat')
|
|
234
|
+
Markdown = Shapes::StringShape.new(name: 'Markdown')
|
|
216
235
|
MaxConcurrentSessions = Shapes::IntegerShape.new(name: 'MaxConcurrentSessions')
|
|
217
236
|
MaxDisplayResolution = Shapes::StringShape.new(name: 'MaxDisplayResolution')
|
|
218
237
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
|
238
|
+
MimeType = Shapes::StringShape.new(name: 'MimeType')
|
|
219
239
|
NetworkSettings = Shapes::StructureShape.new(name: 'NetworkSettings')
|
|
220
240
|
NetworkSettingsList = Shapes::ListShape.new(name: 'NetworkSettingsList')
|
|
221
241
|
NetworkSettingsSummary = Shapes::StructureShape.new(name: 'NetworkSettingsSummary')
|
|
@@ -241,6 +261,7 @@ module Aws::WorkSpacesWeb
|
|
|
241
261
|
S3BucketOwner = Shapes::StringShape.new(name: 'S3BucketOwner')
|
|
242
262
|
S3KeyPrefix = Shapes::StringShape.new(name: 'S3KeyPrefix')
|
|
243
263
|
S3LogConfiguration = Shapes::StructureShape.new(name: 'S3LogConfiguration')
|
|
264
|
+
S3Uri = Shapes::StringShape.new(name: 'S3Uri')
|
|
244
265
|
SamlMetadata = Shapes::StringShape.new(name: 'SamlMetadata')
|
|
245
266
|
SecurityGroupId = Shapes::StringShape.new(name: 'SecurityGroupId')
|
|
246
267
|
SecurityGroupIdList = Shapes::ListShape.new(name: 'SecurityGroupIdList')
|
|
@@ -315,6 +336,8 @@ module Aws::WorkSpacesWeb
|
|
|
315
336
|
ValidationExceptionReason = Shapes::StringShape.new(name: 'ValidationExceptionReason')
|
|
316
337
|
VisualMode = Shapes::StringShape.new(name: 'VisualMode')
|
|
317
338
|
VpcId = Shapes::StringShape.new(name: 'VpcId')
|
|
339
|
+
WallpaperImage = Shapes::BlobShape.new(name: 'WallpaperImage')
|
|
340
|
+
WallpaperImageInput = Shapes::UnionShape.new(name: 'WallpaperImageInput')
|
|
318
341
|
WebContentFilteringPolicy = Shapes::StructureShape.new(name: 'WebContentFilteringPolicy')
|
|
319
342
|
keyArn = Shapes::StringShape.new(name: 'keyArn')
|
|
320
343
|
|
|
@@ -389,6 +412,30 @@ module Aws::WorkSpacesWeb
|
|
|
389
412
|
|
|
390
413
|
BlockedCategories.member = Shapes::ShapeRef.new(shape: Category)
|
|
391
414
|
|
|
415
|
+
BrandingConfiguration.add_member(:logo, Shapes::ShapeRef.new(shape: ImageMetadata, required: true, location_name: "logo"))
|
|
416
|
+
BrandingConfiguration.add_member(:wallpaper, Shapes::ShapeRef.new(shape: ImageMetadata, required: true, location_name: "wallpaper"))
|
|
417
|
+
BrandingConfiguration.add_member(:favicon, Shapes::ShapeRef.new(shape: ImageMetadata, required: true, location_name: "favicon"))
|
|
418
|
+
BrandingConfiguration.add_member(:localized_strings, Shapes::ShapeRef.new(shape: LocalizedBrandingStringMap, required: true, location_name: "localizedStrings"))
|
|
419
|
+
BrandingConfiguration.add_member(:color_theme, Shapes::ShapeRef.new(shape: ColorTheme, required: true, location_name: "colorTheme"))
|
|
420
|
+
BrandingConfiguration.add_member(:terms_of_service, Shapes::ShapeRef.new(shape: Markdown, location_name: "termsOfService"))
|
|
421
|
+
BrandingConfiguration.struct_class = Types::BrandingConfiguration
|
|
422
|
+
|
|
423
|
+
BrandingConfigurationCreateInput.add_member(:logo, Shapes::ShapeRef.new(shape: IconImageInput, required: true, location_name: "logo"))
|
|
424
|
+
BrandingConfigurationCreateInput.add_member(:wallpaper, Shapes::ShapeRef.new(shape: WallpaperImageInput, required: true, location_name: "wallpaper"))
|
|
425
|
+
BrandingConfigurationCreateInput.add_member(:favicon, Shapes::ShapeRef.new(shape: IconImageInput, required: true, location_name: "favicon"))
|
|
426
|
+
BrandingConfigurationCreateInput.add_member(:localized_strings, Shapes::ShapeRef.new(shape: LocalizedBrandingStringMap, required: true, location_name: "localizedStrings"))
|
|
427
|
+
BrandingConfigurationCreateInput.add_member(:color_theme, Shapes::ShapeRef.new(shape: ColorTheme, required: true, location_name: "colorTheme"))
|
|
428
|
+
BrandingConfigurationCreateInput.add_member(:terms_of_service, Shapes::ShapeRef.new(shape: Markdown, location_name: "termsOfService"))
|
|
429
|
+
BrandingConfigurationCreateInput.struct_class = Types::BrandingConfigurationCreateInput
|
|
430
|
+
|
|
431
|
+
BrandingConfigurationUpdateInput.add_member(:logo, Shapes::ShapeRef.new(shape: IconImageInput, location_name: "logo"))
|
|
432
|
+
BrandingConfigurationUpdateInput.add_member(:wallpaper, Shapes::ShapeRef.new(shape: WallpaperImageInput, location_name: "wallpaper"))
|
|
433
|
+
BrandingConfigurationUpdateInput.add_member(:favicon, Shapes::ShapeRef.new(shape: IconImageInput, location_name: "favicon"))
|
|
434
|
+
BrandingConfigurationUpdateInput.add_member(:localized_strings, Shapes::ShapeRef.new(shape: LocalizedBrandingStringMap, location_name: "localizedStrings"))
|
|
435
|
+
BrandingConfigurationUpdateInput.add_member(:color_theme, Shapes::ShapeRef.new(shape: ColorTheme, location_name: "colorTheme"))
|
|
436
|
+
BrandingConfigurationUpdateInput.add_member(:terms_of_service, Shapes::ShapeRef.new(shape: Markdown, location_name: "termsOfService"))
|
|
437
|
+
BrandingConfigurationUpdateInput.struct_class = Types::BrandingConfigurationUpdateInput
|
|
438
|
+
|
|
392
439
|
BrowserSettings.add_member(:browser_settings_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "browserSettingsArn"))
|
|
393
440
|
BrowserSettings.add_member(:associated_portal_arns, Shapes::ShapeRef.new(shape: ArnList, location_name: "associatedPortalArns"))
|
|
394
441
|
BrowserSettings.add_member(:browser_policy, Shapes::ShapeRef.new(shape: BrowserPolicy, location_name: "browserPolicy"))
|
|
@@ -551,6 +598,8 @@ module Aws::WorkSpacesWeb
|
|
|
551
598
|
CreateUserSettingsRequest.add_member(:additional_encryption_context, Shapes::ShapeRef.new(shape: EncryptionContextMap, location_name: "additionalEncryptionContext"))
|
|
552
599
|
CreateUserSettingsRequest.add_member(:deep_link_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "deepLinkAllowed"))
|
|
553
600
|
CreateUserSettingsRequest.add_member(:toolbar_configuration, Shapes::ShapeRef.new(shape: ToolbarConfiguration, location_name: "toolbarConfiguration"))
|
|
601
|
+
CreateUserSettingsRequest.add_member(:branding_configuration_input, Shapes::ShapeRef.new(shape: BrandingConfigurationCreateInput, location_name: "brandingConfigurationInput"))
|
|
602
|
+
CreateUserSettingsRequest.add_member(:web_authn_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "webAuthnAllowed"))
|
|
554
603
|
CreateUserSettingsRequest.struct_class = Types::CreateUserSettingsRequest
|
|
555
604
|
|
|
556
605
|
CreateUserSettingsResponse.add_member(:user_settings_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "userSettingsArn"))
|
|
@@ -775,6 +824,14 @@ module Aws::WorkSpacesWeb
|
|
|
775
824
|
|
|
776
825
|
HiddenToolbarItemList.member = Shapes::ShapeRef.new(shape: ToolbarItem)
|
|
777
826
|
|
|
827
|
+
IconImageInput.add_member(:blob, Shapes::ShapeRef.new(shape: IconImage, location_name: "blob"))
|
|
828
|
+
IconImageInput.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3Uri, location_name: "s3Uri"))
|
|
829
|
+
IconImageInput.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
830
|
+
IconImageInput.add_member_subclass(:blob, Types::IconImageInput::Blob)
|
|
831
|
+
IconImageInput.add_member_subclass(:s3_uri, Types::IconImageInput::S3Uri)
|
|
832
|
+
IconImageInput.add_member_subclass(:unknown, Types::IconImageInput::Unknown)
|
|
833
|
+
IconImageInput.struct_class = Types::IconImageInput
|
|
834
|
+
|
|
778
835
|
IdentityProvider.add_member(:identity_provider_arn, Shapes::ShapeRef.new(shape: SubresourceARN, required: true, location_name: "identityProviderArn"))
|
|
779
836
|
IdentityProvider.add_member(:identity_provider_name, Shapes::ShapeRef.new(shape: IdentityProviderName, location_name: "identityProviderName"))
|
|
780
837
|
IdentityProvider.add_member(:identity_provider_type, Shapes::ShapeRef.new(shape: IdentityProviderType, location_name: "identityProviderType"))
|
|
@@ -791,6 +848,11 @@ module Aws::WorkSpacesWeb
|
|
|
791
848
|
IdentityProviderSummary.add_member(:identity_provider_type, Shapes::ShapeRef.new(shape: IdentityProviderType, location_name: "identityProviderType"))
|
|
792
849
|
IdentityProviderSummary.struct_class = Types::IdentityProviderSummary
|
|
793
850
|
|
|
851
|
+
ImageMetadata.add_member(:mime_type, Shapes::ShapeRef.new(shape: MimeType, required: true, location_name: "mimeType"))
|
|
852
|
+
ImageMetadata.add_member(:file_extension, Shapes::ShapeRef.new(shape: StringType, required: true, location_name: "fileExtension"))
|
|
853
|
+
ImageMetadata.add_member(:last_upload_timestamp, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "lastUploadTimestamp"))
|
|
854
|
+
ImageMetadata.struct_class = Types::ImageMetadata
|
|
855
|
+
|
|
794
856
|
InlineRedactionConfiguration.add_member(:inline_redaction_patterns, Shapes::ShapeRef.new(shape: InlineRedactionPatterns, required: true, location_name: "inlineRedactionPatterns"))
|
|
795
857
|
InlineRedactionConfiguration.add_member(:global_enforced_urls, Shapes::ShapeRef.new(shape: GlobalInlineRedactionUrls, location_name: "globalEnforcedUrls"))
|
|
796
858
|
InlineRedactionConfiguration.add_member(:global_exempt_urls, Shapes::ShapeRef.new(shape: GlobalInlineRedactionUrls, location_name: "globalExemptUrls"))
|
|
@@ -949,6 +1011,19 @@ module Aws::WorkSpacesWeb
|
|
|
949
1011
|
ListUserSettingsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
|
950
1012
|
ListUserSettingsResponse.struct_class = Types::ListUserSettingsResponse
|
|
951
1013
|
|
|
1014
|
+
LocalizedBrandingStringMap.key = Shapes::ShapeRef.new(shape: Locale)
|
|
1015
|
+
LocalizedBrandingStringMap.value = Shapes::ShapeRef.new(shape: LocalizedBrandingStrings)
|
|
1016
|
+
|
|
1017
|
+
LocalizedBrandingStrings.add_member(:browser_tab_title, Shapes::ShapeRef.new(shape: LocalizedBrandingStringsBrowserTabTitleString, required: true, location_name: "browserTabTitle"))
|
|
1018
|
+
LocalizedBrandingStrings.add_member(:welcome_text, Shapes::ShapeRef.new(shape: LocalizedBrandingStringsWelcomeTextString, required: true, location_name: "welcomeText"))
|
|
1019
|
+
LocalizedBrandingStrings.add_member(:login_title, Shapes::ShapeRef.new(shape: LocalizedBrandingStringsLoginTitleString, location_name: "loginTitle"))
|
|
1020
|
+
LocalizedBrandingStrings.add_member(:login_description, Shapes::ShapeRef.new(shape: LocalizedBrandingStringsLoginDescriptionString, location_name: "loginDescription"))
|
|
1021
|
+
LocalizedBrandingStrings.add_member(:login_button_text, Shapes::ShapeRef.new(shape: LocalizedBrandingStringsLoginButtonTextString, location_name: "loginButtonText"))
|
|
1022
|
+
LocalizedBrandingStrings.add_member(:contact_link, Shapes::ShapeRef.new(shape: ContactLinkUrl, location_name: "contactLink"))
|
|
1023
|
+
LocalizedBrandingStrings.add_member(:contact_button_text, Shapes::ShapeRef.new(shape: LocalizedBrandingStringsContactButtonTextString, location_name: "contactButtonText"))
|
|
1024
|
+
LocalizedBrandingStrings.add_member(:loading_text, Shapes::ShapeRef.new(shape: LocalizedBrandingStringsLoadingTextString, location_name: "loadingText"))
|
|
1025
|
+
LocalizedBrandingStrings.struct_class = Types::LocalizedBrandingStrings
|
|
1026
|
+
|
|
952
1027
|
LogConfiguration.add_member(:s3, Shapes::ShapeRef.new(shape: S3LogConfiguration, location_name: "s3"))
|
|
953
1028
|
LogConfiguration.struct_class = Types::LogConfiguration
|
|
954
1029
|
|
|
@@ -1219,6 +1294,8 @@ module Aws::WorkSpacesWeb
|
|
|
1219
1294
|
UpdateUserSettingsRequest.add_member(:cookie_synchronization_configuration, Shapes::ShapeRef.new(shape: CookieSynchronizationConfiguration, location_name: "cookieSynchronizationConfiguration"))
|
|
1220
1295
|
UpdateUserSettingsRequest.add_member(:deep_link_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "deepLinkAllowed"))
|
|
1221
1296
|
UpdateUserSettingsRequest.add_member(:toolbar_configuration, Shapes::ShapeRef.new(shape: ToolbarConfiguration, location_name: "toolbarConfiguration"))
|
|
1297
|
+
UpdateUserSettingsRequest.add_member(:branding_configuration_input, Shapes::ShapeRef.new(shape: BrandingConfigurationUpdateInput, location_name: "brandingConfigurationInput"))
|
|
1298
|
+
UpdateUserSettingsRequest.add_member(:web_authn_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "webAuthnAllowed"))
|
|
1222
1299
|
UpdateUserSettingsRequest.struct_class = Types::UpdateUserSettingsRequest
|
|
1223
1300
|
|
|
1224
1301
|
UpdateUserSettingsResponse.add_member(:user_settings, Shapes::ShapeRef.new(shape: UserSettings, required: true, location_name: "userSettings"))
|
|
@@ -1251,6 +1328,8 @@ module Aws::WorkSpacesWeb
|
|
|
1251
1328
|
UserSettings.add_member(:additional_encryption_context, Shapes::ShapeRef.new(shape: EncryptionContextMap, location_name: "additionalEncryptionContext"))
|
|
1252
1329
|
UserSettings.add_member(:deep_link_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "deepLinkAllowed"))
|
|
1253
1330
|
UserSettings.add_member(:toolbar_configuration, Shapes::ShapeRef.new(shape: ToolbarConfiguration, location_name: "toolbarConfiguration"))
|
|
1331
|
+
UserSettings.add_member(:branding_configuration, Shapes::ShapeRef.new(shape: BrandingConfiguration, location_name: "brandingConfiguration"))
|
|
1332
|
+
UserSettings.add_member(:web_authn_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "webAuthnAllowed"))
|
|
1254
1333
|
UserSettings.struct_class = Types::UserSettings
|
|
1255
1334
|
|
|
1256
1335
|
UserSettingsList.member = Shapes::ShapeRef.new(shape: UserSettingsSummary)
|
|
@@ -1266,6 +1345,8 @@ module Aws::WorkSpacesWeb
|
|
|
1266
1345
|
UserSettingsSummary.add_member(:cookie_synchronization_configuration, Shapes::ShapeRef.new(shape: CookieSynchronizationConfiguration, location_name: "cookieSynchronizationConfiguration"))
|
|
1267
1346
|
UserSettingsSummary.add_member(:deep_link_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "deepLinkAllowed"))
|
|
1268
1347
|
UserSettingsSummary.add_member(:toolbar_configuration, Shapes::ShapeRef.new(shape: ToolbarConfiguration, location_name: "toolbarConfiguration"))
|
|
1348
|
+
UserSettingsSummary.add_member(:branding_configuration, Shapes::ShapeRef.new(shape: BrandingConfiguration, location_name: "brandingConfiguration"))
|
|
1349
|
+
UserSettingsSummary.add_member(:web_authn_allowed, Shapes::ShapeRef.new(shape: EnabledType, location_name: "webAuthnAllowed"))
|
|
1269
1350
|
UserSettingsSummary.struct_class = Types::UserSettingsSummary
|
|
1270
1351
|
|
|
1271
1352
|
ValidationException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "message"))
|
|
@@ -1279,6 +1360,14 @@ module Aws::WorkSpacesWeb
|
|
|
1279
1360
|
|
|
1280
1361
|
ValidationExceptionFieldList.member = Shapes::ShapeRef.new(shape: ValidationExceptionField)
|
|
1281
1362
|
|
|
1363
|
+
WallpaperImageInput.add_member(:blob, Shapes::ShapeRef.new(shape: WallpaperImage, location_name: "blob"))
|
|
1364
|
+
WallpaperImageInput.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3Uri, location_name: "s3Uri"))
|
|
1365
|
+
WallpaperImageInput.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
1366
|
+
WallpaperImageInput.add_member_subclass(:blob, Types::WallpaperImageInput::Blob)
|
|
1367
|
+
WallpaperImageInput.add_member_subclass(:s3_uri, Types::WallpaperImageInput::S3Uri)
|
|
1368
|
+
WallpaperImageInput.add_member_subclass(:unknown, Types::WallpaperImageInput::Unknown)
|
|
1369
|
+
WallpaperImageInput.struct_class = Types::WallpaperImageInput
|
|
1370
|
+
|
|
1282
1371
|
WebContentFilteringPolicy.add_member(:blocked_categories, Shapes::ShapeRef.new(shape: BlockedCategories, location_name: "blockedCategories"))
|
|
1283
1372
|
WebContentFilteringPolicy.add_member(:allowed_urls, Shapes::ShapeRef.new(shape: UrlPatternList, location_name: "allowedUrls"))
|
|
1284
1373
|
WebContentFilteringPolicy.add_member(:blocked_urls, Shapes::ShapeRef.new(shape: UrlPatternList, location_name: "blockedUrls"))
|
|
@@ -1552,6 +1641,7 @@ module Aws::WorkSpacesWeb
|
|
|
1552
1641
|
o.input = Shapes::ShapeRef.new(shape: CreateUserSettingsRequest)
|
|
1553
1642
|
o.output = Shapes::ShapeRef.new(shape: CreateUserSettingsResponse)
|
|
1554
1643
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
1644
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1555
1645
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1556
1646
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
1557
1647
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
@@ -295,6 +295,150 @@ module Aws::WorkSpacesWeb
|
|
|
295
295
|
include Aws::Structure
|
|
296
296
|
end
|
|
297
297
|
|
|
298
|
+
# The branding configuration output including custom images metadata,
|
|
299
|
+
# localized strings, color theme, and terms of service.
|
|
300
|
+
#
|
|
301
|
+
# @!attribute [rw] logo
|
|
302
|
+
# Metadata for the logo image file, including the MIME type, file
|
|
303
|
+
# extension, and upload timestamp.
|
|
304
|
+
# @return [Types::ImageMetadata]
|
|
305
|
+
#
|
|
306
|
+
# @!attribute [rw] wallpaper
|
|
307
|
+
# Metadata for the wallpaper image file, including the MIME type, file
|
|
308
|
+
# extension, and upload timestamp.
|
|
309
|
+
# @return [Types::ImageMetadata]
|
|
310
|
+
#
|
|
311
|
+
# @!attribute [rw] favicon
|
|
312
|
+
# Metadata for the favicon image file, including the MIME type, file
|
|
313
|
+
# extension, and upload timestamp.
|
|
314
|
+
# @return [Types::ImageMetadata]
|
|
315
|
+
#
|
|
316
|
+
# @!attribute [rw] localized_strings
|
|
317
|
+
# A map of localized text strings for different languages, allowing
|
|
318
|
+
# the portal to display content in the user's preferred language.
|
|
319
|
+
# @return [Hash<String,Types::LocalizedBrandingStrings>]
|
|
320
|
+
#
|
|
321
|
+
# @!attribute [rw] color_theme
|
|
322
|
+
# The color theme for components on the web portal.
|
|
323
|
+
# @return [String]
|
|
324
|
+
#
|
|
325
|
+
# @!attribute [rw] terms_of_service
|
|
326
|
+
# The terms of service text in Markdown format that users must accept
|
|
327
|
+
# before accessing the portal.
|
|
328
|
+
# @return [String]
|
|
329
|
+
#
|
|
330
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/BrandingConfiguration AWS API Documentation
|
|
331
|
+
#
|
|
332
|
+
class BrandingConfiguration < Struct.new(
|
|
333
|
+
:logo,
|
|
334
|
+
:wallpaper,
|
|
335
|
+
:favicon,
|
|
336
|
+
:localized_strings,
|
|
337
|
+
:color_theme,
|
|
338
|
+
:terms_of_service)
|
|
339
|
+
SENSITIVE = [:terms_of_service]
|
|
340
|
+
include Aws::Structure
|
|
341
|
+
end
|
|
342
|
+
|
|
343
|
+
# The input configuration for creating branding settings.
|
|
344
|
+
#
|
|
345
|
+
# @!attribute [rw] logo
|
|
346
|
+
# The logo image for the portal. Provide either a binary image file or
|
|
347
|
+
# an S3 URI pointing to the image file. Maximum 100 KB in JPEG, PNG,
|
|
348
|
+
# or ICO format.
|
|
349
|
+
# @return [Types::IconImageInput]
|
|
350
|
+
#
|
|
351
|
+
# @!attribute [rw] wallpaper
|
|
352
|
+
# The wallpaper image for the portal. Provide either a binary image
|
|
353
|
+
# file or an S3 URI pointing to the image file. Maximum 5 MB in JPEG
|
|
354
|
+
# or PNG format.
|
|
355
|
+
# @return [Types::WallpaperImageInput]
|
|
356
|
+
#
|
|
357
|
+
# @!attribute [rw] favicon
|
|
358
|
+
# The favicon image for the portal. Provide either a binary image file
|
|
359
|
+
# or an S3 URI pointing to the image file. Maximum 100 KB in JPEG,
|
|
360
|
+
# PNG, or ICO format.
|
|
361
|
+
# @return [Types::IconImageInput]
|
|
362
|
+
#
|
|
363
|
+
# @!attribute [rw] localized_strings
|
|
364
|
+
# A map of localized text strings for different supported languages.
|
|
365
|
+
# Each locale must provide the required fields `browserTabTitle` and
|
|
366
|
+
# `welcomeText`.
|
|
367
|
+
# @return [Hash<String,Types::LocalizedBrandingStrings>]
|
|
368
|
+
#
|
|
369
|
+
# @!attribute [rw] color_theme
|
|
370
|
+
# The color theme for components on the web portal. Choose `Light` if
|
|
371
|
+
# you upload a dark wallpaper, or `Dark` for a light wallpaper.
|
|
372
|
+
# @return [String]
|
|
373
|
+
#
|
|
374
|
+
# @!attribute [rw] terms_of_service
|
|
375
|
+
# The terms of service text in Markdown format. Users will be
|
|
376
|
+
# presented with the terms of service after successfully signing in.
|
|
377
|
+
# @return [String]
|
|
378
|
+
#
|
|
379
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/BrandingConfigurationCreateInput AWS API Documentation
|
|
380
|
+
#
|
|
381
|
+
class BrandingConfigurationCreateInput < Struct.new(
|
|
382
|
+
:logo,
|
|
383
|
+
:wallpaper,
|
|
384
|
+
:favicon,
|
|
385
|
+
:localized_strings,
|
|
386
|
+
:color_theme,
|
|
387
|
+
:terms_of_service)
|
|
388
|
+
SENSITIVE = [:terms_of_service]
|
|
389
|
+
include Aws::Structure
|
|
390
|
+
end
|
|
391
|
+
|
|
392
|
+
# The input configuration for updating branding settings. All fields are
|
|
393
|
+
# optional when updating existing branding.
|
|
394
|
+
#
|
|
395
|
+
# @!attribute [rw] logo
|
|
396
|
+
# The logo image for the portal. Provide either a binary image file or
|
|
397
|
+
# an S3 URI pointing to the image file. Maximum 100 KB in JPEG, PNG,
|
|
398
|
+
# or ICO format.
|
|
399
|
+
# @return [Types::IconImageInput]
|
|
400
|
+
#
|
|
401
|
+
# @!attribute [rw] wallpaper
|
|
402
|
+
# The wallpaper image for the portal. Provide either a binary image
|
|
403
|
+
# file or an S3 URI pointing to the image file. Maximum 5 MB in JPEG
|
|
404
|
+
# or PNG format.
|
|
405
|
+
# @return [Types::WallpaperImageInput]
|
|
406
|
+
#
|
|
407
|
+
# @!attribute [rw] favicon
|
|
408
|
+
# The favicon image for the portal. Provide either a binary image file
|
|
409
|
+
# or an S3 URI pointing to the image file. Maximum 100 KB in JPEG,
|
|
410
|
+
# PNG, or ICO format.
|
|
411
|
+
# @return [Types::IconImageInput]
|
|
412
|
+
#
|
|
413
|
+
# @!attribute [rw] localized_strings
|
|
414
|
+
# A map of localized text strings for different supported languages.
|
|
415
|
+
# Each locale must provide the required fields `browserTabTitle` and
|
|
416
|
+
# `welcomeText`.
|
|
417
|
+
# @return [Hash<String,Types::LocalizedBrandingStrings>]
|
|
418
|
+
#
|
|
419
|
+
# @!attribute [rw] color_theme
|
|
420
|
+
# The color theme for components on the web portal. Choose `Light` if
|
|
421
|
+
# you upload a dark wallpaper, or `Dark` for a light wallpaper.
|
|
422
|
+
# @return [String]
|
|
423
|
+
#
|
|
424
|
+
# @!attribute [rw] terms_of_service
|
|
425
|
+
# The terms of service text in Markdown format. To remove existing
|
|
426
|
+
# terms of service, provide an empty string.
|
|
427
|
+
# @return [String]
|
|
428
|
+
#
|
|
429
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/BrandingConfigurationUpdateInput AWS API Documentation
|
|
430
|
+
#
|
|
431
|
+
class BrandingConfigurationUpdateInput < Struct.new(
|
|
432
|
+
:logo,
|
|
433
|
+
:wallpaper,
|
|
434
|
+
:favicon,
|
|
435
|
+
:localized_strings,
|
|
436
|
+
:color_theme,
|
|
437
|
+
:terms_of_service)
|
|
438
|
+
SENSITIVE = [:terms_of_service]
|
|
439
|
+
include Aws::Structure
|
|
440
|
+
end
|
|
441
|
+
|
|
298
442
|
# The browser settings resource that can be associated with a web
|
|
299
443
|
# portal. Once associated with a web portal, browser settings control
|
|
300
444
|
# how the browser will behave once a user starts a streaming session for
|
|
@@ -1205,6 +1349,18 @@ module Aws::WorkSpacesWeb
|
|
|
1205
1349
|
# settings, end users retain control over their toolbar preferences.
|
|
1206
1350
|
# @return [Types::ToolbarConfiguration]
|
|
1207
1351
|
#
|
|
1352
|
+
# @!attribute [rw] branding_configuration_input
|
|
1353
|
+
# The branding configuration input that customizes the appearance of
|
|
1354
|
+
# the web portal for end users. This includes a custom logo, favicon,
|
|
1355
|
+
# wallpaper, localized strings, color theme, and an optional terms of
|
|
1356
|
+
# service.
|
|
1357
|
+
# @return [Types::BrandingConfigurationCreateInput]
|
|
1358
|
+
#
|
|
1359
|
+
# @!attribute [rw] web_authn_allowed
|
|
1360
|
+
# Specifies whether the user can use WebAuthn redirection for
|
|
1361
|
+
# passwordless login to websites within the streaming session.
|
|
1362
|
+
# @return [String]
|
|
1363
|
+
#
|
|
1208
1364
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/CreateUserSettingsRequest AWS API Documentation
|
|
1209
1365
|
#
|
|
1210
1366
|
class CreateUserSettingsRequest < Struct.new(
|
|
@@ -1221,7 +1377,9 @@ module Aws::WorkSpacesWeb
|
|
|
1221
1377
|
:customer_managed_key,
|
|
1222
1378
|
:additional_encryption_context,
|
|
1223
1379
|
:deep_link_allowed,
|
|
1224
|
-
:toolbar_configuration
|
|
1380
|
+
:toolbar_configuration,
|
|
1381
|
+
:branding_configuration_input,
|
|
1382
|
+
:web_authn_allowed)
|
|
1225
1383
|
SENSITIVE = [:tags, :cookie_synchronization_configuration]
|
|
1226
1384
|
include Aws::Structure
|
|
1227
1385
|
end
|
|
@@ -2030,6 +2188,37 @@ module Aws::WorkSpacesWeb
|
|
|
2030
2188
|
include Aws::Structure
|
|
2031
2189
|
end
|
|
2032
2190
|
|
|
2191
|
+
# The input for an icon image (logo or favicon). Provide either a binary
|
|
2192
|
+
# image file or an S3 URI pointing to the image file. Maximum 100 KB in
|
|
2193
|
+
# JPEG, PNG, or ICO format.
|
|
2194
|
+
#
|
|
2195
|
+
# @note IconImageInput is a union - when making an API calls you must set exactly one of the members.
|
|
2196
|
+
#
|
|
2197
|
+
# @!attribute [rw] blob
|
|
2198
|
+
# The image provided as a binary image file.
|
|
2199
|
+
# @return [String]
|
|
2200
|
+
#
|
|
2201
|
+
# @!attribute [rw] s3_uri
|
|
2202
|
+
# The S3 URI pointing to the image file. The URI must use the format
|
|
2203
|
+
# `s3://bucket-name/key-name`. You must have read access to the S3
|
|
2204
|
+
# object.
|
|
2205
|
+
# @return [String]
|
|
2206
|
+
#
|
|
2207
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/IconImageInput AWS API Documentation
|
|
2208
|
+
#
|
|
2209
|
+
class IconImageInput < Struct.new(
|
|
2210
|
+
:blob,
|
|
2211
|
+
:s3_uri,
|
|
2212
|
+
:unknown)
|
|
2213
|
+
SENSITIVE = []
|
|
2214
|
+
include Aws::Structure
|
|
2215
|
+
include Aws::Structure::Union
|
|
2216
|
+
|
|
2217
|
+
class Blob < IconImageInput; end
|
|
2218
|
+
class S3Uri < IconImageInput; end
|
|
2219
|
+
class Unknown < IconImageInput; end
|
|
2220
|
+
end
|
|
2221
|
+
|
|
2033
2222
|
# The identity provider.
|
|
2034
2223
|
#
|
|
2035
2224
|
# @!attribute [rw] identity_provider_arn
|
|
@@ -2147,6 +2336,30 @@ module Aws::WorkSpacesWeb
|
|
|
2147
2336
|
include Aws::Structure
|
|
2148
2337
|
end
|
|
2149
2338
|
|
|
2339
|
+
# Metadata information about an uploaded image file.
|
|
2340
|
+
#
|
|
2341
|
+
# @!attribute [rw] mime_type
|
|
2342
|
+
# The MIME type of the image.
|
|
2343
|
+
# @return [String]
|
|
2344
|
+
#
|
|
2345
|
+
# @!attribute [rw] file_extension
|
|
2346
|
+
# The file extension of the image.
|
|
2347
|
+
# @return [String]
|
|
2348
|
+
#
|
|
2349
|
+
# @!attribute [rw] last_upload_timestamp
|
|
2350
|
+
# The timestamp when the image was last uploaded.
|
|
2351
|
+
# @return [Time]
|
|
2352
|
+
#
|
|
2353
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/ImageMetadata AWS API Documentation
|
|
2354
|
+
#
|
|
2355
|
+
class ImageMetadata < Struct.new(
|
|
2356
|
+
:mime_type,
|
|
2357
|
+
:file_extension,
|
|
2358
|
+
:last_upload_timestamp)
|
|
2359
|
+
SENSITIVE = []
|
|
2360
|
+
include Aws::Structure
|
|
2361
|
+
end
|
|
2362
|
+
|
|
2150
2363
|
# The configuration for in-session inline redaction.
|
|
2151
2364
|
#
|
|
2152
2365
|
# @!attribute [rw] inline_redaction_patterns
|
|
@@ -2857,6 +3070,63 @@ module Aws::WorkSpacesWeb
|
|
|
2857
3070
|
include Aws::Structure
|
|
2858
3071
|
end
|
|
2859
3072
|
|
|
3073
|
+
# Localized text strings for a specific language that customize the web
|
|
3074
|
+
# portal.
|
|
3075
|
+
#
|
|
3076
|
+
# @!attribute [rw] browser_tab_title
|
|
3077
|
+
# The text displayed in the browser tab title.
|
|
3078
|
+
# @return [String]
|
|
3079
|
+
#
|
|
3080
|
+
# @!attribute [rw] welcome_text
|
|
3081
|
+
# The welcome text displayed on the sign-in page.
|
|
3082
|
+
# @return [String]
|
|
3083
|
+
#
|
|
3084
|
+
# @!attribute [rw] login_title
|
|
3085
|
+
# The title text for the login section. This field is optional and
|
|
3086
|
+
# defaults to "Sign In".
|
|
3087
|
+
# @return [String]
|
|
3088
|
+
#
|
|
3089
|
+
# @!attribute [rw] login_description
|
|
3090
|
+
# The description text for the login section. This field is optional
|
|
3091
|
+
# and defaults to "Sign in to your session".
|
|
3092
|
+
# @return [String]
|
|
3093
|
+
#
|
|
3094
|
+
# @!attribute [rw] login_button_text
|
|
3095
|
+
# The text displayed on the login button. This field is optional and
|
|
3096
|
+
# defaults to "Sign In".
|
|
3097
|
+
# @return [String]
|
|
3098
|
+
#
|
|
3099
|
+
# @!attribute [rw] contact_link
|
|
3100
|
+
# A contact link URL. The URL must start with `https://` or `mailto:`.
|
|
3101
|
+
# If not provided, the contact button will be hidden from the web
|
|
3102
|
+
# portal screen.
|
|
3103
|
+
# @return [String]
|
|
3104
|
+
#
|
|
3105
|
+
# @!attribute [rw] contact_button_text
|
|
3106
|
+
# The text displayed on the contact button. This field is optional and
|
|
3107
|
+
# defaults to "Contact us".
|
|
3108
|
+
# @return [String]
|
|
3109
|
+
#
|
|
3110
|
+
# @!attribute [rw] loading_text
|
|
3111
|
+
# The text displayed during session loading. This field is optional
|
|
3112
|
+
# and defaults to "Loading your session".
|
|
3113
|
+
# @return [String]
|
|
3114
|
+
#
|
|
3115
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/LocalizedBrandingStrings AWS API Documentation
|
|
3116
|
+
#
|
|
3117
|
+
class LocalizedBrandingStrings < Struct.new(
|
|
3118
|
+
:browser_tab_title,
|
|
3119
|
+
:welcome_text,
|
|
3120
|
+
:login_title,
|
|
3121
|
+
:login_description,
|
|
3122
|
+
:login_button_text,
|
|
3123
|
+
:contact_link,
|
|
3124
|
+
:contact_button_text,
|
|
3125
|
+
:loading_text)
|
|
3126
|
+
SENSITIVE = []
|
|
3127
|
+
include Aws::Structure
|
|
3128
|
+
end
|
|
3129
|
+
|
|
2860
3130
|
# The configuration of the log.
|
|
2861
3131
|
#
|
|
2862
3132
|
# @!attribute [rw] s3
|
|
@@ -4252,6 +4522,20 @@ module Aws::WorkSpacesWeb
|
|
|
4252
4522
|
# settings, end users retain control over their toolbar preferences.
|
|
4253
4523
|
# @return [Types::ToolbarConfiguration]
|
|
4254
4524
|
#
|
|
4525
|
+
# @!attribute [rw] branding_configuration_input
|
|
4526
|
+
# The branding configuration that customizes the appearance of the web
|
|
4527
|
+
# portal for end users. When updating user settings without an
|
|
4528
|
+
# existing branding configuration, all fields (logo, favicon,
|
|
4529
|
+
# wallpaper, localized strings, and color theme) are required except
|
|
4530
|
+
# for terms of service. When updating user settings with an existing
|
|
4531
|
+
# branding configuration, all fields are optional.
|
|
4532
|
+
# @return [Types::BrandingConfigurationUpdateInput]
|
|
4533
|
+
#
|
|
4534
|
+
# @!attribute [rw] web_authn_allowed
|
|
4535
|
+
# Specifies whether the user can use WebAuthn redirection for
|
|
4536
|
+
# passwordless login to websites within the streaming session.
|
|
4537
|
+
# @return [String]
|
|
4538
|
+
#
|
|
4255
4539
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UpdateUserSettingsRequest AWS API Documentation
|
|
4256
4540
|
#
|
|
4257
4541
|
class UpdateUserSettingsRequest < Struct.new(
|
|
@@ -4266,7 +4550,9 @@ module Aws::WorkSpacesWeb
|
|
|
4266
4550
|
:client_token,
|
|
4267
4551
|
:cookie_synchronization_configuration,
|
|
4268
4552
|
:deep_link_allowed,
|
|
4269
|
-
:toolbar_configuration
|
|
4553
|
+
:toolbar_configuration,
|
|
4554
|
+
:branding_configuration_input,
|
|
4555
|
+
:web_authn_allowed)
|
|
4270
4556
|
SENSITIVE = [:cookie_synchronization_configuration]
|
|
4271
4557
|
include Aws::Structure
|
|
4272
4558
|
end
|
|
@@ -4404,6 +4690,16 @@ module Aws::WorkSpacesWeb
|
|
|
4404
4690
|
# settings, end users retain control over their toolbar preferences.
|
|
4405
4691
|
# @return [Types::ToolbarConfiguration]
|
|
4406
4692
|
#
|
|
4693
|
+
# @!attribute [rw] branding_configuration
|
|
4694
|
+
# The branding configuration output that customizes the appearance of
|
|
4695
|
+
# the web portal for end users.
|
|
4696
|
+
# @return [Types::BrandingConfiguration]
|
|
4697
|
+
#
|
|
4698
|
+
# @!attribute [rw] web_authn_allowed
|
|
4699
|
+
# Specifies whether the user can use WebAuthn redirection for
|
|
4700
|
+
# passwordless login to websites within the streaming session.
|
|
4701
|
+
# @return [String]
|
|
4702
|
+
#
|
|
4407
4703
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UserSettings AWS API Documentation
|
|
4408
4704
|
#
|
|
4409
4705
|
class UserSettings < Struct.new(
|
|
@@ -4420,7 +4716,9 @@ module Aws::WorkSpacesWeb
|
|
|
4420
4716
|
:customer_managed_key,
|
|
4421
4717
|
:additional_encryption_context,
|
|
4422
4718
|
:deep_link_allowed,
|
|
4423
|
-
:toolbar_configuration
|
|
4719
|
+
:toolbar_configuration,
|
|
4720
|
+
:branding_configuration,
|
|
4721
|
+
:web_authn_allowed)
|
|
4424
4722
|
SENSITIVE = [:cookie_synchronization_configuration]
|
|
4425
4723
|
include Aws::Structure
|
|
4426
4724
|
end
|
|
@@ -4485,6 +4783,16 @@ module Aws::WorkSpacesWeb
|
|
|
4485
4783
|
# settings, end users retain control over their toolbar preferences.
|
|
4486
4784
|
# @return [Types::ToolbarConfiguration]
|
|
4487
4785
|
#
|
|
4786
|
+
# @!attribute [rw] branding_configuration
|
|
4787
|
+
# The branding configuration output that customizes the appearance of
|
|
4788
|
+
# the web portal for end users.
|
|
4789
|
+
# @return [Types::BrandingConfiguration]
|
|
4790
|
+
#
|
|
4791
|
+
# @!attribute [rw] web_authn_allowed
|
|
4792
|
+
# Specifies whether the user can use WebAuthn redirection for
|
|
4793
|
+
# passwordless login to websites within the streaming session.
|
|
4794
|
+
# @return [String]
|
|
4795
|
+
#
|
|
4488
4796
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/UserSettingsSummary AWS API Documentation
|
|
4489
4797
|
#
|
|
4490
4798
|
class UserSettingsSummary < Struct.new(
|
|
@@ -4498,7 +4806,9 @@ module Aws::WorkSpacesWeb
|
|
|
4498
4806
|
:idle_disconnect_timeout_in_minutes,
|
|
4499
4807
|
:cookie_synchronization_configuration,
|
|
4500
4808
|
:deep_link_allowed,
|
|
4501
|
-
:toolbar_configuration
|
|
4809
|
+
:toolbar_configuration,
|
|
4810
|
+
:branding_configuration,
|
|
4811
|
+
:web_authn_allowed)
|
|
4502
4812
|
SENSITIVE = [:cookie_synchronization_configuration]
|
|
4503
4813
|
include Aws::Structure
|
|
4504
4814
|
end
|
|
@@ -4546,6 +4856,36 @@ module Aws::WorkSpacesWeb
|
|
|
4546
4856
|
include Aws::Structure
|
|
4547
4857
|
end
|
|
4548
4858
|
|
|
4859
|
+
# The input for a wallpaper image. Provide the image as either a binary
|
|
4860
|
+
# image file or an S3 URI. Maximum 5 MB in JPEG or PNG format.
|
|
4861
|
+
#
|
|
4862
|
+
# @note WallpaperImageInput is a union - when making an API calls you must set exactly one of the members.
|
|
4863
|
+
#
|
|
4864
|
+
# @!attribute [rw] blob
|
|
4865
|
+
# The image provided as a binary image file.
|
|
4866
|
+
# @return [String]
|
|
4867
|
+
#
|
|
4868
|
+
# @!attribute [rw] s3_uri
|
|
4869
|
+
# The S3 URI pointing to the image file. The URI must use the format
|
|
4870
|
+
# `s3://bucket-name/key-name`. You must have read access to the S3
|
|
4871
|
+
# object.
|
|
4872
|
+
# @return [String]
|
|
4873
|
+
#
|
|
4874
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-web-2020-07-08/WallpaperImageInput AWS API Documentation
|
|
4875
|
+
#
|
|
4876
|
+
class WallpaperImageInput < Struct.new(
|
|
4877
|
+
:blob,
|
|
4878
|
+
:s3_uri,
|
|
4879
|
+
:unknown)
|
|
4880
|
+
SENSITIVE = []
|
|
4881
|
+
include Aws::Structure
|
|
4882
|
+
include Aws::Structure::Union
|
|
4883
|
+
|
|
4884
|
+
class Blob < WallpaperImageInput; end
|
|
4885
|
+
class S3Uri < WallpaperImageInput; end
|
|
4886
|
+
class Unknown < WallpaperImageInput; end
|
|
4887
|
+
end
|
|
4888
|
+
|
|
4549
4889
|
# The policy that specifies which URLs end users are allowed to access
|
|
4550
4890
|
# or which URLs or domain categories they are restricted from accessing
|
|
4551
4891
|
# for enhanced security.
|
data/sig/client.rbs
CHANGED
|
@@ -440,7 +440,34 @@ module Aws
|
|
|
440
440
|
visual_mode: ("Dark" | "Light")?,
|
|
441
441
|
hidden_toolbar_items: Array[("Windows" | "DualMonitor" | "FullScreen" | "Webcam" | "Microphone")]?,
|
|
442
442
|
max_display_resolution: ("size4096X2160" | "size3840X2160" | "size3440X1440" | "size2560X1440" | "size1920X1080" | "size1280X720" | "size1024X768" | "size800X600")?
|
|
443
|
-
}
|
|
443
|
+
},
|
|
444
|
+
?branding_configuration_input: {
|
|
445
|
+
logo: {
|
|
446
|
+
blob: ::String?,
|
|
447
|
+
s3_uri: ::String?
|
|
448
|
+
},
|
|
449
|
+
wallpaper: {
|
|
450
|
+
blob: ::String?,
|
|
451
|
+
s3_uri: ::String?
|
|
452
|
+
},
|
|
453
|
+
favicon: {
|
|
454
|
+
blob: ::String?,
|
|
455
|
+
s3_uri: ::String?
|
|
456
|
+
},
|
|
457
|
+
localized_strings: Hash[("de-DE" | "en-US" | "es-ES" | "fr-FR" | "id-ID" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "zh-CN" | "zh-TW"), {
|
|
458
|
+
browser_tab_title: ::String,
|
|
459
|
+
welcome_text: ::String,
|
|
460
|
+
login_title: ::String?,
|
|
461
|
+
login_description: ::String?,
|
|
462
|
+
login_button_text: ::String?,
|
|
463
|
+
contact_link: ::String?,
|
|
464
|
+
contact_button_text: ::String?,
|
|
465
|
+
loading_text: ::String?
|
|
466
|
+
}],
|
|
467
|
+
color_theme: ("Light" | "Dark"),
|
|
468
|
+
terms_of_service: ::String?
|
|
469
|
+
},
|
|
470
|
+
?web_authn_allowed: ("Disabled" | "Enabled")
|
|
444
471
|
) -> _CreateUserSettingsResponseSuccess
|
|
445
472
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateUserSettingsResponseSuccess
|
|
446
473
|
|
|
@@ -1139,7 +1166,34 @@ module Aws
|
|
|
1139
1166
|
visual_mode: ("Dark" | "Light")?,
|
|
1140
1167
|
hidden_toolbar_items: Array[("Windows" | "DualMonitor" | "FullScreen" | "Webcam" | "Microphone")]?,
|
|
1141
1168
|
max_display_resolution: ("size4096X2160" | "size3840X2160" | "size3440X1440" | "size2560X1440" | "size1920X1080" | "size1280X720" | "size1024X768" | "size800X600")?
|
|
1142
|
-
}
|
|
1169
|
+
},
|
|
1170
|
+
?branding_configuration_input: {
|
|
1171
|
+
logo: {
|
|
1172
|
+
blob: ::String?,
|
|
1173
|
+
s3_uri: ::String?
|
|
1174
|
+
}?,
|
|
1175
|
+
wallpaper: {
|
|
1176
|
+
blob: ::String?,
|
|
1177
|
+
s3_uri: ::String?
|
|
1178
|
+
}?,
|
|
1179
|
+
favicon: {
|
|
1180
|
+
blob: ::String?,
|
|
1181
|
+
s3_uri: ::String?
|
|
1182
|
+
}?,
|
|
1183
|
+
localized_strings: Hash[("de-DE" | "en-US" | "es-ES" | "fr-FR" | "id-ID" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "zh-CN" | "zh-TW"), {
|
|
1184
|
+
browser_tab_title: ::String,
|
|
1185
|
+
welcome_text: ::String,
|
|
1186
|
+
login_title: ::String?,
|
|
1187
|
+
login_description: ::String?,
|
|
1188
|
+
login_button_text: ::String?,
|
|
1189
|
+
contact_link: ::String?,
|
|
1190
|
+
contact_button_text: ::String?,
|
|
1191
|
+
loading_text: ::String?
|
|
1192
|
+
}]?,
|
|
1193
|
+
color_theme: ("Light" | "Dark")?,
|
|
1194
|
+
terms_of_service: ::String?
|
|
1195
|
+
},
|
|
1196
|
+
?web_authn_allowed: ("Disabled" | "Enabled")
|
|
1143
1197
|
) -> _UpdateUserSettingsResponseSuccess
|
|
1144
1198
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateUserSettingsResponseSuccess
|
|
1145
1199
|
end
|
data/sig/types.rbs
CHANGED
|
@@ -109,6 +109,36 @@ module Aws::WorkSpacesWeb
|
|
|
109
109
|
SENSITIVE: []
|
|
110
110
|
end
|
|
111
111
|
|
|
112
|
+
class BrandingConfiguration
|
|
113
|
+
attr_accessor logo: Types::ImageMetadata
|
|
114
|
+
attr_accessor wallpaper: Types::ImageMetadata
|
|
115
|
+
attr_accessor favicon: Types::ImageMetadata
|
|
116
|
+
attr_accessor localized_strings: ::Hash[("de-DE" | "en-US" | "es-ES" | "fr-FR" | "id-ID" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "zh-CN" | "zh-TW"), Types::LocalizedBrandingStrings]
|
|
117
|
+
attr_accessor color_theme: ("Light" | "Dark")
|
|
118
|
+
attr_accessor terms_of_service: ::String
|
|
119
|
+
SENSITIVE: [:terms_of_service]
|
|
120
|
+
end
|
|
121
|
+
|
|
122
|
+
class BrandingConfigurationCreateInput
|
|
123
|
+
attr_accessor logo: Types::IconImageInput
|
|
124
|
+
attr_accessor wallpaper: Types::WallpaperImageInput
|
|
125
|
+
attr_accessor favicon: Types::IconImageInput
|
|
126
|
+
attr_accessor localized_strings: ::Hash[("de-DE" | "en-US" | "es-ES" | "fr-FR" | "id-ID" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "zh-CN" | "zh-TW"), Types::LocalizedBrandingStrings]
|
|
127
|
+
attr_accessor color_theme: ("Light" | "Dark")
|
|
128
|
+
attr_accessor terms_of_service: ::String
|
|
129
|
+
SENSITIVE: [:terms_of_service]
|
|
130
|
+
end
|
|
131
|
+
|
|
132
|
+
class BrandingConfigurationUpdateInput
|
|
133
|
+
attr_accessor logo: Types::IconImageInput
|
|
134
|
+
attr_accessor wallpaper: Types::WallpaperImageInput
|
|
135
|
+
attr_accessor favicon: Types::IconImageInput
|
|
136
|
+
attr_accessor localized_strings: ::Hash[("de-DE" | "en-US" | "es-ES" | "fr-FR" | "id-ID" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "zh-CN" | "zh-TW"), Types::LocalizedBrandingStrings]
|
|
137
|
+
attr_accessor color_theme: ("Light" | "Dark")
|
|
138
|
+
attr_accessor terms_of_service: ::String
|
|
139
|
+
SENSITIVE: [:terms_of_service]
|
|
140
|
+
end
|
|
141
|
+
|
|
112
142
|
class BrowserSettings
|
|
113
143
|
attr_accessor browser_settings_arn: ::String
|
|
114
144
|
attr_accessor associated_portal_arns: ::Array[::String]
|
|
@@ -312,6 +342,8 @@ module Aws::WorkSpacesWeb
|
|
|
312
342
|
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
|
313
343
|
attr_accessor deep_link_allowed: ("Disabled" | "Enabled")
|
|
314
344
|
attr_accessor toolbar_configuration: Types::ToolbarConfiguration
|
|
345
|
+
attr_accessor branding_configuration_input: Types::BrandingConfigurationCreateInput
|
|
346
|
+
attr_accessor web_authn_allowed: ("Disabled" | "Enabled")
|
|
315
347
|
SENSITIVE: [:cookie_synchronization_configuration]
|
|
316
348
|
end
|
|
317
349
|
|
|
@@ -649,6 +681,20 @@ module Aws::WorkSpacesWeb
|
|
|
649
681
|
SENSITIVE: []
|
|
650
682
|
end
|
|
651
683
|
|
|
684
|
+
class IconImageInput
|
|
685
|
+
attr_accessor blob: ::String
|
|
686
|
+
attr_accessor s3_uri: ::String
|
|
687
|
+
attr_accessor unknown: untyped
|
|
688
|
+
SENSITIVE: []
|
|
689
|
+
|
|
690
|
+
class Blob < IconImageInput
|
|
691
|
+
end
|
|
692
|
+
class S3Uri < IconImageInput
|
|
693
|
+
end
|
|
694
|
+
class Unknown < IconImageInput
|
|
695
|
+
end
|
|
696
|
+
end
|
|
697
|
+
|
|
652
698
|
class IdentityProvider
|
|
653
699
|
attr_accessor identity_provider_arn: ::String
|
|
654
700
|
attr_accessor identity_provider_name: ::String
|
|
@@ -664,6 +710,13 @@ module Aws::WorkSpacesWeb
|
|
|
664
710
|
SENSITIVE: [:identity_provider_name]
|
|
665
711
|
end
|
|
666
712
|
|
|
713
|
+
class ImageMetadata
|
|
714
|
+
attr_accessor mime_type: ("image/png" | "image/jpeg" | "image/x-icon")
|
|
715
|
+
attr_accessor file_extension: ::String
|
|
716
|
+
attr_accessor last_upload_timestamp: ::Time
|
|
717
|
+
SENSITIVE: []
|
|
718
|
+
end
|
|
719
|
+
|
|
667
720
|
class InlineRedactionConfiguration
|
|
668
721
|
attr_accessor inline_redaction_patterns: ::Array[Types::InlineRedactionPattern]
|
|
669
722
|
attr_accessor global_enforced_urls: ::Array[::String]
|
|
@@ -876,6 +929,18 @@ module Aws::WorkSpacesWeb
|
|
|
876
929
|
SENSITIVE: []
|
|
877
930
|
end
|
|
878
931
|
|
|
932
|
+
class LocalizedBrandingStrings
|
|
933
|
+
attr_accessor browser_tab_title: ::String
|
|
934
|
+
attr_accessor welcome_text: ::String
|
|
935
|
+
attr_accessor login_title: ::String
|
|
936
|
+
attr_accessor login_description: ::String
|
|
937
|
+
attr_accessor login_button_text: ::String
|
|
938
|
+
attr_accessor contact_link: ::String
|
|
939
|
+
attr_accessor contact_button_text: ::String
|
|
940
|
+
attr_accessor loading_text: ::String
|
|
941
|
+
SENSITIVE: []
|
|
942
|
+
end
|
|
943
|
+
|
|
879
944
|
class LogConfiguration
|
|
880
945
|
attr_accessor s3: Types::S3LogConfiguration
|
|
881
946
|
SENSITIVE: []
|
|
@@ -1210,6 +1275,8 @@ module Aws::WorkSpacesWeb
|
|
|
1210
1275
|
attr_accessor cookie_synchronization_configuration: Types::CookieSynchronizationConfiguration
|
|
1211
1276
|
attr_accessor deep_link_allowed: ("Disabled" | "Enabled")
|
|
1212
1277
|
attr_accessor toolbar_configuration: Types::ToolbarConfiguration
|
|
1278
|
+
attr_accessor branding_configuration_input: Types::BrandingConfigurationUpdateInput
|
|
1279
|
+
attr_accessor web_authn_allowed: ("Disabled" | "Enabled")
|
|
1213
1280
|
SENSITIVE: [:cookie_synchronization_configuration]
|
|
1214
1281
|
end
|
|
1215
1282
|
|
|
@@ -1246,6 +1313,8 @@ module Aws::WorkSpacesWeb
|
|
|
1246
1313
|
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
|
1247
1314
|
attr_accessor deep_link_allowed: ("Disabled" | "Enabled")
|
|
1248
1315
|
attr_accessor toolbar_configuration: Types::ToolbarConfiguration
|
|
1316
|
+
attr_accessor branding_configuration: Types::BrandingConfiguration
|
|
1317
|
+
attr_accessor web_authn_allowed: ("Disabled" | "Enabled")
|
|
1249
1318
|
SENSITIVE: [:cookie_synchronization_configuration]
|
|
1250
1319
|
end
|
|
1251
1320
|
|
|
@@ -1261,6 +1330,8 @@ module Aws::WorkSpacesWeb
|
|
|
1261
1330
|
attr_accessor cookie_synchronization_configuration: Types::CookieSynchronizationConfiguration
|
|
1262
1331
|
attr_accessor deep_link_allowed: ("Disabled" | "Enabled")
|
|
1263
1332
|
attr_accessor toolbar_configuration: Types::ToolbarConfiguration
|
|
1333
|
+
attr_accessor branding_configuration: Types::BrandingConfiguration
|
|
1334
|
+
attr_accessor web_authn_allowed: ("Disabled" | "Enabled")
|
|
1264
1335
|
SENSITIVE: [:cookie_synchronization_configuration]
|
|
1265
1336
|
end
|
|
1266
1337
|
|
|
@@ -1277,6 +1348,20 @@ module Aws::WorkSpacesWeb
|
|
|
1277
1348
|
SENSITIVE: []
|
|
1278
1349
|
end
|
|
1279
1350
|
|
|
1351
|
+
class WallpaperImageInput
|
|
1352
|
+
attr_accessor blob: ::String
|
|
1353
|
+
attr_accessor s3_uri: ::String
|
|
1354
|
+
attr_accessor unknown: untyped
|
|
1355
|
+
SENSITIVE: []
|
|
1356
|
+
|
|
1357
|
+
class Blob < WallpaperImageInput
|
|
1358
|
+
end
|
|
1359
|
+
class S3Uri < WallpaperImageInput
|
|
1360
|
+
end
|
|
1361
|
+
class Unknown < WallpaperImageInput
|
|
1362
|
+
end
|
|
1363
|
+
end
|
|
1364
|
+
|
|
1280
1365
|
class WebContentFilteringPolicy
|
|
1281
1366
|
attr_accessor blocked_categories: ::Array[("Cults" | "Gambling" | "Nudity" | "Pornography" | "SexEducation" | "Tasteless" | "Violence" | "DownloadSites" | "ImageSharing" | "PeerToPeer" | "StreamingMediaAndDownloads" | "GenerativeAI" | "CriminalActivity" | "Hacking" | "HateAndIntolerance" | "IllegalDrug" | "IllegalSoftware" | "SchoolCheating" | "SelfHarm" | "Weapons" | "Chat" | "Games" | "InstantMessaging" | "ProfessionalNetwork" | "SocialNetworking" | "WebBasedEmail" | "ParkedDomains")]
|
|
1282
1367
|
attr_accessor allowed_urls: ::Array[::String]
|