aws-cdk-lib.aws_quicksight.CfnTemplate.DestinationParameterValueConfigurationProperty

interface DestinationParameterValueConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnTemplate.DestinationParameterValueConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_DestinationParameterValueConfigurationProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnTemplate.DestinationParameterValueConfigurationProperty
Pythonaws_cdk.aws_quicksight.CfnTemplate.DestinationParameterValueConfigurationProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnTemplate » DestinationParameterValueConfigurationProperty

The configuration of destination parameter values.

This is a union type structure. For this structure to be valid, only one of the attributes can be defined.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as quicksight } from 'aws-cdk-lib';
const destinationParameterValueConfigurationProperty: quicksight.CfnTemplate.DestinationParameterValueConfigurationProperty = {
  customValuesConfiguration: {
    customValues: {
      dateTimeValues: ['dateTimeValues'],
      decimalValues: [123],
      integerValues: [123],
      stringValues: ['stringValues'],
    },

    // the properties below are optional
    includeNullValue: false,
  },
  selectAllValueOptions: 'selectAllValueOptions',
  sourceColumn: {
    columnName: 'columnName',
    dataSetIdentifier: 'dataSetIdentifier',
  },
  sourceField: 'sourceField',
  sourceParameterName: 'sourceParameterName',
};

Properties

NameTypeDescription
customValuesConfiguration?IResolvable | CustomValuesConfigurationPropertyThe configuration of custom values for destination parameter in DestinationParameterValueConfiguration .
selectAllValueOptions?stringThe configuration that selects all options.
sourceColumn?IResolvable | ColumnIdentifierPropertyCfnTemplate.DestinationParameterValueConfigurationProperty.SourceColumn.
sourceField?stringThe source field ID of the destination parameter.
sourceParameterName?stringThe source parameter name of the destination parameter.

customValuesConfiguration?

Type: IResolvable | CustomValuesConfigurationProperty (optional)

The configuration of custom values for destination parameter in DestinationParameterValueConfiguration .


selectAllValueOptions?

Type: string (optional)

The configuration that selects all options.


sourceColumn?

Type: IResolvable | ColumnIdentifierProperty (optional)

CfnTemplate.DestinationParameterValueConfigurationProperty.SourceColumn.


sourceField?

Type: string (optional)

The source field ID of the destination parameter.


sourceParameterName?

Type: string (optional)

The source parameter name of the destination parameter.