interface PaletteHeaderProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnWorkspacePropsMixin.PaletteHeaderProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnWorkspacePropsMixin_PaletteHeaderProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnWorkspacePropsMixin.PaletteHeaderProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnWorkspacePropsMixin.PaletteHeaderProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnWorkspacePropsMixin » 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 { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const paletteHeaderProperty: connect_mixins.CfnWorkspacePropsMixin.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