Interface CfnWorkspace.PaletteNavigationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnWorkspace.PaletteNavigationProperty.Jsii$Proxy
Enclosing class:
CfnWorkspace

@Stability(Stable) public static interface CfnWorkspace.PaletteNavigationProperty extends software.amazon.jsii.JsiiSerializable
Contains color configuration for navigation elements in a workspace theme.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.connect.*;
 PaletteNavigationProperty paletteNavigationProperty = PaletteNavigationProperty.builder()
         .background("background")
         .invertActionsColors(false)
         .text("text")
         .textActive("textActive")
         .textBackgroundActive("textBackgroundActive")
         .textBackgroundHover("textBackgroundHover")
         .textHover("textHover")
         .build();
 

See Also: