aws-sdk-quicksight 1.180.0 → 1.181.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a32ebbc28b7e6ce7aa6053dfb0907389020a7e5dc117ee1133f9c3ff425e86f9
4
- data.tar.gz: 45d296feac95618eef0f54762721e4c7badbb5b7d820d651bd019bd3c79b9452
3
+ metadata.gz: 2528942b56a7e0f7e530b4117f7c002f7fc67cf5611895d34508dfa721f659d4
4
+ data.tar.gz: 6e394dd92dd8297bbce3cdf07f2f3303c7c0a0aa92d4c1570c752b390e05dbca
5
5
  SHA512:
6
- metadata.gz: 6b3f3490ba3f16ff0f26771bd11adf8b2f95e923e34cf1f299b82aaa03ed0661e3499399c0a093145142a9fc25a796cb12679712677aa26cfaa3ba243b2675e4
7
- data.tar.gz: e7194b96bcac7e1cd4522dd517ce81a0045624b8218e496e5ee17e55cde39de56f5bcf440cb191c0c5ce0435b5801e900d414898d6770665050890704233c8ff
6
+ metadata.gz: 7988b4e6ae3ff78f96a544bcbb52128323f23642bdbf077a64cd2949bf2d320c5c0198977f0ff0feeac53807b78a706324c5ad7b1e6628d2b132490f1204bbc2
7
+ data.tar.gz: aec8a11858a878daf73228b9ac9889ede0ac8e197993f3f72b231c2e6c31b13df273652719acca06f17e8dd691a48a91df76e1500f994a01f5805a36d4009015
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.181.0 (2026-05-18)
5
+ ------------------
6
+
7
+ * Feature - Support for dataset enrichment and geo spatial in new data preparation experience
8
+
4
9
  1.180.0 (2026-05-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.180.0
1
+ 1.181.0
@@ -3385,8 +3385,45 @@ module Aws::QuickSight
3385
3385
  # status: "ENABLED", # accepts ENABLED, DISABLED
3386
3386
  # },
3387
3387
  # },
3388
+ # semantic_metadata: {
3389
+ # column_metadata: [
3390
+ # {
3391
+ # column_names: ["ColumnName"],
3392
+ # column_properties: [ # required
3393
+ # {
3394
+ # description: {
3395
+ # text: "ColumnDescriptiveText",
3396
+ # },
3397
+ # additional_notes: {
3398
+ # text: "AdditionalNotesText",
3399
+ # },
3400
+ # semantic_type: {
3401
+ # geographical_role: "COUNTRY", # accepts COUNTRY, STATE, COUNTY, CITY, POSTCODE, LONGITUDE, LATITUDE
3402
+ # },
3403
+ # },
3404
+ # ],
3405
+ # },
3406
+ # ],
3407
+ # },
3388
3408
  # },
3389
3409
  # },
3410
+ # semantic_metadata: [
3411
+ # {
3412
+ # description: {
3413
+ # text: "DataSetDescriptiveText", # required
3414
+ # },
3415
+ # custom_instructions: [
3416
+ # {
3417
+ # inline_custom_instruction: {
3418
+ # instruction_text: "InlineCustomInstructionText", # required
3419
+ # uploaded_document_metadata: {
3420
+ # name: "UploadedDocumentName",
3421
+ # },
3422
+ # },
3423
+ # },
3424
+ # ],
3425
+ # },
3426
+ # ],
3390
3427
  # },
3391
3428
  # })
3392
3429
  #
@@ -9145,6 +9182,18 @@ module Aws::QuickSight
9145
9182
  # resp.data_set.semantic_model_configuration.table_map["DataSetEntityResourceId"].row_level_permission_configuration.row_level_permission_data_set.permission_policy #=> String, one of "GRANT_ACCESS", "DENY_ACCESS"
9146
9183
  # resp.data_set.semantic_model_configuration.table_map["DataSetEntityResourceId"].row_level_permission_configuration.row_level_permission_data_set.format_version #=> String, one of "VERSION_1", "VERSION_2"
9147
9184
  # resp.data_set.semantic_model_configuration.table_map["DataSetEntityResourceId"].row_level_permission_configuration.row_level_permission_data_set.status #=> String, one of "ENABLED", "DISABLED"
9185
+ # resp.data_set.semantic_model_configuration.table_map["DataSetEntityResourceId"].semantic_metadata.column_metadata #=> Array
9186
+ # resp.data_set.semantic_model_configuration.table_map["DataSetEntityResourceId"].semantic_metadata.column_metadata[0].column_names #=> Array
9187
+ # resp.data_set.semantic_model_configuration.table_map["DataSetEntityResourceId"].semantic_metadata.column_metadata[0].column_names[0] #=> String
9188
+ # resp.data_set.semantic_model_configuration.table_map["DataSetEntityResourceId"].semantic_metadata.column_metadata[0].column_properties #=> Array
9189
+ # resp.data_set.semantic_model_configuration.table_map["DataSetEntityResourceId"].semantic_metadata.column_metadata[0].column_properties[0].description.text #=> String
9190
+ # resp.data_set.semantic_model_configuration.table_map["DataSetEntityResourceId"].semantic_metadata.column_metadata[0].column_properties[0].additional_notes.text #=> String
9191
+ # resp.data_set.semantic_model_configuration.table_map["DataSetEntityResourceId"].semantic_metadata.column_metadata[0].column_properties[0].semantic_type.geographical_role #=> String, one of "COUNTRY", "STATE", "COUNTY", "CITY", "POSTCODE", "LONGITUDE", "LATITUDE"
9192
+ # resp.data_set.semantic_model_configuration.semantic_metadata #=> Array
9193
+ # resp.data_set.semantic_model_configuration.semantic_metadata[0].description.text #=> String
9194
+ # resp.data_set.semantic_model_configuration.semantic_metadata[0].custom_instructions #=> Array
9195
+ # resp.data_set.semantic_model_configuration.semantic_metadata[0].custom_instructions[0].inline_custom_instruction.instruction_text #=> String
9196
+ # resp.data_set.semantic_model_configuration.semantic_metadata[0].custom_instructions[0].inline_custom_instruction.uploaded_document_metadata.name #=> String
9148
9197
  # resp.request_id #=> String
9149
9198
  # resp.status #=> Integer
9150
9199
  #
@@ -19443,8 +19492,45 @@ module Aws::QuickSight
19443
19492
  # status: "ENABLED", # accepts ENABLED, DISABLED
19444
19493
  # },
19445
19494
  # },
19495
+ # semantic_metadata: {
19496
+ # column_metadata: [
19497
+ # {
19498
+ # column_names: ["ColumnName"],
19499
+ # column_properties: [ # required
19500
+ # {
19501
+ # description: {
19502
+ # text: "ColumnDescriptiveText",
19503
+ # },
19504
+ # additional_notes: {
19505
+ # text: "AdditionalNotesText",
19506
+ # },
19507
+ # semantic_type: {
19508
+ # geographical_role: "COUNTRY", # accepts COUNTRY, STATE, COUNTY, CITY, POSTCODE, LONGITUDE, LATITUDE
19509
+ # },
19510
+ # },
19511
+ # ],
19512
+ # },
19513
+ # ],
19514
+ # },
19446
19515
  # },
19447
19516
  # },
19517
+ # semantic_metadata: [
19518
+ # {
19519
+ # description: {
19520
+ # text: "DataSetDescriptiveText", # required
19521
+ # },
19522
+ # custom_instructions: [
19523
+ # {
19524
+ # inline_custom_instruction: {
19525
+ # instruction_text: "InlineCustomInstructionText", # required
19526
+ # uploaded_document_metadata: {
19527
+ # name: "UploadedDocumentName",
19528
+ # },
19529
+ # },
19530
+ # },
19531
+ # ],
19532
+ # },
19533
+ # ],
19448
19534
  # },
19449
19535
  # })
19450
19536
  #
@@ -22182,7 +22268,7 @@ module Aws::QuickSight
22182
22268
  tracer: tracer
22183
22269
  )
