Show / Hide Table of Contents

Interface CfnTemplate.IDynamicDefaultValueProperty

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

Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnTemplate.IDynamicDefaultValueProperty
Syntax (vb)
Public Interface CfnTemplate.IDynamicDefaultValueProperty
Remarks

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

             var dynamicDefaultValueProperty = 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"
                 }
             };

Synopsis

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.

Properties

DefaultValueColumn

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

object DefaultValueColumn { get; }
Property Value

object

Remarks

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

GroupNameColumn

The column that contains the group name.

object? GroupNameColumn { get; }
Property Value

object

Remarks

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

UserNameColumn

The column that contains the username.

object? UserNameColumn { get; }
Property Value

object

Remarks

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

Back to top Generated by DocFX