Show / Hide Table of Contents

Class CfnTemplate.DataLabelTypeProperty

The option that determines the data label type.

Inheritance
System.Object
CfnTemplate.DataLabelTypeProperty
Implements
CfnTemplate.IDataLabelTypeProperty
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.AWS.QuickSight.dll
Syntax (csharp)
public class DataLabelTypeProperty : Object, CfnTemplate.IDataLabelTypeProperty
Syntax (vb)
Public Class DataLabelTypeProperty
    Inherits Object
    Implements CfnTemplate.IDataLabelTypeProperty
Remarks

This is a union type structure. For this structure to be valid, only one of the attributes can be defined.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-datalabeltype.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.AWS.QuickSight;

var dataLabelTypeProperty = new DataLabelTypeProperty {
    DataPathLabelType = new DataPathLabelTypeProperty {
        FieldId = "fieldId",
        FieldValue = "fieldValue",
        Visibility = "visibility"
    },
    FieldLabelType = new FieldLabelTypeProperty {
        FieldId = "fieldId",
        Visibility = "visibility"
    },
    MaximumLabelType = new MaximumLabelTypeProperty {
        Visibility = "visibility"
    },
    MinimumLabelType = new MinimumLabelTypeProperty {
        Visibility = "visibility"
    },
    RangeEndsLabelType = new RangeEndsLabelTypeProperty {
        Visibility = "visibility"
    }
};

Synopsis

Constructors

DataLabelTypeProperty()

Properties

DataPathLabelType

The option that specifies individual data values for labels.

FieldLabelType

Determines the label configuration for the entire field.

MaximumLabelType

Determines the label configuration for the maximum value in a visual.

MinimumLabelType

Determines the label configuration for the minimum value in a visual.

RangeEndsLabelType

Determines the label configuration for range end value in a visual.

Constructors

DataLabelTypeProperty()

public DataLabelTypeProperty()

Properties

DataPathLabelType

The option that specifies individual data values for labels.

public object DataPathLabelType { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-datalabeltype.html#cfn-quicksight-template-datalabeltype-datapathlabeltype

FieldLabelType

Determines the label configuration for the entire field.

public object FieldLabelType { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-datalabeltype.html#cfn-quicksight-template-datalabeltype-fieldlabeltype

MaximumLabelType

Determines the label configuration for the maximum value in a visual.

public object MaximumLabelType { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-datalabeltype.html#cfn-quicksight-template-datalabeltype-maximumlabeltype

MinimumLabelType

Determines the label configuration for the minimum value in a visual.

public object MinimumLabelType { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-datalabeltype.html#cfn-quicksight-template-datalabeltype-minimumlabeltype

RangeEndsLabelType

Determines the label configuration for range end value in a visual.

public object RangeEndsLabelType { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-datalabeltype.html#cfn-quicksight-template-datalabeltype-rangeendslabeltype

Implements

CfnTemplate.IDataLabelTypeProperty
Back to top Generated by DocFX