interface GeospatialColorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.GeospatialColorProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_GeospatialColorProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.GeospatialColorProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.GeospatialColorProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » GeospatialColorProperty |
The visualization properties for solid, gradient, and categorical colors.
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 geospatialColorProperty: quicksight_mixins.CfnAnalysisPropsMixin.GeospatialColorProperty = {
categorical: {
categoryDataColors: [{
color: 'color',
dataValue: 'dataValue',
}],
defaultOpacity: 123,
nullDataSettings: {
symbolStyle: {
fillColor: 'fillColor',
strokeColor: 'strokeColor',
strokeWidth: 123,
},
},
nullDataVisibility: 'nullDataVisibility',
},
gradient: {
defaultOpacity: 123,
nullDataSettings: {
symbolStyle: {
fillColor: 'fillColor',
strokeColor: 'strokeColor',
strokeWidth: 123,
},
},
nullDataVisibility: 'nullDataVisibility',
stepColors: [{
color: 'color',
dataValue: 123,
}],
},
solid: {
color: 'color',
state: 'state',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| categorical? | IResolvable | Geospatial | The visualization properties for the categorical color. |
| gradient? | IResolvable | Geospatial | The visualization properties for the gradient color. |
| solid? | IResolvable | Geospatial | The visualization properties for the solid color. |
categorical?
Type:
IResolvable | Geospatial
(optional)
The visualization properties for the categorical color.
gradient?
Type:
IResolvable | Geospatial
(optional)
The visualization properties for the gradient color.
solid?
Type:
IResolvable | Geospatial
(optional)
The visualization properties for the solid color.

.NET
Go
Java
Python
TypeScript