aws-sdk-quicksight 1.94.0 → 1.95.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 737941c24d1886357a50a7afcfe67e940b17d80a80f24c4082edbe82e5d80414
4
- data.tar.gz: ed7458278c277c331c931031328fe2dec4543ad1518410b20118f43e45fd4110
3
+ metadata.gz: 05cbda5163d188b7d4f6f4b3a57ceb9f35e4768351a7d8ec5db5f913e9533bd7
4
+ data.tar.gz: 31bb5fa3ebfca7a9649f35f1c9570b9e19c378c5cb9d83deb89ec91878544b4c
5
5
  SHA512:
6
- metadata.gz: 8e30d029c727f838ad0b5de124efe77103f3b8ca3d6b4ed944651d9b83c55646b0e1080cee8b4305b3553a8df7e84114933b5efda1c1ffcc849c49df7a78ac5b
7
- data.tar.gz: 8f81f10750ef042787dd38a68b3cb14cd04751bba97599f2274d600756ae6a2daaae025ce6f34412dff84779d56c7f3c06ad858bc9657933cb0a5866a1c7b994
6
+ metadata.gz: c567f5f317d9d720a75decc001cc0300f25c3981c0565cb73a5b553e1cf6595fc8d33af57344c4d28d3ca2ba304f9da5de1c6694de886fa53812995657994463
7
+ data.tar.gz: 54ce6cec73dc3a8ea72033da905746fc7159c15a85341e97fbdcd1ef25e48d7b2be30017390a477eab5fb0e1a0d8c7e65b0a9d12e6c4e7c87443d8a7ce64d4a4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.95.0 (2023-11-02)
5
+ ------------------
6
+
7
+ * Feature - Got confirmed from qmeixua@ about custom week features, and tested locally with aws cli and java sdk that the subtypes are showing up.
8
+
4
9
  1.94.0 (2023-10-19)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.94.0
1
+ 1.95.0
@@ -1024,6 +1024,7 @@ module Aws::QuickSight
1024
1024
  # {
1025
1025
  # name: "ColumnName", # required
1026
1026
  # type: "STRING", # required, accepts STRING, INTEGER, DECIMAL, DATETIME, BIT, BOOLEAN, JSON
1027
+ # sub_type: "FLOAT", # accepts FLOAT, FIXED
1027
1028
  # },
1028
1029
  # ],
1029
1030
  # },
@@ -1035,6 +1036,7 @@ module Aws::QuickSight
1035
1036
  # {
1036
1037
  # name: "ColumnName", # required
1037
1038
  # type: "STRING", # required, accepts STRING, INTEGER, DECIMAL, DATETIME, BIT, BOOLEAN, JSON
1039
+ # sub_type: "FLOAT", # accepts FLOAT, FIXED
1038
1040
  # },
1039
1041
  # ],
1040
1042
  # },
@@ -1051,6 +1053,7 @@ module Aws::QuickSight
1051
1053
  # {
1052
1054
  # name: "ColumnName", # required
1053
1055
  # type: "STRING", # required, accepts STRING, INTEGER, DECIMAL, DATETIME, BIT, BOOLEAN, JSON
1056
+ # sub_type: "FLOAT", # accepts FLOAT, FIXED
1054
1057
  # },
1055
1058
  # ],
1056
1059
  # },
@@ -1083,6 +1086,7 @@ module Aws::QuickSight
1083
1086
  # cast_column_type_operation: {
1084
1087
  # column_name: "ColumnName", # required
1085
1088
  # new_column_type: "STRING", # required, accepts STRING, INTEGER, DECIMAL, DATETIME
1089
+ # sub_type: "FLOAT", # accepts FLOAT, FIXED
1086
1090
  # format: "TypeCastFormat",
1087
1091
  # },
1088
1092
  # tag_column_operation: {
@@ -4078,6 +4082,8 @@ module Aws::QuickSight
4078
4082
  # resp.analysis.sheets #=> Array
4079
4083
  # resp.analysis.sheets[0].sheet_id #=> String
4080
4084
  # resp.analysis.sheets[0].name #=> String
4085
+ # resp.analysis.options.timezone #=> String
4086
+ # resp.analysis.options.week_start #=> String, one of "SUNDAY", "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY"
4081
4087
  # resp.status #=> Integer