22184
22270
  context[:gem_name] = 'aws-sdk-quicksight'
22185
- context[:gem_version] = '1.180.0'
22271
+ context[:gem_version] = '1.181.0'
22186
22272
  Seahorse::Client::Request.new(handlers, context)
22187
22273
  end
22188
22274
 
@@ -44,6 +44,8 @@ module Aws::QuickSight
44
44
  ActiveIAMPolicyAssignmentList = Shapes::ListShape.new(name: 'ActiveIAMPolicyAssignmentList')
45
45
  AdHocFilteringOption = Shapes::StructureShape.new(name: 'AdHocFilteringOption')
46
46
  AdditionalDashboardIdList = Shapes::ListShape.new(name: 'AdditionalDashboardIdList')
47
+ AdditionalNotes = Shapes::StructureShape.new(name: 'AdditionalNotes')
48
+ AdditionalNotesText = Shapes::StringShape.new(name: 'AdditionalNotesText')
47
49
  AggFunction = Shapes::StructureShape.new(name: 'AggFunction')
48
50
  AggFunctionParamKey = Shapes::StringShape.new(name: 'AggFunctionParamKey')
49
51
  AggFunctionParamMap = Shapes::MapShape.new(name: 'AggFunctionParamMap')
@@ -392,10 +394,14 @@ module Aws::QuickSight
392
394
  ColumnLevelPermissionRuleList = Shapes::ListShape.new(name: 'ColumnLevelPermissionRuleList')
393
395
  ColumnList = Shapes::ListShape.new(name: 'ColumnList')
394
396
  ColumnName = Shapes::StringShape.new(name: 'ColumnName')
397
+ ColumnNameList = Shapes::ListShape.new(name: 'ColumnNameList')
395
398
  ColumnOrderingType = Shapes::StringShape.new(name: 'ColumnOrderingType')
396
399
  ColumnRole = Shapes::StringShape.new(name: 'ColumnRole')
397
400
  ColumnSchema = Shapes::StructureShape.new(name: 'ColumnSchema')
398
401
  ColumnSchemaList = Shapes::ListShape.new(name: 'ColumnSchemaList')
402
+ ColumnSemanticProperty = Shapes::StructureShape.new(name: 'ColumnSemanticProperty')
403
+ ColumnSemanticPropertyList = Shapes::ListShape.new(name: 'ColumnSemanticPropertyList')
404
+ ColumnSemanticType = Shapes::StructureShape.new(name: 'ColumnSemanticType')
399
405
  ColumnSort = Shapes::StructureShape.new(name: 'ColumnSort')
400
406
  ColumnTag = Shapes::StructureShape.new(name: 'ColumnTag')
401
407
  ColumnTagList = Shapes::ListShape.new(name: 'ColumnTagList')
@@ -529,6 +535,8 @@ module Aws::QuickSight
529
535
  CustomContentVisual = Shapes::StructureShape.new(name: 'CustomContentVisual')
530
536
  CustomFilterConfiguration = Shapes::StructureShape.new(name: 'CustomFilterConfiguration')
531
537
  CustomFilterListConfiguration = Shapes::StructureShape.new(name: 'CustomFilterListConfiguration')
538
+ CustomInstruction = Shapes::StructureShape.new(name: 'CustomInstruction')
539
+ CustomInstructionList = Shapes::ListShape.new(name: 'CustomInstructionList')
532
540
  CustomInstructions = Shapes::StructureShape.new(name: 'CustomInstructions')
533
541
  CustomInstructionsString = Shapes::StringShape.new(name: 'CustomInstructionsString')
534
542
  CustomLabel = Shapes::StringShape.new(name: 'CustomLabel')
@@ -609,6 +617,7 @@ module Aws::QuickSight
609
617
  DataSetDateFilterCondition = Shapes::StructureShape.new(name: 'DataSetDateFilterCondition')
610
618
  DataSetDateFilterValue = Shapes::StructureShape.new(name: 'DataSetDateFilterValue')
611
619
  DataSetDateRangeFilterCondition = Shapes::StructureShape.new(name: 'DataSetDateRangeFilterCondition')
620
+ DataSetDescriptiveText = Shapes::StringShape.new(name: 'DataSetDescriptiveText')
612
621
  DataSetEntityResourceId = Shapes::StringShape.new(name: 'DataSetEntityResourceId')
