interface GeospatialPolygonStyleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.GeospatialPolygonStyleProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_GeospatialPolygonStyleProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.GeospatialPolygonStyleProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.GeospatialPolygonStyleProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » GeospatialPolygonStyleProperty |
The polygon style for a polygon layer.
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 geospatialPolygonStyleProperty: quicksight_mixins.CfnAnalysisPropsMixin.GeospatialPolygonStyleProperty = {
polygonSymbolStyle: {
fillColor: {
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',
},
},
strokeColor: {
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',
},
},
strokeWidth: {
lineWidth: 123,
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| polygon | IResolvable | Geospatial | The polygon symbol style for a polygon layer. |
polygonSymbolStyle?
Type:
IResolvable | Geospatial
(optional)
The polygon symbol style for a polygon layer.

.NET
Go
Java
Python
TypeScript