4082
4088
  # resp.request_id #=> String
4083
4089
  #
@@ -4504,6 +4510,8 @@ module Aws::QuickSight
4504
4510
  # resp.dashboard.version.sheets #=> Array
4505
4511
  # resp.dashboard.version.sheets[0].sheet_id #=> String
4506
4512
  # resp.dashboard.version.sheets[0].name #=> String
4513
+ # resp.dashboard.version.options.timezone #=> String
4514
+ # resp.dashboard.version.options.week_start #=> String, one of "SUNDAY", "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY"
4507
4515
  # resp.dashboard.created_time #=> Time
4508
4516
  # resp.dashboard.last_published_time #=> Time
4509
4517
  # resp.dashboard.last_updated_time #=> Time
@@ -4830,12 +4838,14 @@ module Aws::QuickSight
4830
4838
  # resp.data_set.physical_table_map["PhysicalTableId"].relational_table.input_columns #=> Array
4831
4839
  # resp.data_set.physical_table_map["PhysicalTableId"].relational_table.input_columns[0].name #=> String
4832
4840
  # resp.data_set.physical_table_map["PhysicalTableId"].relational_table.input_columns[0].type #=> String, one of "STRING", "INTEGER", "DECIMAL", "DATETIME", "BIT", "BOOLEAN", "JSON"
4841
+ # resp.data_set.physical_table_map["PhysicalTableId"].relational_table.input_columns[0].sub_type #=> String, one of "FLOAT", "FIXED"
4833
4842
  # resp.data_set.physical_table_map["PhysicalTableId"].custom_sql.data_source_arn #=> String
4834
4843
  # resp.data_set.physical_table_map["PhysicalTableId"].custom_sql.name #=> String
4835
4844
  # resp.data_set.physical_table_map["PhysicalTableId"].custom_sql.sql_query #=> String
4836
4845
  # resp.data_set.physical_table_map["PhysicalTableId"].custom_sql.columns #=> Array
4837
4846
  # resp.data_set.physical_table_map["PhysicalTableId"].custom_sql.columns[0].name #=> String
4838
4847
  # resp.data_set.physical_table_map["PhysicalTableId"].custom_sql.columns[0].type #=> String, one of "STRING", "INTEGER", "DECIMAL", "DATETIME", "BIT", "BOOLEAN", "JSON"
4848
+ # resp.data_set.physical_table_map["PhysicalTableId"].custom_sql.columns[0].sub_type #=> String, one of "FLOAT", "FIXED"
4839
4849
  # resp.data_set.physical_table_map["PhysicalTableId"].s3_source.data_source_arn #=> String
4840
4850
  # resp.data_set.physical_table_map["PhysicalTableId"].s3_source.upload_settings.format #=> String, one of "CSV", "TSV", "CLF", "ELF", "XLSX", "JSON"
4841
4851
  # resp.data_set.physical_table_map["PhysicalTableId"].s3_source.upload_settings.start_from_row #=> Integer
@@ -4845,6 +4855,7 @@ module Aws::QuickSight
4845
4855
  # resp.data_set.physical_table_map["PhysicalTableId"].s3_source.input_columns #=> Array
4846
4856
  # resp.data_set.physical_table_map["PhysicalTableId"].s3_source.input_columns[0].name #=> String
4847
4857
  # resp.data_set.physical_table_map["PhysicalTableId"].s3_source.input_columns[0].type #=> String, one of "STRING", "INTEGER", "DECIMAL", "DATETIME", "BIT", "BOOLEAN", "JSON"
4858
+ # resp.data_set.physical_table_map["PhysicalTableId"].s3_source.input_columns[0].sub_type #=> String, one of "FLOAT", "FIXED"
4848
4859
  # resp.data_set.logical_table_map #=> Hash
4849
4860
  # resp.data_set.logical_table_map["LogicalTableId"].alias #=> String
4850
4861
  # resp.data_set.logical_table_map["LogicalTableId"].data_transforms #=> Array
@@ -4859,6 +4870,7 @@ module Aws::QuickSight
4859
4870
  # resp.data_set.logical_table_map["LogicalTableId"].data_transforms[0].rename_column_operation.new_column_name #=> String
