aws-sdk-quicksight 1.179.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: affb054ccf563815022ee5f3382c504e4f87561b64c6b199dbbb36ddf1fd5ea4
4
- data.tar.gz: e4047746fac76ebc0cd9cb8e62320b0b560d48b985693d086cbe5f898612056c
3
+ metadata.gz: 2528942b56a7e0f7e530b4117f7c002f7fc67cf5611895d34508dfa721f659d4
4
+ data.tar.gz: 6e394dd92dd8297bbce3cdf07f2f3303c7c0a0aa92d4c1570c752b390e05dbca
5
5
  SHA512:
6
- metadata.gz: d2073acdbb3d0dad36e21c19c6a4f2824fd0ba70129500a46b45a728a89aa2475350f7abd9807864a7f51a634f9fdb76a2319ebd5b13cb59dedf4a07b0a8e267
7
- data.tar.gz: 57fadc6ccea6a093e6a5d9c49c38679e90a9d490521843501e08e2d0e773b7afe83dadb2c389d0f1980ef21ac7009491a05642a5c8b3890abfe890c65f3ac572
6
+ metadata.gz: 7988b4e6ae3ff78f96a544bcbb52128323f23642bdbf077a64cd2949bf2d320c5c0198977f0ff0feeac53807b78a706324c5ad7b1e6628d2b132490f1204bbc2
7
+ data.tar.gz: aec8a11858a878daf73228b9ac9889ede0ac8e197993f3f72b231c2e6c31b13df273652719acca06f17e8dd691a48a91df76e1500f994a01f5805a36d4009015
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.180.0 (2026-05-13)
10
+ ------------------
11
+
12
+ * Feature - Adds five new custom permission option for Quick Apps so that these capabilities can be controlled by public SDK and CLI.
13
+
4
14
  1.179.0 (2026-05-01)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.179.0
1
+ 1.181.0
@@ -2226,6 +2226,11 @@ module Aws::QuickSight
2226
2226
  # analysis: "DENY", # accepts DENY
2227
2227
  # automate: "DENY", # accepts DENY
2228
2228
  # flow: "DENY", # accepts DENY
2229
+ # apps: "DENY", # accepts DENY
2230
+ # create_and_update_apps: "DENY", # accepts DENY
2231
+ # share_apps: "DENY", # accepts DENY
2232
+ # invoke_apps_ai_inference: "DENY", # accepts DENY
2233
+ # access_apps_native_data_store: "DENY", # accepts DENY
2229
2234
  # publish_without_approval: "DENY", # accepts DENY
2230
2235
  # use_bedrock_models: "DENY", # accepts DENY
2231
2236
  # perform_flow_ui_task: "DENY", # accepts DENY
@@ -3380,8 +3385,45 @@ module Aws::QuickSight
3380
3385
  # status: "ENABLED", # accepts ENABLED, DISABLED
3381
3386
  # },
3382
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
+ # },
3383
3408
  # },
3384
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
+ # ],
3385
3427
  # },
3386
3428
  # })
3387
3429
  #
@@ -8072,6 +8114,11 @@ module Aws::QuickSight
8072
8114
  # resp.custom_permissions.capabilities.analysis #=> String, one of "DENY"
8073
8115
  # resp.custom_permissions.capabilities.automate #=> String, one of "DENY"
8074
8116
  # resp.custom_permissions.capabilities.flow #=> String, one of "DENY"
8117
+ # resp.custom_permissions.capabilities.apps #=> String, one of "DENY"
8118
+ # resp.custom_permissions.capabilities.create_and_update_apps #=> String, one of "DENY"
8119
+ # resp.custom_permissions.capabilities.share_apps #=> String, one of "DENY"
8120
+ # resp.custom_permissions.capabilities.invoke_apps_ai_inference #=> String, one of "DENY"
8121
+ # resp.custom_permissions.capabilities.access_apps_native_data_store #=> String, one of "DENY"
8075
8122
  # resp.custom_permissions.capabilities.publish_without_approval #=> String, one of "DENY"
