interface ConditionalFormattingGradientColorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnAnalysisPropsMixin.ConditionalFormattingGradientColorProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnAnalysisPropsMixin_ConditionalFormattingGradientColorProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnAnalysisPropsMixin.ConditionalFormattingGradientColorProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnAnalysisPropsMixin.ConditionalFormattingGradientColorProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnAnalysisPropsMixin » ConditionalFormattingGradientColorProperty |
Formatting configuration for gradient color.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const conditionalFormattingGradientColorProperty: quicksight.CfnAnalysisPropsMixin.ConditionalFormattingGradientColorProperty = {
color: {
stops: [{
color: 'color',
dataValue: 123,
gradientOffset: 123,
}],
},
expression: 'expression',
};
Properties
| Name | Type | Description |
|---|---|---|
| color? | IResolvable | Gradient | Determines the color. |
| expression? | string | The expression that determines the formatting configuration for gradient color. |
color?
Type:
IResolvable | Gradient
(optional)
Determines the color.
expression?
Type:
string
(optional)
The expression that determines the formatting configuration for gradient color.

.NET
Go
Java
Python
TypeScript