4860
4871
  # resp.data_set.logical_table_map["LogicalTableId"].data_transforms[0].cast_column_type_operation.column_name #=> String
4861
4872
  # resp.data_set.logical_table_map["LogicalTableId"].data_transforms[0].cast_column_type_operation.new_column_type #=> String, one of "STRING", "INTEGER", "DECIMAL", "DATETIME"
4873
+ # resp.data_set.logical_table_map["LogicalTableId"].data_transforms[0].cast_column_type_operation.sub_type #=> String, one of "FLOAT", "FIXED"
4862
4874
  # resp.data_set.logical_table_map["LogicalTableId"].data_transforms[0].cast_column_type_operation.format #=> String
4863
4875
  # resp.data_set.logical_table_map["LogicalTableId"].data_transforms[0].tag_column_operation.column_name #=> String
4864
4876
  # resp.data_set.logical_table_map["LogicalTableId"].data_transforms[0].tag_column_operation.tags #=> Array
@@ -4889,6 +4901,7 @@ module Aws::QuickSight
4889
4901
  # resp.data_set.output_columns[0].name #=> String
4890
4902
  # resp.data_set.output_columns[0].description #=> String
4891
4903
  # resp.data_set.output_columns[0].type #=> String, one of "STRING", "INTEGER", "DECIMAL", "DATETIME"
4904
+ # resp.data_set.output_columns[0].sub_type #=> String, one of "FLOAT", "FIXED"
4892
4905
  # resp.data_set.import_mode #=> String, one of "SPICE", "DIRECT_QUERY"
4893
4906
  # resp.data_set.consumed_spice_capacity_in_bytes #=> Integer
4894
4907
  # resp.data_set.column_groups #=> Array
@@ -5823,6 +5836,8 @@ module Aws::QuickSight
5823
5836
  # resp.template.version.sheets #=> Array
5824
5837
  # resp.template.version.sheets[0].sheet_id #=> String
5825
5838
  # resp.template.version.sheets[0].name #=> String
5839
+ # resp.template.version.options.timezone #=> String
5840
+ # resp.template.version.options.week_start #=> String, one of "SUNDAY", "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY"
5826
5841
  # resp.template.template_id #=> String
5827
5842
  # resp.template.last_updated_time #=> Time
5828
5843
  # resp.template.created_time #=> Time
@@ -10647,6 +10662,7 @@ module Aws::QuickSight
10647
10662
  # {
10648
10663
  # name: "ColumnName", # required
10649
10664
  # type: "STRING", # required, accepts STRING, INTEGER, DECIMAL, DATETIME, BIT, BOOLEAN, JSON
10665
+ # sub_type: "FLOAT", # accepts FLOAT, FIXED
10650
10666
  # },
10651
10667
  # ],
10652
10668
  # },
@@ -10658,6 +10674,7 @@ module Aws::QuickSight
10658
10674
  # {
10659
10675
  # name: "ColumnName", # required
10660
10676
  # type: "STRING", # required, accepts STRING, INTEGER, DECIMAL, DATETIME, BIT, BOOLEAN, JSON
10677
+ # sub_type: "FLOAT", # accepts FLOAT, FIXED
10661
10678
  # },
10662
10679
  # ],
10663
10680
  # },
@@ -10674,6 +10691,7 @@ module Aws::QuickSight
10674
10691
  # {
10675
10692
  # name: "ColumnName", # required
10676
10693
  # type: "STRING", # required, accepts STRING, INTEGER, DECIMAL, DATETIME, BIT, BOOLEAN, JSON
10694
+ # sub_type: "FLOAT", # accepts FLOAT, FIXED
10677
10695
  # },
10678
10696
  # ],
10679
10697
  # },
@@ -10706,6 +10724,7 @@ module Aws::QuickSight
10706
10724
  # cast_column_type_operation: {
10707
10725
  # column_name: "ColumnName", # required
10708
10726
  # new_column_type: "STRING", # required, accepts STRING, INTEGER, DECIMAL, DATETIME
10727
+ # sub_type: "FLOAT", # accepts FLOAT, FIXED
10709
10728
  # format: "TypeCastFormat",
10710
10729
  # },
