Class: Aws::QuickSight::Types::IntegerValueWhenUnsetConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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

Instance Attribute Details

#custom_valueInteger

A custom value that’s used when the value of a parameter isn’t set.

Returns:

  • (Integer)


18033
18034
18035
18036
18037
18038
# File 'lib/aws-sdk-quicksight/types.rb', line 18033

class IntegerValueWhenUnsetConfiguration < Struct.new(
  :value_when_unset_option,
  :custom_value)
  SENSITIVE = [:custom_value]
  include Aws::Structure
end

#value_when_unset_optionString

The built-in options for default values. The value can be one of the following:

  • ‘RECOMMENDED`: The recommended value.

  • ‘NULL`: The `NULL` value.

Returns:

  • (String)


18033
18034
18035
18036
18037
18038
# File 'lib/aws-sdk-quicksight/types.rb', line 18033

class IntegerValueWhenUnsetConfiguration < Struct.new(
  :value_when_unset_option,
  :custom_value)
  SENSITIVE = [:custom_value]
  include Aws::Structure
end