aws-sdk-quicksight 1.94.0 → 1.96.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.
@@ -439,6 +439,10 @@ module Aws::QuickSight
439
439
  # The configuration for default analysis settings.
440
440
  # @return [Types::AnalysisDefaults]
441
441
  #
442
+ # @!attribute [rw] options
443
+ # An array of option definitions for an analysis.
444
+ # @return [Types::AssetOptions]
445
+ #
442
446
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AnalysisDefinition AWS API Documentation
443
447
  #
444
448
  class AnalysisDefinition < Struct.new(
@@ -448,7 +452,8 @@ module Aws::QuickSight
448
452
  :parameter_declarations,
449
453
  :filter_groups,
450
454
  :column_configurations,
451
- :analysis_defaults)
455
+ :analysis_defaults,
456
+ :options)
452
457
  SENSITIVE = []
453
458
  include Aws::Structure
454
459
  end
@@ -1067,6 +1072,16 @@ module Aws::QuickSight
1067
1072
  # The format for the export job.
1068
1073
  # @return [String]
1069
1074
  #
1075
+ # @!attribute [rw] include_permissions
1076
+ # The flag that determines the inclusion of permissions associated
1077
+ # with each resource ARN.
1078
+ # @return [Boolean]
1079
+ #
1080
+ # @!attribute [rw] include_tags
1081
+ # The flag that determines the inclusion of tags associated with each
1082
+ # resource ARN.
1083
+ # @return [Boolean]
1084
+ #
1070
1085
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AssetBundleExportJobSummary AWS API Documentation
1071
1086
  #
1072
1087
  class AssetBundleExportJobSummary < Struct.new(
@@ -1075,7 +1090,9 @@ module Aws::QuickSight
1075
1090
  :created_time,
1076
1091
  :asset_bundle_export_job_id,
1077
1092
  :include_all_dependencies,
1078
- :export_format)
1093
+ :export_format,
1094
+ :include_permissions,
1095
+ :include_tags)
1079
1096
  SENSITIVE = []
1080
1097
  include Aws::Structure
1081
1098
  end
@@ -1124,6 +1141,42 @@ module Aws::QuickSight
1124
1141
  include Aws::Structure
1125
1142
  end
1126
1143
 
1144
+ # The option to relax the validation that is required to export each
1145
+ # asset. When `StrictModeForAllResource` is set to true, validation is
1146
+ # skipped for specific UI errors.
1147
+ #
1148
+ # @!attribute [rw] strict_mode_for_all_resources
1149
+ # A Boolean value that indicates whether to export resources under
1150
+ # strict or lenient mode.
1151
+ # @return [Boolean]
1152
+ #
1153
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AssetBundleExportJobValidationStrategy AWS API Documentation
1154
+ #
1155
+ class AssetBundleExportJobValidationStrategy < Struct.new(
1156
+ :strict_mode_for_all_resources)
1157
+ SENSITIVE = []
1158
+ include Aws::Structure
1159
+ end
1160
+
1161
+ # Describes a warning that occurred during an Asset Bundle export job.
1162
+ #
1163
+ # @!attribute [rw] arn
1164
+ # The ARN of the resource whose processing caused a warning.
1165
+ # @return [String]
1166
+ #
1167
+ # @!attribute [rw] message
1168
+ # A description of the warning.
1169
+ # @return [String]
1170
+ #
1171
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AssetBundleExportJobWarning AWS API Documentation
1172
+ #
1173
+ class AssetBundleExportJobWarning < Struct.new(
1174
+ :arn,
1175
+ :message)
1176
+ SENSITIVE = []
1177
+ include Aws::Structure
1178
+ end
1179
+
1127
1180
  # The override parameters for a single analysis that is being imported.
1128
1181
  #
1129
1182
  # @!attribute [rw] analysis_id
@@ -1143,6 +1196,49 @@ module Aws::QuickSight
1143
1196
  include Aws::Structure
1144
1197
  end
1145
1198
 
1199
+ # An object that contains a list of permissions to be applied to a list
1200
+ # of analysis IDs.
1201
+ #
1202
+ # @!attribute [rw] analysis_ids
1203
+ # A list of analysis IDs that you want to apply overrides to. You can
1204
+ # use `*` to override all analyses in this asset bundle.
1205
+ # @return [Array<String>]
1206
+ #
1207
+ # @!attribute [rw] permissions
1208
+ # A list of permissions for the analyses that you want to apply
1209
+ # overrides to.
1210
+ # @return [Types::AssetBundleResourcePermissions]
1211
+ #
1212
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AssetBundleImportJobAnalysisOverridePermissions AWS API Documentation
1213
+ #
1214
+ class AssetBundleImportJobAnalysisOverridePermissions < Struct.new(
1215
+ :analysis_ids,
1216
+ :permissions)
1217
+ SENSITIVE = []
1218
+ include Aws::Structure
1219
+ end
1220
+
1221
+ # An object that contains a list of tags to be assigned to a list of
1222
+ # analysis IDs.
1223
+ #
1224
+ # @!attribute [rw] analysis_ids
1225
+ # A list of analysis IDs that you want to apply overrides to. You can
1226
+ # use `*` to override all analyses in this asset bundle.
1227
+ # @return [Array<String>]
1228
+ #
1229
+ # @!attribute [rw] tags
1230
+ # A list of tags for the analyses that you want to apply overrides to.
1231
+ # @return [Array<Types::Tag>]
1232
+ #
1233
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AssetBundleImportJobAnalysisOverrideTags AWS API Documentation
1234
+ #
1235
+ class AssetBundleImportJobAnalysisOverrideTags < Struct.new(
1236
+ :analysis_ids,
1237
+ :tags)
1238
+ SENSITIVE = []
1239
+ include Aws::Structure
1240
+ end
1241
+
1146
1242
  # The override parameters for a single dashboard that is being imported.
1147
1243
  #
1148
1244
  # @!attribute [rw] dashboard_id
@@ -1162,6 +1258,56 @@ module Aws::QuickSight
1162
1258
  include Aws::Structure
1163
1259
  end
1164
1260
 
1261
+ # An object that contains a list of permissions to be applied to a list
1262
+ # of dashboard IDs.
1263
+ #
1264
+ # @!attribute [rw] dashboard_ids
1265
+ # A list of dashboard IDs that you want to apply overrides to. You can
1266
+ # use `*` to override all dashboards in this asset bundle.
1267
+ # @return [Array<String>]
1268
+ #
1269
+ # @!attribute [rw] permissions
1270
+ # A list of permissions for the dashboards that you want to apply
1271
+ # overrides to.
1272
+ # @return [Types::AssetBundleResourcePermissions]
1273
+ #
1274
+ # @!attribute [rw] link_sharing_configuration
1275
+ # A structure that contains the link sharing configurations that you
1276
+ # want to apply overrides to.
1277
+ # @return [Types::AssetBundleResourceLinkSharingConfiguration]
1278
+ #
1279
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AssetBundleImportJobDashboardOverridePermissions AWS API Documentation
1280
+ #
1281
+ class AssetBundleImportJobDashboardOverridePermissions < Struct.new(
1282
+ :dashboard_ids,
1283
+ :permissions,
1284
+ :link_sharing_configuration)
1285
+ SENSITIVE = []
1286
+ include Aws::Structure
1287
+ end
1288
+
1289
+ # An object that contains a list of tags to be assigned to a list of
1290
+ # dashboard IDs.
1291
+ #
1292
+ # @!attribute [rw] dashboard_ids
1293
+ # A list of dashboard IDs that you want to apply overrides to. You can
1294
+ # use `*` to override all dashboards in this asset bundle.
1295
+ # @return [Array<String>]
1296
+ #
1297
+ # @!attribute [rw] tags
1298
+ # A list of tags for the dashboards that you want to apply overrides
1299
+ # to.
1300
+ # @return [Array<Types::Tag>]
1301
+ #
1302
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AssetBundleImportJobDashboardOverrideTags AWS API Documentation
1303
+ #
1304
+ class AssetBundleImportJobDashboardOverrideTags < Struct.new(
1305
+ :dashboard_ids,
1306
+ :tags)
1307
+ SENSITIVE = []
1308
+ include Aws::Structure
1309
+ end
1310
+
1165
1311
  # The override parameters for a single dataset that is being imported.
