interface ShapeConditionalFormatProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnAnalysisPropsMixin.ShapeConditionalFormatProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnAnalysisPropsMixin_ShapeConditionalFormatProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnAnalysisPropsMixin.ShapeConditionalFormatProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnAnalysisPropsMixin.ShapeConditionalFormatProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » 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 { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const shapeConditionalFormatProperty: quicksight.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