aws-sdk-quicksight 1.95.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-quicksight/client.rb +611 -36
- data/lib/aws-sdk-quicksight/client_api.rb +344 -12
- data/lib/aws-sdk-quicksight/endpoints.rb +84 -0
- data/lib/aws-sdk-quicksight/plugins/endpoints.rb +12 -0
- data/lib/aws-sdk-quicksight/types.rb +908 -56
- data/lib/aws-sdk-quicksight.rb +1 -1
- metadata +2 -2
@@ -355,10 +355,6 @@ module Aws::QuickSight
|
|
355
355
|
# of each sheet.
|
356
356
|
# @return [Array<Types::Sheet>]
|
357
357
|
#
|
358
|
-
# @!attribute [rw] options
|
359
|
-
# An array of analysis level configurations.
|
360
|
-
# @return [Types::AssetOptions]
|
361
|
-
#
|
362
358
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/Analysis AWS API Documentation
|
363
359
|
#
|
364
360
|
class Analysis < Struct.new(
|
@@ -371,8 +367,7 @@ module Aws::QuickSight
|
|
371
367
|
:theme_arn,
|
372
368
|
:created_time,
|
373
369
|
:last_updated_time,
|
374
|
-
:sheets
|
375
|
-
:options)
|
370
|
+
:sheets)
|
376
371
|
SENSITIVE = []
|
377
372
|
include Aws::Structure
|
378
373
|
end
|
@@ -1077,6 +1072,16 @@ module Aws::QuickSight
|
|
1077
1072
|
# The format for the export job.
|
1078
1073
|
# @return [String]
|
1079
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
|
+
#
|
1080
1085
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AssetBundleExportJobSummary AWS API Documentation
|
1081
1086
|
#
|
1082
1087
|
class AssetBundleExportJobSummary < Struct.new(
|
@@ -1085,7 +1090,9 @@ module Aws::QuickSight
|
|
1085
1090
|
:created_time,
|
1086
1091
|
:asset_bundle_export_job_id,
|
1087
1092
|
:include_all_dependencies,
|
1088
|
-
:export_format
|
1093
|
+
:export_format,
|
1094
|
+
:include_permissions,
|
1095
|
+
:include_tags)
|
1089
1096
|
SENSITIVE = []
|
1090
1097
|
include Aws::Structure
|
1091
1098
|
end
|
@@ -1134,6 +1141,42 @@ module Aws::QuickSight
|
|
1134
1141
|
include Aws::Structure
|
1135
1142
|
end
|
1136
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
|
+
|
1137
1180
|
# The override parameters for a single analysis that is being imported.
|
1138
1181
|
#
|
1139
1182
|
# @!attribute [rw] analysis_id
|
@@ -1153,6 +1196,49 @@ module Aws::QuickSight
|
|
1153
1196
|
include Aws::Structure
|
1154
1197
|
end
|
1155
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
|
+
|
1156
1242
|
# The override parameters for a single dashboard that is being imported.
|
1157
1243
|
#
|
1158
1244
|
# @!attribute [rw] dashboard_id
|
@@ -1172,6 +1258,56 @@ module Aws::QuickSight
|
|
1172
1258
|
include Aws::Structure
|
1173
1259
|
end
|
1174
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
|
+
|
1175
1311
|
# The override parameters for a single dataset that is being imported.
|
1176
1312
|
#
|
1177
1313
|
# @!attribute [rw] data_set_id
|
@@ -1191,6 +1327,49 @@ module Aws::QuickSight
|
|
1191
1327
|
include Aws::Structure
|
1192
1328
|
end
|
1193
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
|
+
|
1194
1373
|
# A username and password credential pair to use to import a data source
|
1195
1374
|
# resource.
|
1196
1375
|
#
|
@@ -1278,6 +1457,50 @@ module Aws::QuickSight
|
|
1278
1457
|
include Aws::Structure
|
1279
1458
|
end
|
1280
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
|
+
|
1281
1504
|
# Describes an error that occurred within an Asset Bundle import
|
1282
1505
|
# execution.
|
1283
1506
|
#
|
@@ -1361,6 +1584,110 @@ module Aws::QuickSight
|
|
1361
1584
|
include Aws::Structure
|
1362
1585
|
end
|
1363
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
|
+
|
1364
1691
|
# A list of overrides for a specific `RefreshsSchedule` resource that is
|
1365
1692
|
# present in the asset bundle that is imported.
|
1366
1693
|
#
|
@@ -1464,6 +1791,49 @@ module Aws::QuickSight
|
|
1464
1791
|
include Aws::Structure
|
1465
1792
|
end
|
1466
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
|
+
|
1467
1837
|
# The override parameters for a single VPC connection that is imported.
|
1468
1838
|
#
|
1469
1839
|
# @!attribute [rw] vpc_connection_id
|
@@ -1509,6 +1879,29 @@ module Aws::QuickSight
|
|
1509
1879
|
include Aws::Structure
|
1510
1880
|
end
|
1511
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
|
+
|
1512
1905
|
# The source of the asset bundle zip file that contains the data that
|
1513
1906
|
# you want to import. The file must be in `QUICKSIGHT_JSON` format.
|
1514
1907
|
#
|
@@ -1559,6 +1952,42 @@ module Aws::QuickSight
|
|
1559
1952
|
class AssetBundleImportSourceDescription < Struct.new(
|
1560
1953
|
:body,
|
1561
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)
|
1562
1991
|
SENSITIVE = []
|
1563
1992
|
include Aws::Structure
|
1564
1993
|
end
|
@@ -2185,6 +2614,27 @@ module Aws::QuickSight
|
|
2185
2614
|
include Aws::Structure
|
2186
2615
|
end
|
2187
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
|
+
|
2188
2638
|
# The options that determine the bin count of a histogram.
|
2189
2639
|
#
|
2190
2640
|
# @!attribute [rw] value
|
@@ -3913,11 +4363,13 @@ module Aws::QuickSight
|
|
3913
4363
|
#
|
3914
4364
|
# @!attribute [rw] authentication_method
|
3915
4365
|
# The method that you want to use to authenticate your Amazon
|
3916
|
-
# QuickSight account.
|
3917
|
-
# are `IAM_AND_QUICKSIGHT`, `IAM_ONLY`, and `ACTIVE_DIRECTORY`.
|
4366
|
+
# QuickSight account.
|
3918
4367
|
#
|
3919
4368
|
# If you choose `ACTIVE_DIRECTORY`, provide an `ActiveDirectoryName`
|
3920
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.
|
3921
4373
|
# @return [String]
|
3922
4374
|
#
|
3923
4375
|
# @!attribute [rw] aws_account_id
|
@@ -3957,38 +4409,56 @@ module Aws::QuickSight
|
|
3957
4409
|
# @return [String]
|
3958
4410
|
#
|
3959
4411
|
# @!attribute [rw] admin_group
|
3960
|
-
# The admin group associated with your Active Directory
|
3961
|
-
#
|
3962
|
-
#
|
3963
|
-
#
|
3964
|
-
#
|
3965
|
-
#
|
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.
|
3966
4423
|
#
|
3967
4424
|
#
|
3968
4425
|
#
|
3969
|
-
# [1]: https://docs.aws.amazon.com/quicksight/latest/user/
|
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
|
3970
4428
|
# @return [Array<String>]
|
3971
4429
|
#
|
3972
4430
|
# @!attribute [rw] author_group
|
3973
|
-
# The author group associated with your Active Directory
|
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
|
3974
4437
|
# information about using Active Directory in Amazon QuickSight, see
|
3975
4438
|
# [Using Active Directory with Amazon QuickSight Enterprise
|
3976
|
-
# Edition][
|
4439
|
+
# Edition][2] in the Amazon QuickSight User Guide.
|
3977
4440
|
#
|
3978
4441
|
#
|
3979
4442
|
#
|
3980
|
-
# [1]: https://docs.aws.amazon.com/quicksight/latest/user/
|
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
|
3981
4445
|
# @return [Array<String>]
|
3982
4446
|
#
|
3983
4447
|
# @!attribute [rw] reader_group
|
3984
|
-
# The reader group associated with your Active
|
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
|
3985
4454
|
# information about using Active Directory in Amazon QuickSight, see
|
3986
4455
|
# [Using Active Directory with Amazon QuickSight Enterprise
|
3987
|
-
# Edition][
|
4456
|
+
# Edition][2] in the Amazon QuickSight User Guide.
|
3988
4457
|
#
|
3989
4458
|
#
|
3990
4459
|
#
|
3991
|
-
# [1]: https://docs.aws.amazon.com/quicksight/latest/user/
|
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
|
3992
4462
|
# @return [Array<String>]
|
3993
4463
|
#
|
3994
4464
|
# @!attribute [rw] first_name
|
@@ -4303,6 +4773,11 @@ module Aws::QuickSight
|
|
4303
4773
|
# to these folders.
|
4304
4774
|
# @return [Array<String>]
|
4305
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
|
+
#
|
4306
4781
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateDashboardRequest AWS API Documentation
|
4307
4782
|
#
|
4308
4783
|
class CreateDashboardRequest < Struct.new(
|
@@ -4318,7 +4793,8 @@ module Aws::QuickSight
|
|
4318
4793
|
:theme_arn,
|
4319
4794
|
:definition,
|
4320
4795
|
:validation_strategy,
|
4321
|
-
:folder_arns
|
4796
|
+
:folder_arns,
|
4797
|
+
:link_sharing_configuration)
|
4322
4798
|
SENSITIVE = []
|
4323
4799
|
include Aws::Structure
|
4324
4800
|
end
|
@@ -5114,21 +5590,68 @@ module Aws::QuickSight
|
|
5114
5590
|
# The Amazon Web Services request ID for this operation.
|
5115
5591
|
# @return [String]
|
5116
5592
|
#
|
5117
|
-
# @!attribute [rw] schedule_id
|
5118
|
-
# The ID of the refresh schedule.
|
5119
|
-
# @return [String]
|
5120
|
-
#
|
5121
|
-
# @!attribute [rw] arn
|
5122
|
-
# The Amazon Resource Name (ARN) for the refresh schedule.
|
5123
|
-
# @return [String]
|
5593
|
+
# @!attribute [rw] schedule_id
|
5594
|
+
# The ID of the refresh schedule.
|
5595
|
+
# @return [String]
|
5596
|
+
#
|
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]
|
5124
5649
|
#
|
5125
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/
|
5650
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateRoleMembershipResponse AWS API Documentation
|
5126
5651
|
#
|
5127
|
-
class
|
5128
|
-
:status,
|
5652
|
+
class CreateRoleMembershipResponse < Struct.new(
|
5129
5653
|
:request_id,
|
5130
|
-
:
|
5131
|
-
:arn)
|
5654
|
+
:status)
|
5132
5655
|
SENSITIVE = []
|
5133
5656
|
include Aws::Structure
|
5134
5657
|
end
|
@@ -6457,10 +6980,6 @@ module Aws::QuickSight
|
|
6457
6980
|
# of each sheet.
|
6458
6981
|
# @return [Array<Types::Sheet>]
|
6459
6982
|
#
|
6460
|
-
# @!attribute [rw] options
|
6461
|
-
# An array of analysis level configurations.
|
6462
|
-
# @return [Types::AssetOptions]
|
6463
|
-
#
|
6464
6983
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DashboardVersion AWS API Documentation
|
6465
6984
|
#
|
6466
6985
|
class DashboardVersion < Struct.new(
|
@@ -6473,8 +6992,7 @@ module Aws::QuickSight
|
|
6473
6992
|
:data_set_arns,
|
6474
6993
|
:description,
|
6475
6994
|
:theme_arn,
|
6476
|
-
:sheets
|
6477
|
-
:options)
|
6995
|
+
:sheets)
|
6478
6996
|
SENSITIVE = []
|
6479
6997
|
include Aws::Structure
|
6480
6998
|
end
|
@@ -7622,6 +8140,11 @@ module Aws::QuickSight
|
|
7622
8140
|
# The parameters that are required to connect to a Trino data source.
|
7623
8141
|
# @return [Types::TrinoParameters]
|
7624
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
|
+
#
|
7625
8148
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DataSourceParameters AWS API Documentation
|
7626
8149
|
#
|
7627
8150
|
class DataSourceParameters < Struct.new(
|
@@ -7649,7 +8172,8 @@ module Aws::QuickSight
|
|
7649
8172
|
:exasol_parameters,
|
7650
8173
|
:databricks_parameters,
|
7651
8174
|
:starburst_parameters,
|
7652
|
-
:trino_parameters
|
8175
|
+
:trino_parameters,
|
8176
|
+
:big_query_parameters)
|
7653
8177
|
SENSITIVE = []
|
7654
8178
|
include Aws::Structure
|
7655
8179
|
end
|
@@ -9093,6 +9617,94 @@ module Aws::QuickSight
|
|
9093
9617
|
include Aws::Structure
|
9094
9618
|
end
|
9095
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
|
+
|
9096
9708
|
# @!attribute [rw] aws_account_id
|
9097
9709
|
# The ID of the Amazon Web Services account that contains the item to
|
9098
9710
|
# delete.
|
@@ -9990,6 +10602,28 @@ module Aws::QuickSight
|
|
9990
10602
|
# The HTTP status of the response.
|
9991
10603
|
# @return [Integer]
|
9992
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
|
+
#
|
9993
10627
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeAssetBundleExportJobResponse AWS API Documentation
|
9994
10628
|
#
|
9995
10629
|
class DescribeAssetBundleExportJobResponse < Struct.new(
|
@@ -10005,8 +10639,12 @@ module Aws::QuickSight
|
|
10005
10639
|
:export_format,
|
10006
10640
|
:cloud_formation_override_property_configuration,
|
10007
10641
|
:request_id,
|
10008
|
-
:status
|
10009
|
-
|
10642
|
+
:status,
|
10643
|
+
:include_permissions,
|
10644
|
+
:include_tags,
|
10645
|
+
:validation_strategy,
|
10646
|
+
:warnings)
|
10647
|
+
SENSITIVE = [:download_url]
|
10010
10648
|
include Aws::Structure
|
10011
10649
|
end
|
10012
10650
|
|
@@ -10086,7 +10724,7 @@ module Aws::QuickSight
|
|
10086
10724
|
# @return [Types::AssetBundleImportSourceDescription]
|
10087
10725
|
#
|
10088
10726
|
# @!attribute [rw] override_parameters
|
10089
|
-
# Optional overrides
|
10727
|
+
# Optional overrides that are applied to the resource configuration
|
10090
10728
|
# before import.
|
10091
10729
|
# @return [Types::AssetBundleImportJobOverrideParameters]
|
10092
10730
|
#
|
@@ -10102,6 +10740,22 @@ module Aws::QuickSight
|
|
10102
10740
|
# The HTTP status of the response.
|
10103
10741
|
# @return [Integer]
|
10104
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
|
+
#
|
10105
10759
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeAssetBundleImportJobResponse AWS API Documentation
|
10106
10760
|
#
|
10107
10761
|
class DescribeAssetBundleImportJobResponse < Struct.new(
|
@@ -10116,7 +10770,10 @@ module Aws::QuickSight
|
|
10116
10770
|
:override_parameters,
|
10117
10771
|
:failure_action,
|
10118
10772
|
:request_id,
|
10119
|
-
:status
|
10773
|
+
:status,
|
10774
|
+
:override_permissions,
|
10775
|
+
:override_tags,
|
10776
|
+
:override_validation_strategy)
|
10120
10777
|
SENSITIVE = []
|
10121
10778
|
include Aws::Structure
|
10122
10779
|
end
|
@@ -11254,6 +11911,53 @@ module Aws::QuickSight
|
|
11254
11911
|
include Aws::Structure
|
11255
11912
|
end
|
11256
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
|
+
|
11257
11961
|
# @!attribute [rw] aws_account_id
|
11258
11962
|
# The ID of the Amazon Web Services account that contains the template
|
11259
11963
|
# alias that you're describing.
|
@@ -18062,6 +18766,68 @@ module Aws::QuickSight
|
|
18062
18766
|
include Aws::Structure
|
18063
18767
|
end
|
18064
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
|
+
|
18065
18831
|
# @!attribute [rw] resource_arn
|
18066
18832
|
# The Amazon Resource Name (ARN) of the resource that you want a list
|
18067
18833
|
# of tags for.
|
@@ -25252,6 +26018,27 @@ module Aws::QuickSight
|
|
25252
26018
|
# `CLOUDFORMATION_JSON`.
|
25253
26019
|
# @return [Types::AssetBundleCloudFormationOverridePropertyConfiguration]
|
25254
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
|
+
#
|
25255
26042
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/StartAssetBundleExportJobRequest AWS API Documentation
|
25256
26043
|
#
|
25257
26044
|
class StartAssetBundleExportJobRequest < Struct.new(
|
@@ -25260,7 +26047,10 @@ module Aws::QuickSight
|
|
25260
26047
|
:resource_arns,
|
25261
26048
|
:include_all_dependencies,
|
25262
26049
|
:export_format,
|
25263
|
-
:cloud_formation_override_property_configuration
|
26050
|
+
:cloud_formation_override_property_configuration,
|
26051
|
+
:include_permissions,
|
26052
|
+
:include_tags,
|
26053
|
+
:validation_strategy)
|
25264
26054
|
SENSITIVE = []
|
25265
26055
|
include Aws::Structure
|
25266
26056
|
end
|
@@ -25308,7 +26098,7 @@ module Aws::QuickSight
|
|
25308
26098
|
# @return [Types::AssetBundleImportSource]
|
25309
26099
|
#
|
25310
26100
|
# @!attribute [rw] override_parameters
|
25311
|
-
# Optional overrides
|
26101
|
+
# Optional overrides that are applied to the resource configuration
|
25312
26102
|
# before import.
|
25313
26103
|
# @return [Types::AssetBundleImportJobOverrideParameters]
|
25314
26104
|
#
|
@@ -25323,6 +26113,22 @@ module Aws::QuickSight
|
|
25323
26113
|
# keeping the Amazon QuickSight account in an inconsistent state.
|
25324
26114
|
# @return [String]
|
25325
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
|
+
#
|
25326
26132
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/StartAssetBundleImportJobRequest AWS API Documentation
|
25327
26133
|
#
|
25328
26134
|
class StartAssetBundleImportJobRequest < Struct.new(
|
@@ -25330,7 +26136,10 @@ module Aws::QuickSight
|
|
25330
26136
|
:asset_bundle_import_job_id,
|
25331
26137
|
:asset_bundle_import_source,
|
25332
26138
|
:override_parameters,
|
25333
|
-
:failure_action
|
26139
|
+
:failure_action,
|
26140
|
+
:override_permissions,
|
26141
|
+
:override_tags,
|
26142
|
+
:override_validation_strategy)
|
25334
26143
|
SENSITIVE = []
|
25335
26144
|
include Aws::Structure
|
25336
26145
|
end
|
@@ -26625,10 +27434,6 @@ module Aws::QuickSight
|
|
26625
27434
|
# of each sheet.
|
26626
27435
|
# @return [Array<Types::Sheet>]
|
26627
27436
|
#
|
26628
|
-
# @!attribute [rw] options
|
26629
|
-
# An array of analysis level configurations.
|
26630
|
-
# @return [Types::AssetOptions]
|
26631
|
-
#
|
26632
27437
|
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/TemplateVersion AWS API Documentation
|
26633
27438
|
#
|
26634
27439
|
class TemplateVersion < Struct.new(
|
@@ -26640,8 +27445,7 @@ module Aws::QuickSight
|
|
26640
27445
|
:description,
|
26641
27446
|
:source_entity_arn,
|
26642
27447
|
:theme_arn,
|
26643
|
-
:sheets
|
26644
|
-
:options)
|
27448
|
+
:sheets)
|
26645
27449
|
SENSITIVE = []
|
26646
27450
|
include Aws::Structure
|
26647
27451
|
end
|
@@ -30157,6 +30961,54 @@ module Aws::QuickSight
|
|
30157
30961
|
include Aws::Structure
|
30158
30962
|
end
|
30159
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
|
+
|
30160
31012
|
# @!attribute [rw] aws_account_id
|
30161
31013
|
# The ID of the Amazon Web Services account that contains the template
|
30162
31014
|
# alias that you're updating.
|
@@ -31247,7 +32099,7 @@ module Aws::QuickSight
|
|
31247
32099
|
# specific errors.
|
31248
32100
|
#
|
31249
32101
|
# @!attribute [rw] mode
|
31250
|
-
# The mode of validation for the asset to be
|
32102
|
+
# The mode of validation for the asset to be created or updated. When
|
31251
32103
|
# you set this value to `STRICT`, strict validation for every error is
|
31252
32104
|
# enforced. When you set this value to `LENIENT`, validation is
|
31253
32105
|
# skipped for specific UI errors.
|