interface StringValueWhenUnsetConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnAnalysisPropsMixin.StringValueWhenUnsetConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnAnalysisPropsMixin_StringValueWhenUnsetConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnAnalysisPropsMixin.StringValueWhenUnsetConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnAnalysisPropsMixin.StringValueWhenUnsetConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnAnalysisPropsMixin » StringValueWhenUnsetConfigurationProperty |
The configuration that defines the default value of a String parameter when a value has not been set.
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/cfn-property-mixins';
const stringValueWhenUnsetConfigurationProperty: quicksight.CfnAnalysisPropsMixin.StringValueWhenUnsetConfigurationProperty = {
customValue: 'customValue',
valueWhenUnsetOption: 'valueWhenUnsetOption',
};
Properties
| Name | Type | Description |
|---|---|---|
| custom | string | A custom value that's used when the value of a parameter isn't set. |
| value | string | The built-in options for default values. The value can be one of the following:. |
customValue?
Type:
string
(optional)
A custom value that's used when the value of a parameter isn't set.
valueWhenUnsetOption?
Type:
string
(optional)
The built-in options for default values. The value can be one of the following:.
RECOMMENDED: The recommended value.NULL: TheNULLvalue.

.NET
Go
Java
Python
TypeScript