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.
23868 23869 23870 23871 23872 23873 23874 23875 |
# File 'lib/aws-sdk-quicksight/types.rb', line 23868 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.
23868 23869 23870 23871 23872 23873 23874 23875 |
# File 'lib/aws-sdk-quicksight/types.rb', line 23868 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.
23868 23869 23870 23871 23872 23873 23874 23875 |
# File 'lib/aws-sdk-quicksight/types.rb', line 23868 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.
23868 23869 23870 23871 23872 23873 23874 23875 |
# File 'lib/aws-sdk-quicksight/types.rb', line 23868 class Parameters < Struct.new( :string_parameters, :integer_parameters, :decimal_parameters, :date_time_parameters) SENSITIVE = [] include Aws::Structure end |