interface GeospatialNullSymbolStyleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.GeospatialNullSymbolStyleProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_GeospatialNullSymbolStyleProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.GeospatialNullSymbolStyleProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.GeospatialNullSymbolStyleProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » GeospatialNullSymbolStyleProperty |
The symbol style for null data.
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 geospatialNullSymbolStyleProperty: quicksight_mixins.CfnDashboardPropsMixin.GeospatialNullSymbolStyleProperty = {
fillColor: 'fillColor',
strokeColor: 'strokeColor',
strokeWidth: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| fill | string | The color and opacity values for the fill color. |
| stroke | string | The color and opacity values for the stroke color. |
| stroke | number | The width of the border stroke. |
fillColor?
Type:
string
(optional)
The color and opacity values for the fill color.
strokeColor?
Type:
string
(optional)
The color and opacity values for the stroke color.
strokeWidth?
Type:
number
(optional)
The width of the border stroke.

.NET
Go
Java
Python
TypeScript