aws-cdk-lib.aws_quicksight.CfnDashboard.CustomParameterValuesProperty

interface CustomParameterValuesProperty

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

The customized 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 customParameterValuesProperty: quicksight.CfnDashboard.CustomParameterValuesProperty = {
  dateTimeValues: ['dateTimeValues'],
  decimalValues: [123],
  integerValues: [123],
  stringValues: ['stringValues'],
};

Properties

NameTypeDescription
dateTimeValues?string[]A list of datetime-type parameter values.
decimalValues?number[] | IResolvableA list of decimal-type parameter values.
integerValues?number[] | IResolvableA list of integer-type parameter values.
stringValues?string[]A list of string-type parameter values.

dateTimeValues?

Type: string[] (optional)

A list of datetime-type parameter values.


decimalValues?

Type: number[] | IResolvable (optional)

A list of decimal-type parameter values.


integerValues?

Type: number[] | IResolvable (optional)

A list of integer-type parameter values.


stringValues?

Type: string[] (optional)

A list of string-type parameter values.