613
622
  DataSetFilterAttribute = Shapes::StringShape.new(name: 'DataSetFilterAttribute')
614
623
  DataSetIdentifier = Shapes::StringShape.new(name: 'DataSetIdentifier')
@@ -628,6 +637,9 @@ module Aws::QuickSight
628
637
  DataSetSchema = Shapes::StructureShape.new(name: 'DataSetSchema')
629
638
  DataSetSearchFilter = Shapes::StructureShape.new(name: 'DataSetSearchFilter')
630
639
  DataSetSearchFilterList = Shapes::ListShape.new(name: 'DataSetSearchFilterList')
640
+ DataSetSemanticDescription = Shapes::StructureShape.new(name: 'DataSetSemanticDescription')
641
+ DataSetSemanticMetadata = Shapes::StructureShape.new(name: 'DataSetSemanticMetadata')
642
+ DataSetSemanticMetadataList = Shapes::ListShape.new(name: 'DataSetSemanticMetadataList')
631
643
  DataSetStringComparisonFilterCondition = Shapes::StructureShape.new(name: 'DataSetStringComparisonFilterCondition')
632
644
  DataSetStringComparisonFilterOperator = Shapes::StringShape.new(name: 'DataSetStringComparisonFilterOperator')
633
645
  DataSetStringFilterCondition = Shapes::StructureShape.new(name: 'DataSetStringFilterCondition')
@@ -1251,6 +1263,8 @@ module Aws::QuickSight
1251
1263
  IngestionStatus = Shapes::StringShape.new(name: 'IngestionStatus')
1252
1264
  IngestionType = Shapes::StringShape.new(name: 'IngestionType')
1253
1265
  Ingestions = Shapes::ListShape.new(name: 'Ingestions')
1266
+ InlineCustomInstruction = Shapes::StructureShape.new(name: 'InlineCustomInstruction')
1267
+ InlineCustomInstructionText = Shapes::StringShape.new(name: 'InlineCustomInstructionText')
1254
1268
  InnerFilter = Shapes::StructureShape.new(name: 'InnerFilter')
1255
1269
  InputColumn = Shapes::StructureShape.new(name: 'InputColumn')
1256
1270
  InputColumnDataType = Shapes::StringShape.new(name: 'InputColumnDataType')
@@ -1894,6 +1908,8 @@ module Aws::QuickSight
1894
1908
  SetParameterValueConfiguration = Shapes::StructureShape.new(name: 'SetParameterValueConfiguration')
1895
1909
  SetParameterValueConfigurationList = Shapes::ListShape.new(name: 'SetParameterValueConfigurationList')
1896
1910
  ShapeConditionalFormat = Shapes::StructureShape.new(name: 'ShapeConditionalFormat')
1911
+ SharedColumnSemanticMetadata = Shapes::StructureShape.new(name: 'SharedColumnSemanticMetadata')
1912
+ SharedColumnSemanticMetadataList = Shapes::ListShape.new(name: 'SharedColumnSemanticMetadataList')
1897
1913
  SharedViewConfigurations = Shapes::StructureShape.new(name: 'SharedViewConfigurations')
1898
1914
  SharingModel = Shapes::StringShape.new(name: 'SharingModel')
1899
1915
  Sheet = Shapes::StructureShape.new(name: 'Sheet')
@@ -2081,6 +2097,7 @@ module Aws::QuickSight
2081
2097
  TablePathElementName = Shapes::StringShape.new(name: 'TablePathElementName')
2082
2098
  TablePinnedFieldOptions = Shapes::StructureShape.new(name: 'TablePinnedFieldOptions')
2083
2099
  TableRowConditionalFormatting = Shapes::StructureShape.new(name: 'TableRowConditionalFormatting')
2100
+ TableSemanticMetadata = Shapes::StructureShape.new(name: 'TableSemanticMetadata')
2084
2101
  TableSideBorderOptions = Shapes::StructureShape.new(name: 'TableSideBorderOptions')
2085
2102
  TableSortConfiguration = Shapes::StructureShape.new(name: 'TableSortConfiguration')
2086
2103
  TableStyleTarget = Shapes::StructureShape.new(name: 'TableStyleTarget')
@@ -2379,6 +2396,8 @@ module Aws::QuickSight
2379
2396
  UpdateVPCConnectionRequest = Shapes::StructureShape.new(name: 'UpdateVPCConnectionRequest')
2380
2397
  UpdateVPCConnectionResponse = Shapes::StructureShape.new(name: 'UpdateVPCConnectionResponse')
2381
2398
  UploadSettings = Shapes::StructureShape.new(name: 'UploadSettings')
2399
+ UploadedDocumentMetadata = Shapes::StructureShape.new(name: 'UploadedDocumentMetadata')
2400
+ UploadedDocumentName = Shapes::StringShape.new(name: 'UploadedDocumentName')
2382
2401
  User = Shapes::StructureShape.new(name: 'User')
2383
2402
  UserIdentifier = Shapes::UnionShape.new(name: 'UserIdentifier')
2384
2403
  UserList = Shapes::ListShape.new(name: 'UserList')
@@ -2553,6 +2572,9 @@ module Aws::QuickSight
2553
2572
 
2554
2573
  AdditionalDashboardIdList.member = Shapes::ShapeRef.new(shape: ShortRestrictiveResourceId)
2555
2574
 
2575
+ AdditionalNotes.add_member(:text, Shapes::ShapeRef.new(shape: AdditionalNotesText, location_name: "Text"))
2576
+ AdditionalNotes.struct_class = Types::AdditionalNotes
2577
+
2556
2578
  AggFunction.add_member(:aggregation, Shapes::ShapeRef.new(shape: AggType, location_name: "Aggregation"))
2557
2579
  AggFunction.add_member(:aggregation_function_parameters, Shapes::ShapeRef.new(shape: AggFunctionParamMap, location_name: "AggregationFunctionParameters"))
2558
2580
  AggFunction.add_member(:period, Shapes::ShapeRef.new(shape: TopicTimeGranularity, location_name: "Period"))
@@ -3868,6 +3890,8 @@ module Aws::QuickSight
3868
3890
 
3869
3891
  ColumnList.member = Shapes::ShapeRef.new(shape: ColumnName)
