Class: Aws::QuickSight::Types::DateTimeParameter
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::DateTimeParameter
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
Note:
When making an API call, you may pass DateTimeParameter data as a hash:
{
name: "NonEmptyString", # required
values: [Time.now], # required
}
A date-time parameter.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
A display name for the date-time parameter.
-
#values ⇒ Array<Time>
The values for the date-time parameter.
Instance Attribute Details
#name ⇒ String
A display name for the date-time parameter.
4324 4325 4326 4327 4328 4329 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 4324 class DateTimeParameter < Struct.new( :name, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<Time>
The values for the date-time parameter.
4324 4325 4326 4327 4328 4329 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 4324 class DateTimeParameter < Struct.new( :name, :values) SENSITIVE = [] include Aws::Structure end |