8076
8123
  # resp.custom_permissions.capabilities.use_bedrock_models #=> String, one of "DENY"
8077
8124
  # resp.custom_permissions.capabilities.perform_flow_ui_task #=> String, one of "DENY"
@@ -9135,6 +9182,18 @@ module Aws::QuickSight
9135
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"
9136
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"
9137
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
9138
9197
  # resp.request_id #=> String
9139
9198
  # resp.status #=> Integer
9140
9199
  #
@@ -12538,6 +12597,11 @@ module Aws::QuickSight
12538
12597
  # resp.custom_permissions_list[0].capabilities.analysis #=> String, one of "DENY"
12539
12598
  # resp.custom_permissions_list[0].capabilities.automate #=> String, one of "DENY"
12540
12599
  # resp.custom_permissions_list[0].capabilities.flow #=> String, one of "DENY"
12600
+ # resp.custom_permissions_list[0].capabilities.apps #=> String, one of "DENY"
12601
+ # resp.custom_permissions_list[0].capabilities.create_and_update_apps #=> String, one of "DENY"
12602
+ # resp.custom_permissions_list[0].capabilities.share_apps #=> String, one of "DENY"
12603
+ # resp.custom_permissions_list[0].capabilities.invoke_apps_ai_inference #=> String, one of "DENY"
12604
+ # resp.custom_permissions_list[0].capabilities.access_apps_native_data_store #=> String, one of "DENY"
12541
12605
  # resp.custom_permissions_list[0].capabilities.publish_without_approval #=> String, one of "DENY"
12542
12606
  # resp.custom_permissions_list[0].capabilities.use_bedrock_models #=> String, one of "DENY"
12543
12607
  # resp.custom_permissions_list[0].capabilities.perform_flow_ui_task #=> String, one of "DENY"
@@ -18124,6 +18188,11 @@ module Aws::QuickSight
18124
18188
  # analysis: "DENY", # accepts DENY
18125
18189
  # automate: "DENY", # accepts DENY
18126
18190
  # flow: "DENY", # accepts DENY
18191
+ # apps: "DENY", # accepts DENY
18192
+ # create_and_update_apps: "DENY", # accepts DENY
18193
+ # share_apps: "DENY", # accepts DENY
18194
+ # invoke_apps_ai_inference: "DENY", # accepts DENY
18195
+ # access_apps_native_data_store: "DENY", # accepts DENY
18127
18196
  # publish_without_approval: "DENY", # accepts DENY
18128
18197
  # use_bedrock_models: "DENY", # accepts DENY
18129
18198
  # perform_flow_ui_task: "DENY", # accepts DENY
@@ -19423,8 +19492,45 @@ module Aws::QuickSight
19423
19492
  # status: "ENABLED", # accepts ENABLED, DISABLED
19424
19493
  # },
19425
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
+ # },
19426
19515
  # },
19427
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
+ # ],
19428
19534
  # },
19429
19535
  # })
19430
19536
  #
@@ -22162,7 +22268,7 @@ module Aws::QuickSight
22162
22268
  tracer: tracer
22163
22269
  )
22164
22270
  context[:gem_name] = 'aws-sdk-quicksight'
22165
- context[:gem_version] = '1.179.0'
22271
+ context[:gem_version] = '1.181.0'
22166
22272
  Seahorse::Client::Request.new(handlers, context)
22167
22273
  end
22168
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"))
@@ -3506,6 +3528,11 @@ module Aws::QuickSight
3506
3528
  Capabilities.add_member(:analysis, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "Analysis"))
3507
3529
  Capabilities.add_member(:automate, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "Automate"))
3508
3530
  Capabilities.add_member(:flow, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "Flow"))
