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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWorkspace.PaletteNavigationPropertystatic final classAn implementation forCfnWorkspace.PaletteNavigationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe background color of the navigation area.default ObjectWhether to invert the colors of action buttons in the navigation area.default StringgetText()The text color in the navigation area.default StringThe text color for active navigation items.default StringThe background color for active navigation items.default StringThe background color when hovering over navigation text.default StringThe text color when hovering over navigation items.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBackground
The background color of the navigation area.- See Also:
-
getInvertActionsColors
Whether to invert the colors of action buttons in the navigation area.Returns union: either
BooleanorIResolvable- See Also:
-
getText
The text color in the navigation area.- See Also:
-
getTextActive
The text color for active navigation items.- See Also:
-
getTextBackgroundActive
The background color for active navigation items.- See Also:
-
getTextBackgroundHover
The background color when hovering over navigation text.- See Also:
-
getTextHover
The text color when hovering over navigation items.- See Also:
-
builder
-