Show / Hide Table of Contents

Class CfnTemplate.CalculatedFieldProperty

The calculated field of an analysis.

Inheritance
object
CfnTemplate.CalculatedFieldProperty
Implements
CfnTemplate.ICalculatedFieldProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTemplate.CalculatedFieldProperty : CfnTemplate.ICalculatedFieldProperty
Syntax (vb)
Public Class CfnTemplate.CalculatedFieldProperty Implements CfnTemplate.ICalculatedFieldProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-calculatedfield.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 calculatedFieldProperty = new CalculatedFieldProperty {
                 DataSetIdentifier = "dataSetIdentifier",
                 Expression = "expression",
                 Name = "name"
             };

Synopsis

Constructors

CalculatedFieldProperty()

The calculated field of an analysis.

Properties

DataSetIdentifier

The data set that is used in this calculated field.

Expression

The expression of the calculated field.

Name

The name of the calculated field.

Constructors

CalculatedFieldProperty()

The calculated field of an analysis.

public CalculatedFieldProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-calculatedfield.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 calculatedFieldProperty = new CalculatedFieldProperty {
                 DataSetIdentifier = "dataSetIdentifier",
                 Expression = "expression",
                 Name = "name"
             };

Properties

DataSetIdentifier

The data set that is used in this calculated field.

public string DataSetIdentifier { get; set; }
Property Value

string

Remarks

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

Expression

The expression of the calculated field.

public string Expression { get; set; }
Property Value

string

Remarks

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

Name

The name of the calculated field.

public string Name { get; set; }
Property Value

string

Remarks

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

Implements

CfnTemplate.ICalculatedFieldProperty
Back to top Generated by DocFX