10711
10730
  # tag_column_operation: {
@@ -12731,7 +12750,7 @@ module Aws::QuickSight
12731
12750
  params: params,
12732
12751
  config: config)
12733
12752
  context[:gem_name] = 'aws-sdk-quicksight'
12734
- context[:gem_version] = '1.94.0'
12753
+ context[:gem_version] = '1.95.0'
12735
12754
  Seahorse::Client::Request.new(handlers, context)
12736
12755
  end
12737
12756
 
@@ -125,6 +125,7 @@ module Aws::QuickSight
125
125
  AssetBundleImportSource = Shapes::StructureShape.new(name: 'AssetBundleImportSource')
126
126
  AssetBundleImportSourceDescription = Shapes::StructureShape.new(name: 'AssetBundleImportSourceDescription')
127
127
  AssetBundleResourceArns = Shapes::ListShape.new(name: 'AssetBundleResourceArns')
128
+ AssetOptions = Shapes::StructureShape.new(name: 'AssetOptions')
128
129
  AssignmentStatus = Shapes::StringShape.new(name: 'AssignmentStatus')
129
130
  AthenaParameters = Shapes::StructureShape.new(name: 'AthenaParameters')
130
131
  AttributeAggregationFunction = Shapes::StructureShape.new(name: 'AttributeAggregationFunction')
@@ -220,6 +221,7 @@ module Aws::QuickSight
220
221
  ColumnConfiguration = Shapes::StructureShape.new(name: 'ColumnConfiguration')
221
222
  ColumnConfigurationList = Shapes::ListShape.new(name: 'ColumnConfigurationList')
222
223
  ColumnDataRole = Shapes::StringShape.new(name: 'ColumnDataRole')
224
+ ColumnDataSubType = Shapes::StringShape.new(name: 'ColumnDataSubType')
223
225
  ColumnDataType = Shapes::StringShape.new(name: 'ColumnDataType')
224
226
  ColumnDescription = Shapes::StructureShape.new(name: 'ColumnDescription')
225
227
  ColumnDescriptiveText = Shapes::StringShape.new(name: 'ColumnDescriptiveText')
@@ -448,6 +450,7 @@ module Aws::QuickSight
448
450
  DateTimePickerControlDisplayOptions = Shapes::StructureShape.new(name: 'DateTimePickerControlDisplayOptions')
449
451
  DateTimeValueWhenUnsetConfiguration = Shapes::StructureShape.new(name: 'DateTimeValueWhenUnsetConfiguration')
450
452
  DayOfMonth = Shapes::StringShape.new(name: 'DayOfMonth')
453
+ DayOfTheWeek = Shapes::StringShape.new(name: 'DayOfTheWeek')
451
454
  DayOfWeek = Shapes::StringShape.new(name: 'DayOfWeek')
452
455
  DbUsername = Shapes::StringShape.new(name: 'DbUsername')
453
456
  DecimalDatasetParameter = Shapes::StructureShape.new(name: 'DecimalDatasetParameter')