3870
3892
 
3893
+ ColumnNameList.member = Shapes::ShapeRef.new(shape: ColumnName)
3894
+
3871
3895
  ColumnSchema.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
3872
3896
  ColumnSchema.add_member(:data_type, Shapes::ShapeRef.new(shape: String, location_name: "DataType"))
3873
3897
  ColumnSchema.add_member(:geographic_role, Shapes::ShapeRef.new(shape: String, location_name: "GeographicRole"))
@@ -3875,6 +3899,16 @@ module Aws::QuickSight
3875
3899
 
3876
3900
  ColumnSchemaList.member = Shapes::ShapeRef.new(shape: ColumnSchema)
3877
3901
 
3902
+ ColumnSemanticProperty.add_member(:description, Shapes::ShapeRef.new(shape: ColumnDescription, location_name: "Description"))
3903
+ ColumnSemanticProperty.add_member(:additional_notes, Shapes::ShapeRef.new(shape: AdditionalNotes, location_name: "AdditionalNotes"))
3904
+ ColumnSemanticProperty.add_member(:semantic_type, Shapes::ShapeRef.new(shape: ColumnSemanticType, location_name: "SemanticType"))
3905
+ ColumnSemanticProperty.struct_class = Types::ColumnSemanticProperty
3906
+
3907
+ ColumnSemanticPropertyList.member = Shapes::ShapeRef.new(shape: ColumnSemanticProperty)
3908
+
3909
+ ColumnSemanticType.add_member(:geographical_role, Shapes::ShapeRef.new(shape: GeoSpatialDataRole, location_name: "GeographicalRole"))
3910
+ ColumnSemanticType.struct_class = Types::ColumnSemanticType
3911
+
3878
3912
  ColumnSort.add_member(:sort_by, Shapes::ShapeRef.new(shape: ColumnIdentifier, required: true, location_name: "SortBy"))
3879
3913
  ColumnSort.add_member(:direction, Shapes::ShapeRef.new(shape: SortDirection, required: true, location_name: "Direction"))
3880
3914
  ColumnSort.add_member(:aggregation_function, Shapes::ShapeRef.new(shape: AggregationFunction, location_name: "AggregationFunction"))
@@ -4560,6 +4594,11 @@ module Aws::QuickSight
4560
4594
  CustomFilterListConfiguration.add_member(:null_option, Shapes::ShapeRef.new(shape: FilterNullOption, required: true, location_name: "NullOption"))
4561
4595
  CustomFilterListConfiguration.struct_class = Types::CustomFilterListConfiguration
4562
4596
 
4597
+ CustomInstruction.add_member(:inline_custom_instruction, Shapes::ShapeRef.new(shape: InlineCustomInstruction, location_name: "InlineCustomInstruction"))
4598
+ CustomInstruction.struct_class = Types::CustomInstruction
4599
+
4600
+ CustomInstructionList.member = Shapes::ShapeRef.new(shape: CustomInstruction)
4601
+
4563
4602
  CustomInstructions.add_member(:custom_instructions_string, Shapes::ShapeRef.new(shape: CustomInstructionsString, required: true, location_name: "CustomInstructionsString"))
4564
4603
  CustomInstructions.struct_class = Types::CustomInstructions
4565
4604
 
@@ -4924,6 +4963,15 @@ module Aws::QuickSight
4924
4963
 
4925
4964
  DataSetSearchFilterList.member = Shapes::ShapeRef.new(shape: DataSetSearchFilter)
4926
4965
 
4966
+ DataSetSemanticDescription.add_member(:text, Shapes::ShapeRef.new(shape: DataSetDescriptiveText, required: true, location_name: "Text"))
4967
+ DataSetSemanticDescription.struct_class = Types::DataSetSemanticDescription
4968
+
4969
+ DataSetSemanticMetadata.add_member(:description, Shapes::ShapeRef.new(shape: DataSetSemanticDescription, location_name: "Description"))
4970
+ DataSetSemanticMetadata.add_member(:custom_instructions, Shapes::ShapeRef.new(shape: CustomInstructionList, location_name: "CustomInstructions"))
4971
+ DataSetSemanticMetadata.struct_class = Types::DataSetSemanticMetadata
4972
+
4973
+ DataSetSemanticMetadataList.member = Shapes::ShapeRef.new(shape: DataSetSemanticMetadata)
4974
+
4927
4975
  DataSetStringComparisonFilterCondition.add_member(:operator, Shapes::ShapeRef.new(shape: DataSetStringComparisonFilterOperator, required: true, location_name: "Operator"))
4928
4976
  DataSetStringComparisonFilterCondition.add_member(:value, Shapes::ShapeRef.new(shape: DataSetStringFilterValue, location_name: "Value"))
4929
4977
  DataSetStringComparisonFilterCondition.struct_class = Types::DataSetStringComparisonFilterCondition
@@ -7435,6 +7483,10 @@ module Aws::QuickSight
7435
7483
 
7436
7484
  Ingestions.member = Shapes::ShapeRef.new(shape: Ingestion)
7437
7485
 
7486
+ InlineCustomInstruction.add_member(:instruction_text, Shapes::ShapeRef.new(shape: InlineCustomInstructionText, required: true, location_name: "InstructionText"))
7487
+ InlineCustomInstruction.add_member(:uploaded_document_metadata, Shapes::ShapeRef.new(shape: UploadedDocumentMetadata, location_name: "UploadedDocumentMetadata"))
7488
+ InlineCustomInstruction.struct_class = Types::InlineCustomInstruction
7489
+
7438
7490
  InnerFilter.add_member(:category_inner_filter, Shapes::ShapeRef.new(shape: CategoryInnerFilter, location_name: "CategoryInnerFilter"))
7439
7491
  InnerFilter.struct_class = Types::InnerFilter
7440
7492
 
@@ -9671,11 +9723,13 @@ module Aws::QuickSight
9671
9723
  SemanticEntityType.struct_class = Types::SemanticEntityType
9672
9724
 
9673
9725
  SemanticModelConfiguration.add_member(:table_map, Shapes::ShapeRef.new(shape: SemanticTableMap, location_name: "TableMap"))