3531
+ Capabilities.add_member(:apps, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "Apps"))
3532
+ Capabilities.add_member(:create_and_update_apps, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "CreateAndUpdateApps"))
3533
+ Capabilities.add_member(:share_apps, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "ShareApps"))
3534
+ Capabilities.add_member(:invoke_apps_ai_inference, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "InvokeAppsAIInference"))
3535
+ Capabilities.add_member(:access_apps_native_data_store, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "AccessAppsNativeDataStore"))
3509
3536
  Capabilities.add_member(:publish_without_approval, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "PublishWithoutApproval"))
3510
3537
  Capabilities.add_member(:use_bedrock_models, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "UseBedrockModels"))
3511
3538
  Capabilities.add_member(:perform_flow_ui_task, Shapes::ShapeRef.new(shape: CapabilityState, location_name: "PerformFlowUiTask"))
@@ -3863,6 +3890,8 @@ module Aws::QuickSight
3863
3890
 
3864
3891
  ColumnList.member = Shapes::ShapeRef.new(shape: ColumnName)
3865
3892
 
3893
+ ColumnNameList.member = Shapes::ShapeRef.new(shape: ColumnName)
3894
+
3866
3895
  ColumnSchema.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
3867
3896
  ColumnSchema.add_member(:data_type, Shapes::ShapeRef.new(shape: String, location_name: "DataType"))
3868
3897
  ColumnSchema.add_member(:geographic_role, Shapes::ShapeRef.new(shape: String, location_name: "GeographicRole"))
@@ -3870,6 +3899,16 @@ module Aws::QuickSight
3870
3899
 
3871
3900
  ColumnSchemaList.member = Shapes::ShapeRef.new(shape: ColumnSchema)
3872
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
+
3873
3912
  ColumnSort.add_member(:sort_by, Shapes::ShapeRef.new(shape: ColumnIdentifier, required: true, location_name: "SortBy"))
3874
3913
  ColumnSort.add_member(:direction, Shapes::ShapeRef.new(shape: SortDirection, required: true, location_name: "Direction"))
3875
3914
  ColumnSort.add_member(:aggregation_function, Shapes::ShapeRef.new(shape: AggregationFunction, location_name: "AggregationFunction"))
@@ -4555,6 +4594,11 @@ module Aws::QuickSight
4555
4594
  CustomFilterListConfiguration.add_member(:null_option, Shapes::ShapeRef.new(shape: FilterNullOption, required: true, location_name: "NullOption"))
4556
4595
  CustomFilterListConfiguration.struct_class = Types::CustomFilterListConfiguration
4557
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
+
4558
4602
  CustomInstructions.add_member(:custom_instructions_string, Shapes::ShapeRef.new(shape: CustomInstructionsString, required: true, location_name: "CustomInstructionsString"))
4559
4603
  CustomInstructions.struct_class = Types::CustomInstructions
4560
4604
 
@@ -4919,6 +4963,15 @@ module Aws::QuickSight
4919
4963
 
4920
4964
  DataSetSearchFilterList.member = Shapes::ShapeRef.new(shape: DataSetSearchFilter)
4921
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
+
4922
4975
  DataSetStringComparisonFilterCondition.add_member(:operator, Shapes::ShapeRef.new(shape: DataSetStringComparisonFilterOperator, required: true, location_name: "Operator"))
4923
4976
  DataSetStringComparisonFilterCondition.add_member(:value, Shapes::ShapeRef.new(shape: DataSetStringFilterValue, location_name: "Value"))
4924
4977
  DataSetStringComparisonFilterCondition.struct_class = Types::DataSetStringComparisonFilterCondition
@@ -7430,6 +7483,10 @@ module Aws::QuickSight
7430
7483
 
7431
7484
  Ingestions.member = Shapes::ShapeRef.new(shape: Ingestion)
7432
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
+
7433
7490
  InnerFilter.add_member(:category_inner_filter, Shapes::ShapeRef.new(shape: CategoryInnerFilter, location_name: "CategoryInnerFilter"))
7434
7491
  InnerFilter.struct_class = Types::InnerFilter
7435
7492
 