@@ -1785,6 +1788,7 @@ module Aws::QuickSight
1785
1788
  Analysis.add_member(:created_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedTime"))
1786
1789
  Analysis.add_member(:last_updated_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdatedTime"))
1787
1790
  Analysis.add_member(:sheets, Shapes::ShapeRef.new(shape: SheetList, location_name: "Sheets"))
1791
+ Analysis.add_member(:options, Shapes::ShapeRef.new(shape: AssetOptions, location_name: "Options"))
1788
1792
  Analysis.struct_class = Types::Analysis
1789
1793
 
1790
1794
  AnalysisDefaults.add_member(:default_new_sheet_configuration, Shapes::ShapeRef.new(shape: DefaultNewSheetConfiguration, required: true, location_name: "DefaultNewSheetConfiguration"))
@@ -1797,6 +1801,7 @@ module Aws::QuickSight
1797
1801
  AnalysisDefinition.add_member(:filter_groups, Shapes::ShapeRef.new(shape: FilterGroupList, location_name: "FilterGroups"))
1798
1802
  AnalysisDefinition.add_member(:column_configurations, Shapes::ShapeRef.new(shape: ColumnConfigurationList, location_name: "ColumnConfigurations"))
1799
1803
  AnalysisDefinition.add_member(:analysis_defaults, Shapes::ShapeRef.new(shape: AnalysisDefaults, location_name: "AnalysisDefaults"))
1804
+ AnalysisDefinition.add_member(:options, Shapes::ShapeRef.new(shape: AssetOptions, location_name: "Options"))
1800
1805
  AnalysisDefinition.struct_class = Types::AnalysisDefinition
1801
1806
 
1802
1807
  AnalysisError.add_member(:type, Shapes::ShapeRef.new(shape: AnalysisErrorType, location_name: "Type"))
@@ -2054,6 +2059,10 @@ module Aws::QuickSight
2054
2059
 
2055
2060
  AssetBundleResourceArns.member = Shapes::ShapeRef.new(shape: Arn)
2056
2061
 
2062
+ AssetOptions.add_member(:timezone, Shapes::ShapeRef.new(shape: String, location_name: "Timezone"))
2063
+ AssetOptions.add_member(:week_start, Shapes::ShapeRef.new(shape: DayOfTheWeek, location_name: "WeekStart"))
2064
+ AssetOptions.struct_class = Types::AssetOptions
2065
+
2057
2066
  AthenaParameters.add_member(:work_group, Shapes::ShapeRef.new(shape: WorkGroup, location_name: "WorkGroup"))
2058
2067
  AthenaParameters.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleArn"))
2059
2068
  AthenaParameters.struct_class = Types::AthenaParameters
@@ -2276,6 +2285,7 @@ module Aws::QuickSight
2276
2285
 
2277
2286
  CastColumnTypeOperation.add_member(:column_name, Shapes::ShapeRef.new(shape: ColumnName, required: true, location_name: "ColumnName"))
2278
2287
  CastColumnTypeOperation.add_member(:new_column_type, Shapes::ShapeRef.new(shape: ColumnDataType, required: true, location_name: "NewColumnType"))
2288
+ CastColumnTypeOperation.add_member(:sub_type, Shapes::ShapeRef.new(shape: ColumnDataSubType, location_name: "SubType"))
2279
2289
  CastColumnTypeOperation.add_member(:format, Shapes::ShapeRef.new(shape: TypeCastFormat, location_name: "Format"))
2280
2290
  CastColumnTypeOperation.struct_class = Types::CastColumnTypeOperation
2281
2291
 
@@ -3014,6 +3024,7 @@ module Aws::QuickSight
3014
3024
  DashboardVersion.add_member(:description, Shapes::ShapeRef.new(shape: VersionDescription, location_name: "Description"))
3015
3025
  DashboardVersion.add_member(:theme_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ThemeArn"))
3016
3026
  DashboardVersion.add_member(:sheets, Shapes::ShapeRef.new(shape: SheetList, location_name: "Sheets"))
3027
+ DashboardVersion.add_member(:options, Shapes::ShapeRef.new(shape: AssetOptions, location_name: "Options"))
3017
3028
  DashboardVersion.struct_class = Types::DashboardVersion
3018
3029
 
3019
3030
  DashboardVersionDefinition.add_member(:data_set_identifier_declarations, Shapes::ShapeRef.new(shape: DataSetIdentifierDeclarationList, required: true, location_name: "DataSetIdentifierDeclarations"))
@@ -3023,6 +3034,7 @@ module Aws::QuickSight
3023
3034
  DashboardVersionDefinition.add_member(:filter_groups, Shapes::ShapeRef.new(shape: FilterGroupList, location_name: "FilterGroups"))
3024
3035
  DashboardVersionDefinition.add_member(:column_configurations, Shapes::ShapeRef.new(shape: ColumnConfigurationList, location_name: "ColumnConfigurations"))
3025
3036
  DashboardVersionDefinition.add_member(:analysis_defaults, Shapes::ShapeRef.new(shape: AnalysisDefaults, location_name: "AnalysisDefaults"))
3037
+ DashboardVersionDefinition.add_member(:options, Shapes::ShapeRef.new(shape: AssetOptions, location_name: "Options"))
3026
3038
  DashboardVersionDefinition.struct_class = Types::DashboardVersionDefinition
3027
3039
 
3028
3040
  DashboardVersionSummary.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
@@ -4921,6 +4933,7 @@ module Aws::QuickSight
4921
4933
 
4922
4934
  InputColumn.add_member(:name, Shapes::ShapeRef.new(shape: ColumnName, required: true, location_name: "Name"))
4923
4935
  InputColumn.add_member(:type, Shapes::ShapeRef.new(shape: InputColumnDataType, required: true, location_name: "Type"))
4936
+ InputColumn.add_member(:sub_type, Shapes::ShapeRef.new(shape: ColumnDataSubType, location_name: "SubType"))
4924
4937
  InputColumn.struct_class = Types::InputColumn
4925
4938
 
4926
4939
  InputColumnList.member = Shapes::ShapeRef.new(shape: InputColumn)
@@ -5730,6 +5743,7 @@ module Aws::QuickSight
5730
5743
  OutputColumn.add_member(:name, Shapes::ShapeRef.new(shape: ColumnName, location_name: "Name"))
5731
5744
  OutputColumn.add_member(:description, Shapes::ShapeRef.new(shape: ColumnDescriptiveText, location_name: "Description"))
5732
5745
  OutputColumn.add_member(:type, Shapes::ShapeRef.new(shape: ColumnDataType, location_name: "Type"))
5746
+ OutputColumn.add_member(:sub_type, Shapes::ShapeRef.new(shape: ColumnDataSubType, location_name: "SubType"))
5733
5747
  OutputColumn.struct_class = Types::OutputColumn
5734
5748
 
5735
5749
  OutputColumnList.member = Shapes::ShapeRef.new(shape: OutputColumn)
@@ -7128,6 +7142,7 @@ module Aws::QuickSight
7128
7142
  TemplateVersion.add_member(:source_entity_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "SourceEntityArn"))
7129
7143
  TemplateVersion.add_member(:theme_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ThemeArn"))
7130
7144
  TemplateVersion.add_member(:sheets, Shapes::ShapeRef.new(shape: SheetList, location_name: "Sheets"))
7145
+ TemplateVersion.add_member(:options, Shapes::ShapeRef.new(shape: AssetOptions, location_name: "Options"))
7131
7146
  TemplateVersion.struct_class = Types::TemplateVersion
7132
7147
 
7133
7148
  TemplateVersionDefinition.add_member(:data_set_configurations, Shapes::ShapeRef.new(shape: DataSetConfigurationList, required: true, location_name: "DataSetConfigurations"))
@@ -7137,6 +7152,7 @@ module Aws::QuickSight
7137
7152
  TemplateVersionDefinition.add_member(:filter_groups, Shapes::ShapeRef.new(shape: FilterGroupList, location_name: "FilterGroups"))
7138
7153
  TemplateVersionDefinition.add_member(:column_configurations, Shapes::ShapeRef.new(shape: ColumnConfigurationList, location_name: "ColumnConfigurations"))
7139
7154
  TemplateVersionDefinition.add_member(:analysis_defaults, Shapes::ShapeRef.new(shape: AnalysisDefaults, location_name: "AnalysisDefaults"))
7155
+ TemplateVersionDefinition.add_member(:options, Shapes::ShapeRef.new(shape: AssetOptions, location_name: "Options"))
7140
7156
  TemplateVersionDefinition.struct_class = Types::TemplateVersionDefinition
7141
7157
 
7142
7158
  TemplateVersionSummary.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
@@ -355,6 +355,10 @@ module Aws::QuickSight
355
355
  # of each sheet.
356
356
  # @return [Array<Types::Sheet>]
357
357
  #
358
+ # @!attribute [rw] options
359
+ # An array of analysis level configurations.
360
+ # @return [Types::AssetOptions]
361
+ #
358
362
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/Analysis AWS API Documentation
359
363
  #
360
364
  class Analysis < Struct.new(
@@ -367,7 +371,8 @@ module Aws::QuickSight
367
371
  :theme_arn,
368
372
  :created_time,
369
373
  :last_updated_time,
370
- :sheets)
374
+ :sheets,
375
+ :options)
371
376
  SENSITIVE = []
372
377
  include Aws::Structure
373
378
  end
@@ -439,6 +444,10 @@ module Aws::QuickSight
439
444
  # The configuration for default analysis settings.
440
445
  # @return [Types::AnalysisDefaults]
441
446
  #
447
+ # @!attribute [rw] options
448
+ # An array of option definitions for an analysis.
449
+ # @return [Types::AssetOptions]
450
+ #
442
451
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AnalysisDefinition AWS API Documentation
443
452
  #
444
453
  class AnalysisDefinition < Struct.new(
@@ -448,7 +457,8 @@ module Aws::QuickSight
448
457
  :parameter_declarations,
449
458
  :filter_groups,
450
459
  :column_configurations,
451
- :analysis_defaults)
460
+ :analysis_defaults,
461
+ :options)
452
462
  SENSITIVE = []
453
463
  include Aws::Structure
454
464
  end
@@ -1553,6 +1563,25 @@ module Aws::QuickSight
1553
1563
  include Aws::Structure
1554
1564
  end
1555
1565
 
1566
+ # An array of analysis level configurations.
1567
+ #
1568
+ # @!attribute [rw] timezone
1569
+ # Determines the timezone for the analysis.
1570
+ # @return [String]
1571
+ #
1572
+ # @!attribute [rw] week_start
1573
+ # Determines the week start day for an analysis.
1574
+ # @return [String]
1575
+ #
1576
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AssetOptions AWS API Documentation
1577
+ #
1578
+ class AssetOptions < Struct.new(
1579
+ :timezone,
1580
+ :week_start)
1581
+ SENSITIVE = []
1582
+ include Aws::Structure
1583
+ end
1584
+
1556
1585
  # Parameters for Amazon Athena.
1557
1586
  #
1558
1587
  # @!attribute [rw] work_group
@@ -2640,6 +2669,11 @@ module Aws::QuickSight
2640
2669
  # New column data type.
2641
2670
  # @return [String]
2642
2671
  #
2672
+ # @!attribute [rw] sub_type
2673
+ # The sub data type of the new column. Sub types are only available
2674
+ # for decimal columns that are part of a SPICE dataset.
2675
+ # @return [String]
2676
+ #
2643
2677
  # @!attribute [rw] format
2644
2678
  # When casting a column from string to datetime type, you can supply a
2645
2679
  # string in a format supported by Amazon QuickSight to denote the
@@ -2651,6 +2685,7 @@ module Aws::QuickSight
2651
2685
  class CastColumnTypeOperation < Struct.new(
2652
2686
  :column_name,
2653
2687
  :new_column_type,
2688
+ :sub_type,
2654
2689
  :format)
2655
2690
  SENSITIVE = []
2656
2691
  include Aws::Structure
@@ -6422,6 +6457,10 @@ module Aws::QuickSight
6422
6457
  # of each sheet.
6423
6458
  # @return [Array<Types::Sheet>]
6424
6459
  #
6460
+ # @!attribute [rw] options
6461
+ # An array of analysis level configurations.
6462
+ # @return [Types::AssetOptions]
6463
+ #
6425
6464
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DashboardVersion AWS API Documentation
6426
6465
  #
6427
6466
  class DashboardVersion < Struct.new(
@@ -6434,7 +6473,8 @@ module Aws::QuickSight
6434
6473
  :data_set_arns,
6435
6474
  :description,
6436
6475
  :theme_arn,
6437
- :sheets)
6476
+ :sheets,
6477
+ :options)
6438
6478
  SENSITIVE = []
