interface StringDatasetParameterProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.QuickSight.CfnDataSet.StringDatasetParameterProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_StringDatasetParameterProperty |
![]() | software.amazon.awscdk.services.quicksight.CfnDataSet.StringDatasetParameterProperty |
![]() | aws_cdk.aws_quicksight.CfnDataSet.StringDatasetParameterProperty |
![]() | aws-cdk-lib » aws_quicksight » CfnDataSet » StringDatasetParameterProperty |
A string parameter that is created in the dataset.
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 stringDatasetParameterProperty: quicksight.CfnDataSet.StringDatasetParameterProperty = {
id: 'id',
name: 'name',
valueType: 'valueType',
// the properties below are optional
defaultValues: {
staticValues: ['staticValues'],
},
};
Properties
Name | Type | Description |
---|---|---|
id | string | An identifier for the string parameter that is created in the dataset. |
name | string | The name of the string parameter that is created in the dataset. |
value | string | The value type of the dataset parameter. |
default | IResolvable | String | A list of default values for a given string dataset parameter type. |
id
Type:
string
An identifier for the string parameter that is created in the dataset.
name
Type:
string
The name of the string parameter that is created in the dataset.
valueType
Type:
string
The value type of the dataset parameter.
Valid values are single value
or multi value
.
defaultValues?
Type:
IResolvable
|
String
(optional)
A list of default values for a given string dataset parameter type.
This structure only accepts static values.