interface GeospatialPolygonSymbolStyleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.GeospatialPolygonSymbolStyleProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_GeospatialPolygonSymbolStyleProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.GeospatialPolygonSymbolStyleProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.GeospatialPolygonSymbolStyleProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » GeospatialPolygonSymbolStyleProperty |
The polygon symbol 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 geospatialPolygonSymbolStyleProperty: quicksight_mixins.CfnAnalysisPropsMixin.GeospatialPolygonSymbolStyleProperty = {
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 |
|---|---|---|
| fill | IResolvable | Geospatial | The color and opacity values for the fill color. |
| stroke | IResolvable | Geospatial | The color and opacity values for the stroke color. |
| stroke | IResolvable | Geospatial | The width of the border stroke. |
fillColor?
Type:
IResolvable | Geospatial
(optional)
The color and opacity values for the fill color.
strokeColor?
Type:
IResolvable | Geospatial
(optional)
The color and opacity values for the stroke color.
strokeWidth?
Type:
IResolvable | Geospatial
(optional)
The width of the border stroke.

.NET
Go
Java
Python
TypeScript