6439
6479
  include Aws::Structure
6440
6480
  end
@@ -6489,6 +6529,10 @@ module Aws::QuickSight
6489
6529
  # The configuration for default analysis settings.
6490
6530
  # @return [Types::AnalysisDefaults]
6491
6531
  #
6532
+ # @!attribute [rw] options
6533
+ # An array of option definitions for a dashboard.
6534
+ # @return [Types::AssetOptions]
6535
+ #
6492
6536
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DashboardVersionDefinition AWS API Documentation
6493
6537
  #
6494
6538
  class DashboardVersionDefinition < Struct.new(
@@ -6498,7 +6542,8 @@ module Aws::QuickSight
6498
6542
  :parameter_declarations,
6499
6543
  :filter_groups,
6500
6544
  :column_configurations,
6501
- :analysis_defaults)
6545
+ :analysis_defaults,
6546
+ :options)
6502
6547
  SENSITIVE = []
6503
6548
  include Aws::Structure
6504
6549
  end
@@ -15782,11 +15827,17 @@ module Aws::QuickSight
15782
15827
  # The data type of the column.
15783
15828
  # @return [String]
15784
15829
  #
15830
+ # @!attribute [rw] sub_type
15831
+ # The sub data type of the column. Sub types are only available for
15832
+ # decimal columns that are part of a SPICE dataset.
15833
+ # @return [String]
15834
+ #
15785
15835
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/InputColumn AWS API Documentation
15786
15836
  #
