interface FilledMapShapeConditionalFormattingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDashboardPropsMixin.FilledMapShapeConditionalFormattingProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDashboardPropsMixin_FilledMapShapeConditionalFormattingProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDashboardPropsMixin.FilledMapShapeConditionalFormattingProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDashboardPropsMixin.FilledMapShapeConditionalFormattingProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDashboardPropsMixin » FilledMapShapeConditionalFormattingProperty |
The conditional formatting that determines the shape of the filled map.
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 filledMapShapeConditionalFormattingProperty: quicksight.CfnDashboardPropsMixin.FilledMapShapeConditionalFormattingProperty = {
fieldId: 'fieldId',
format: {
backgroundColor: {
gradient: {
color: {
stops: [{
color: 'color',
dataValue: 123,
gradientOffset: 123,
}],
},
expression: 'expression',
},
solid: {
color: 'color',
expression: 'expression',
},
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| field | string | The field ID of the filled map shape. |
| format? | IResolvable | Shape | The conditional formatting that determines the background color of a filled map's shape. |
fieldId?
Type:
string
(optional)
The field ID of the filled map shape.
format?
Type:
IResolvable | Shape
(optional)
The conditional formatting that determines the background color of a filled map's shape.

.NET
Go
Java
Python
TypeScript