aws-cdk-lib.aws_quicksight.CfnAnalysis.IntegerValueWhenUnsetConfigurationProperty

interface IntegerValueWhenUnsetConfigurationProperty

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

A parameter declaration for the Integer data type.

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 integerValueWhenUnsetConfigurationProperty: quicksight.CfnAnalysis.IntegerValueWhenUnsetConfigurationProperty = {
  customValue: 123,
  valueWhenUnsetOption: 'valueWhenUnsetOption',
};

Properties

NameTypeDescription
customValue?numberA custom value that's used when the value of a parameter isn't set.
valueWhenUnsetOption?stringThe built-in options for default values. The value can be one of the following:.

customValue?

Type: number (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 : The NULL value.