Show / Hide Table of Contents

Class CfnTemplatePropsMixin.DataPathColorProperty

The color map that determines the color options for a particular element.

Inheritance
object
CfnTemplatePropsMixin.DataPathColorProperty
Implements
CfnTemplatePropsMixin.IDataPathColorProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnTemplatePropsMixin.DataPathColorProperty : CfnTemplatePropsMixin.IDataPathColorProperty
Syntax (vb)
Public Class CfnTemplatePropsMixin.DataPathColorProperty Implements CfnTemplatePropsMixin.IDataPathColorProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-datapathcolor.html

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.Mixins.Preview.AWS.QuickSight.Mixins;

             var dataPathColorProperty = new DataPathColorProperty {
                 Color = "color",
                 Element = new DataPathValueProperty {
                     DataPathType = new DataPathTypeProperty {
                         PivotTableDataPathType = "pivotTableDataPathType"
                     },
                     FieldId = "fieldId",
                     FieldValue = "fieldValue"
                 },
                 TimeGranularity = "timeGranularity"
             };

Synopsis

Constructors

DataPathColorProperty()

The color map that determines the color options for a particular element.

Properties

Color

The color that needs to be applied to the element.

Element

The element that the color needs to be applied to.

TimeGranularity

The time granularity of the field that the color needs to be applied to.

Constructors

DataPathColorProperty()

The color map that determines the color options for a particular element.

public DataPathColorProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-datapathcolor.html

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.Mixins.Preview.AWS.QuickSight.Mixins;

             var dataPathColorProperty = new DataPathColorProperty {
                 Color = "color",
                 Element = new DataPathValueProperty {
                     DataPathType = new DataPathTypeProperty {
                         PivotTableDataPathType = "pivotTableDataPathType"
                     },
                     FieldId = "fieldId",
                     FieldValue = "fieldValue"
                 },
                 TimeGranularity = "timeGranularity"
             };

Properties

Color

The color that needs to be applied to the element.

public string? Color { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-datapathcolor.html#cfn-quicksight-template-datapathcolor-color

Element

The element that the color needs to be applied to.

public object? Element { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-datapathcolor.html#cfn-quicksight-template-datapathcolor-element

Type union: either IResolvable or CfnTemplatePropsMixin.IDataPathValueProperty

TimeGranularity

The time granularity of the field that the color needs to be applied to.

public string? TimeGranularity { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-datapathcolor.html#cfn-quicksight-template-datapathcolor-timegranularity

Implements

CfnTemplatePropsMixin.IDataPathColorProperty
Back to top Generated by DocFX