9726
+ SemanticModelConfiguration.add_member(:semantic_metadata, Shapes::ShapeRef.new(shape: DataSetSemanticMetadataList, location_name: "SemanticMetadata"))
9674
9727
  SemanticModelConfiguration.struct_class = Types::SemanticModelConfiguration
9675
9728
 
9676
9729
  SemanticTable.add_member(:alias, Shapes::ShapeRef.new(shape: SemanticTableAlias, required: true, location_name: "Alias"))
9677
9730
  SemanticTable.add_member(:destination_table_id, Shapes::ShapeRef.new(shape: DataSetEntityResourceId, required: true, location_name: "DestinationTableId"))
9678
9731
  SemanticTable.add_member(:row_level_permission_configuration, Shapes::ShapeRef.new(shape: RowLevelPermissionConfiguration, location_name: "RowLevelPermissionConfiguration"))
9732
+ SemanticTable.add_member(:semantic_metadata, Shapes::ShapeRef.new(shape: TableSemanticMetadata, location_name: "SemanticMetadata"))
9679
9733
  SemanticTable.struct_class = Types::SemanticTable
9680
9734
 
9681
9735
  SemanticTableMap.key = Shapes::ShapeRef.new(shape: DataSetEntityResourceId)
@@ -9728,6 +9782,12 @@ module Aws::QuickSight
9728
9782
  ShapeConditionalFormat.add_member(:background_color, Shapes::ShapeRef.new(shape: ConditionalFormattingColor, required: true, location_name: "BackgroundColor"))
9729
9783
  ShapeConditionalFormat.struct_class = Types::ShapeConditionalFormat
9730
9784
 
9785
+ SharedColumnSemanticMetadata.add_member(:column_names, Shapes::ShapeRef.new(shape: ColumnNameList, location_name: "ColumnNames"))
9786
+ SharedColumnSemanticMetadata.add_member(:column_properties, Shapes::ShapeRef.new(shape: ColumnSemanticPropertyList, required: true, location_name: "ColumnProperties"))
9787
+ SharedColumnSemanticMetadata.struct_class = Types::SharedColumnSemanticMetadata
9788
+
9789
+ SharedColumnSemanticMetadataList.member = Shapes::ShapeRef.new(shape: SharedColumnSemanticMetadata)
9790
+
9731
9791
  SharedViewConfigurations.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "Enabled"))
9732
9792
  SharedViewConfigurations.struct_class = Types::SharedViewConfigurations
9733
9793
 
@@ -10293,6 +10353,9 @@ module Aws::QuickSight
10293
10353
  TableRowConditionalFormatting.add_member(:text_color, Shapes::ShapeRef.new(shape: ConditionalFormattingColor, location_name: "TextColor"))
10294
10354
  TableRowConditionalFormatting.struct_class = Types::TableRowConditionalFormatting
10295
10355
 
10356
+ TableSemanticMetadata.add_member(:column_metadata, Shapes::ShapeRef.new(shape: SharedColumnSemanticMetadataList, location_name: "ColumnMetadata"))
10357
+ TableSemanticMetadata.struct_class = Types::TableSemanticMetadata
10358
+
10296
10359
  TableSideBorderOptions.add_member(:inner_vertical, Shapes::ShapeRef.new(shape: TableBorderOptions, location_name: "InnerVertical"))
10297
10360
  TableSideBorderOptions.add_member(:inner_horizontal, Shapes::ShapeRef.new(shape: TableBorderOptions, location_name: "InnerHorizontal"))
10298
10361
  TableSideBorderOptions.add_member(:left, Shapes::ShapeRef.new(shape: TableBorderOptions, location_name: "Left"))
@@ -11696,6 +11759,9 @@ module Aws::QuickSight
11696
11759
  UploadSettings.add_member(:custom_cell_address_range, Shapes::ShapeRef.new(shape: String, location_name: "CustomCellAddressRange"))
11697
11760
  UploadSettings.struct_class = Types::UploadSettings
11698
11761
 
11762
+ UploadedDocumentMetadata.add_member(:name, Shapes::ShapeRef.new(shape: UploadedDocumentName, location_name: "Name"))
11763
+ UploadedDocumentMetadata.struct_class = Types::UploadedDocumentMetadata
11764
+
11699
11765
  User.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
11700
11766
  User.add_member(:user_name, Shapes::ShapeRef.new(shape: UserName, location_name: "UserName"))
11701
11767
  User.add_member(:email, Shapes::ShapeRef.new(shape: String, location_name: "Email"))
@@ -391,6 +391,20 @@ module Aws::QuickSight
391
391
  include Aws::Structure
392
392
  end
393
393
 
394
+ # Additional notes that provide supplementary context for a column.
395
+ #
396
+ # @!attribute [rw] text
397
+ # The additional notes text.
398
+ # @return [String]
399
+ #
400
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AdditionalNotes AWS API Documentation
401
+ #
402
+ class AdditionalNotes < Struct.new(
403
+ :text)
404
+ SENSITIVE = [:text]
405
+ include Aws::Structure
406
+ end
407
+
394
408
  # The definition of an Agg function.
395
409
  #
396
410
  # @!attribute [rw] aggregation
@@ -6412,6 +6426,46 @@ module Aws::QuickSight
6412
6426
  include Aws::Structure
6413
6427
  end
6414
6428
 
6429
+ # A semantic property for a column.
6430
+ #
6431
+ # @!attribute [rw] description
6432
+ # A description of the column.
6433
+ # @return [Types::ColumnDescription]
6434
+ #
6435
+ # @!attribute [rw] additional_notes
6436
+ # Additional notes for the column.
6437
+ # @return [Types::AdditionalNotes]
6438
+ #
6439
+ # @!attribute [rw] semantic_type
6440
+ # The semantic type of the column.
6441
+ # @return [Types::ColumnSemanticType]
6442
+ #
6443
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ColumnSemanticProperty AWS API Documentation
6444
+ #
6445
+ class ColumnSemanticProperty < Struct.new(
6446
+ :description,
6447
+ :additional_notes,
6448
+ :semantic_type)
6449
+ SENSITIVE = []
6450
+ include Aws::Structure
6451
+ end
6452
+
6453
+ # The semantic type information for a column in the new data preparation
6454
+ # experience.
6455
+ #
6456
+ # @!attribute [rw] geographical_role
6457
+ # The geographical role of the column in the new data preparation
6458
+ # experience.
6459
+ # @return [String]
6460
+ #
6461
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ColumnSemanticType AWS API Documentation
6462
+ #
6463
+ class ColumnSemanticType < Struct.new(
6464
+ :geographical_role)
6465
+ SENSITIVE = []
6466
+ include Aws::Structure
6467
+ end
6468
+
6415
6469
  # The sort configuration for a column that is not used in a field well.
