interface RowAlternateColorOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.RowAlternateColorOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_RowAlternateColorOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.RowAlternateColorOptionsProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.RowAlternateColorOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » RowAlternateColorOptionsProperty |
Determines the row alternate color options.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const rowAlternateColorOptionsProperty: quicksight_mixins.CfnAnalysisPropsMixin.RowAlternateColorOptionsProperty = {
rowAlternateColors: ['rowAlternateColors'],
status: 'status',
usePrimaryBackgroundColor: 'usePrimaryBackgroundColor',
};
Properties
| Name | Type | Description |
|---|---|---|
| row | string[] | Determines the list of row alternate colors. |
| status? | string | Determines the widget status. |
| use | string | The primary background color options for alternate rows. |
rowAlternateColors?
Type:
string[]
(optional)
Determines the list of row alternate colors.
status?
Type:
string
(optional)
Determines the widget status.
usePrimaryBackgroundColor?
Type:
string
(optional)
The primary background color options for alternate rows.

.NET
Go
Java
Python
TypeScript