Class CfnDashboard.GeospatialSolidColorProperty
The definition for a solid color.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDashboard.GeospatialSolidColorProperty : CfnDashboard.IGeospatialSolidColorProperty
Syntax (vb)
Public Class CfnDashboard.GeospatialSolidColorProperty Implements CfnDashboard.IGeospatialSolidColorProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var geospatialSolidColorProperty = new GeospatialSolidColorProperty {
Color = "color",
// the properties below are optional
State = "state"
};
Synopsis
Constructors
GeospatialSolidColorProperty() | The definition for a solid color. |
Properties
Color | The color and opacity values for the color. |
State | Enables and disables the view state of the color. |
Constructors
GeospatialSolidColorProperty()
The definition for a solid color.
public GeospatialSolidColorProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var geospatialSolidColorProperty = new GeospatialSolidColorProperty {
Color = "color",
// the properties below are optional
State = "state"
};
Properties
Color
The color and opacity values for the color.
public string Color { get; set; }
Property Value
Remarks
State
Enables and disables the view state of the color.
public string? State { get; set; }