@@ -9666,11 +9723,13 @@ module Aws::QuickSight
9666
9723
  SemanticEntityType.struct_class = Types::SemanticEntityType
9667
9724
 
9668
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"))
9669
9727
  SemanticModelConfiguration.struct_class = Types::SemanticModelConfiguration
9670
9728
 
9671
9729
  SemanticTable.add_member(:alias, Shapes::ShapeRef.new(shape: SemanticTableAlias, required: true, location_name: "Alias"))
9672
9730
  SemanticTable.add_member(:destination_table_id, Shapes::ShapeRef.new(shape: DataSetEntityResourceId, required: true, location_name: "DestinationTableId"))
9673
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"))
9674
9733
  SemanticTable.struct_class = Types::SemanticTable
9675
9734
 
9676
9735
  SemanticTableMap.key = Shapes::ShapeRef.new(shape: DataSetEntityResourceId)
@@ -9723,6 +9782,12 @@ module Aws::QuickSight
9723
9782
  ShapeConditionalFormat.add_member(:background_color, Shapes::ShapeRef.new(shape: ConditionalFormattingColor, required: true, location_name: "BackgroundColor"))
9724
9783
  ShapeConditionalFormat.struct_class = Types::ShapeConditionalFormat
9725
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
+
9726
9791
  SharedViewConfigurations.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "Enabled"))
9727
9792
  SharedViewConfigurations.struct_class = Types::SharedViewConfigurations
9728
9793
 
@@ -10288,6 +10353,9 @@ module Aws::QuickSight
10288
10353
  TableRowConditionalFormatting.add_member(:text_color, Shapes::ShapeRef.new(shape: ConditionalFormattingColor, location_name: "TextColor"))
10289
10354
  TableRowConditionalFormatting.struct_class = Types::TableRowConditionalFormatting
10290
10355
 
10356
+ TableSemanticMetadata.add_member(:column_metadata, Shapes::ShapeRef.new(shape: SharedColumnSemanticMetadataList, location_name: "ColumnMetadata"))
10357
+ TableSemanticMetadata.struct_class = Types::TableSemanticMetadata
10358
+
10291
10359
  TableSideBorderOptions.add_member(:inner_vertical, Shapes::ShapeRef.new(shape: TableBorderOptions, location_name: "InnerVertical"))
10292
10360
  TableSideBorderOptions.add_member(:inner_horizontal, Shapes::ShapeRef.new(shape: TableBorderOptions, location_name: "InnerHorizontal"))
10293
10361
  TableSideBorderOptions.add_member(:left, Shapes::ShapeRef.new(shape: TableBorderOptions, location_name: "Left"))
@@ -11691,6 +11759,9 @@ module Aws::QuickSight
11691
11759
  UploadSettings.add_member(:custom_cell_address_range, Shapes::ShapeRef.new(shape: String, location_name: "CustomCellAddressRange"))
11692
11760
  UploadSettings.struct_class = Types::UploadSettings
11693
11761
 
11762
+ UploadedDocumentMetadata.add_member(:name, Shapes::ShapeRef.new(shape: UploadedDocumentName, location_name: "Name"))
11763
+ UploadedDocumentMetadata.struct_class = Types::UploadedDocumentMetadata
11764
+
11694
11765
  User.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
11695
11766
  User.add_member(:user_name, Shapes::ShapeRef.new(shape: UserName, location_name: "UserName"))
11696
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
@@ -4656,6 +4670,27 @@ module Aws::QuickSight
4656
4670
  # The ability to perform flow-related actions.
4657
4671
  # @return [String]
4658
4672
  #
