interface GeospatialNullSymbolStyleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDashboardPropsMixin.GeospatialNullSymbolStyleProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDashboardPropsMixin_GeospatialNullSymbolStyleProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDashboardPropsMixin.GeospatialNullSymbolStyleProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDashboardPropsMixin.GeospatialNullSymbolStyleProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » 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 { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const geospatialNullSymbolStyleProperty: quicksight.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