1166
1312
  #
1167
1313
  # @!attribute [rw] data_set_id
@@ -1181,6 +1327,49 @@ module Aws::QuickSight
1181
1327
  include Aws::Structure
1182
1328
  end
1183
1329
 
1330
+ # An object that contains a list of permissions to be applied to a list
1331
+ # of dataset IDs.
1332
+ #
1333
+ # @!attribute [rw] data_set_ids
1334
+ # A list of dataset IDs that you want to apply overrides to. You can
1335
+ # use `*` to override all datasets in this asset bundle.
1336
+ # @return [Array<String>]
1337
+ #
1338
+ # @!attribute [rw] permissions
1339
+ # A list of permissions for the datasets that you want to apply
1340
+ # overrides to.
1341
+ # @return [Types::AssetBundleResourcePermissions]
1342
+ #
1343
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AssetBundleImportJobDataSetOverridePermissions AWS API Documentation
1344
+ #
1345
+ class AssetBundleImportJobDataSetOverridePermissions < Struct.new(
1346
+ :data_set_ids,
1347
+ :permissions)
1348
+ SENSITIVE = []
1349
+ include Aws::Structure
1350
+ end
1351
+
1352
+ # An object that contains a list of tags to be assigned to a list of
1353
+ # dataset IDs.
1354
+ #
1355
+ # @!attribute [rw] data_set_ids
1356
+ # A list of dataset IDs that you want to apply overrides to. You can
1357
+ # use `*` to override all datasets in this asset bundle.
1358
+ # @return [Array<String>]
1359
+ #
1360
+ # @!attribute [rw] tags
1361
+ # A list of tags for the datasets that you want to apply overrides to.
1362
+ # @return [Array<Types::Tag>]
1363
+ #
1364
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AssetBundleImportJobDataSetOverrideTags AWS API Documentation
1365
+ #
1366
+ class AssetBundleImportJobDataSetOverrideTags < Struct.new(
1367
+ :data_set_ids,
1368
+ :tags)
1369
+ SENSITIVE = []
1370
+ include Aws::Structure
1371
+ end
1372
+
1184
1373
  # A username and password credential pair to use to import a data source
1185
1374
  # resource.
1186
1375
  #
@@ -1268,6 +1457,50 @@ module Aws::QuickSight
1268
1457
  include Aws::Structure
1269
1458
  end
1270
1459
 
1460
+ # An object that contains a list of permissions to be applied to a list
1461
+ # of data source IDs.
1462
+ #
1463
+ # @!attribute [rw] data_source_ids
1464
+ # A list of data source IDs that you want to apply overrides to. You
1465
+ # can use `*` to override all data sources in this asset bundle.
1466
+ # @return [Array<String>]
1467
+ #
1468
+ # @!attribute [rw] permissions
1469
+ # A list of permissions for the data source that you want to apply
1470
+ # overrides to.
1471
+ # @return [Types::AssetBundleResourcePermissions]
1472
+ #
1473
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AssetBundleImportJobDataSourceOverridePermissions AWS API Documentation
1474
+ #
1475
+ class AssetBundleImportJobDataSourceOverridePermissions < Struct.new(
1476
+ :data_source_ids,
1477
+ :permissions)
1478
+ SENSITIVE = []
1479
+ include Aws::Structure
1480
+ end
1481
+
1482
+ # An object that contains a list of tags to be assigned to a list of
1483
+ # data source IDs.
1484
+ #
1485
+ # @!attribute [rw] data_source_ids
1486
+ # A list of data source IDs that you want to apply overrides to. You
1487
+ # can use `*` to override all data sources in this asset bundle.
1488
+ # @return [Array<String>]
1489
+ #
1490
+ # @!attribute [rw] tags
1491
+ # A list of tags for the data source that you want to apply overrides
1492
+ # to.
1493
+ # @return [Array<Types::Tag>]
1494
+ #
1495
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AssetBundleImportJobDataSourceOverrideTags AWS API Documentation
1496
+ #
1497
+ class AssetBundleImportJobDataSourceOverrideTags < Struct.new(
1498
+ :data_source_ids,
1499
+ :tags)
1500
+ SENSITIVE = []
1501
+ include Aws::Structure
1502
+ end
1503
+
1271
1504
  # Describes an error that occurred within an Asset Bundle import
1272
1505
  # execution.
1273
1506
  #
@@ -1351,6 +1584,110 @@ module Aws::QuickSight
1351
1584
  include Aws::Structure
1352
1585
  end
1353
1586
 
