interface PaletteHeaderProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnWorkspace.PaletteHeaderProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnWorkspace_PaletteHeaderProperty |
Java | software.amazon.awscdk.services.connect.CfnWorkspace.PaletteHeaderProperty |
Python | aws_cdk.aws_connect.CfnWorkspace.PaletteHeaderProperty |
TypeScript | aws-cdk-lib » aws_connect » CfnWorkspace » PaletteHeaderProperty |
Contains color configuration for header 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 { aws_connect as connect } from 'aws-cdk-lib';
const paletteHeaderProperty: connect.CfnWorkspace.PaletteHeaderProperty = {
background: 'background',
invertActionsColors: false,
text: 'text',
textHover: 'textHover',
};
Properties
| Name | Type | Description |
|---|---|---|
| background? | string | The background color of the header. |
| invert | boolean | IResolvable | Whether to invert the colors of action buttons in the header. |
| text? | string | The text color in the header. |
| text | string | The text color when hovering over header elements. |
background?
Type:
string
(optional)
The background color of the header.
invertActionsColors?
Type:
boolean | IResolvable
(optional)
Whether to invert the colors of action buttons in the header.
text?
Type:
string
(optional)
The text color in the header.
textHover?
Type:
string
(optional)
The text color when hovering over header elements.

.NET
Go
Java
Python
TypeScript