Class: Aws::QuickSight::Types::Parameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::Parameters
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-quicksight/types.rb
Overview
A list of Amazon QuickSight parameters and the list’s override values.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#date_time_parameters ⇒ Array<Types::DateTimeParameter>
The parameters that have a data type of date-time.
-
#decimal_parameters ⇒ Array<Types::DecimalParameter>
The parameters that have a data type of decimal.
-
#integer_parameters ⇒ Array<Types::IntegerParameter>
The parameters that have a data type of integer.
-
#string_parameters ⇒ Array<Types::StringParameter>
The parameters that have a data type of string.
Instance Attribute Details
#date_time_parameters ⇒ Array<Types::DateTimeParameter>
The parameters that have a data type of date-time.
25132 25133 25134 25135 25136 25137 25138 25139 |
# File 'lib/aws-sdk-quicksight/types.rb', line 25132 class Parameters < Struct.new( :string_parameters, :integer_parameters, :decimal_parameters, :date_time_parameters) SENSITIVE = [] include Aws::Structure end |
#decimal_parameters ⇒ Array<Types::DecimalParameter>
The parameters that have a data type of decimal.
25132 25133 25134 25135 25136 25137 25138 25139 |
# File 'lib/aws-sdk-quicksight/types.rb', line 25132 class Parameters < Struct.new( :string_parameters, :integer_parameters, :decimal_parameters, :date_time_parameters) SENSITIVE = [] include Aws::Structure end |
#integer_parameters ⇒ Array<Types::IntegerParameter>
The parameters that have a data type of integer.
25132 25133 25134 25135 25136 25137 25138 25139 |
# File 'lib/aws-sdk-quicksight/types.rb', line 25132 class Parameters < Struct.new( :string_parameters, :integer_parameters, :decimal_parameters, :date_time_parameters) SENSITIVE = [] include Aws::Structure end |
#string_parameters ⇒ Array<Types::StringParameter>
The parameters that have a data type of string.
25132 25133 25134 25135 25136 25137 25138 25139 |
# File 'lib/aws-sdk-quicksight/types.rb', line 25132 class Parameters < Struct.new( :string_parameters, :integer_parameters, :decimal_parameters, :date_time_parameters) SENSITIVE = [] include Aws::Structure end |