interface ShapeConditionalFormatProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.ShapeConditionalFormatProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_ShapeConditionalFormatProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.ShapeConditionalFormatProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.ShapeConditionalFormatProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » ShapeConditionalFormatProperty |
The shape conditional formatting of a filled map visual.
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 shapeConditionalFormatProperty: quicksight_mixins.CfnAnalysisPropsMixin.ShapeConditionalFormatProperty = {
backgroundColor: {
gradient: {
color: {
stops: [{
color: 'color',
dataValue: 123,
gradientOffset: 123,
}],
},
expression: 'expression',
},
solid: {
color: 'color',
expression: 'expression',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| background | IResolvable | Conditional | The conditional formatting for the shape background color of a filled map visual. |
backgroundColor?
Type:
IResolvable | Conditional
(optional)
The conditional formatting for the shape background color of a filled map visual.

.NET
Go
Java
Python
TypeScript