6416
6470
  #
6417
6471
  # @!attribute [rw] sort_by
@@ -10065,6 +10119,22 @@ module Aws::QuickSight
10065
10119
  include Aws::Structure
10066
10120
  end
10067
10121
 
10122
+ # A custom instruction that provides guidance on how the dataset should
10123
+ # be consumed.
10124
+ #
10125
+ # @!attribute [rw] inline_custom_instruction
10126
+ # An inline custom instruction containing text and optional uploaded
10127
+ # document metadata.
10128
+ # @return [Types::InlineCustomInstruction]
10129
+ #
10130
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CustomInstruction AWS API Documentation
10131
+ #
10132
+ class CustomInstruction < Struct.new(
10133
+ :inline_custom_instruction)
10134
+ SENSITIVE = []
10135
+ include Aws::Structure
10136
+ end
10137
+
10068
10138
  # Instructions that provide additional guidance and context for response
10069
10139
  # generation.
10070
10140
  #
@@ -11913,6 +11983,41 @@ module Aws::QuickSight
11913
11983
  include Aws::Structure
11914
11984
  end
11915
11985
 
11986
+ # A description structure for dataset-level semantic metadata.
11987
+ #
11988
+ # @!attribute [rw] text
11989
+ # The descriptive text for the dataset.
11990
+ # @return [String]
11991
+ #
11992
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DataSetSemanticDescription AWS API Documentation
11993
+ #
11994
+ class DataSetSemanticDescription < Struct.new(
11995
+ :text)
11996
+ SENSITIVE = [:text]
11997
+ include Aws::Structure
11998
+ end
11999
+
12000
+ # Semantic metadata for a dataset, including a description and custom
12001
+ # instructions.
12002
+ #
12003
+ # @!attribute [rw] description
12004
+ # A description of the dataset.
12005
+ # @return [Types::DataSetSemanticDescription]
12006
+ #
12007
+ # @!attribute [rw] custom_instructions
12008
+ # A list of custom instructions that guide how the dataset should be
12009
+ # consumed.
12010
+ # @return [Array<Types::CustomInstruction>]
12011
+ #
12012
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DataSetSemanticMetadata AWS API Documentation
12013
+ #
12014
+ class DataSetSemanticMetadata < Struct.new(
12015
+ :description,
12016
+ :custom_instructions)
12017
+ SENSITIVE = []
12018
+ include Aws::Structure
12019
+ end
12020
+
11916
12021
  # A filter condition that compares string values using operators like
11917
12022
  # `EQUALS`, `CONTAINS`, or `STARTS_WITH`.
11918
12023
  #
@@ -24138,6 +24243,27 @@ module Aws::QuickSight
24138
24243
  include Aws::Structure
24139
24244
  end
24140
24245
 
24246
+ # An inline custom instruction with text content and optional file
24247
+ # upload metadata.
24248
+ #
24249
+ # @!attribute [rw] instruction_text
24250
+ # The instruction text content.
24251
+ # @return [String]
24252
+ #
24253
+ # @!attribute [rw] uploaded_document_metadata
24254
+ # Metadata about an uploaded document associated with this
24255
+ # instruction.
24256
+ # @return [Types::UploadedDocumentMetadata]
24257
+ #
24258
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/InlineCustomInstruction AWS API Documentation
24259
+ #
24260
+ class InlineCustomInstruction < Struct.new(
24261
+ :instruction_text,
24262
+ :uploaded_document_metadata)
24263
+ SENSITIVE = [:instruction_text]
24264
+ include Aws::Structure
24265
+ end
24266
+
24141
24267
  # The `InnerFilter` defines the subset of data to be used with the
24142
24268
  # `NestedFilter`.
24143
24269
  #
@@ -35284,10 +35410,16 @@ module Aws::QuickSight
35284
35410
  # A map of semantic tables that define the analytical structure.
35285
35411
  # @return [Hash<String,Types::SemanticTable>]
35286
35412
  #
35413
+ # @!attribute [rw] semantic_metadata
35414
+ # The dataset-level semantic metadata, including a description and
35415
+ # custom instructions.
35416
+ # @return [Array<Types::DataSetSemanticMetadata>]
35417
+ #
35287
35418
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SemanticModelConfiguration AWS API Documentation
35288
35419
  #
35289
35420
  class SemanticModelConfiguration < Struct.new(
35290
- :table_map)
35421
+ :table_map,
35422
+ :semantic_metadata)
35291
35423
  SENSITIVE = []
35292
35424
  include Aws::Structure
35293
35425
  end
@@ -35309,12 +35441,17 @@ module Aws::QuickSight
35309
35441
  # this semantic table.
35310
35442
  # @return [Types::RowLevelPermissionConfiguration]
35311
35443
  #
35444
+ # @!attribute [rw] semantic_metadata
35445
+ # The column-level semantic metadata for this semantic table.
35446
+ # @return [Types::TableSemanticMetadata]
35447
+ #
35312
35448
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SemanticTable AWS API Documentation
35313
35449
  #
35314
35450
  class SemanticTable < Struct.new(
35315
35451
  :alias,
35316
35452
  :destination_table_id,
35317
- :row_level_permission_configuration)
35453
+ :row_level_permission_configuration,
35454
+ :semantic_metadata)
35318
35455
  SENSITIVE = []
35319
35456
  include Aws::Structure
35320
35457
  end
@@ -35475,6 +35612,25 @@ module Aws::QuickSight
35475
35612
  include Aws::Structure
35476
35613
  end
35477
35614
 