1587
+ # A structure that contains the override permission configurations that
1588
+ # modify the permissions for specified resources before the resource is
1589
+ # imported.
1590
+ #
1591
+ # @!attribute [rw] data_sources
1592
+ # A list of permissions overrides for any `DataSource` resources that
1593
+ # are present in the asset bundle that is imported.
1594
+ # @return [Array<Types::AssetBundleImportJobDataSourceOverridePermissions>]
1595
+ #
1596
+ # @!attribute [rw] data_sets
1597
+ # A list of permissions overrides for any `DataSet` resources that are
1598
+ # present in the asset bundle that is imported.
1599
+ # @return [Array<Types::AssetBundleImportJobDataSetOverridePermissions>]
1600
+ #
1601
+ # @!attribute [rw] themes
1602
+ # A list of permissions overrides for any `Theme` resources that are
1603
+ # present in the asset bundle that is imported.
1604
+ # @return [Array<Types::AssetBundleImportJobThemeOverridePermissions>]
1605
+ #
1606
+ # @!attribute [rw] analyses
1607
+ # A list of permissions overrides for any `Analysis` resources that
1608
+ # are present in the asset bundle that is imported.
1609
+ # @return [Array<Types::AssetBundleImportJobAnalysisOverridePermissions>]
1610
+ #
1611
+ # @!attribute [rw] dashboards
1612
+ # A list of permissions overrides for any `Dashboard` resources that
1613
+ # are present in the asset bundle that is imported.
1614
+ # @return [Array<Types::AssetBundleImportJobDashboardOverridePermissions>]
1615
+ #
1616
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AssetBundleImportJobOverridePermissions AWS API Documentation
1617
+ #
1618
+ class AssetBundleImportJobOverridePermissions < Struct.new(
1619
+ :data_sources,
1620
+ :data_sets,
1621
+ :themes,
1622
+ :analyses,
1623
+ :dashboards)
1624
+ SENSITIVE = []
1625
+ include Aws::Structure
1626
+ end
1627
+
1628
+ # A structure that contains the override tag configuration that modify
1629
+ # the tags that are assigned to specified resources before the resource
1630
+ # is imported.
1631
+ #
1632
+ # @!attribute [rw] vpc_connections
1633
+ # A list of tag overrides for any `VPCConnection` resources that are
1634
+ # present in the asset bundle that is imported.
1635
+ # @return [Array<Types::AssetBundleImportJobVPCConnectionOverrideTags>]
1636
+ #
1637
+ # @!attribute [rw] data_sources
1638
+ # A list of tag overrides for any `DataSource` resources that are
1639
+ # present in the asset bundle that is imported.
1640
+ # @return [Array<Types::AssetBundleImportJobDataSourceOverrideTags>]
1641
+ #
1642
+ # @!attribute [rw] data_sets
1643
+ # A list of tag overrides for any `DataSet` resources that are present
1644
+ # in the asset bundle that is imported.
1645
+ # @return [Array<Types::AssetBundleImportJobDataSetOverrideTags>]
1646
+ #
1647
+ # @!attribute [rw] themes
1648
+ # A list of tag overrides for any `Theme` resources that are present
1649
+ # in the asset bundle that is imported.
1650
+ # @return [Array<Types::AssetBundleImportJobThemeOverrideTags>]
1651
+ #
1652
+ # @!attribute [rw] analyses
1653
+ # A list of tag overrides for any `Analysis` resources that are
1654
+ # present in the asset bundle that is imported.
1655
+ # @return [Array<Types::AssetBundleImportJobAnalysisOverrideTags>]
1656
+ #
1657
+ # @!attribute [rw] dashboards
1658
+ # A list of tag overrides for any `Dashboard` resources that are
1659
+ # present in the asset bundle that is imported.
1660
+ # @return [Array<Types::AssetBundleImportJobDashboardOverrideTags>]
1661
+ #
1662
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AssetBundleImportJobOverrideTags AWS API Documentation
1663
+ #
1664
+ class AssetBundleImportJobOverrideTags < Struct.new(
1665
+ :vpc_connections,
1666
+ :data_sources,
1667
+ :data_sets,
1668
+ :themes,
1669
+ :analyses,
1670
+ :dashboards)
1671
+ SENSITIVE = []
1672
+ include Aws::Structure
1673
+ end
1674
+
1675
+ # An optional parameter that overrides the validation strategy for all
1676
+ # analyses and dashboards before the resource is imported.
1677
+ #
1678
+ # @!attribute [rw] strict_mode_for_all_resources
1679
+ # A Boolean value that indicates whether to import all analyses and
1680
+ # dashboards under strict or lenient mode.
1681
+ # @return [Boolean]
1682
+ #
1683
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AssetBundleImportJobOverrideValidationStrategy AWS API Documentation
1684
+ #
1685
+ class AssetBundleImportJobOverrideValidationStrategy < Struct.new(
1686
+ :strict_mode_for_all_resources)
1687
+ SENSITIVE = []
1688
+ include Aws::Structure
1689
+ end
1690
+
1354
1691
  # A list of overrides for a specific `RefreshsSchedule` resource that is
1355
1692
  # present in the asset bundle that is imported.
1356
1693
  #
@@ -1454,6 +1791,49 @@ module Aws::QuickSight
1454
1791
  include Aws::Structure
1455
1792
  end
1456
1793
 
1794
+ # An object that contains a list of permissions to be applied to a list
1795
+ # of theme IDs.
1796
+ #
1797
+ # @!attribute [rw] theme_ids
1798
+ # A list of theme IDs that you want to apply overrides to. You can use
1799
+ # `*` to override all themes in this asset bundle.
1800
+ # @return [Array<String>]
1801
+ #
1802
+ # @!attribute [rw] permissions
1803
+ # A list of permissions for the themes that you want to apply
1804
+ # overrides to.
1805
+ # @return [Types::AssetBundleResourcePermissions]
1806
+ #
1807
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AssetBundleImportJobThemeOverridePermissions AWS API Documentation
1808
+ #
1809
+ class AssetBundleImportJobThemeOverridePermissions < Struct.new(
1810
+ :theme_ids,
1811
+ :permissions)
1812
+ SENSITIVE = []
1813
+ include Aws::Structure
1814
+ end
1815
+
1816
+ # An object that contains a list of tags to be assigned to a list of
1817
+ # theme IDs.
1818
+ #
1819
+ # @!attribute [rw] theme_ids
1820
+ # A list of theme IDs that you want to apply overrides to. You can use
1821
+ # `*` to override all themes in this asset bundle.
1822
+ # @return [Array<String>]
1823
+ #
1824
+ # @!attribute [rw] tags
1825
+ # A list of tags for the themes that you want to apply overrides to.
1826
+ # @return [Array<Types::Tag>]
1827
+ #
1828
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AssetBundleImportJobThemeOverrideTags AWS API Documentation
1829
+ #
1830
+ class AssetBundleImportJobThemeOverrideTags < Struct.new(
1831
+ :theme_ids,
1832
+ :tags)
1833
+ SENSITIVE = []
1834
+ include Aws::Structure
1835
+ end
1836
+
1457
1837
  # The override parameters for a single VPC connection that is imported.
1458
1838
  #
1459
1839
  # @!attribute [rw] vpc_connection_id
@@ -1499,6 +1879,29 @@ module Aws::QuickSight
1499
1879
  include Aws::Structure
1500
1880
  end
1501
1881
 
1882
+ # An object that contains a list of tags to be assigned to a list of VPC
1883
+ # connection IDs.
1884
+ #
1885
+ # @!attribute [rw] vpc_connection_ids
1886
+ # A list of VPC connection IDs that you want to apply overrides to.
1887
+ # You can use `*` to override all VPC connections in this asset
1888
+ # bundle.
1889
+ # @return [Array<String>]
1890
+ #
1891
+ # @!attribute [rw] tags
1892
+ # A list of tags for the VPC connections that you want to apply
1893
+ # overrides to.
1894
+ # @return [Array<Types::Tag>]
1895
+ #
1896
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AssetBundleImportJobVPCConnectionOverrideTags AWS API Documentation
1897
+ #
1898
+ class AssetBundleImportJobVPCConnectionOverrideTags < Struct.new(
1899
+ :vpc_connection_ids,
1900
+ :tags)
1901
+ SENSITIVE = []
1902
+ include Aws::Structure
1903
+ end
1904
+
1502
1905
  # The source of the asset bundle zip file that contains the data that
1503
1906
  # you want to import. The file must be in `QUICKSIGHT_JSON` format.
1504
1907
  #
@@ -1549,6 +1952,61 @@ module Aws::QuickSight
1549
1952
  class AssetBundleImportSourceDescription < Struct.new(
1550
1953
  :body,
1551
1954
  :s3_uri)
