Class: Aws::QuickSight::Types::StringParameter

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

Overview

A string parameter.

Constant Summary collapse

SENSITIVE =
[:values]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

A display name for a string parameter.

Returns:

  • (String)


29484
29485
29486
29487
29488
29489
# File 'lib/aws-sdk-quicksight/types.rb', line 29484

class StringParameter < Struct.new(
  :name,
  :values)
  SENSITIVE = [:values]
  include Aws::Structure
end

#valuesArray<String>

The values of a string parameter.

Returns:

  • (Array<String>)


29484
29485
29486
29487
29488
29489
# File 'lib/aws-sdk-quicksight/types.rb', line 29484

class StringParameter < Struct.new(
  :name,
  :values)
  SENSITIVE = [:values]
  include Aws::Structure
end