Show / Hide Table of Contents

Class CfnDashboardPropsMixin.DynamicDefaultValueProperty

Defines different defaults to the users or groups based on mapping.

Inheritance
object
CfnDashboardPropsMixin.DynamicDefaultValueProperty
Implements
CfnDashboardPropsMixin.IDynamicDefaultValueProperty
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 CfnDashboardPropsMixin.DynamicDefaultValueProperty : CfnDashboardPropsMixin.IDynamicDefaultValueProperty
Syntax (vb)
Public Class CfnDashboardPropsMixin.DynamicDefaultValueProperty Implements CfnDashboardPropsMixin.IDynamicDefaultValueProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-dynamicdefaultvalue.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 dynamicDefaultValueProperty = new DynamicDefaultValueProperty {
                 DefaultValueColumn = new ColumnIdentifierProperty {
                     ColumnName = "columnName",
                     DataSetIdentifier = "dataSetIdentifier"
                 },
                 GroupNameColumn = new ColumnIdentifierProperty {
                     ColumnName = "columnName",
                     DataSetIdentifier = "dataSetIdentifier"
                 },
                 UserNameColumn = new ColumnIdentifierProperty {
                     ColumnName = "columnName",
                     DataSetIdentifier = "dataSetIdentifier"
                 }
             };

Synopsis

Constructors

DynamicDefaultValueProperty()

Defines different defaults to the users or groups based on mapping.

Properties

DefaultValueColumn

The column that contains the default value of each user or group.

GroupNameColumn

The column that contains the group name.

UserNameColumn

The column that contains the username.

Constructors

DynamicDefaultValueProperty()

Defines different defaults to the users or groups based on mapping.

public DynamicDefaultValueProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-dynamicdefaultvalue.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 dynamicDefaultValueProperty = new DynamicDefaultValueProperty {
                 DefaultValueColumn = new ColumnIdentifierProperty {
                     ColumnName = "columnName",
                     DataSetIdentifier = "dataSetIdentifier"
                 },
                 GroupNameColumn = new ColumnIdentifierProperty {
                     ColumnName = "columnName",
                     DataSetIdentifier = "dataSetIdentifier"
                 },
                 UserNameColumn = new ColumnIdentifierProperty {
                     ColumnName = "columnName",
                     DataSetIdentifier = "dataSetIdentifier"
                 }
             };

Properties

DefaultValueColumn

The column that contains the default value of each user or group.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-dynamicdefaultvalue.html#cfn-quicksight-dashboard-dynamicdefaultvalue-defaultvaluecolumn

Type union: either IResolvable or CfnDashboardPropsMixin.IColumnIdentifierProperty

GroupNameColumn

The column that contains the group name.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-dynamicdefaultvalue.html#cfn-quicksight-dashboard-dynamicdefaultvalue-groupnamecolumn

Type union: either IResolvable or CfnDashboardPropsMixin.IColumnIdentifierProperty

UserNameColumn

The column that contains the username.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-dynamicdefaultvalue.html#cfn-quicksight-dashboard-dynamicdefaultvalue-usernamecolumn

Type union: either IResolvable or CfnDashboardPropsMixin.IColumnIdentifierProperty

Implements

CfnDashboardPropsMixin.IDynamicDefaultValueProperty
Back to top Generated by DocFX