1955
+ SENSITIVE = [:body]
1956
+ include Aws::Structure
1957
+ end
1958
+
1959
+ # A structure that contains the configuration of a shared link to an
1960
+ # Amazon QuickSight dashboard.
1961
+ #
1962
+ # @!attribute [rw] permissions
1963
+ # A list of link sharing permissions for the dashboards that you want
1964
+ # to apply overrides to.
1965
+ # @return [Types::AssetBundleResourcePermissions]
1966
+ #
1967
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AssetBundleResourceLinkSharingConfiguration AWS API Documentation
1968
+ #
1969
+ class AssetBundleResourceLinkSharingConfiguration < Struct.new(
1970
+ :permissions)
1971
+ SENSITIVE = []
1972
+ include Aws::Structure
1973
+ end
1974
+
1975
+ # A structure that contains the permissions for the resource that you
1976
+ # want to override in an asset bundle import job.
1977
+ #
1978
+ # @!attribute [rw] principals
1979
+ # A list of principals to grant permissions on.
1980
+ # @return [Array<String>]
1981
+ #
1982
+ # @!attribute [rw] actions
1983
+ # A list of IAM actions to grant permissions on.
1984
+ # @return [Array<String>]
1985
+ #
1986
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AssetBundleResourcePermissions AWS API Documentation
1987
+ #
1988
+ class AssetBundleResourcePermissions < Struct.new(
1989
+ :principals,
1990
+ :actions)
1991
+ SENSITIVE = []
1992
+ include Aws::Structure
1993
+ end
1994
+
1995
+ # An array of analysis level configurations.
1996
+ #
1997
+ # @!attribute [rw] timezone
1998
+ # Determines the timezone for the analysis.
1999
+ # @return [String]
2000
+ #
2001
+ # @!attribute [rw] week_start
2002
+ # Determines the week start day for an analysis.
2003
+ # @return [String]
2004
+ #
2005
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AssetOptions AWS API Documentation
2006
+ #
2007
+ class AssetOptions < Struct.new(
2008
+ :timezone,
2009
+ :week_start)
1552
2010
  SENSITIVE = []
1553
2011
  include Aws::Structure
1554
2012
  end
@@ -2156,6 +2614,27 @@ module Aws::QuickSight
2156
2614
  include Aws::Structure
2157
2615
  end
2158
2616
 
2617
+ # The parameters that are required to connect to a Google BigQuery data
2618
+ # source.
2619
+ #
2620
+ # @!attribute [rw] project_id
2621
+ # The Google Cloud Platform project ID where your datasource was
2622
+ # created.
2623
+ # @return [String]
2624
+ #
2625
+ # @!attribute [rw] data_set_region
2626
+ # The storage location where you create a Google BigQuery data source.
2627
+ # @return [String]
2628
+ #
2629
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/BigQueryParameters AWS API Documentation
2630
+ #
2631
+ class BigQueryParameters < Struct.new(
2632
+ :project_id,
2633
+ :data_set_region)
2634
+ SENSITIVE = []
2635
+ include Aws::Structure
2636
+ end
2637
+
2159
2638
  # The options that determine the bin count of a histogram.
2160
2639
  #
2161
2640
  # @!attribute [rw] value
@@ -2640,6 +3119,11 @@ module Aws::QuickSight
2640
3119
  # New column data type.
2641
3120
  # @return [String]
2642
3121
  #
3122
+ # @!attribute [rw] sub_type
3123
+ # The sub data type of the new column. Sub types are only available
3124
+ # for decimal columns that are part of a SPICE dataset.
3125
+ # @return [String]
3126
+ #
2643
3127
  # @!attribute [rw] format
2644
3128
  # When casting a column from string to datetime type, you can supply a
2645
3129
  # string in a format supported by Amazon QuickSight to denote the
@@ -2651,6 +3135,7 @@ module Aws::QuickSight
2651
3135
  class CastColumnTypeOperation < Struct.new(
2652
3136
  :column_name,
2653
3137
  :new_column_type,
3138
+ :sub_type,
2654
3139
  :format)
2655
3140
  SENSITIVE = []
2656
3141
  include Aws::Structure
@@ -3878,11 +4363,13 @@ module Aws::QuickSight
3878
4363
  #
3879
4364
  # @!attribute [rw] authentication_method
3880
4365
  # The method that you want to use to authenticate your Amazon
3881
- # QuickSight account. Currently, the valid values for this parameter
3882
- # are `IAM_AND_QUICKSIGHT`, `IAM_ONLY`, and `ACTIVE_DIRECTORY`.
4366
+ # QuickSight account.
3883
4367
  #
3884
4368
  # If you choose `ACTIVE_DIRECTORY`, provide an `ActiveDirectoryName`
3885
4369
  # and an `AdminGroup` associated with your Active Directory.
4370
+ #
4371
+ # If you choose `IAM_IDENTITY_CENTER`, provide an `AdminGroup`
4372
+ # associated with your IAM Identity Center account.
3886
4373
  # @return [String]
3887
4374
  #
3888
4375
  # @!attribute [rw] aws_account_id
@@ -3922,38 +4409,56 @@ module Aws::QuickSight
3922
4409
  # @return [String]
3923
4410
  #
3924
4411
  # @!attribute [rw] admin_group
3925
- # The admin group associated with your Active Directory. This field is
3926
- # required if `ACTIVE_DIRECTORY` is the selected authentication method
3927
- # of the new Amazon QuickSight account. For more information about
3928
- # using Active Directory in Amazon QuickSight, see [Using Active
3929
- # Directory with Amazon QuickSight Enterprise Edition][1] in the
3930
- # Amazon QuickSight User Guide.
4412
+ # The admin group associated with your Active Directory or IAM
4413
+ # Identity Center account. This field is required if
4414
+ # `ACTIVE_DIRECTORY` or `IAM_IDENTITY_CENTER` is the selected
4415
+ # authentication method of the new Amazon QuickSight account.
4416
+ #
4417
+ # For more information about using IAM Identity Center in Amazon
4418
+ # QuickSight, see [Using IAM Identity Center with Amazon QuickSight
4419
+ # Enterprise Edition][1] in the Amazon QuickSight User Guide. For more
4420
+ # information about using Active Directory in Amazon QuickSight, see
4421
+ # [Using Active Directory with Amazon QuickSight Enterprise
4422
+ # Edition][2] in the Amazon QuickSight User Guide.
3931
4423
  #
3932
4424
  #
3933
4425
  #
3934
- # [1]: https://docs.aws.amazon.com/quicksight/latest/user/aws-directory-service.html
4426
+ # [1]: https://docs.aws.amazon.com/quicksight/latest/user/sec-identity-management-identity-center.html
4427
+ # [2]: https://docs.aws.amazon.com/quicksight/latest/user/aws-directory-service.html
3935
4428
  # @return [Array<String>]
3936
4429
  #
3937
4430
  # @!attribute [rw] author_group
3938
- # The author group associated with your Active Directory. For more
4431
+ # The author group associated with your Active Directory or IAM
4432
+ # Identity Center account.
4433
+ #
4434
+ # For more information about using IAM Identity Center in Amazon
4435
+ # QuickSight, see [Using IAM Identity Center with Amazon QuickSight
4436
+ # Enterprise Edition][1] in the Amazon QuickSight User Guide. For more
3939
4437
  # information about using Active Directory in Amazon QuickSight, see
3940
4438
  # [Using Active Directory with Amazon QuickSight Enterprise
3941
- # Edition][1] in the Amazon QuickSight User Guide.
4439
+ # Edition][2] in the Amazon QuickSight User Guide.
3942
4440
  #
