Class: Aws::QuickSight::Types::IntegerValueWhenUnsetConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::IntegerValueWhenUnsetConfiguration
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[:custom_value]
Instance Attribute Summary collapse
-
#custom_value ⇒ Integer
A custom value that's used when the value of a parameter isn't set.
-
#value_when_unset_option ⇒ String
The built-in options for default values.
Instance Attribute Details
#custom_value ⇒ Integer
A custom value that's used when the value of a parameter isn't set.
19881 19882 19883 19884 19885 19886 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 19881 class IntegerValueWhenUnsetConfiguration < Struct.new( :value_when_unset_option, :custom_value) SENSITIVE = [:custom_value] include Aws::Structure end |
#value_when_unset_option ⇒ String
The built-in options for default values. The value can be one of the following:
RECOMMENDED
: The recommended value.NULL
: TheNULL
value.
19881 19882 19883 19884 19885 19886 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 19881 class IntegerValueWhenUnsetConfiguration < Struct.new( :value_when_unset_option, :custom_value) SENSITIVE = [:custom_value] include Aws::Structure end |