35615
+ # Semantic metadata shared across one or more columns.
35616
+ #
35617
+ # @!attribute [rw] column_names
35618
+ # The names of the columns this metadata applies to.
35619
+ # @return [Array<String>]
35620
+ #
35621
+ # @!attribute [rw] column_properties
35622
+ # The semantic properties for the specified columns.
35623
+ # @return [Array<Types::ColumnSemanticProperty>]
35624
+ #
35625
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SharedColumnSemanticMetadata AWS API Documentation
35626
+ #
35627
+ class SharedColumnSemanticMetadata < Struct.new(
35628
+ :column_names,
35629
+ :column_properties)
35630
+ SENSITIVE = []
35631
+ include Aws::Structure
35632
+ end
35633
+
35478
35634
  # The shared view settings of an embedded dashboard.
35479
35635
  #
35480
35636
  # @!attribute [rw] enabled
@@ -38107,6 +38263,20 @@ module Aws::QuickSight
38107
38263
  include Aws::Structure
38108
38264
  end
38109
38265
 
38266
+ # Column-level semantic metadata for a semantic table.
38267
+ #
38268
+ # @!attribute [rw] column_metadata
38269
+ # A list of column semantic metadata entries.
38270
+ # @return [Array<Types::SharedColumnSemanticMetadata>]
38271
+ #
38272
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TableSemanticMetadata AWS API Documentation
38273
+ #
38274
+ class TableSemanticMetadata < Struct.new(
38275
+ :column_metadata)
38276
+ SENSITIVE = []
38277
+ include Aws::Structure
38278
+ end
38279
+
38110
38280
  # The side border options for a table.
38111
38281
  #
38112
38282
  # @!attribute [rw] inner_vertical
@@ -44903,6 +45073,21 @@ module Aws::QuickSight
44903
45073
  include Aws::Structure
44904
45074
  end
44905
45075
 
45076
+ # Metadata for an uploaded document associated with a custom
45077
+ # instruction.
45078
+ #
45079
+ # @!attribute [rw] name
45080
+ # The name of the uploaded document.
45081
+ # @return [String]
45082
+ #
45083
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UploadedDocumentMetadata AWS API Documentation
45084
+ #
45085
+ class UploadedDocumentMetadata < Struct.new(
45086
+ :name)
45087
+ SENSITIVE = []
45088
+ include Aws::Structure
45089
+ end
45090
+
44906
45091
  # A registered user of Quick Sight.
44907
45092
  #
44908
45093
  # @!attribute [rw] arn
@@ -54,7 +54,7 @@ module Aws::QuickSight
54
54
  autoload :EndpointProvider, 'aws-sdk-quicksight/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-quicksight/endpoints'
56
56
 
57
- GEM_VERSION = '1.180.0'
57
+ GEM_VERSION = '1.181.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -149407,8 +149407,45 @@ module Aws
149407
149407
  format_version: ("VERSION_1" | "VERSION_2")?,
149408
149408
  status: ("ENABLED" | "DISABLED")?
149409
149409
  }?
149410
+ }?,
149411
+ semantic_metadata: {
149412
+ column_metadata: Array[
149413
+ {
149414
+ column_names: Array[::String]?,
149415
+ column_properties: Array[
149416
+ {
149417
+ description: {
149418
+ text: ::String?
149419
+ }?,
149420
+ additional_notes: {
149421
+ text: ::String?
149422
+ }?,
149423
+ semantic_type: {
149424
+ geographical_role: ("COUNTRY" | "STATE" | "COUNTY" | "CITY" | "POSTCODE" | "LONGITUDE" | "LATITUDE")?
149425
+ }?
149426
+ },
149427
+ ]
149428
+ },
149429
+ ]?
149410
149430
  }?
149411
- }]?
149431
+ }]?,
149432
+ semantic_metadata: Array[
149433
+ {
149434
+ description: {
149435
+ text: ::String
149436
+ }?,
149437
+ custom_instructions: Array[
149438
+ {
149439
+ inline_custom_instruction: {
149440
+ instruction_text: ::String,
149441
+ uploaded_document_metadata: {
149442
+ name: ::String?
149443
+ }?
149444
+ }?
149445
+ },
149446
+ ]?
149447
+ },
149448
+ ]?
149412
149449
  }
149413
149450
  ) -> _CreateDataSetResponseSuccess
149414
149451
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataSetResponseSuccess
@@ -375997,8 +376034,45 @@ module Aws
375997
376034
  format_version: ("VERSION_1" | "VERSION_2")?,
375998
376035
  status: ("ENABLED" | "DISABLED")?
375999
376036
  }?
376037
+ }?,
376038
+ semantic_metadata: {
376039
+ column_metadata: Array[
376040
+ {
376041
+ column_names: Array[::String]?,
376042
+ column_properties: Array[
376043
+ {
376044
+ description: {
376045
+ text: ::String?
376046
+ }?,
376047
+ additional_notes: {
376048
+ text: ::String?
376049
+ }?,
376050
+ semantic_type: {
376051
+ geographical_role: ("COUNTRY" | "STATE" | "COUNTY" | "CITY" | "POSTCODE" | "LONGITUDE" | "LATITUDE")?
376052
+ }?
376053
+ },
376054
+ ]
376055
+ },
376056
+ ]?
376000
376057
  }?
376001
- }]?
376058
+ }]?,
376059
+ semantic_metadata: Array[
376060
+ {
376061
+ description: {
376062
+ text: ::String
376063
+ }?,
376064
+ custom_instructions: Array[
376065
+ {
376066
+ inline_custom_instruction: {
376067
+ instruction_text: ::String,
376068
+ uploaded_document_metadata: {
376069
+ name: ::String?
376070
+ }?
376071
+ }?
376072
+ },
376073
+ ]?
376074
+ },
376075
+ ]?
376002
376076
  }
376003
376077
  ) -> _UpdateDataSetResponseSuccess
376004
376078
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDataSetResponseSuccess
data/sig/types.rbs CHANGED
@@ -99,6 +99,11 @@ module Aws::QuickSight
99
99
  SENSITIVE: []
100
100
  end
101
101
 
102
+ class AdditionalNotes
103
+ attr_accessor text: ::String
104
+ SENSITIVE: [:text]
105
+ end
106
+
102
107
  class AggFunction
