Show / Hide Table of Contents

Class CfnTemplate.DateTimeDefaultValuesProperty

The default values of the DateTimeParameterDeclaration .

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-datetimedefaultvalues.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 dateTimeDefaultValuesProperty = new DateTimeDefaultValuesProperty {
    DynamicValue = new DynamicDefaultValueProperty {
        DefaultValueColumn = new ColumnIdentifierProperty {
            ColumnName = "columnName",
            DataSetIdentifier = "dataSetIdentifier"
        },

        // the properties below are optional
        GroupNameColumn = new ColumnIdentifierProperty {
            ColumnName = "columnName",
            DataSetIdentifier = "dataSetIdentifier"
        },
        UserNameColumn = new ColumnIdentifierProperty {
            ColumnName = "columnName",
            DataSetIdentifier = "dataSetIdentifier"
        }
    },
    RollingDate = new RollingDateConfigurationProperty {
        Expression = "expression",

        // the properties below are optional
        DataSetIdentifier = "dataSetIdentifier"
    },
    StaticValues = new [] { "staticValues" }
};

Synopsis

Constructors

DateTimeDefaultValuesProperty()

Properties

DynamicValue

The dynamic value of the DataTimeDefaultValues .

RollingDate

The rolling date of the DataTimeDefaultValues .

StaticValues

The static values of the DataTimeDefaultValues .

Constructors

DateTimeDefaultValuesProperty()

public DateTimeDefaultValuesProperty()

Properties

DynamicValue

The dynamic value of the DataTimeDefaultValues .

public object DynamicValue { get; set; }
Property Value

System.Object

Remarks

Different defaults are displayed according to users, groups, and values mapping.

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

RollingDate

The rolling date of the DataTimeDefaultValues .

public object RollingDate { get; set; }
Property Value

System.Object

Remarks

The date is determined from the dataset based on input expression.

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

StaticValues

The static values of the DataTimeDefaultValues .

public string[] StaticValues { get; set; }
Property Value

System.String[]

Remarks

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

Implements

CfnTemplate.IDateTimeDefaultValuesProperty
Back to top Generated by DocFX