4673
+ # @!attribute [rw] apps
4674
+ # The ability to perform apps-related actions.
4675
+ # @return [String]
4676
+ #
4677
+ # @!attribute [rw] create_and_update_apps
4678
+ # The ability to create or update apps.
4679
+ # @return [String]
4680
+ #
4681
+ # @!attribute [rw] share_apps
4682
+ # The ability to share apps with other users.
4683
+ # @return [String]
4684
+ #
4685
+ # @!attribute [rw] invoke_apps_ai_inference
4686
+ # The ability to add and invoke AI inference in new and existing apps.
4687
+ # @return [String]
4688
+ #
4689
+ # @!attribute [rw] access_apps_native_data_store
4690
+ # The ability to access the native data store for new and existing
4691
+ # apps.
4692
+ # @return [String]
4693
+ #
4659
4694
  # @!attribute [rw] publish_without_approval
4660
4695
  # The ability to enable approvals for flow share.
4661
4696
  # @return [String]
@@ -5495,6 +5530,11 @@ module Aws::QuickSight
5495
5530
  :analysis,
5496
5531
  :automate,
5497
5532
  :flow,
5533
+ :apps,
5534
+ :create_and_update_apps,
5535
+ :share_apps,
5536
+ :invoke_apps_ai_inference,
5537
+ :access_apps_native_data_store,
5498
5538
  :publish_without_approval,
5499
5539
  :use_bedrock_models,
5500
5540
  :perform_flow_ui_task,
@@ -6386,6 +6426,46 @@ module Aws::QuickSight
6386
6426
  include Aws::Structure
6387
6427
  end
6388
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
+
6389
6469
  # The sort configuration for a column that is not used in a field well.
6390
6470
  #
6391
6471
  # @!attribute [rw] sort_by
@@ -10039,6 +10119,22 @@ module Aws::QuickSight
10039
10119
  include Aws::Structure
10040
10120
  end
10041
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
+
10042
10138
  # Instructions that provide additional guidance and context for response
10043
10139
  # generation.
10044
10140
  #
@@ -11887,6 +11983,41 @@ module Aws::QuickSight
11887
11983
  include Aws::Structure
11888
11984
  end
11889
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
+
11890
12021
  # A filter condition that compares string values using operators like
11891
12022
  # `EQUALS`, `CONTAINS`, or `STARTS_WITH`.
11892
12023
  #
@@ -24112,6 +24243,27 @@ module Aws::QuickSight
24112
24243
  include Aws::Structure
24113
24244
  end
24114
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
+
24115
24267
  # The `InnerFilter` defines the subset of data to be used with the
24116
24268
  # `NestedFilter`.
24117
24269
  #
@@ -35258,10 +35410,16 @@ module Aws::QuickSight
35258
35410
  # A map of semantic tables that define the analytical structure.
35259
35411
  # @return [Hash<String,Types::SemanticTable>]
35260
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
+ #
35261
35418
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SemanticModelConfiguration AWS API Documentation
35262
35419
  #
35263
35420
  class SemanticModelConfiguration < Struct.new(
35264
- :table_map)
35421
+ :table_map,
35422
+ :semantic_metadata)
35265
35423
  SENSITIVE = []
35266
35424
  include Aws::Structure
35267
35425
  end
@@ -35283,12 +35441,17 @@ module Aws::QuickSight
35283
35441
  # this semantic table.
35284
35442
  # @return [Types::RowLevelPermissionConfiguration]
35285
35443
  #
35444
+ # @!attribute [rw] semantic_metadata
35445
+ # The column-level semantic metadata for this semantic table.
35446
+ # @return [Types::TableSemanticMetadata]
35447
+ #
35286
35448
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SemanticTable AWS API Documentation
35287
35449
  #
35288
35450
  class SemanticTable < Struct.new(
35289
35451
  :alias,
35290
35452
  :destination_table_id,
35291
- :row_level_permission_configuration)
35453
+ :row_level_permission_configuration,
35454
+ :semantic_metadata)
35292
35455
  SENSITIVE = []
35293
35456
  include Aws::Structure
35294
35457
  end
@@ -35449,6 +35612,25 @@ module Aws::QuickSight
35449
35612
  include Aws::Structure
35450
35613
  end
35451
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
+
35452
35634
  # The shared view settings of an embedded dashboard.
35453
35635
  #
