Class: Aws::QuickSight::Types::StringValueWhenUnsetConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb

Overview

The configuration that defines the default value of a String parameter when a value has not been set.

Constant Summary collapse

SENSITIVE =
[:custom_value]

Instance Attribute Summary collapse

Instance Attribute Details

#custom_valueString

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

Returns:

  • (String)


27242
27243
27244
27245
27246
27247
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 27242

class StringValueWhenUnsetConfiguration < 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)


27242
27243
27244
27245
27246
27247
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 27242

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