15787
15837
  class InputColumn < Struct.new(
15788
15838
  :name,
15789
- :type)
15839
+ :type,
15840
+ :sub_type)
15790
15841
  SENSITIVE = []
15791
15842
  include Aws::Structure
15792
15843
  end
@@ -19728,7 +19779,7 @@ module Aws::QuickSight
19728
19779
  # Output column.
19729
19780
  #
19730
19781
  # @!attribute [rw] name
19731
- # A display name for the dataset.
19782
+ # The display name of the column..
19732
19783
  # @return [String]
19733
19784
  #
19734
19785
  # @!attribute [rw] description
@@ -19736,7 +19787,11 @@ module Aws::QuickSight
19736
19787
  # @return [String]
19737
19788
  #
19738
19789
  # @!attribute [rw] type
19739
- # The type.
19790
+ # The data type of the column.
19791
+ # @return [String]
19792
+ #
19793
+ # @!attribute [rw] sub_type
19794
+ # The sub data type of the column.
19740
19795
  # @return [String]
19741
19796
  #
19742
19797
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/OutputColumn AWS API Documentation
@@ -19744,7 +19799,8 @@ module Aws::QuickSight
19744
19799
  class OutputColumn < Struct.new(
19745
19800
  :name,
19746
19801
  :description,
19747
- :type)
19802
+ :type,
19803
+ :sub_type)
19748
19804
  SENSITIVE = []
