interface FilledMapShapeConditionalFormattingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.FilledMapShapeConditionalFormattingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_FilledMapShapeConditionalFormattingProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.FilledMapShapeConditionalFormattingProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.FilledMapShapeConditionalFormattingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const filledMapShapeConditionalFormattingProperty: quicksight_mixins.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