3943
4441
  #
3944
4442
  #
3945
- # [1]: https://docs.aws.amazon.com/quicksight/latest/user/aws-directory-service.html
4443
+ # [1]: https://docs.aws.amazon.com/quicksight/latest/user/sec-identity-management-identity-center.html
4444
+ # [2]: https://docs.aws.amazon.com/quicksight/latest/user/aws-directory-service.html
3946
4445
  # @return [Array<String>]
3947
4446
  #
3948
4447
  # @!attribute [rw] reader_group
3949
- # The reader group associated with your Active Direcrtory. For more
4448
+ # The reader group associated with your Active Directory or IAM
4449
+ # Identity Center account.
4450
+ #
4451
+ # For more information about using IAM Identity Center in Amazon
4452
+ # QuickSight, see [Using IAM Identity Center with Amazon QuickSight
4453
+ # Enterprise Edition][1] in the Amazon QuickSight User Guide. For more
3950
4454
  # information about using Active Directory in Amazon QuickSight, see
3951
4455
  # [Using Active Directory with Amazon QuickSight Enterprise
3952
- # Edition][1] in the *Amazon QuickSight User Guide*.
4456
+ # Edition][2] in the Amazon QuickSight User Guide.
3953
4457
  #
3954
4458
  #
3955
4459
  #
3956
- # [1]: https://docs.aws.amazon.com/quicksight/latest/user/aws-directory-service.html
4460
+ # [1]: https://docs.aws.amazon.com/quicksight/latest/user/sec-identity-management-identity-center.html
4461
+ # [2]: https://docs.aws.amazon.com/quicksight/latest/user/aws-directory-service.html
3957
4462
  # @return [Array<String>]
3958
4463
  #
3959
4464
  # @!attribute [rw] first_name
@@ -4268,6 +4773,11 @@ module Aws::QuickSight
4268
4773
  # to these folders.
4269
4774
  # @return [Array<String>]
4270
4775
  #
4776
+ # @!attribute [rw] link_sharing_configuration
4777
+ # A structure that contains the permissions of a shareable link to the
4778
+ # dashboard.
4779
+ # @return [Types::LinkSharingConfiguration]
4780
+ #
4271
4781
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateDashboardRequest AWS API Documentation
4272
4782
  #
4273
4783
  class CreateDashboardRequest < Struct.new(
@@ -4283,7 +4793,8 @@ module Aws::QuickSight
4283
4793
  :theme_arn,
4284
4794
  :definition,
4285
4795
  :validation_strategy,
4286
- :folder_arns)
4796
+ :folder_arns,
4797
+ :link_sharing_configuration)
4287
4798
  SENSITIVE = []
4288
4799
  include Aws::Structure
4289
4800
  end
@@ -5083,17 +5594,64 @@ module Aws::QuickSight
5083
5594
  # The ID of the refresh schedule.
5084
5595
  # @return [String]
5085
5596
  #
5086
- # @!attribute [rw] arn
5087
- # The Amazon Resource Name (ARN) for the refresh schedule.
5088
- # @return [String]
5597
+ # @!attribute [rw] arn
5598
+ # The Amazon Resource Name (ARN) for the refresh schedule.
5599
+ # @return [String]
5600
+ #
5601
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateRefreshScheduleResponse AWS API Documentation
5602
+ #
5603
+ class CreateRefreshScheduleResponse < Struct.new(
5604
+ :status,
5605
+ :request_id,
5606
+ :schedule_id,
5607
+ :arn)
5608
+ SENSITIVE = []
5609
+ include Aws::Structure
5610
+ end
5611
+
5612
+ # @!attribute [rw] member_name
5613
+ # The name of the group that you want to add to the role.
5614
+ # @return [String]
5615
+ #
5616
+ # @!attribute [rw] aws_account_id
5617
+ # The ID for the Amazon Web Services account that you want to create a
5618
+ # group in. The Amazon Web Services account ID that you provide must
5619
+ # be the same Amazon Web Services account that contains your Amazon
5620
+ # QuickSight account.
5621
+ # @return [String]
5622
+ #
5623
+ # @!attribute [rw] namespace
5624
+ # The namespace that the role belongs to.
5625
+ # @return [String]
5626
+ #
5627
+ # @!attribute [rw] role
5628
+ # The role that you want to add a group to.
5629
+ # @return [String]
5630
+ #
5631
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateRoleMembershipRequest AWS API Documentation
5632
+ #
5633
+ class CreateRoleMembershipRequest < Struct.new(
5634
+ :member_name,
5635
+ :aws_account_id,
5636
+ :namespace,
5637
+ :role)
5638
+ SENSITIVE = []
5639
+ include Aws::Structure
5640
+ end
5641
+
5642
+ # @!attribute [rw] request_id
5643
+ # The Amazon Web Services request ID for this operation.
5644
+ # @return [String]
5645
+ #
5646
+ # @!attribute [rw] status
5647
+ # The HTTP status of the request.
5648
+ # @return [Integer]
5089
5649
  #
5090
- # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateRefreshScheduleResponse AWS API Documentation
5650
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateRoleMembershipResponse AWS API Documentation
5091
5651
  #
5092
- class CreateRefreshScheduleResponse < Struct.new(
5093
- :status,
5652
+ class CreateRoleMembershipResponse < Struct.new(
5094
5653
  :request_id,
5095
- :schedule_id,
5096
- :arn)
5654
+ :status)
5097
5655
  SENSITIVE = []
5098
5656
  include Aws::Structure
5099
5657
  end
@@ -6489,6 +7047,10 @@ module Aws::QuickSight
6489
7047
  # The configuration for default analysis settings.
6490
7048
  # @return [Types::AnalysisDefaults]
6491
7049
  #
7050
+ # @!attribute [rw] options
7051
+ # An array of option definitions for a dashboard.
7052
+ # @return [Types::AssetOptions]
7053
+ #
6492
7054
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DashboardVersionDefinition AWS API Documentation
6493
7055
  #
6494
7056
  class DashboardVersionDefinition < Struct.new(
@@ -6498,7 +7060,8 @@ module Aws::QuickSight
6498
7060
  :parameter_declarations,
6499
7061
  :filter_groups,
6500
7062
  :column_configurations,
6501
- :analysis_defaults)
7063
+ :analysis_defaults,
7064
+ :options)
6502
7065
  SENSITIVE = []
6503
7066
  include Aws::Structure
6504
7067
  end
@@ -7577,6 +8140,11 @@ module Aws::QuickSight
7577
8140
  # The parameters that are required to connect to a Trino data source.
7578
8141
  # @return [Types::TrinoParameters]
7579
8142
  #
8143
+ # @!attribute [rw] big_query_parameters
8144
+ # The parameters that are required to connect to a Google BigQuery
8145
+ # data source.
8146
+ # @return [Types::BigQueryParameters]
8147
+ #
7580
8148
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DataSourceParameters AWS API Documentation
7581
8149
  #
7582
8150
  class DataSourceParameters < Struct.new(
@@ -7604,7 +8172,8 @@ module Aws::QuickSight
7604
8172
  :exasol_parameters,
7605
8173
  :databricks_parameters,
7606
8174
  :starburst_parameters,
7607
- :trino_parameters)
8175
+ :trino_parameters,
8176
+ :big_query_parameters)
7608
8177
  SENSITIVE = []
