interface GeospatialPolygonLayerProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.GeospatialPolygonLayerProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_GeospatialPolygonLayerProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.GeospatialPolygonLayerProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.GeospatialPolygonLayerProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » GeospatialPolygonLayerProperty |
The geospatial 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 geospatialPolygonLayerProperty: quicksight_mixins.CfnAnalysisPropsMixin.GeospatialPolygonLayerProperty = {
style: {
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 |
|---|---|---|
| style? | IResolvable | Geospatial | The visualization style for a polygon layer. |
style?
Type:
IResolvable | Geospatial
(optional)
The visualization style for a polygon layer.

.NET
Go
Java
Python
TypeScript