Class: Aws::WorkSpacesWeb::Types::BrandingConfigurationCreateInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::WorkSpacesWeb::Types::BrandingConfigurationCreateInput
- Defined in:
- gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb
Overview
The input configuration for creating branding settings.
Constant Summary collapse
- SENSITIVE =
[:terms_of_service]
Instance Attribute Summary collapse
-
#color_theme ⇒ String
The color theme for components on the web portal.
-
#favicon ⇒ Types::IconImageInput
The favicon image for the portal.
-
#localized_strings ⇒ Hash<String,Types::LocalizedBrandingStrings>
A map of localized text strings for different supported languages.
-
#logo ⇒ Types::IconImageInput
The logo image for the portal.
-
#terms_of_service ⇒ String
The terms of service text in Markdown format.
-
#wallpaper ⇒ Types::WallpaperImageInput
The wallpaper image for the portal.
Instance Attribute Details
#color_theme ⇒ String
The color theme for components on the web portal. Choose Light if
you upload a dark wallpaper, or Dark for a light wallpaper.
381 382 383 384 385 386 387 388 389 390 |
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 381 class BrandingConfigurationCreateInput < Struct.new( :logo, :wallpaper, :favicon, :localized_strings, :color_theme, :terms_of_service) SENSITIVE = [:terms_of_service] include Aws::Structure end |
#favicon ⇒ Types::IconImageInput
The favicon image for the portal. Provide either a binary image file or an S3 URI pointing to the image file. Maximum 100 KB in JPEG, PNG, or ICO format.
381 382 383 384 385 386 387 388 389 390 |
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 381 class BrandingConfigurationCreateInput < Struct.new( :logo, :wallpaper, :favicon, :localized_strings, :color_theme, :terms_of_service) SENSITIVE = [:terms_of_service] include Aws::Structure end |
#localized_strings ⇒ Hash<String,Types::LocalizedBrandingStrings>
A map of localized text strings for different supported languages.
Each locale must provide the required fields browserTabTitle and
welcomeText.
381 382 383 384 385 386 387 388 389 390 |
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 381 class BrandingConfigurationCreateInput < Struct.new( :logo, :wallpaper, :favicon, :localized_strings, :color_theme, :terms_of_service) SENSITIVE = [:terms_of_service] include Aws::Structure end |
#logo ⇒ Types::IconImageInput
The logo image for the portal. Provide either a binary image file or an S3 URI pointing to the image file. Maximum 100 KB in JPEG, PNG, or ICO format.
381 382 383 384 385 386 387 388 389 390 |
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 381 class BrandingConfigurationCreateInput < Struct.new( :logo, :wallpaper, :favicon, :localized_strings, :color_theme, :terms_of_service) SENSITIVE = [:terms_of_service] include Aws::Structure end |
#terms_of_service ⇒ String
The terms of service text in Markdown format. Users will be presented with the terms of service after successfully signing in.
381 382 383 384 385 386 387 388 389 390 |
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 381 class BrandingConfigurationCreateInput < Struct.new( :logo, :wallpaper, :favicon, :localized_strings, :color_theme, :terms_of_service) SENSITIVE = [:terms_of_service] include Aws::Structure end |
#wallpaper ⇒ Types::WallpaperImageInput
The wallpaper image for the portal. Provide either a binary image file or an S3 URI pointing to the image file. Maximum 5 MB in JPEG or PNG format.
381 382 383 384 385 386 387 388 389 390 |
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 381 class BrandingConfigurationCreateInput < Struct.new( :logo, :wallpaper, :favicon, :localized_strings, :color_theme, :terms_of_service) SENSITIVE = [:terms_of_service] include Aws::Structure end |