7609
8178
  include Aws::Structure
7610
8179
  end
@@ -9048,6 +9617,94 @@ module Aws::QuickSight
9048
9617
  include Aws::Structure
9049
9618
  end
9050
9619
 
9620
+ # @!attribute [rw] role
9621
+ # The role that you want to remove permissions from.
9622
+ # @return [String]
9623
+ #
9624
+ # @!attribute [rw] aws_account_id
9625
+ # The ID for the Amazon Web Services account that the group is in.
9626
+ # Currently, you use the ID for the Amazon Web Services account that
9627
+ # contains your Amazon QuickSight account.
9628
+ # @return [String]
9629
+ #
9630
+ # @!attribute [rw] namespace
9631
+ # The namespace that includes the role.
9632
+ # @return [String]
9633
+ #
9634
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteRoleCustomPermissionRequest AWS API Documentation
9635
+ #
9636
+ class DeleteRoleCustomPermissionRequest < Struct.new(
9637
+ :role,
9638
+ :aws_account_id,
9639
+ :namespace)
9640
+ SENSITIVE = []
9641
+ include Aws::Structure
9642
+ end
9643
+
9644
+ # @!attribute [rw] request_id
9645
+ # The Amazon Web Services request ID for this operation.
9646
+ # @return [String]
9647
+ #
9648
+ # @!attribute [rw] status
9649
+ # The HTTP status of the request.
9650
+ # @return [Integer]
9651
+ #
9652
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteRoleCustomPermissionResponse AWS API Documentation
9653
+ #
9654
+ class DeleteRoleCustomPermissionResponse < Struct.new(
9655
+ :request_id,
9656
+ :status)
9657
+ SENSITIVE = []
9658
+ include Aws::Structure
9659
+ end
9660
+
9661
+ # @!attribute [rw] member_name
9662
+ # The name of the group.
9663
+ # @return [String]
9664
+ #
9665
+ # @!attribute [rw] role
9666
+ # The role that you want to remove permissions from.
9667
+ # @return [String]
9668
+ #
9669
+ # @!attribute [rw] aws_account_id
9670
+ # The ID for the Amazon Web Services account that you want to create a
9671
+ # group in. The Amazon Web Services account ID that you provide must
9672
+ # be the same Amazon Web Services account that contains your Amazon
9673
+ # QuickSight account.
9674
+ # @return [String]
9675
+ #
9676
+ # @!attribute [rw] namespace
9677
+ # The namespace that contains the role.
9678
+ # @return [String]
9679
+ #
9680
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteRoleMembershipRequest AWS API Documentation
9681
+ #
9682
+ class DeleteRoleMembershipRequest < Struct.new(
9683
+ :member_name,
9684
+ :role,
9685
+ :aws_account_id,
9686
+ :namespace)
9687
+ SENSITIVE = []
9688
+ include Aws::Structure
9689
+ end
9690
+
9691
+ # @!attribute [rw] request_id
9692
+ # The Amazon Web Services request ID for this operation.
9693
+ # @return [String]
9694
+ #
9695
+ # @!attribute [rw] status
9696
+ # The HTTP status of the request.
9697
+ # @return [Integer]
9698
+ #
9699
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteRoleMembershipResponse AWS API Documentation
9700
+ #
9701
+ class DeleteRoleMembershipResponse < Struct.new(
9702
+ :request_id,
9703
+ :status)
9704
+ SENSITIVE = []
9705
+ include Aws::Structure
9706
+ end
9707
+
9051
9708
  # @!attribute [rw] aws_account_id
9052
9709
  # The ID of the Amazon Web Services account that contains the item to
9053
9710
  # delete.
@@ -9945,6 +10602,28 @@ module Aws::QuickSight
9945
10602
  # The HTTP status of the response.
9946
10603
  # @return [Integer]
9947
10604
  #
10605
+ # @!attribute [rw] include_permissions
10606
+ # The include permissions flag.
10607
+ # @return [Boolean]
10608
+ #
10609
+ # @!attribute [rw] include_tags
10610
+ # The include tags flag.
10611
+ # @return [Boolean]
10612
+ #
10613
+ # @!attribute [rw] validation_strategy
10614
+ # The validation strategy that is used to export the analysis or
10615
+ # dashboard.
10616
+ # @return [Types::AssetBundleExportJobValidationStrategy]
10617
+ #
10618
+ # @!attribute [rw] warnings
10619
+ # An array of warning records that describe the analysis or dashboard
10620
+ # that is exported. This array includes UI errors that can be skipped
10621
+ # during the validation process.
10622
+ #
10623
+ # This property only appears if `StrictModeForAllResources` in
10624
+ # `ValidationStrategy` is set to `FALSE`.
10625
+ # @return [Array<Types::AssetBundleExportJobWarning>]
10626
+ #
9948
10627
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeAssetBundleExportJobResponse AWS API Documentation
9949
10628
  #
9950
10629
  class DescribeAssetBundleExportJobResponse < Struct.new(
@@ -9960,8 +10639,12 @@ module Aws::QuickSight
9960
10639
  :export_format,
9961
10640
  :cloud_formation_override_property_configuration,
9962
10641
  :request_id,
9963
- :status)
9964
- SENSITIVE = []
10642
+ :status,
10643
+ :include_permissions,
10644
+ :include_tags,
10645
+ :validation_strategy,
10646
+ :warnings)
10647
+ SENSITIVE = [:download_url]
9965
10648
  include Aws::Structure
9966
10649
  end
9967
10650
 
@@ -10041,7 +10724,7 @@ module Aws::QuickSight
10041
10724
  # @return [Types::AssetBundleImportSourceDescription]
10042
10725
  #
10043
10726
  # @!attribute [rw] override_parameters
10044
- # Optional overrides to be applied to the resource configuration
10727
+ # Optional overrides that are applied to the resource configuration
10045
10728
  # before import.
10046
10729
  # @return [Types::AssetBundleImportJobOverrideParameters]
10047
10730
  #
@@ -10057,6 +10740,22 @@ module Aws::QuickSight
10057
10740
  # The HTTP status of the response.
10058
10741
  # @return [Integer]
10059
10742
  #
10743
+ # @!attribute [rw] override_permissions
10744
+ # Optional permission overrides that are applied to the resource
10745
+ # configuration before import.
10746
+ # @return [Types::AssetBundleImportJobOverridePermissions]
10747
+ #
10748
+ # @!attribute [rw] override_tags
10749
+ # Optional tag overrides that are applied to the resource
10750
+ # configuration before import.
10751
+ # @return [Types::AssetBundleImportJobOverrideTags]
10752
+ #
10753
+ # @!attribute [rw] override_validation_strategy
10754
+ # An optional validation strategy override for all analyses and
10755
+ # dashboards to be applied to the resource configuration before
10756
+ # import.
10757
+ # @return [Types::AssetBundleImportJobOverrideValidationStrategy]
10758
+ #
10060
10759
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeAssetBundleImportJobResponse AWS API Documentation
10061
10760
  #
10062
10761
  class DescribeAssetBundleImportJobResponse < Struct.new(
@@ -10071,7 +10770,10 @@ module Aws::QuickSight
10071
10770
  :override_parameters,
10072
10771
  :failure_action,
10073
10772
  :request_id,
10074
- :status)
10773
+ :status,
10774
+ :override_permissions,
10775
+ :override_tags,
10776
+ :override_validation_strategy)
10075
10777
  SENSITIVE = []
