interface ShapeConditionalFormatProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.ShapeConditionalFormatProperty | 
  Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.ShapeConditionalFormatProperty | 
  Python | aws_cdk.aws_quicksight.CfnAnalysis.ShapeConditionalFormatProperty | 
  TypeScript  | @aws-cdk/aws-quicksight » CfnAnalysis » 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 * as quicksight from '@aws-cdk/aws-quicksight';
const shapeConditionalFormatProperty: quicksight.CfnAnalysis.ShapeConditionalFormatProperty = {
  backgroundColor: {
    gradient: {
      color: {
        stops: [{
          gradientOffset: 123,
          // the properties below are optional
          color: 'color',
          dataValue: 123,
        }],
      },
      expression: 'expression',
    },
    solid: {
      expression: 'expression',
      // the properties below are optional
      color: 'color',
    },
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| background | IResolvable | Conditional | The conditional formatting for the shape background color of a filled map visual. | 
backgroundColor
Type:
IResolvable | Conditional
The conditional formatting for the shape background color of a filled map visual.

 .NET
 Java
 Python
 TypeScript