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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-quicksight/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)


28043
28044
28045
28046
28047
28048
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 28043

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

#valuesArray<String>

The values of a string parameter.

Returns:

  • (Array<String>)


28043
28044
28045
28046
28047
28048
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 28043

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