10076
10778
  include Aws::Structure
10077
10779
  end
@@ -11209,6 +11911,53 @@ module Aws::QuickSight
11209
11911
  include Aws::Structure
11210
11912
  end
11211
11913
 
11914
+ # @!attribute [rw] role
11915
+ # The name of the role whose permissions you want described.
11916
+ # @return [String]
11917
+ #
11918
+ # @!attribute [rw] aws_account_id
11919
+ # The ID for the Amazon Web Services account that you want to create a
11920
+ # group in. The Amazon Web Services account ID that you provide must
11921
+ # be the same Amazon Web Services account that contains your Amazon
11922
+ # QuickSight account.
11923
+ # @return [String]
11924
+ #
11925
+ # @!attribute [rw] namespace
11926
+ # The namespace that contains the role.
11927
+ # @return [String]
11928
+ #
11929
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeRoleCustomPermissionRequest AWS API Documentation
11930
+ #
11931
+ class DescribeRoleCustomPermissionRequest < Struct.new(
11932
+ :role,
11933
+ :aws_account_id,
11934
+ :namespace)
11935
+ SENSITIVE = []
11936
+ include Aws::Structure
11937
+ end
11938
+
11939
+ # @!attribute [rw] custom_permissions_name
11940
+ # The name of the custom permission that is described.
11941
+ # @return [String]
11942
+ #
11943
+ # @!attribute [rw] request_id
11944
+ # The Amazon Web Services request ID for this operation.
11945
+ # @return [String]
11946
+ #
11947
+ # @!attribute [rw] status
11948
+ # The HTTP status of the request.
11949
+ # @return [Integer]
11950
+ #
11951
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeRoleCustomPermissionResponse AWS API Documentation
11952
+ #
11953
+ class DescribeRoleCustomPermissionResponse < Struct.new(
11954
+ :custom_permissions_name,
11955
+ :request_id,
11956
+ :status)
11957
+ SENSITIVE = []
11958
+ include Aws::Structure
11959
+ end
11960
+
11212
11961
  # @!attribute [rw] aws_account_id
11213
11962
  # The ID of the Amazon Web Services account that contains the template
11214
11963
  # alias that you're describing.
@@ -15782,11 +16531,17 @@ module Aws::QuickSight
15782
16531
  # The data type of the column.
15783
16532
  # @return [String]
15784
16533
  #
16534
+ # @!attribute [rw] sub_type
16535
+ # The sub data type of the column. Sub types are only available for
16536
+ # decimal columns that are part of a SPICE dataset.
16537
+ # @return [String]
16538
+ #
15785
16539
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/InputColumn AWS API Documentation
15786
16540
  #
15787
16541
  class InputColumn < Struct.new(
15788
16542
  :name,
15789
- :type)
16543
+ :type,
16544
+ :sub_type)
15790
16545
  SENSITIVE = []
15791
16546
  include Aws::Structure
15792
16547
  end
@@ -18011,6 +18766,68 @@ module Aws::QuickSight
18011
18766
  include Aws::Structure
18012
18767
  end
18013
18768
 
18769
+ # @!attribute [rw] role
18770
+ # The name of the role.
18771
+ # @return [String]
18772
+ #
18773
+ # @!attribute [rw] next_token
18774
+ # A pagination token that can be used in a subsequent request.
18775
+ # @return [String]
18776
+ #
18777
+ # @!attribute [rw] max_results
18778
+ # The maximum number of results to return.
18779
+ # @return [Integer]
18780
+ #
18781
+ # @!attribute [rw] aws_account_id
18782
+ # The ID for the Amazon Web Services account that you want to create a
18783
+ # group in. The Amazon Web Services account ID that you provide must
18784
+ # be the same Amazon Web Services account that contains your Amazon
18785
+ # QuickSight account.
18786
+ # @return [String]
18787
+ #
18788
+ # @!attribute [rw] namespace
18789
+ # The namespace that includes the role.
18790
+ # @return [String]
18791
+ #
18792
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListRoleMembershipsRequest AWS API Documentation
18793
+ #
18794
+ class ListRoleMembershipsRequest < Struct.new(
18795
+ :role,
18796
+ :next_token,
18797
+ :max_results,
18798
+ :aws_account_id,
18799
+ :namespace)
18800
+ SENSITIVE = []
18801
+ include Aws::Structure
18802
+ end
18803
+
18804
+ # @!attribute [rw] members_list
18805
+ # The list of groups associated with a role
18806
+ # @return [Array<String>]
18807
+ #
18808
+ # @!attribute [rw] next_token
18809
+ # A pagination token that can be used in a subsequent request.
18810
+ # @return [String]
18811
+ #
18812
+ # @!attribute [rw] request_id
18813
+ # The Amazon Web Services request ID for this operation.
18814
+ # @return [String]
18815
+ #
18816
+ # @!attribute [rw] status
18817
+ # The HTTP status of the request.
18818
+ # @return [Integer]
18819
+ #
18820
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListRoleMembershipsResponse AWS API Documentation
18821
+ #
18822
+ class ListRoleMembershipsResponse < Struct.new(
18823
+ :members_list,
18824
+ :next_token,
18825
+ :request_id,
18826
+ :status)
18827
+ SENSITIVE = []
18828
+ include Aws::Structure
18829
+ end
18830
+
18014
18831
  # @!attribute [rw] resource_arn
18015
18832
  # The Amazon Resource Name (ARN) of the resource that you want a list
18016
18833
  # of tags for.
@@ -19728,7 +20545,7 @@ module Aws::QuickSight
19728
20545
  # Output column.
19729
20546
  #
19730
20547
  # @!attribute [rw] name
19731
- # A display name for the dataset.
20548
+ # The display name of the column..
19732
20549
  # @return [String]
19733
20550
  #
19734
20551
  # @!attribute [rw] description
@@ -19736,7 +20553,11 @@ module Aws::QuickSight
19736
20553
  # @return [String]
19737
20554
  #
19738
20555
  # @!attribute [rw] type
19739
- # The type.
20556
+ # The data type of the column.
20557
+ # @return [String]
20558
+ #
20559
+ # @!attribute [rw] sub_type
20560
+ # The sub data type of the column.
19740
20561
  # @return [String]
19741
20562
  #
19742
20563
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/OutputColumn AWS API Documentation
@@ -19744,7 +20565,8 @@ module Aws::QuickSight
19744
20565
  class OutputColumn < Struct.new(
19745
20566
  :name,
19746
20567
  :description,
19747
- :type)
20568
+ :type,
20569
+ :sub_type)
19748
20570
  SENSITIVE = []
19749
20571
  include Aws::Structure
19750
20572
  end
@@ -25196,6 +26018,27 @@ module Aws::QuickSight
25196
26018
  # `CLOUDFORMATION_JSON`.
25197
26019
  # @return [Types::AssetBundleCloudFormationOverridePropertyConfiguration]
25198
26020
  #
