interface GeospatialSolidColorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.GeospatialSolidColorProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_GeospatialSolidColorProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDashboard.GeospatialSolidColorProperty |
Python | aws_cdk.aws_quicksight.CfnDashboard.GeospatialSolidColorProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDashboard » GeospatialSolidColorProperty |
The definition for a solid color.
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-lib';
const geospatialSolidColorProperty: quicksight.CfnDashboard.GeospatialSolidColorProperty = {
color: 'color',
// the properties below are optional
state: 'state',
};
Properties
| Name | Type | Description |
|---|---|---|
| color | string | The color and opacity values for the color. |
| state? | string | Enables and disables the view state of the color. |
color
Type:
string
The color and opacity values for the color.
state?
Type:
string
(optional)
Enables and disables the view state of the color.

.NET
Go
Java
Python
TypeScript