103
108
  attr_accessor aggregation: ("SUM" | "MIN" | "MAX" | "COUNT" | "AVERAGE" | "DISTINCT_COUNT" | "STDEV" | "STDEVP" | "VAR" | "VARP" | "PERCENTILE" | "MEDIAN" | "PTD_SUM" | "PTD_MIN" | "PTD_MAX" | "PTD_COUNT" | "PTD_DISTINCT_COUNT" | "PTD_AVERAGE" | "COLUMN" | "CUSTOM")
104
109
  attr_accessor aggregation_function_parameters: ::Hash[::String, ::String]
@@ -1613,6 +1618,18 @@ module Aws::QuickSight
1613
1618
  SENSITIVE: []
1614
1619
  end
1615
1620
 
1621
+ class ColumnSemanticProperty
1622
+ attr_accessor description: Types::ColumnDescription
1623
+ attr_accessor additional_notes: Types::AdditionalNotes
1624
+ attr_accessor semantic_type: Types::ColumnSemanticType
1625
+ SENSITIVE: []
1626
+ end
1627
+
1628
+ class ColumnSemanticType
1629
+ attr_accessor geographical_role: ("COUNTRY" | "STATE" | "COUNTY" | "CITY" | "POSTCODE" | "LONGITUDE" | "LATITUDE")
1630
+ SENSITIVE: []
1631
+ end
1632
+
1616
1633
  class ColumnSort
1617
1634
  attr_accessor sort_by: Types::ColumnIdentifier
1618
1635
  attr_accessor direction: ("ASC" | "DESC")
@@ -2474,6 +2491,11 @@ module Aws::QuickSight
2474
2491
  SENSITIVE: []
2475
2492
  end
2476
2493
 
2494
+ class CustomInstruction
2495
+ attr_accessor inline_custom_instruction: Types::InlineCustomInstruction
2496
+ SENSITIVE: []
2497
+ end
2498
+
2477
2499
  class CustomInstructions
2478
2500
  attr_accessor custom_instructions_string: ::String
2479
2501
  SENSITIVE: [:custom_instructions_string]
@@ -2932,6 +2954,17 @@ module Aws::QuickSight
2932
2954
  SENSITIVE: []
2933
2955
  end
2934
2956
 
2957
+ class DataSetSemanticDescription
2958
+ attr_accessor text: ::String
2959
+ SENSITIVE: [:text]
2960
+ end
2961
+
2962
+ class DataSetSemanticMetadata
2963
+ attr_accessor description: Types::DataSetSemanticDescription
2964
+ attr_accessor custom_instructions: ::Array[Types::CustomInstruction]
2965
+ SENSITIVE: []
2966
+ end
2967
+
2935
2968
  class DataSetStringComparisonFilterCondition
2936
2969
  attr_accessor operator: ("EQUALS" | "DOES_NOT_EQUAL" | "CONTAINS" | "DOES_NOT_CONTAIN" | "STARTS_WITH" | "ENDS_WITH")
2937
2970
  attr_accessor value: Types::DataSetStringFilterValue
@@ -6170,6 +6203,12 @@ module Aws::QuickSight
6170
6203
  SENSITIVE: []
6171
6204
  end
6172
6205
 
6206
+ class InlineCustomInstruction
6207
+ attr_accessor instruction_text: ::String
6208
+ attr_accessor uploaded_document_metadata: Types::UploadedDocumentMetadata
6209
+ SENSITIVE: [:instruction_text]
6210
+ end
6211
+
6173
6212
  class InnerFilter
6174
6213
  attr_accessor category_inner_filter: Types::CategoryInnerFilter
6175
6214
  SENSITIVE: []
@@ -9064,6 +9103,7 @@ module Aws::QuickSight
9064
9103
 
9065
9104
  class SemanticModelConfiguration
9066
9105
  attr_accessor table_map: ::Hash[::String, Types::SemanticTable]
9106
+ attr_accessor semantic_metadata: ::Array[Types::DataSetSemanticMetadata]
9067
9107
  SENSITIVE: []
9068
9108
  end
9069
9109
 
@@ -9071,6 +9111,7 @@ module Aws::QuickSight
9071
9111
  attr_accessor alias: ::String
9072
9112
  attr_accessor destination_table_id: ::String
9073
9113
  attr_accessor row_level_permission_configuration: Types::RowLevelPermissionConfiguration
9114
+ attr_accessor semantic_metadata: Types::TableSemanticMetadata
9074
9115
  SENSITIVE: []
9075
9116
  end
9076
9117
 
@@ -9119,6 +9160,12 @@ module Aws::QuickSight
9119
9160
  SENSITIVE: []
9120
9161
  end
9121
9162
 
9163
+ class SharedColumnSemanticMetadata
9164
+ attr_accessor column_names: ::Array[::String]
9165
+ attr_accessor column_properties: ::Array[Types::ColumnSemanticProperty]
9166
+ SENSITIVE: []
9167
+ end
9168
+
9122
9169
  class SharedViewConfigurations
9123
9170
  attr_accessor enabled: bool
9124
9171
  SENSITIVE: []
@@ -9817,6 +9864,11 @@ module Aws::QuickSight
9817
9864
  SENSITIVE: []
9818
9865
  end
9819
9866
 
9867
+ class TableSemanticMetadata
9868
+ attr_accessor column_metadata: ::Array[Types::SharedColumnSemanticMetadata]
9869
+ SENSITIVE: []
9870
+ end
9871
+
9820
9872
  class TableSideBorderOptions
9821
9873
  attr_accessor inner_vertical: Types::TableBorderOptions
9822
9874
  attr_accessor inner_horizontal: Types::TableBorderOptions
@@ -11544,6 +11596,11 @@ module Aws::QuickSight
11544
11596
  SENSITIVE: []
11545
11597
  end
11546
11598
 
11599
+ class UploadedDocumentMetadata
11600
+ attr_accessor name: ::String
11601
+ SENSITIVE: []
11602
+ end
11603
+
11547
11604
  class User
11548
11605
  attr_accessor arn: ::String
11549
11606
  attr_accessor user_name: ::String
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-quicksight
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.180.0
4
+ version: 1.181.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services