Skip to main content

client_brandings

Creates, updates, deletes, gets or lists a client_brandings resource.

Overview

Nameclient_brandings
TypeResource
Idaws.workspaces.client_brandings

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
device_type_androidobjectThe branding information for Android devices.
device_type_iosobjectThe branding information for iOS devices.
device_type_linuxobjectThe branding information for Linux devices.
device_type_osxobjectThe branding information for macOS devices.
device_type_webobjectThe branding information for Web access.
device_type_windowsobjectThe branding information for Windows devices.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_client_brandingselectregionDescribes the specified client branding. Client branding allows you to customize the log in page of various device types for your users. You can add your company logo, the support email address, support link, link to reset password, and a custom message for users trying to sign in. Only device types that have branding information configured will be shown in the response.
delete_client_brandingdeleteregionDeletes customized client branding. Client branding allows you to customize your WorkSpace's client login portal. You can tailor your login portal company logo, the support email address, support link, link to reset password, and a custom message for users trying to sign in. After you delete your customized client branding, your login portal reverts to the default client branding.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Describes the specified client branding. Client branding allows you to customize the log in page of various device types for your users. You can add your company logo, the support email address, support link, link to reset password, and a custom message for users trying to sign in. Only device types that have branding information configured will be shown in the response.

SELECT
device_type_android,
device_type_ios,
device_type_linux,
device_type_osx,
device_type_web,
device_type_windows
FROM aws.workspaces.client_brandings
WHERE region = '{{ region }}' -- required
;

DELETE examples

Deletes customized client branding. Client branding allows you to customize your WorkSpace's client login portal. You can tailor your login portal company logo, the support email address, support link, link to reset password, and a custom message for users trying to sign in. After you delete your customized client branding, your login portal reverts to the default client branding.

DELETE FROM aws.workspaces.client_brandings
WHERE region = '{{ region }}' --required
;