Show / Hide Table of Contents

Class CfnAnalysisPropsMixin.DataPathValueProperty

The data path that needs to be sorted.

Inheritance
object
CfnAnalysisPropsMixin.DataPathValueProperty
Implements
CfnAnalysisPropsMixin.IDataPathValueProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnAnalysisPropsMixin.DataPathValueProperty : CfnAnalysisPropsMixin.IDataPathValueProperty
Syntax (vb)
Public Class CfnAnalysisPropsMixin.DataPathValueProperty Implements CfnAnalysisPropsMixin.IDataPathValueProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-datapathvalue.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.CfnPropertyMixins.AWS.QuickSight;

             var dataPathValueProperty = new DataPathValueProperty {
                 DataPathType = new DataPathTypeProperty {
                     PivotTableDataPathType = "pivotTableDataPathType"
                 },
                 FieldId = "fieldId",
                 FieldValue = "fieldValue"
             };

Synopsis

Constructors

DataPathValueProperty()

The data path that needs to be sorted.

Properties

DataPathType

The type configuration of the field.

FieldId

The field ID of the field that needs to be sorted.

FieldValue

The actual value of the field that needs to be sorted.

Constructors

DataPathValueProperty()

The data path that needs to be sorted.

public DataPathValueProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-datapathvalue.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.CfnPropertyMixins.AWS.QuickSight;

             var dataPathValueProperty = new DataPathValueProperty {
                 DataPathType = new DataPathTypeProperty {
                     PivotTableDataPathType = "pivotTableDataPathType"
                 },
                 FieldId = "fieldId",
                 FieldValue = "fieldValue"
             };

Properties

DataPathType

The type configuration of the field.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-datapathvalue.html#cfn-quicksight-analysis-datapathvalue-datapathtype

Type union: either IResolvable or CfnAnalysisPropsMixin.IDataPathTypeProperty

FieldId

The field ID of the field that needs to be sorted.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-datapathvalue.html#cfn-quicksight-analysis-datapathvalue-fieldid

FieldValue

The actual value of the field that needs to be sorted.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-datapathvalue.html#cfn-quicksight-analysis-datapathvalue-fieldvalue

Implements

CfnAnalysisPropsMixin.IDataPathValueProperty
Back to top Generated by DocFX