@aws-sdk/client-quicksight 3.947.0 → 3.950.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.
- package/README.md +8 -0
- package/dist-cjs/index.js +415 -101
- package/dist-es/QuickSight.js +2 -0
- package/dist-es/commands/GetIdentityContextCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/enums.js +49 -17
- package/dist-es/schemas/schemas_0.js +349 -84
- package/dist-types/QuickSight.d.ts +7 -0
- package/dist-types/QuickSightClient.d.ts +3 -2
- package/dist-types/commands/CreateAnalysisCommand.d.ts +194 -0
- package/dist-types/commands/CreateDashboardCommand.d.ts +194 -0
- package/dist-types/commands/CreateDataSetCommand.d.ts +1 -1
- package/dist-types/commands/CreateDataSourceCommand.d.ts +5 -0
- package/dist-types/commands/CreateTemplateCommand.d.ts +194 -0
- package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +194 -0
- package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +194 -0
- package/dist-types/commands/DescribeDashboardSnapshotJobCommand.d.ts +19 -0
- package/dist-types/commands/DescribeDashboardSnapshotJobResultCommand.d.ts +89 -0
- package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +194 -0
- package/dist-types/commands/DescribeThemeAliasCommand.d.ts +1 -1
- package/dist-types/commands/DescribeThemeCommand.d.ts +1 -1
- package/dist-types/commands/DescribeThemePermissionsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTopicCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTopicPermissionsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTopicRefreshCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTopicRefreshScheduleCommand.d.ts +1 -1
- package/dist-types/commands/DescribeUserCommand.d.ts +1 -1
- package/dist-types/commands/GetIdentityContextCommand.d.ts +143 -0
- package/dist-types/commands/StartDashboardSnapshotJobCommand.d.ts +55 -0
- package/dist-types/commands/UpdateAnalysisCommand.d.ts +194 -0
- package/dist-types/commands/UpdateDashboardCommand.d.ts +194 -0
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +5 -0
- package/dist-types/commands/UpdateTemplateCommand.d.ts +194 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +97 -41
- package/dist-types/models/models_0.d.ts +265 -162
- package/dist-types/models/models_1.d.ts +615 -822
- package/dist-types/models/models_2.d.ts +5138 -5090
- package/dist-types/models/models_3.d.ts +3935 -3902
- package/dist-types/models/models_4.d.ts +727 -7
- package/dist-types/schemas/schemas_0.d.ts +33 -0
- package/dist-types/ts3.4/QuickSight.d.ts +17 -0
- package/dist-types/ts3.4/QuickSightClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/CreateDataSetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeThemeAliasCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeThemeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeThemePermissionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTopicCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTopicPermissionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTopicRefreshCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTopicRefreshScheduleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeUserCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetIdentityContextCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +61 -23
- package/dist-types/ts3.4/models/models_0.d.ts +41 -38
- package/dist-types/ts3.4/models/models_1.d.ts +140 -164
- package/dist-types/ts3.4/models/models_2.d.ts +174 -176
- package/dist-types/ts3.4/models/models_3.d.ts +183 -147
- package/dist-types/ts3.4/models/models_4.d.ts +189 -13
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +33 -0
- package/package.json +3 -3
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { CreateDataSetRequest, CreateDataSetResponse } from "../models/
|
|
3
|
+
import type { CreateDataSetRequest, CreateDataSetResponse } from "../models/models_3";
|
|
4
4
|
import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
@@ -420,6 +420,11 @@ declare const CreateDataSourceCommand_base: {
|
|
|
420
420
|
* },
|
|
421
421
|
* CopySourceArn: "STRING_VALUE",
|
|
422
422
|
* SecretArn: "STRING_VALUE",
|
|
423
|
+
* KeyPairCredentials: { // KeyPairCredentials
|
|
424
|
+
* KeyPairUsername: "STRING_VALUE", // required
|
|
425
|
+
* PrivateKey: "STRING_VALUE", // required
|
|
426
|
+
* PrivateKeyPassphrase: "STRING_VALUE",
|
|
427
|
+
* },
|
|
423
428
|
* WebProxyCredentials: { // WebProxyCredentials
|
|
424
429
|
* WebProxyUsername: "STRING_VALUE", // required
|
|
425
430
|
* WebProxyPassword: "STRING_VALUE", // required
|
|
@@ -978,6 +978,14 @@ declare const CreateTemplateCommand_base: {
|
|
|
978
978
|
* },
|
|
979
979
|
* },
|
|
980
980
|
* ],
|
|
981
|
+
* DashboardCustomizationVisualOptions: { // DashboardCustomizationVisualOptions
|
|
982
|
+
* FieldsConfiguration: { // VisualCustomizationFieldsConfiguration
|
|
983
|
+
* Status: "ENABLED" || "DISABLED",
|
|
984
|
+
* AdditionalFields: [ // VisualCustomizationAdditionalFieldsList
|
|
985
|
+
* "<ColumnIdentifier>",
|
|
986
|
+
* ],
|
|
987
|
+
* },
|
|
988
|
+
* },
|
|
981
989
|
* Interactions: { // VisualInteractionOptions
|
|
982
990
|
* VisualMenuOption: { // VisualMenuOption
|
|
983
991
|
* AvailabilityStatus: "ENABLED" || "DISABLED",
|
|
@@ -1490,6 +1498,14 @@ declare const CreateTemplateCommand_base: {
|
|
|
1490
1498
|
* VerticalOverflowVisibility: "HIDDEN" || "VISIBLE",
|
|
1491
1499
|
* OverflowColumnHeaderVisibility: "HIDDEN" || "VISIBLE",
|
|
1492
1500
|
* },
|
|
1501
|
+
* DashboardCustomizationVisualOptions: {
|
|
1502
|
+
* FieldsConfiguration: {
|
|
1503
|
+
* Status: "ENABLED" || "DISABLED",
|
|
1504
|
+
* AdditionalFields: [
|
|
1505
|
+
* "<ColumnIdentifier>",
|
|
1506
|
+
* ],
|
|
1507
|
+
* },
|
|
1508
|
+
* },
|
|
1493
1509
|
* Interactions: {
|
|
1494
1510
|
* VisualMenuOption: {
|
|
1495
1511
|
* AvailabilityStatus: "ENABLED" || "DISABLED",
|
|
@@ -1967,6 +1983,59 @@ declare const CreateTemplateCommand_base: {
|
|
|
1967
1983
|
* },
|
|
1968
1984
|
* ],
|
|
1969
1985
|
* },
|
|
1986
|
+
* DefaultSeriesSettings: { // BarChartDefaultSeriesSettings
|
|
1987
|
+
* DecalSettings: { // DecalSettings
|
|
1988
|
+
* ElementValue: "STRING_VALUE",
|
|
1989
|
+
* DecalVisibility: "HIDDEN" || "VISIBLE",
|
|
1990
|
+
* DecalColor: "STRING_VALUE",
|
|
1991
|
+
* DecalPatternType: "SOLID" || "DIAGONAL_MEDIUM" || "CIRCLE_MEDIUM" || "DIAMOND_GRID_MEDIUM" || "CHECKERBOARD_MEDIUM" || "TRIANGLE_MEDIUM" || "DIAGONAL_OPPOSITE_MEDIUM" || "DIAMOND_MEDIUM" || "DIAGONAL_LARGE" || "CIRCLE_LARGE" || "DIAMOND_GRID_LARGE" || "CHECKERBOARD_LARGE" || "TRIANGLE_LARGE" || "DIAGONAL_OPPOSITE_LARGE" || "DIAMOND_LARGE" || "DIAGONAL_SMALL" || "CIRCLE_SMALL" || "DIAMOND_GRID_SMALL" || "CHECKERBOARD_SMALL" || "TRIANGLE_SMALL" || "DIAGONAL_OPPOSITE_SMALL" || "DIAMOND_SMALL",
|
|
1992
|
+
* DecalStyleType: "Manual" || "Auto",
|
|
1993
|
+
* },
|
|
1994
|
+
* BorderSettings: { // BorderSettings
|
|
1995
|
+
* BorderVisibility: "HIDDEN" || "VISIBLE",
|
|
1996
|
+
* BorderWidth: "STRING_VALUE",
|
|
1997
|
+
* BorderColor: "STRING_VALUE",
|
|
1998
|
+
* },
|
|
1999
|
+
* },
|
|
2000
|
+
* Series: [ // BarSeriesItemList
|
|
2001
|
+
* { // BarSeriesItem
|
|
2002
|
+
* FieldBarSeriesItem: { // FieldBarSeriesItem
|
|
2003
|
+
* FieldId: "STRING_VALUE", // required
|
|
2004
|
+
* Settings: { // BarChartSeriesSettings
|
|
2005
|
+
* DecalSettings: {
|
|
2006
|
+
* ElementValue: "STRING_VALUE",
|
|
2007
|
+
* DecalVisibility: "HIDDEN" || "VISIBLE",
|
|
2008
|
+
* DecalColor: "STRING_VALUE",
|
|
2009
|
+
* DecalPatternType: "SOLID" || "DIAGONAL_MEDIUM" || "CIRCLE_MEDIUM" || "DIAMOND_GRID_MEDIUM" || "CHECKERBOARD_MEDIUM" || "TRIANGLE_MEDIUM" || "DIAGONAL_OPPOSITE_MEDIUM" || "DIAMOND_MEDIUM" || "DIAGONAL_LARGE" || "CIRCLE_LARGE" || "DIAMOND_GRID_LARGE" || "CHECKERBOARD_LARGE" || "TRIANGLE_LARGE" || "DIAGONAL_OPPOSITE_LARGE" || "DIAMOND_LARGE" || "DIAGONAL_SMALL" || "CIRCLE_SMALL" || "DIAMOND_GRID_SMALL" || "CHECKERBOARD_SMALL" || "TRIANGLE_SMALL" || "DIAGONAL_OPPOSITE_SMALL" || "DIAMOND_SMALL",
|
|
2010
|
+
* DecalStyleType: "Manual" || "Auto",
|
|
2011
|
+
* },
|
|
2012
|
+
* BorderSettings: {
|
|
2013
|
+
* BorderVisibility: "HIDDEN" || "VISIBLE",
|
|
2014
|
+
* BorderWidth: "STRING_VALUE",
|
|
2015
|
+
* BorderColor: "STRING_VALUE",
|
|
2016
|
+
* },
|
|
2017
|
+
* },
|
|
2018
|
+
* },
|
|
2019
|
+
* DataFieldBarSeriesItem: { // DataFieldBarSeriesItem
|
|
2020
|
+
* FieldId: "STRING_VALUE", // required
|
|
2021
|
+
* FieldValue: "STRING_VALUE",
|
|
2022
|
+
* Settings: {
|
|
2023
|
+
* DecalSettings: {
|
|
2024
|
+
* ElementValue: "STRING_VALUE",
|
|
2025
|
+
* DecalVisibility: "HIDDEN" || "VISIBLE",
|
|
2026
|
+
* DecalColor: "STRING_VALUE",
|
|
2027
|
+
* DecalPatternType: "SOLID" || "DIAGONAL_MEDIUM" || "CIRCLE_MEDIUM" || "DIAMOND_GRID_MEDIUM" || "CHECKERBOARD_MEDIUM" || "TRIANGLE_MEDIUM" || "DIAGONAL_OPPOSITE_MEDIUM" || "DIAMOND_MEDIUM" || "DIAGONAL_LARGE" || "CIRCLE_LARGE" || "DIAMOND_GRID_LARGE" || "CHECKERBOARD_LARGE" || "TRIANGLE_LARGE" || "DIAGONAL_OPPOSITE_LARGE" || "DIAMOND_LARGE" || "DIAGONAL_SMALL" || "CIRCLE_SMALL" || "DIAMOND_GRID_SMALL" || "CHECKERBOARD_SMALL" || "TRIANGLE_SMALL" || "DIAGONAL_OPPOSITE_SMALL" || "DIAMOND_SMALL",
|
|
2028
|
+
* DecalStyleType: "Manual" || "Auto",
|
|
2029
|
+
* },
|
|
2030
|
+
* BorderSettings: {
|
|
2031
|
+
* BorderVisibility: "HIDDEN" || "VISIBLE",
|
|
2032
|
+
* BorderWidth: "STRING_VALUE",
|
|
2033
|
+
* BorderColor: "STRING_VALUE",
|
|
2034
|
+
* },
|
|
2035
|
+
* },
|
|
2036
|
+
* },
|
|
2037
|
+
* },
|
|
2038
|
+
* ],
|
|
1970
2039
|
* Legend: { // LegendOptions
|
|
1971
2040
|
* Visibility: "HIDDEN" || "VISIBLE",
|
|
1972
2041
|
* Title: "<LabelOptions>",
|
|
@@ -3203,6 +3272,13 @@ declare const CreateTemplateCommand_base: {
|
|
|
3203
3272
|
* MarkerSize: "STRING_VALUE",
|
|
3204
3273
|
* MarkerColor: "STRING_VALUE",
|
|
3205
3274
|
* },
|
|
3275
|
+
* DecalSettings: {
|
|
3276
|
+
* ElementValue: "STRING_VALUE",
|
|
3277
|
+
* DecalVisibility: "HIDDEN" || "VISIBLE",
|
|
3278
|
+
* DecalColor: "STRING_VALUE",
|
|
3279
|
+
* DecalPatternType: "SOLID" || "DIAGONAL_MEDIUM" || "CIRCLE_MEDIUM" || "DIAMOND_GRID_MEDIUM" || "CHECKERBOARD_MEDIUM" || "TRIANGLE_MEDIUM" || "DIAGONAL_OPPOSITE_MEDIUM" || "DIAMOND_MEDIUM" || "DIAGONAL_LARGE" || "CIRCLE_LARGE" || "DIAMOND_GRID_LARGE" || "CHECKERBOARD_LARGE" || "TRIANGLE_LARGE" || "DIAGONAL_OPPOSITE_LARGE" || "DIAMOND_LARGE" || "DIAGONAL_SMALL" || "CIRCLE_SMALL" || "DIAMOND_GRID_SMALL" || "CHECKERBOARD_SMALL" || "TRIANGLE_SMALL" || "DIAGONAL_OPPOSITE_SMALL" || "DIAMOND_SMALL",
|
|
3280
|
+
* DecalStyleType: "Manual" || "Auto",
|
|
3281
|
+
* },
|
|
3206
3282
|
* },
|
|
3207
3283
|
* Series: [ // SeriesItemList
|
|
3208
3284
|
* { // SeriesItem
|
|
@@ -3222,6 +3298,13 @@ declare const CreateTemplateCommand_base: {
|
|
|
3222
3298
|
* MarkerSize: "STRING_VALUE",
|
|
3223
3299
|
* MarkerColor: "STRING_VALUE",
|
|
3224
3300
|
* },
|
|
3301
|
+
* DecalSettings: {
|
|
3302
|
+
* ElementValue: "STRING_VALUE",
|
|
3303
|
+
* DecalVisibility: "HIDDEN" || "VISIBLE",
|
|
3304
|
+
* DecalColor: "STRING_VALUE",
|
|
3305
|
+
* DecalPatternType: "SOLID" || "DIAGONAL_MEDIUM" || "CIRCLE_MEDIUM" || "DIAMOND_GRID_MEDIUM" || "CHECKERBOARD_MEDIUM" || "TRIANGLE_MEDIUM" || "DIAGONAL_OPPOSITE_MEDIUM" || "DIAMOND_MEDIUM" || "DIAGONAL_LARGE" || "CIRCLE_LARGE" || "DIAMOND_GRID_LARGE" || "CHECKERBOARD_LARGE" || "TRIANGLE_LARGE" || "DIAGONAL_OPPOSITE_LARGE" || "DIAMOND_LARGE" || "DIAGONAL_SMALL" || "CIRCLE_SMALL" || "DIAMOND_GRID_SMALL" || "CHECKERBOARD_SMALL" || "TRIANGLE_SMALL" || "DIAGONAL_OPPOSITE_SMALL" || "DIAMOND_SMALL",
|
|
3306
|
+
* DecalStyleType: "Manual" || "Auto",
|
|
3307
|
+
* },
|
|
3225
3308
|
* },
|
|
3226
3309
|
* },
|
|
3227
3310
|
* DataFieldSeriesItem: { // DataFieldSeriesItem
|
|
@@ -3241,6 +3324,7 @@ declare const CreateTemplateCommand_base: {
|
|
|
3241
3324
|
* MarkerSize: "STRING_VALUE",
|
|
3242
3325
|
* MarkerColor: "STRING_VALUE",
|
|
3243
3326
|
* },
|
|
3327
|
+
* DecalSettings: "<DecalSettings>",
|
|
3244
3328
|
* },
|
|
3245
3329
|
* },
|
|
3246
3330
|
* },
|
|
@@ -3638,6 +3722,30 @@ declare const CreateTemplateCommand_base: {
|
|
|
3638
3722
|
* ColumnHierarchies: "<ColumnHierarchyList>",
|
|
3639
3723
|
* Actions: "<VisualCustomActionList>",
|
|
3640
3724
|
* VisualContentAltText: "STRING_VALUE",
|
|
3725
|
+
* GeocodingPreferences: [ // GeocodePreferenceList
|
|
3726
|
+
* { // GeocodePreference
|
|
3727
|
+
* RequestKey: { // GeocoderHierarchy
|
|
3728
|
+
* Country: "STRING_VALUE",
|
|
3729
|
+
* State: "STRING_VALUE",
|
|
3730
|
+
* County: "STRING_VALUE",
|
|
3731
|
+
* City: "STRING_VALUE",
|
|
3732
|
+
* PostCode: "STRING_VALUE",
|
|
3733
|
+
* },
|
|
3734
|
+
* Preference: { // GeocodePreferenceValue Union: only one key present
|
|
3735
|
+
* GeocoderHierarchy: {
|
|
3736
|
+
* Country: "STRING_VALUE",
|
|
3737
|
+
* State: "STRING_VALUE",
|
|
3738
|
+
* County: "STRING_VALUE",
|
|
3739
|
+
* City: "STRING_VALUE",
|
|
3740
|
+
* PostCode: "STRING_VALUE",
|
|
3741
|
+
* },
|
|
3742
|
+
* Coordinate: { // Coordinate
|
|
3743
|
+
* Latitude: Number("double"), // required
|
|
3744
|
+
* Longitude: Number("double"), // required
|
|
3745
|
+
* },
|
|
3746
|
+
* },
|
|
3747
|
+
* },
|
|
3748
|
+
* ],
|
|
3641
3749
|
* },
|
|
3642
3750
|
* FilledMapVisual: { // FilledMapVisual
|
|
3643
3751
|
* VisualId: "STRING_VALUE", // required
|
|
@@ -3688,6 +3796,30 @@ declare const CreateTemplateCommand_base: {
|
|
|
3688
3796
|
* ColumnHierarchies: "<ColumnHierarchyList>",
|
|
3689
3797
|
* Actions: "<VisualCustomActionList>",
|
|
3690
3798
|
* VisualContentAltText: "STRING_VALUE",
|
|
3799
|
+
* GeocodingPreferences: [
|
|
3800
|
+
* {
|
|
3801
|
+
* RequestKey: {
|
|
3802
|
+
* Country: "STRING_VALUE",
|
|
3803
|
+
* State: "STRING_VALUE",
|
|
3804
|
+
* County: "STRING_VALUE",
|
|
3805
|
+
* City: "STRING_VALUE",
|
|
3806
|
+
* PostCode: "STRING_VALUE",
|
|
3807
|
+
* },
|
|
3808
|
+
* Preference: {// Union: only one key present
|
|
3809
|
+
* GeocoderHierarchy: {
|
|
3810
|
+
* Country: "STRING_VALUE",
|
|
3811
|
+
* State: "STRING_VALUE",
|
|
3812
|
+
* County: "STRING_VALUE",
|
|
3813
|
+
* City: "STRING_VALUE",
|
|
3814
|
+
* PostCode: "STRING_VALUE",
|
|
3815
|
+
* },
|
|
3816
|
+
* Coordinate: {
|
|
3817
|
+
* Latitude: Number("double"), // required
|
|
3818
|
+
* Longitude: Number("double"), // required
|
|
3819
|
+
* },
|
|
3820
|
+
* },
|
|
3821
|
+
* },
|
|
3822
|
+
* ],
|
|
3691
3823
|
* },
|
|
3692
3824
|
* LayerMapVisual: { // LayerMapVisual
|
|
3693
3825
|
* VisualId: "STRING_VALUE", // required
|
|
@@ -4074,6 +4206,63 @@ declare const CreateTemplateCommand_base: {
|
|
|
4074
4206
|
* },
|
|
4075
4207
|
* },
|
|
4076
4208
|
* ColorLabelOptions: "<ChartAxisLabelOptions>",
|
|
4209
|
+
* DefaultSeriesSettings: { // ComboChartDefaultSeriesSettings
|
|
4210
|
+
* LineStyleSettings: {
|
|
4211
|
+
* LineVisibility: "HIDDEN" || "VISIBLE",
|
|
4212
|
+
* LineInterpolation: "LINEAR" || "SMOOTH" || "STEPPED",
|
|
4213
|
+
* LineStyle: "SOLID" || "DOTTED" || "DASHED",
|
|
4214
|
+
* LineWidth: "STRING_VALUE",
|
|
4215
|
+
* },
|
|
4216
|
+
* MarkerStyleSettings: {
|
|
4217
|
+
* MarkerVisibility: "HIDDEN" || "VISIBLE",
|
|
4218
|
+
* MarkerShape: "CIRCLE" || "TRIANGLE" || "SQUARE" || "DIAMOND" || "ROUNDED_SQUARE",
|
|
4219
|
+
* MarkerSize: "STRING_VALUE",
|
|
4220
|
+
* MarkerColor: "STRING_VALUE",
|
|
4221
|
+
* },
|
|
4222
|
+
* DecalSettings: "<DecalSettings>",
|
|
4223
|
+
* BorderSettings: {
|
|
4224
|
+
* BorderVisibility: "HIDDEN" || "VISIBLE",
|
|
4225
|
+
* BorderWidth: "STRING_VALUE",
|
|
4226
|
+
* BorderColor: "STRING_VALUE",
|
|
4227
|
+
* },
|
|
4228
|
+
* },
|
|
4229
|
+
* Series: [ // ComboSeriesItemList
|
|
4230
|
+
* { // ComboSeriesItem
|
|
4231
|
+
* FieldComboSeriesItem: { // FieldComboSeriesItem
|
|
4232
|
+
* FieldId: "STRING_VALUE", // required
|
|
4233
|
+
* Settings: { // ComboChartSeriesSettings
|
|
4234
|
+
* LineStyleSettings: {
|
|
4235
|
+
* LineVisibility: "HIDDEN" || "VISIBLE",
|
|
4236
|
+
* LineInterpolation: "LINEAR" || "SMOOTH" || "STEPPED",
|
|
4237
|
+
* LineStyle: "SOLID" || "DOTTED" || "DASHED",
|
|
4238
|
+
* LineWidth: "STRING_VALUE",
|
|
4239
|
+
* },
|
|
4240
|
+
* MarkerStyleSettings: {
|
|
4241
|
+
* MarkerVisibility: "HIDDEN" || "VISIBLE",
|
|
4242
|
+
* MarkerShape: "CIRCLE" || "TRIANGLE" || "SQUARE" || "DIAMOND" || "ROUNDED_SQUARE",
|
|
4243
|
+
* MarkerSize: "STRING_VALUE",
|
|
4244
|
+
* MarkerColor: "STRING_VALUE",
|
|
4245
|
+
* },
|
|
4246
|
+
* DecalSettings: "<DecalSettings>",
|
|
4247
|
+
* BorderSettings: {
|
|
4248
|
+
* BorderVisibility: "HIDDEN" || "VISIBLE",
|
|
4249
|
+
* BorderWidth: "STRING_VALUE",
|
|
4250
|
+
* BorderColor: "STRING_VALUE",
|
|
4251
|
+
* },
|
|
4252
|
+
* },
|
|
4253
|
+
* },
|
|
4254
|
+
* DataFieldComboSeriesItem: { // DataFieldComboSeriesItem
|
|
4255
|
+
* FieldId: "STRING_VALUE", // required
|
|
4256
|
+
* FieldValue: "STRING_VALUE",
|
|
4257
|
+
* Settings: {
|
|
4258
|
+
* LineStyleSettings: "<LineChartLineStyleSettings>",
|
|
4259
|
+
* MarkerStyleSettings: "<LineChartMarkerStyleSettings>",
|
|
4260
|
+
* DecalSettings: "<DecalSettings>",
|
|
4261
|
+
* BorderSettings: "<BorderSettings>",
|
|
4262
|
+
* },
|
|
4263
|
+
* },
|
|
4264
|
+
* },
|
|
4265
|
+
* ],
|
|
4077
4266
|
* Legend: "<LegendOptions>",
|
|
4078
4267
|
* BarDataLabels: "<DataLabelOptions>",
|
|
4079
4268
|
* LineDataLabels: "<DataLabelOptions>",
|
|
@@ -5471,6 +5660,11 @@ declare const CreateTemplateCommand_base: {
|
|
|
5471
5660
|
* },
|
|
5472
5661
|
* ],
|
|
5473
5662
|
* },
|
|
5663
|
+
* DecalSettingsConfiguration: { // DecalSettingsConfiguration
|
|
5664
|
+
* CustomDecalSettings: [ // DecalSettingsList
|
|
5665
|
+
* "<DecalSettings>",
|
|
5666
|
+
* ],
|
|
5667
|
+
* },
|
|
5474
5668
|
* },
|
|
5475
5669
|
* ],
|
|
5476
5670
|
* AnalysisDefaults: { // AnalysisDefaults
|
|
@@ -950,6 +950,14 @@ declare const DescribeAnalysisDefinitionCommand_base: {
|
|
|
950
950
|
* // },
|
|
951
951
|
* // },
|
|
952
952
|
* // ],
|
|
953
|
+
* // DashboardCustomizationVisualOptions: { // DashboardCustomizationVisualOptions
|
|
954
|
+
* // FieldsConfiguration: { // VisualCustomizationFieldsConfiguration
|
|
955
|
+
* // Status: "ENABLED" || "DISABLED",
|
|
956
|
+
* // AdditionalFields: [ // VisualCustomizationAdditionalFieldsList
|
|
957
|
+
* // "<ColumnIdentifier>",
|
|
958
|
+
* // ],
|
|
959
|
+
* // },
|
|
960
|
+
* // },
|
|
953
961
|
* // Interactions: { // VisualInteractionOptions
|
|
954
962
|
* // VisualMenuOption: { // VisualMenuOption
|
|
955
963
|
* // AvailabilityStatus: "ENABLED" || "DISABLED",
|
|
@@ -1462,6 +1470,14 @@ declare const DescribeAnalysisDefinitionCommand_base: {
|
|
|
1462
1470
|
* // VerticalOverflowVisibility: "HIDDEN" || "VISIBLE",
|
|
1463
1471
|
* // OverflowColumnHeaderVisibility: "HIDDEN" || "VISIBLE",
|
|
1464
1472
|
* // },
|
|
1473
|
+
* // DashboardCustomizationVisualOptions: {
|
|
1474
|
+
* // FieldsConfiguration: {
|
|
1475
|
+
* // Status: "ENABLED" || "DISABLED",
|
|
1476
|
+
* // AdditionalFields: [
|
|
1477
|
+
* // "<ColumnIdentifier>",
|
|
1478
|
+
* // ],
|
|
1479
|
+
* // },
|
|
1480
|
+
* // },
|
|
1465
1481
|
* // Interactions: {
|
|
1466
1482
|
* // VisualMenuOption: {
|
|
1467
1483
|
* // AvailabilityStatus: "ENABLED" || "DISABLED",
|
|
@@ -1939,6 +1955,59 @@ declare const DescribeAnalysisDefinitionCommand_base: {
|
|
|
1939
1955
|
* // },
|
|
1940
1956
|
* // ],
|
|
1941
1957
|
* // },
|
|
1958
|
+
* // DefaultSeriesSettings: { // BarChartDefaultSeriesSettings
|
|
1959
|
+
* // DecalSettings: { // DecalSettings
|
|
1960
|
+
* // ElementValue: "STRING_VALUE",
|
|
1961
|
+
* // DecalVisibility: "HIDDEN" || "VISIBLE",
|
|
1962
|
+
* // DecalColor: "STRING_VALUE",
|
|
1963
|
+
* // DecalPatternType: "SOLID" || "DIAGONAL_MEDIUM" || "CIRCLE_MEDIUM" || "DIAMOND_GRID_MEDIUM" || "CHECKERBOARD_MEDIUM" || "TRIANGLE_MEDIUM" || "DIAGONAL_OPPOSITE_MEDIUM" || "DIAMOND_MEDIUM" || "DIAGONAL_LARGE" || "CIRCLE_LARGE" || "DIAMOND_GRID_LARGE" || "CHECKERBOARD_LARGE" || "TRIANGLE_LARGE" || "DIAGONAL_OPPOSITE_LARGE" || "DIAMOND_LARGE" || "DIAGONAL_SMALL" || "CIRCLE_SMALL" || "DIAMOND_GRID_SMALL" || "CHECKERBOARD_SMALL" || "TRIANGLE_SMALL" || "DIAGONAL_OPPOSITE_SMALL" || "DIAMOND_SMALL",
|
|
1964
|
+
* // DecalStyleType: "Manual" || "Auto",
|
|
1965
|
+
* // },
|
|
1966
|
+
* // BorderSettings: { // BorderSettings
|
|
1967
|
+
* // BorderVisibility: "HIDDEN" || "VISIBLE",
|
|
1968
|
+
* // BorderWidth: "STRING_VALUE",
|
|
1969
|
+
* // BorderColor: "STRING_VALUE",
|
|
1970
|
+
* // },
|
|
1971
|
+
* // },
|
|
1972
|
+
* // Series: [ // BarSeriesItemList
|
|
1973
|
+
* // { // BarSeriesItem
|
|
1974
|
+
* // FieldBarSeriesItem: { // FieldBarSeriesItem
|
|
1975
|
+
* // FieldId: "STRING_VALUE", // required
|
|
1976
|
+
* // Settings: { // BarChartSeriesSettings
|
|
1977
|
+
* // DecalSettings: {
|
|
1978
|
+
* // ElementValue: "STRING_VALUE",
|
|
1979
|
+
* // DecalVisibility: "HIDDEN" || "VISIBLE",
|
|
1980
|
+
* // DecalColor: "STRING_VALUE",
|
|
1981
|
+
* // DecalPatternType: "SOLID" || "DIAGONAL_MEDIUM" || "CIRCLE_MEDIUM" || "DIAMOND_GRID_MEDIUM" || "CHECKERBOARD_MEDIUM" || "TRIANGLE_MEDIUM" || "DIAGONAL_OPPOSITE_MEDIUM" || "DIAMOND_MEDIUM" || "DIAGONAL_LARGE" || "CIRCLE_LARGE" || "DIAMOND_GRID_LARGE" || "CHECKERBOARD_LARGE" || "TRIANGLE_LARGE" || "DIAGONAL_OPPOSITE_LARGE" || "DIAMOND_LARGE" || "DIAGONAL_SMALL" || "CIRCLE_SMALL" || "DIAMOND_GRID_SMALL" || "CHECKERBOARD_SMALL" || "TRIANGLE_SMALL" || "DIAGONAL_OPPOSITE_SMALL" || "DIAMOND_SMALL",
|
|
1982
|
+
* // DecalStyleType: "Manual" || "Auto",
|
|
1983
|
+
* // },
|
|
1984
|
+
* // BorderSettings: {
|
|
1985
|
+
* // BorderVisibility: "HIDDEN" || "VISIBLE",
|
|
1986
|
+
* // BorderWidth: "STRING_VALUE",
|
|
1987
|
+
* // BorderColor: "STRING_VALUE",
|
|
1988
|
+
* // },
|
|
1989
|
+
* // },
|
|
1990
|
+
* // },
|
|
1991
|
+
* // DataFieldBarSeriesItem: { // DataFieldBarSeriesItem
|
|
1992
|
+
* // FieldId: "STRING_VALUE", // required
|
|
1993
|
+
* // FieldValue: "STRING_VALUE",
|
|
1994
|
+
* // Settings: {
|
|
1995
|
+
* // DecalSettings: {
|
|
1996
|
+
* // ElementValue: "STRING_VALUE",
|
|
1997
|
+
* // DecalVisibility: "HIDDEN" || "VISIBLE",
|
|
1998
|
+
* // DecalColor: "STRING_VALUE",
|
|
1999
|
+
* // DecalPatternType: "SOLID" || "DIAGONAL_MEDIUM" || "CIRCLE_MEDIUM" || "DIAMOND_GRID_MEDIUM" || "CHECKERBOARD_MEDIUM" || "TRIANGLE_MEDIUM" || "DIAGONAL_OPPOSITE_MEDIUM" || "DIAMOND_MEDIUM" || "DIAGONAL_LARGE" || "CIRCLE_LARGE" || "DIAMOND_GRID_LARGE" || "CHECKERBOARD_LARGE" || "TRIANGLE_LARGE" || "DIAGONAL_OPPOSITE_LARGE" || "DIAMOND_LARGE" || "DIAGONAL_SMALL" || "CIRCLE_SMALL" || "DIAMOND_GRID_SMALL" || "CHECKERBOARD_SMALL" || "TRIANGLE_SMALL" || "DIAGONAL_OPPOSITE_SMALL" || "DIAMOND_SMALL",
|
|
2000
|
+
* // DecalStyleType: "Manual" || "Auto",
|
|
2001
|
+
* // },
|
|
2002
|
+
* // BorderSettings: {
|
|
2003
|
+
* // BorderVisibility: "HIDDEN" || "VISIBLE",
|
|
2004
|
+
* // BorderWidth: "STRING_VALUE",
|
|
2005
|
+
* // BorderColor: "STRING_VALUE",
|
|
2006
|
+
* // },
|
|
2007
|
+
* // },
|
|
2008
|
+
* // },
|
|
2009
|
+
* // },
|
|
2010
|
+
* // ],
|
|
1942
2011
|
* // Legend: { // LegendOptions
|
|
1943
2012
|
* // Visibility: "HIDDEN" || "VISIBLE",
|
|
1944
2013
|
* // Title: "<LabelOptions>",
|
|
@@ -3175,6 +3244,13 @@ declare const DescribeAnalysisDefinitionCommand_base: {
|
|
|
3175
3244
|
* // MarkerSize: "STRING_VALUE",
|
|
3176
3245
|
* // MarkerColor: "STRING_VALUE",
|
|
3177
3246
|
* // },
|
|
3247
|
+
* // DecalSettings: {
|
|
3248
|
+
* // ElementValue: "STRING_VALUE",
|
|
3249
|
+
* // DecalVisibility: "HIDDEN" || "VISIBLE",
|
|
3250
|
+
* // DecalColor: "STRING_VALUE",
|
|
3251
|
+
* // DecalPatternType: "SOLID" || "DIAGONAL_MEDIUM" || "CIRCLE_MEDIUM" || "DIAMOND_GRID_MEDIUM" || "CHECKERBOARD_MEDIUM" || "TRIANGLE_MEDIUM" || "DIAGONAL_OPPOSITE_MEDIUM" || "DIAMOND_MEDIUM" || "DIAGONAL_LARGE" || "CIRCLE_LARGE" || "DIAMOND_GRID_LARGE" || "CHECKERBOARD_LARGE" || "TRIANGLE_LARGE" || "DIAGONAL_OPPOSITE_LARGE" || "DIAMOND_LARGE" || "DIAGONAL_SMALL" || "CIRCLE_SMALL" || "DIAMOND_GRID_SMALL" || "CHECKERBOARD_SMALL" || "TRIANGLE_SMALL" || "DIAGONAL_OPPOSITE_SMALL" || "DIAMOND_SMALL",
|
|
3252
|
+
* // DecalStyleType: "Manual" || "Auto",
|
|
3253
|
+
* // },
|
|
3178
3254
|
* // },
|
|
3179
3255
|
* // Series: [ // SeriesItemList
|
|
3180
3256
|
* // { // SeriesItem
|
|
@@ -3194,6 +3270,13 @@ declare const DescribeAnalysisDefinitionCommand_base: {
|
|
|
3194
3270
|
* // MarkerSize: "STRING_VALUE",
|
|
3195
3271
|
* // MarkerColor: "STRING_VALUE",
|
|
3196
3272
|
* // },
|
|
3273
|
+
* // DecalSettings: {
|
|
3274
|
+
* // ElementValue: "STRING_VALUE",
|
|
3275
|
+
* // DecalVisibility: "HIDDEN" || "VISIBLE",
|
|
3276
|
+
* // DecalColor: "STRING_VALUE",
|
|
3277
|
+
* // DecalPatternType: "SOLID" || "DIAGONAL_MEDIUM" || "CIRCLE_MEDIUM" || "DIAMOND_GRID_MEDIUM" || "CHECKERBOARD_MEDIUM" || "TRIANGLE_MEDIUM" || "DIAGONAL_OPPOSITE_MEDIUM" || "DIAMOND_MEDIUM" || "DIAGONAL_LARGE" || "CIRCLE_LARGE" || "DIAMOND_GRID_LARGE" || "CHECKERBOARD_LARGE" || "TRIANGLE_LARGE" || "DIAGONAL_OPPOSITE_LARGE" || "DIAMOND_LARGE" || "DIAGONAL_SMALL" || "CIRCLE_SMALL" || "DIAMOND_GRID_SMALL" || "CHECKERBOARD_SMALL" || "TRIANGLE_SMALL" || "DIAGONAL_OPPOSITE_SMALL" || "DIAMOND_SMALL",
|
|
3278
|
+
* // DecalStyleType: "Manual" || "Auto",
|
|
3279
|
+
* // },
|
|
3197
3280
|
* // },
|
|
3198
3281
|
* // },
|
|
3199
3282
|
* // DataFieldSeriesItem: { // DataFieldSeriesItem
|
|
@@ -3213,6 +3296,7 @@ declare const DescribeAnalysisDefinitionCommand_base: {
|
|
|
3213
3296
|
* // MarkerSize: "STRING_VALUE",
|
|
3214
3297
|
* // MarkerColor: "STRING_VALUE",
|
|
3215
3298
|
* // },
|
|
3299
|
+
* // DecalSettings: "<DecalSettings>",
|
|
3216
3300
|
* // },
|
|
3217
3301
|
* // },
|
|
3218
3302
|
* // },
|
|
@@ -3610,6 +3694,30 @@ declare const DescribeAnalysisDefinitionCommand_base: {
|
|
|
3610
3694
|
* // ColumnHierarchies: "<ColumnHierarchyList>",
|
|
3611
3695
|
* // Actions: "<VisualCustomActionList>",
|
|
3612
3696
|
* // VisualContentAltText: "STRING_VALUE",
|
|
3697
|
+
* // GeocodingPreferences: [ // GeocodePreferenceList
|
|
3698
|
+
* // { // GeocodePreference
|
|
3699
|
+
* // RequestKey: { // GeocoderHierarchy
|
|
3700
|
+
* // Country: "STRING_VALUE",
|
|
3701
|
+
* // State: "STRING_VALUE",
|
|
3702
|
+
* // County: "STRING_VALUE",
|
|
3703
|
+
* // City: "STRING_VALUE",
|
|
3704
|
+
* // PostCode: "STRING_VALUE",
|
|
3705
|
+
* // },
|
|
3706
|
+
* // Preference: { // GeocodePreferenceValue Union: only one key present
|
|
3707
|
+
* // GeocoderHierarchy: {
|
|
3708
|
+
* // Country: "STRING_VALUE",
|
|
3709
|
+
* // State: "STRING_VALUE",
|
|
3710
|
+
* // County: "STRING_VALUE",
|
|
3711
|
+
* // City: "STRING_VALUE",
|
|
3712
|
+
* // PostCode: "STRING_VALUE",
|
|
3713
|
+
* // },
|
|
3714
|
+
* // Coordinate: { // Coordinate
|
|
3715
|
+
* // Latitude: Number("double"), // required
|
|
3716
|
+
* // Longitude: Number("double"), // required
|
|
3717
|
+
* // },
|
|
3718
|
+
* // },
|
|
3719
|
+
* // },
|
|
3720
|
+
* // ],
|
|
3613
3721
|
* // },
|
|
3614
3722
|
* // FilledMapVisual: { // FilledMapVisual
|
|
3615
3723
|
* // VisualId: "STRING_VALUE", // required
|
|
@@ -3660,6 +3768,30 @@ declare const DescribeAnalysisDefinitionCommand_base: {
|
|
|
3660
3768
|
* // ColumnHierarchies: "<ColumnHierarchyList>",
|
|
3661
3769
|
* // Actions: "<VisualCustomActionList>",
|
|
3662
3770
|
* // VisualContentAltText: "STRING_VALUE",
|
|
3771
|
+
* // GeocodingPreferences: [
|
|
3772
|
+
* // {
|
|
3773
|
+
* // RequestKey: {
|
|
3774
|
+
* // Country: "STRING_VALUE",
|
|
3775
|
+
* // State: "STRING_VALUE",
|
|
3776
|
+
* // County: "STRING_VALUE",
|
|
3777
|
+
* // City: "STRING_VALUE",
|
|
3778
|
+
* // PostCode: "STRING_VALUE",
|
|
3779
|
+
* // },
|
|
3780
|
+
* // Preference: {// Union: only one key present
|
|
3781
|
+
* // GeocoderHierarchy: {
|
|
3782
|
+
* // Country: "STRING_VALUE",
|
|
3783
|
+
* // State: "STRING_VALUE",
|
|
3784
|
+
* // County: "STRING_VALUE",
|
|
3785
|
+
* // City: "STRING_VALUE",
|
|
3786
|
+
* // PostCode: "STRING_VALUE",
|
|
3787
|
+
* // },
|
|
3788
|
+
* // Coordinate: {
|
|
3789
|
+
* // Latitude: Number("double"), // required
|
|
3790
|
+
* // Longitude: Number("double"), // required
|
|
3791
|
+
* // },
|
|
3792
|
+
* // },
|
|
3793
|
+
* // },
|
|
3794
|
+
* // ],
|
|
3663
3795
|
* // },
|
|
3664
3796
|
* // LayerMapVisual: { // LayerMapVisual
|
|
3665
3797
|
* // VisualId: "STRING_VALUE", // required
|
|
@@ -4046,6 +4178,63 @@ declare const DescribeAnalysisDefinitionCommand_base: {
|
|
|
4046
4178
|
* // },
|
|
4047
4179
|
* // },
|
|
4048
4180
|
* // ColorLabelOptions: "<ChartAxisLabelOptions>",
|
|
4181
|
+
* // DefaultSeriesSettings: { // ComboChartDefaultSeriesSettings
|
|
4182
|
+
* // LineStyleSettings: {
|
|
4183
|
+
* // LineVisibility: "HIDDEN" || "VISIBLE",
|
|
4184
|
+
* // LineInterpolation: "LINEAR" || "SMOOTH" || "STEPPED",
|
|
4185
|
+
* // LineStyle: "SOLID" || "DOTTED" || "DASHED",
|
|
4186
|
+
* // LineWidth: "STRING_VALUE",
|
|
4187
|
+
* // },
|
|
4188
|
+
* // MarkerStyleSettings: {
|
|
4189
|
+
* // MarkerVisibility: "HIDDEN" || "VISIBLE",
|
|
4190
|
+
* // MarkerShape: "CIRCLE" || "TRIANGLE" || "SQUARE" || "DIAMOND" || "ROUNDED_SQUARE",
|
|
4191
|
+
* // MarkerSize: "STRING_VALUE",
|
|
4192
|
+
* // MarkerColor: "STRING_VALUE",
|
|
4193
|
+
* // },
|
|
4194
|
+
* // DecalSettings: "<DecalSettings>",
|
|
4195
|
+
* // BorderSettings: {
|
|
4196
|
+
* // BorderVisibility: "HIDDEN" || "VISIBLE",
|
|
4197
|
+
* // BorderWidth: "STRING_VALUE",
|
|
4198
|
+
* // BorderColor: "STRING_VALUE",
|
|
4199
|
+
* // },
|
|
4200
|
+
* // },
|
|
4201
|
+
* // Series: [ // ComboSeriesItemList
|
|
4202
|
+
* // { // ComboSeriesItem
|
|
4203
|
+
* // FieldComboSeriesItem: { // FieldComboSeriesItem
|
|
4204
|
+
* // FieldId: "STRING_VALUE", // required
|
|
4205
|
+
* // Settings: { // ComboChartSeriesSettings
|
|
4206
|
+
* // LineStyleSettings: {
|
|
4207
|
+
* // LineVisibility: "HIDDEN" || "VISIBLE",
|
|
4208
|
+
* // LineInterpolation: "LINEAR" || "SMOOTH" || "STEPPED",
|
|
4209
|
+
* // LineStyle: "SOLID" || "DOTTED" || "DASHED",
|
|
4210
|
+
* // LineWidth: "STRING_VALUE",
|
|
4211
|
+
* // },
|
|
4212
|
+
* // MarkerStyleSettings: {
|
|
4213
|
+
* // MarkerVisibility: "HIDDEN" || "VISIBLE",
|
|
4214
|
+
* // MarkerShape: "CIRCLE" || "TRIANGLE" || "SQUARE" || "DIAMOND" || "ROUNDED_SQUARE",
|
|
4215
|
+
* // MarkerSize: "STRING_VALUE",
|
|
4216
|
+
* // MarkerColor: "STRING_VALUE",
|
|
4217
|
+
* // },
|
|
4218
|
+
* // DecalSettings: "<DecalSettings>",
|
|
4219
|
+
* // BorderSettings: {
|
|
4220
|
+
* // BorderVisibility: "HIDDEN" || "VISIBLE",
|
|
4221
|
+
* // BorderWidth: "STRING_VALUE",
|
|
4222
|
+
* // BorderColor: "STRING_VALUE",
|
|
4223
|
+
* // },
|
|
4224
|
+
* // },
|
|
4225
|
+
* // },
|
|
4226
|
+
* // DataFieldComboSeriesItem: { // DataFieldComboSeriesItem
|
|
4227
|
+
* // FieldId: "STRING_VALUE", // required
|
|
4228
|
+
* // FieldValue: "STRING_VALUE",
|
|
4229
|
+
* // Settings: {
|
|
4230
|
+
* // LineStyleSettings: "<LineChartLineStyleSettings>",
|
|
4231
|
+
* // MarkerStyleSettings: "<LineChartMarkerStyleSettings>",
|
|
4232
|
+
* // DecalSettings: "<DecalSettings>",
|
|
4233
|
+
* // BorderSettings: "<BorderSettings>",
|
|
4234
|
+
* // },
|
|
4235
|
+
* // },
|
|
4236
|
+
* // },
|
|
4237
|
+
* // ],
|
|
4049
4238
|
* // Legend: "<LegendOptions>",
|
|
4050
4239
|
* // BarDataLabels: "<DataLabelOptions>",
|
|
4051
4240
|
* // LineDataLabels: "<DataLabelOptions>",
|
|
@@ -5443,6 +5632,11 @@ declare const DescribeAnalysisDefinitionCommand_base: {
|
|
|
5443
5632
|
* // },
|
|
5444
5633
|
* // ],
|
|
5445
5634
|
* // },
|
|
5635
|
+
* // DecalSettingsConfiguration: { // DecalSettingsConfiguration
|
|
5636
|
+
* // CustomDecalSettings: [ // DecalSettingsList
|
|
5637
|
+
* // "<DecalSettings>",
|
|
5638
|
+
* // ],
|
|
5639
|
+
* // },
|
|
5446
5640
|
* // },
|
|
5447
5641
|
* // ],
|
|
5448
5642
|
* // AnalysisDefaults: { // AnalysisDefaults
|