19749
19805
  include Aws::Structure
19750
19806
  end
@@ -26569,6 +26625,10 @@ module Aws::QuickSight
26569
26625
  # of each sheet.
26570
26626
  # @return [Array<Types::Sheet>]
26571
26627
  #
26628
+ # @!attribute [rw] options
26629
+ # An array of analysis level configurations.
26630
+ # @return [Types::AssetOptions]
26631
+ #
26572
26632
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TemplateVersion AWS API Documentation
26573
26633
  #
26574
26634
  class TemplateVersion < Struct.new(
@@ -26580,7 +26640,8 @@ module Aws::QuickSight
26580
26640
  :description,
26581
26641
  :source_entity_arn,
26582
26642
  :theme_arn,
26583
- :sheets)
26643
+ :sheets,
26644
+ :options)
26584
26645
  SENSITIVE = []
26585
26646
  include Aws::Structure
26586
26647
  end
@@ -26635,6 +26696,10 @@ module Aws::QuickSight
26635
26696
  # The configuration for default analysis settings.
26636
26697
  # @return [Types::AnalysisDefaults]
26637
26698
  #
26699
+ # @!attribute [rw] options
26700
+ # An array of option definitions for a template.
26701
+ # @return [Types::AssetOptions]
26702
+ #
26638
26703
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TemplateVersionDefinition AWS API Documentation
26639
26704
  #
26640
26705
  class TemplateVersionDefinition < Struct.new(
@@ -26644,7 +26709,8 @@ module Aws::QuickSight
26644
26709
  :parameter_declarations,
26645
26710
  :filter_groups,
26646
26711
  :column_configurations,
26647
- :analysis_defaults)
26712
+ :analysis_defaults,
26713
+ :options)
26648
26714
  SENSITIVE = []
26649
26715
  include Aws::Structure
26650
26716
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-quicksight/customizations'
52
52
  # @!group service
53
53
  module Aws::QuickSight
54
54
 
55
- GEM_VERSION = '1.94.0'
55
+ GEM_VERSION = '1.95.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-quicksight
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.94.0
4
+ version: 1.95.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-19 00:00:00.000000000 Z
11
+ date: 2023-11-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core