26021
+ # @!attribute [rw] include_permissions
26022
+ # A Boolean that determines whether all permissions for each resource
26023
+ # ARN are exported with the job. If you set `IncludePermissions` to
26024
+ # `TRUE`, any permissions associated with each resource are exported.
26025
+ # @return [Boolean]
26026
+ #
26027
+ # @!attribute [rw] include_tags
26028
+ # A Boolean that determines whether all tags for each resource ARN are
26029
+ # exported with the job. If you set `IncludeTags` to `TRUE`, any tags
26030
+ # associated with each resource are exported.
26031
+ # @return [Boolean]
26032
+ #
26033
+ # @!attribute [rw] validation_strategy
26034
+ # An optional parameter that determines which validation strategy to
26035
+ # use for the export job. If `StrictModeForAllResources` is set to
26036
+ # `TRUE`, strict validation for every error is enforced. If it is set
26037
+ # to `FALSE`, validation is skipped for specific UI errors that are
26038
+ # shown as warnings. The default value for `StrictModeForAllResources`
26039
+ # is `FALSE`.
26040
+ # @return [Types::AssetBundleExportJobValidationStrategy]
26041
+ #
25199
26042
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/StartAssetBundleExportJobRequest AWS API Documentation
25200
26043
  #
25201
26044
  class StartAssetBundleExportJobRequest < Struct.new(
@@ -25204,7 +26047,10 @@ module Aws::QuickSight
25204
26047
  :resource_arns,
25205
26048
  :include_all_dependencies,
25206
26049
  :export_format,
25207
- :cloud_formation_override_property_configuration)
26050
+ :cloud_formation_override_property_configuration,
26051
+ :include_permissions,
26052
+ :include_tags,
26053
+ :validation_strategy)
25208
26054
  SENSITIVE = []
25209
26055
  include Aws::Structure
25210
26056
  end
@@ -25252,7 +26098,7 @@ module Aws::QuickSight
25252
26098
  # @return [Types::AssetBundleImportSource]
25253
26099
  #
25254
26100
  # @!attribute [rw] override_parameters
25255
- # Optional overrides to be applied to the resource configuration
26101
+ # Optional overrides that are applied to the resource configuration
25256
26102
  # before import.
25257
26103
  # @return [Types::AssetBundleImportJobOverrideParameters]
25258
26104
  #
@@ -25267,6 +26113,22 @@ module Aws::QuickSight
25267
26113
  # keeping the Amazon QuickSight account in an inconsistent state.
25268
26114
  # @return [String]
25269
26115
  #
26116
+ # @!attribute [rw] override_permissions
26117
+ # Optional permission overrides that are applied to the resource
26118
+ # configuration before import.
26119
+ # @return [Types::AssetBundleImportJobOverridePermissions]
26120
+ #
26121
+ # @!attribute [rw] override_tags
26122
+ # Optional tag overrides that are applied to the resource
26123
+ # configuration before import.
26124
+ # @return [Types::AssetBundleImportJobOverrideTags]
26125
+ #
26126
+ # @!attribute [rw] override_validation_strategy
26127
+ # An optional validation strategy override for all analyses and
26128
+ # dashboards that is applied to the resource configuration before
26129
+ # import.
26130
+ # @return [Types::AssetBundleImportJobOverrideValidationStrategy]
26131
+ #
25270
26132
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/StartAssetBundleImportJobRequest AWS API Documentation
25271
26133
  #
25272
26134
  class StartAssetBundleImportJobRequest < Struct.new(
@@ -25274,7 +26136,10 @@ module Aws::QuickSight
25274
26136
  :asset_bundle_import_job_id,
25275
26137
  :asset_bundle_import_source,
25276
26138
  :override_parameters,
25277
- :failure_action)
26139
+ :failure_action,
26140
+ :override_permissions,
26141
+ :override_tags,
26142
+ :override_validation_strategy)
25278
26143
  SENSITIVE = []
25279
26144
  include Aws::Structure
25280
26145
  end
@@ -26635,6 +27500,10 @@ module Aws::QuickSight
26635
27500
  # The configuration for default analysis settings.
26636
27501
  # @return [Types::AnalysisDefaults]
26637
27502
  #
27503
+ # @!attribute [rw] options
27504
+ # An array of option definitions for a template.
27505
+ # @return [Types::AssetOptions]
27506
+ #
26638
27507
  # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TemplateVersionDefinition AWS API Documentation
26639
27508
  #
26640
27509
  class TemplateVersionDefinition < Struct.new(
@@ -26644,7 +27513,8 @@ module Aws::QuickSight
26644
27513
  :parameter_declarations,
26645
27514
  :filter_groups,
26646
27515
  :column_configurations,
26647
- :analysis_defaults)
27516
+ :analysis_defaults,
27517
+ :options)
26648
27518
  SENSITIVE = []
26649
27519
  include Aws::Structure
26650
27520
  end
@@ -30091,6 +30961,54 @@ module Aws::QuickSight
30091
30961
  include Aws::Structure
30092
30962
  end
30093
30963
 
30964
+ # @!attribute [rw] custom_permissions_name
30965
+ # The name of the custom permission that you want to update the role
30966
+ # with.
30967
+ # @return [String]
30968
+ #
30969
+ # @!attribute [rw] role
30970
+ # The name of role tht you want to update.
30971
+ # @return [String]
30972
+ #
30973
+ # @!attribute [rw] aws_account_id
30974
+ # The ID for the Amazon Web Services account that you want to create a
30975
+ # group in. The Amazon Web Services account ID that you provide must
30976
+ # be the same Amazon Web Services account that contains your Amazon
30977
+ # QuickSight account.
30978
+ # @return [String]
30979
+ #
30980
+ # @!attribute [rw] namespace
30981
+ # The namespace that contains the role that you want to update.
30982
+ # @return [String]
30983
+ #
30984
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateRoleCustomPermissionRequest AWS API Documentation
30985
+ #
30986
+ class UpdateRoleCustomPermissionRequest < Struct.new(
30987
+ :custom_permissions_name,
30988
+ :role,
30989
+ :aws_account_id,
30990
+ :namespace)
30991
+ SENSITIVE = []
30992
+ include Aws::Structure
30993
+ end
30994
+
30995
+ # @!attribute [rw] request_id
30996
+ # The Amazon Web Services request ID for this operation.
30997
+ # @return [String]
30998
+ #
30999
+ # @!attribute [rw] status
31000
+ # The HTTP status of the request.
31001
+ # @return [Integer]
31002
+ #
31003
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateRoleCustomPermissionResponse AWS API Documentation
31004
+ #
31005
+ class UpdateRoleCustomPermissionResponse < Struct.new(
31006
+ :request_id,
31007
+ :status)
31008
+ SENSITIVE = []
31009
+ include Aws::Structure
31010
+ end
31011
+
30094
31012
  # @!attribute [rw] aws_account_id
30095
31013
  # The ID of the Amazon Web Services account that contains the template
30096
31014
  # alias that you're updating.
@@ -31181,7 +32099,7 @@ module Aws::QuickSight
31181
32099
  # specific errors.
31182
32100
  #
31183
32101
  # @!attribute [rw] mode
31184
- # The mode of validation for the asset to be creaed or updated. When
32102
+ # The mode of validation for the asset to be created or updated. When
31185
32103
  # you set this value to `STRICT`, strict validation for every error is
31186
32104
  # enforced. When you set this value to `LENIENT`, validation is
31187
32105
  # skipped for specific UI errors.