35454
35636
  # @!attribute [rw] enabled
@@ -38081,6 +38263,20 @@ module Aws::QuickSight
38081
38263
  include Aws::Structure
38082
38264
  end
38083
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
+
38084
38280
  # The side border options for a table.
38085
38281
  #
38086
38282
  # @!attribute [rw] inner_vertical
@@ -44877,6 +45073,21 @@ module Aws::QuickSight
44877
45073
  include Aws::Structure
44878
45074
  end
44879
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
+
44880
45091
  # A registered user of Quick Sight.
44881
45092
  #
44882
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.179.0'
57
+ GEM_VERSION = '1.181.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -74804,6 +74804,11 @@ module Aws
74804
74804
  analysis: ("DENY")?,
74805
74805
  automate: ("DENY")?,
74806
74806
  flow: ("DENY")?,
74807
+ apps: ("DENY")?,
74808
+ create_and_update_apps: ("DENY")?,
74809
+ share_apps: ("DENY")?,
74810
+ invoke_apps_ai_inference: ("DENY")?,
74811
+ access_apps_native_data_store: ("DENY")?,
74807
74812
  publish_without_approval: ("DENY")?,
74808
74813
  use_bedrock_models: ("DENY")?,
74809
74814
  perform_flow_ui_task: ("DENY")?,
@@ -149402,8 +149407,45 @@ module Aws
149402
149407
  format_version: ("VERSION_1" | "VERSION_2")?,
149403
149408
  status: ("ENABLED" | "DISABLED")?
149404
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
+ ]?
149405
149430
  }?
149406
- }]?
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
+ ]?
149407
149449
  }
149408
149450
  ) -> _CreateDataSetResponseSuccess
149409
149451
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataSetResponseSuccess
@@ -301348,6 +301390,11 @@ module Aws
301348
301390
  analysis: ("DENY")?,
301349
301391
  automate: ("DENY")?,
301350
301392
  flow: ("DENY")?,
301393
+ apps: ("DENY")?,
301394
+ create_and_update_apps: ("DENY")?,
301395
+ share_apps: ("DENY")?,
301396
+ invoke_apps_ai_inference: ("DENY")?,
301397
+ access_apps_native_data_store: ("DENY")?,
301351
301398
  publish_without_approval: ("DENY")?,
301352
301399
  use_bedrock_models: ("DENY")?,
301353
301400
  perform_flow_ui_task: ("DENY")?,
@@ -375987,8 +376034,45 @@ module Aws
375987
376034
  format_version: ("VERSION_1" | "VERSION_2")?,
375988
376035
  status: ("ENABLED" | "DISABLED")?
375989
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
+ ]?
375990
376057
  }?
375991
- }]?
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
+ ]?
375992
376076
  }
375993
376077
  ) -> _UpdateDataSetResponseSuccess
375994
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]
@@ -1212,6 +1217,11 @@ module Aws::QuickSight
1212
1217
  attr_accessor analysis: ("DENY")
1213
1218
  attr_accessor automate: ("DENY")
1214
1219
  attr_accessor flow: ("DENY")
1220
+ attr_accessor apps: ("DENY")
1221
+ attr_accessor create_and_update_apps: ("DENY")
1222
+ attr_accessor share_apps: ("DENY")
1223
+ attr_accessor invoke_apps_ai_inference: ("DENY")
1224
+ attr_accessor access_apps_native_data_store: ("DENY")
1215
1225
  attr_accessor publish_without_approval: ("DENY")
1216
1226
  attr_accessor use_bedrock_models: ("DENY")
1217
1227
  attr_accessor perform_flow_ui_task: ("DENY")
@@ -1608,6 +1618,18 @@ module Aws::QuickSight
1608
1618
  SENSITIVE: []
1609
1619
  end
1610
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
+
1611
1633
  class ColumnSort
1612
1634
  attr_accessor sort_by: Types::ColumnIdentifier
1613
1635
  attr_accessor direction: ("ASC" | "DESC")
@@ -2469,6 +2491,11 @@ module Aws::QuickSight
2469
2491
  SENSITIVE: []
2470
2492
  end
2471
2493
 
2494
+ class CustomInstruction
2495
+ attr_accessor inline_custom_instruction: Types::InlineCustomInstruction
2496
+ SENSITIVE: []
2497
+ end
2498
+
2472
2499
  class CustomInstructions
2473
2500
  attr_accessor custom_instructions_string: ::String
2474
2501
  SENSITIVE: [:custom_instructions_string]
@@ -2927,6 +2954,17 @@ module Aws::QuickSight
2927
2954
  SENSITIVE: []
2928
2955
  end
2929
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
+
2930
2968
  class DataSetStringComparisonFilterCondition
2931
2969
  attr_accessor operator: ("EQUALS" | "DOES_NOT_EQUAL" | "CONTAINS" | "DOES_NOT_CONTAIN" | "STARTS_WITH" | "ENDS_WITH")
2932
2970
  attr_accessor value: Types::DataSetStringFilterValue
@@ -6165,6 +6203,12 @@ module Aws::QuickSight
6165
6203
  SENSITIVE: []
6166
6204
  end
6167
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
+
6168
6212
  class InnerFilter
6169
6213
  attr_accessor category_inner_filter: Types::CategoryInnerFilter
6170
6214
  SENSITIVE: []
@@ -9059,6 +9103,7 @@ module Aws::QuickSight
9059
9103
 
9060
9104
  class SemanticModelConfiguration
9061
9105
  attr_accessor table_map: ::Hash[::String, Types::SemanticTable]
9106
+ attr_accessor semantic_metadata: ::Array[Types::DataSetSemanticMetadata]
9062
9107
  SENSITIVE: []
9063
9108
  end
9064
9109
 
@@ -9066,6 +9111,7 @@ module Aws::QuickSight
9066
9111
  attr_accessor alias: ::String
9067
9112
  attr_accessor destination_table_id: ::String
9068
9113
  attr_accessor row_level_permission_configuration: Types::RowLevelPermissionConfiguration
9114
+ attr_accessor semantic_metadata: Types::TableSemanticMetadata
9069
9115
  SENSITIVE: []
9070
9116
  end
9071
9117
 
@@ -9114,6 +9160,12 @@ module Aws::QuickSight
9114
9160
  SENSITIVE: []
9115
9161
  end
9116
9162
 
9163
+ class SharedColumnSemanticMetadata
9164
+ attr_accessor column_names: ::Array[::String]
9165
+ attr_accessor column_properties: ::Array[Types::ColumnSemanticProperty]
9166
+ SENSITIVE: []
9167
+ end
9168
+
9117
9169
  class SharedViewConfigurations
9118
9170
  attr_accessor enabled: bool
9119
9171
  SENSITIVE: []
@@ -9812,6 +9864,11 @@ module Aws::QuickSight
9812
9864
  SENSITIVE: []
9813
9865
  end
9814
9866
 
9867
+ class TableSemanticMetadata
9868
+ attr_accessor column_metadata: ::Array[Types::SharedColumnSemanticMetadata]
9869
+ SENSITIVE: []
9870
+ end
9871
+
9815
9872
  class TableSideBorderOptions
9816
9873
  attr_accessor inner_vertical: Types::TableBorderOptions
9817
9874
  attr_accessor inner_horizontal: Types::TableBorderOptions
@@ -11539,6 +11596,11 @@ module Aws::QuickSight
11539
11596
  SENSITIVE: []
11540
11597
  end
11541
11598
 
11599
+ class UploadedDocumentMetadata
11600
+ attr_accessor name: ::String
11601
+ SENSITIVE: []
11602
+ end
11603
+
11542
11604
  class User
11543
11605
  attr_accessor arn: ::String
11544
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.179.0
4
+ version: 1.181.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.244.0
21
+ version: 3.247.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.244.0
31
+ version: 3.247.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement