@aws-sdk/client-quicksight 3.1020.0 → 3.1022.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 +14 -0
- package/dist-cjs/index.js +48 -0
- package/dist-cjs/schemas/schemas_0.js +186 -82
- package/dist-es/QuickSight.js +4 -0
- package/dist-es/commands/DescribeAutomationJobCommand.js +16 -0
- package/dist-es/commands/StartAutomationJobCommand.js +16 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +17 -0
- package/dist-es/models/models_5.js +1 -0
- package/dist-es/schemas/schemas_0.js +160 -56
- package/dist-types/QuickSight.d.ts +14 -0
- package/dist-types/QuickSightClient.d.ts +4 -2
- package/dist-types/commands/BatchCreateTopicReviewedAnswerCommand.d.ts +1 -1
- package/dist-types/commands/CreateAnalysisCommand.d.ts +2007 -161
- package/dist-types/commands/CreateCustomPermissionsCommand.d.ts +3 -0
- package/dist-types/commands/CreateDashboardCommand.d.ts +2007 -161
- package/dist-types/commands/CreateDataSourceCommand.d.ts +9 -4
- package/dist-types/commands/CreateTemplateCommand.d.ts +2007 -161
- package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +2007 -161
- package/dist-types/commands/DescribeAssetBundleImportJobCommand.d.ts +2 -2
- package/dist-types/commands/DescribeAutomationJobCommand.d.ts +104 -0
- package/dist-types/commands/DescribeCustomPermissionsCommand.d.ts +3 -0
- package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +2007 -161
- package/dist-types/commands/DescribeDataSourceCommand.d.ts +4 -4
- package/dist-types/commands/DescribeTemplateAliasCommand.d.ts +1 -2
- package/dist-types/commands/DescribeTemplateCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +2007 -161
- package/dist-types/commands/ListCustomPermissionsCommand.d.ts +3 -0
- package/dist-types/commands/ListDataSourcesCommand.d.ts +4 -4
- package/dist-types/commands/ListTopicReviewedAnswersCommand.d.ts +2 -1
- package/dist-types/commands/StartAssetBundleImportJobCommand.d.ts +2 -2
- package/dist-types/commands/StartAutomationJobCommand.d.ts +101 -0
- package/dist-types/commands/UpdateAnalysisCommand.d.ts +2007 -161
- package/dist-types/commands/UpdateCustomPermissionsCommand.d.ts +3 -0
- package/dist-types/commands/UpdateDashboardCommand.d.ts +2007 -161
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +9 -4
- package/dist-types/commands/UpdateTemplateCommand.d.ts +2007 -161
- package/dist-types/commands/UpdateUserCustomPermissionCommand.d.ts +2 -1
- package/dist-types/commands/UpdateVPCConnectionCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +41 -0
- package/dist-types/models/models_0.d.ts +16 -16
- package/dist-types/models/models_1.d.ts +84 -30
- package/dist-types/models/models_2.d.ts +96 -213
- package/dist-types/models/models_3.d.ts +334 -230
- package/dist-types/models/models_4.d.ts +282 -250
- package/dist-types/models/models_5.d.ts +248 -0
- package/dist-types/schemas/schemas_0.d.ts +10 -0
- package/dist-types/ts3.4/QuickSight.d.ts +34 -0
- package/dist-types/ts3.4/QuickSightClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/BatchCreateTopicReviewedAnswerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeAutomationJobCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeTemplateAliasCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeTemplateCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTopicReviewedAnswersCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/StartAutomationJobCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateUserCustomPermissionCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/UpdateVPCConnectionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +23 -0
- package/dist-types/ts3.4/models/models_0.d.ts +4 -4
- package/dist-types/ts3.4/models/models_1.d.ts +21 -8
- package/dist-types/ts3.4/models/models_2.d.ts +22 -137
- package/dist-types/ts3.4/models/models_3.d.ts +171 -43
- package/dist-types/ts3.4/models/models_4.d.ts +56 -60
- package/dist-types/ts3.4/models/models_5.d.ts +62 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +10 -0
- package/package.json +6 -6
|
@@ -1733,10 +1733,14 @@ export interface FieldBasedTooltip {
|
|
|
1733
1733
|
TooltipTitleType?: TooltipTitleType | undefined;
|
|
1734
1734
|
TooltipFields?: TooltipItem[] | undefined;
|
|
1735
1735
|
}
|
|
1736
|
+
export interface SheetTooltip {
|
|
1737
|
+
SheetId?: string | undefined;
|
|
1738
|
+
}
|
|
1736
1739
|
export interface TooltipOptions {
|
|
1737
1740
|
TooltipVisibility?: Visibility | undefined;
|
|
1738
1741
|
SelectedTooltipType?: SelectedTooltipType | undefined;
|
|
1739
1742
|
FieldBasedTooltip?: FieldBasedTooltip | undefined;
|
|
1743
|
+
SheetTooltip?: SheetTooltip | undefined;
|
|
1740
1744
|
}
|
|
1741
1745
|
export interface DataPathType {
|
|
1742
1746
|
PivotTableDataPathType?: PivotTableDataPathType | undefined;
|
|
@@ -1751,7 +1755,3 @@ export interface DataPathColor {
|
|
|
1751
1755
|
Color: string | undefined;
|
|
1752
1756
|
TimeGranularity?: TimeGranularity | undefined;
|
|
1753
1757
|
}
|
|
1754
|
-
export interface VisualPalette {
|
|
1755
|
-
ChartColor?: string | undefined;
|
|
1756
|
-
ColorMap?: DataPathColor[] | undefined;
|
|
1757
|
-
}
|
|
@@ -45,6 +45,8 @@ import {
|
|
|
45
45
|
SimpleTotalAggregationFunction,
|
|
46
46
|
SingleYAxisOption,
|
|
47
47
|
SortDirection,
|
|
48
|
+
SparklineAxisBehavior,
|
|
49
|
+
SparklineVisualType,
|
|
48
50
|
StyledCellType,
|
|
49
51
|
TableBorderStyle,
|
|
50
52
|
TableCellImageScalingConfiguration,
|
|
@@ -78,6 +80,7 @@ import {
|
|
|
78
80
|
CustomActionSetParametersOperation,
|
|
79
81
|
CustomActionURLOperation,
|
|
80
82
|
DataLabelOptions,
|
|
83
|
+
DataPathColor,
|
|
81
84
|
DataPathValue,
|
|
82
85
|
DecalSettings,
|
|
83
86
|
DimensionField,
|
|
@@ -95,8 +98,11 @@ import {
|
|
|
95
98
|
TooltipOptions,
|
|
96
99
|
VisualCustomAction,
|
|
97
100
|
VisualInteractionOptions,
|
|
98
|
-
VisualPalette,
|
|
99
101
|
} from "./models_0";
|
|
102
|
+
export interface VisualPalette {
|
|
103
|
+
ChartColor?: string | undefined;
|
|
104
|
+
ColorMap?: DataPathColor[] | undefined;
|
|
105
|
+
}
|
|
100
106
|
export interface BarChartConfiguration {
|
|
101
107
|
FieldWells?: BarChartFieldWells | undefined;
|
|
102
108
|
SortConfiguration?: BarChartSortConfiguration | undefined;
|
|
@@ -1366,6 +1372,7 @@ export interface PivotTableConfiguration {
|
|
|
1366
1372
|
TotalOptions?: PivotTableTotalOptions | undefined;
|
|
1367
1373
|
FieldOptions?: PivotTableFieldOptions | undefined;
|
|
1368
1374
|
PaginatedReportOptions?: PivotTablePaginatedReportOptions | undefined;
|
|
1375
|
+
Tooltip?: TooltipOptions | undefined;
|
|
1369
1376
|
DashboardCustomizationVisualOptions?:
|
|
1370
1377
|
| DashboardCustomizationVisualOptions
|
|
1371
1378
|
| undefined;
|
|
@@ -1634,8 +1641,20 @@ export interface DataBarsOptions {
|
|
|
1634
1641
|
PositiveColor?: string | undefined;
|
|
1635
1642
|
NegativeColor?: string | undefined;
|
|
1636
1643
|
}
|
|
1644
|
+
export interface SparklinesOptions {
|
|
1645
|
+
FieldId: string | undefined;
|
|
1646
|
+
XAxisField: DimensionField | undefined;
|
|
1647
|
+
YAxisBehavior?: SparklineAxisBehavior | undefined;
|
|
1648
|
+
VisualType?: SparklineVisualType | undefined;
|
|
1649
|
+
LineColor?: string | undefined;
|
|
1650
|
+
LineInterpolation?: LineInterpolation | undefined;
|
|
1651
|
+
AllPointsMarker?: LineChartMarkerStyleSettings | undefined;
|
|
1652
|
+
MaxValueMarker?: LineChartMarkerStyleSettings | undefined;
|
|
1653
|
+
MinValueMarker?: LineChartMarkerStyleSettings | undefined;
|
|
1654
|
+
}
|
|
1637
1655
|
export interface TableInlineVisualization {
|
|
1638
1656
|
DataBars?: DataBarsOptions | undefined;
|
|
1657
|
+
Sparklines?: SparklinesOptions | undefined;
|
|
1639
1658
|
}
|
|
1640
1659
|
export interface TableOptions {
|
|
1641
1660
|
Orientation?: TableOrientation | undefined;
|
|
@@ -1659,6 +1678,7 @@ export interface TableConfiguration {
|
|
|
1659
1678
|
FieldOptions?: TableFieldOptions | undefined;
|
|
1660
1679
|
PaginatedReportOptions?: TablePaginatedReportOptions | undefined;
|
|
1661
1680
|
TableInlineVisualizations?: TableInlineVisualization[] | undefined;
|
|
1681
|
+
Tooltip?: TooltipOptions | undefined;
|
|
1662
1682
|
DashboardCustomizationVisualOptions?:
|
|
1663
1683
|
| DashboardCustomizationVisualOptions
|
|
1664
1684
|
| undefined;
|
|
@@ -1769,10 +1789,3 @@ export interface WaterfallVisual {
|
|
|
1769
1789
|
ColumnHierarchies?: ColumnHierarchy[] | undefined;
|
|
1770
1790
|
VisualContentAltText?: string | undefined;
|
|
1771
1791
|
}
|
|
1772
|
-
export interface WordCloudAggregatedFieldWells {
|
|
1773
|
-
GroupBy?: DimensionField[] | undefined;
|
|
1774
|
-
Size?: MeasureField[] | undefined;
|
|
1775
|
-
}
|
|
1776
|
-
export interface WordCloudFieldWells {
|
|
1777
|
-
WordCloudAggregatedFieldWells?: WordCloudAggregatedFieldWells | undefined;
|
|
1778
|
-
}
|
|
@@ -48,7 +48,6 @@ import {
|
|
|
48
48
|
GeoSpatialDataRole,
|
|
49
49
|
InputColumnDataType,
|
|
50
50
|
JoinOperationType,
|
|
51
|
-
JoinType,
|
|
52
51
|
LookbackWindowSizeUnit,
|
|
53
52
|
NullFilterOption,
|
|
54
53
|
NumberScale,
|
|
@@ -91,11 +90,13 @@ import {
|
|
|
91
90
|
DataPrepAggregationFunction,
|
|
92
91
|
DataSetColumnIdMapping,
|
|
93
92
|
DataSetIdentifierDeclaration,
|
|
93
|
+
DimensionField,
|
|
94
94
|
FieldSortOptions,
|
|
95
95
|
FilterControl,
|
|
96
96
|
FilterGroup,
|
|
97
97
|
ItemsLimitConfiguration,
|
|
98
98
|
Layout,
|
|
99
|
+
MeasureField,
|
|
99
100
|
ParameterControl,
|
|
100
101
|
ParameterDeclaration,
|
|
101
102
|
QueryExecutionOptions,
|
|
@@ -136,8 +137,14 @@ import {
|
|
|
136
137
|
VisualSubtitleLabelOptions,
|
|
137
138
|
VisualTitleLabelOptions,
|
|
138
139
|
WaterfallVisual,
|
|
139
|
-
WordCloudFieldWells,
|
|
140
140
|
} from "./models_1";
|
|
141
|
+
export interface WordCloudAggregatedFieldWells {
|
|
142
|
+
GroupBy?: DimensionField[] | undefined;
|
|
143
|
+
Size?: MeasureField[] | undefined;
|
|
144
|
+
}
|
|
145
|
+
export interface WordCloudFieldWells {
|
|
146
|
+
WordCloudAggregatedFieldWells?: WordCloudAggregatedFieldWells | undefined;
|
|
147
|
+
}
|
|
141
148
|
export interface WordCloudSortConfiguration {
|
|
142
149
|
CategoryItemsLimit?: ItemsLimitConfiguration | undefined;
|
|
143
150
|
CategorySort?: FieldSortOptions[] | undefined;
|
|
@@ -232,9 +239,18 @@ export interface StaticFile {
|
|
|
232
239
|
ImageStaticFile?: ImageStaticFile | undefined;
|
|
233
240
|
SpatialStaticFile?: SpatialStaticFile | undefined;
|
|
234
241
|
}
|
|
242
|
+
export interface TooltipSheetDefinition {
|
|
243
|
+
SheetId: string | undefined;
|
|
244
|
+
Name?: string | undefined;
|
|
245
|
+
Visuals?: Visual[] | undefined;
|
|
246
|
+
TextBoxes?: SheetTextBox[] | undefined;
|
|
247
|
+
Images?: SheetImage[] | undefined;
|
|
248
|
+
Layouts?: Layout[] | undefined;
|
|
249
|
+
}
|
|
235
250
|
export interface AnalysisDefinition {
|
|
236
251
|
DataSetIdentifierDeclarations: DataSetIdentifierDeclaration[] | undefined;
|
|
237
252
|
Sheets?: SheetDefinition[] | undefined;
|
|
253
|
+
TooltipSheets?: TooltipSheetDefinition[] | undefined;
|
|
238
254
|
CalculatedFields?: CalculatedField[] | undefined;
|
|
239
255
|
ParameterDeclarations?: ParameterDeclaration[] | undefined;
|
|
240
256
|
FilterGroups?: FilterGroup[] | undefined;
|
|
@@ -2704,8 +2720,11 @@ export interface Capabilities {
|
|
|
2704
2720
|
BuildCalculatedFieldWithQ?: CapabilityState | undefined;
|
|
2705
2721
|
CreateDashboardExecutiveSummaryWithQ?: CapabilityState | undefined;
|
|
2706
2722
|
Space?: CapabilityState | undefined;
|
|
2723
|
+
CreateSpaces?: CapabilityState | undefined;
|
|
2724
|
+
ShareSpaces?: CapabilityState | undefined;
|
|
2707
2725
|
ChatAgent?: CapabilityState | undefined;
|
|
2708
2726
|
CreateChatAgents?: CapabilityState | undefined;
|
|
2727
|
+
ShareChatAgents?: CapabilityState | undefined;
|
|
2709
2728
|
Research?: CapabilityState | undefined;
|
|
2710
2729
|
SelfUpgradeUserRole?: CapabilityState | undefined;
|
|
2711
2730
|
Extension?: CapabilityState | undefined;
|
|
@@ -2973,6 +2992,7 @@ export interface DashboardPublishOptions {
|
|
|
2973
2992
|
export interface DashboardVersionDefinition {
|
|
2974
2993
|
DataSetIdentifierDeclarations: DataSetIdentifierDeclaration[] | undefined;
|
|
2975
2994
|
Sheets?: SheetDefinition[] | undefined;
|
|
2995
|
+
TooltipSheets?: TooltipSheetDefinition[] | undefined;
|
|
2976
2996
|
CalculatedFields?: CalculatedField[] | undefined;
|
|
2977
2997
|
ParameterDeclarations?: ParameterDeclaration[] | undefined;
|
|
2978
2998
|
FilterGroups?: FilterGroup[] | undefined;
|
|
@@ -3261,138 +3281,3 @@ export interface UntagColumnOperation {
|
|
|
3261
3281
|
ColumnName: string | undefined;
|
|
3262
3282
|
TagNames: ColumnTagName[] | undefined;
|
|
3263
3283
|
}
|
|
3264
|
-
export type TransformOperation =
|
|
3265
|
-
| TransformOperation.CastColumnTypeOperationMember
|
|
3266
|
-
| TransformOperation.CreateColumnsOperationMember
|
|
3267
|
-
| TransformOperation.FilterOperationMember
|
|
3268
|
-
| TransformOperation.OverrideDatasetParameterOperationMember
|
|
3269
|
-
| TransformOperation.ProjectOperationMember
|
|
3270
|
-
| TransformOperation.RenameColumnOperationMember
|
|
3271
|
-
| TransformOperation.TagColumnOperationMember
|
|
3272
|
-
| TransformOperation.UntagColumnOperationMember
|
|
3273
|
-
| TransformOperation.$UnknownMember;
|
|
3274
|
-
export declare namespace TransformOperation {
|
|
3275
|
-
interface ProjectOperationMember {
|
|
3276
|
-
ProjectOperation: ProjectOperation;
|
|
3277
|
-
FilterOperation?: never;
|
|
3278
|
-
CreateColumnsOperation?: never;
|
|
3279
|
-
RenameColumnOperation?: never;
|
|
3280
|
-
CastColumnTypeOperation?: never;
|
|
3281
|
-
TagColumnOperation?: never;
|
|
3282
|
-
UntagColumnOperation?: never;
|
|
3283
|
-
OverrideDatasetParameterOperation?: never;
|
|
3284
|
-
$unknown?: never;
|
|
3285
|
-
}
|
|
3286
|
-
interface FilterOperationMember {
|
|
3287
|
-
ProjectOperation?: never;
|
|
3288
|
-
FilterOperation: FilterOperation;
|
|
3289
|
-
CreateColumnsOperation?: never;
|
|
3290
|
-
RenameColumnOperation?: never;
|
|
3291
|
-
CastColumnTypeOperation?: never;
|
|
3292
|
-
TagColumnOperation?: never;
|
|
3293
|
-
UntagColumnOperation?: never;
|
|
3294
|
-
OverrideDatasetParameterOperation?: never;
|
|
3295
|
-
$unknown?: never;
|
|
3296
|
-
}
|
|
3297
|
-
interface CreateColumnsOperationMember {
|
|
3298
|
-
ProjectOperation?: never;
|
|
3299
|
-
FilterOperation?: never;
|
|
3300
|
-
CreateColumnsOperation: CreateColumnsOperation;
|
|
3301
|
-
RenameColumnOperation?: never;
|
|
3302
|
-
CastColumnTypeOperation?: never;
|
|
3303
|
-
TagColumnOperation?: never;
|
|
3304
|
-
UntagColumnOperation?: never;
|
|
3305
|
-
OverrideDatasetParameterOperation?: never;
|
|
3306
|
-
$unknown?: never;
|
|
3307
|
-
}
|
|
3308
|
-
interface RenameColumnOperationMember {
|
|
3309
|
-
ProjectOperation?: never;
|
|
3310
|
-
FilterOperation?: never;
|
|
3311
|
-
CreateColumnsOperation?: never;
|
|
3312
|
-
RenameColumnOperation: RenameColumnOperation;
|
|
3313
|
-
CastColumnTypeOperation?: never;
|
|
3314
|
-
TagColumnOperation?: never;
|
|
3315
|
-
UntagColumnOperation?: never;
|
|
3316
|
-
OverrideDatasetParameterOperation?: never;
|
|
3317
|
-
$unknown?: never;
|
|
3318
|
-
}
|
|
3319
|
-
interface CastColumnTypeOperationMember {
|
|
3320
|
-
ProjectOperation?: never;
|
|
3321
|
-
FilterOperation?: never;
|
|
3322
|
-
CreateColumnsOperation?: never;
|
|
3323
|
-
RenameColumnOperation?: never;
|
|
3324
|
-
CastColumnTypeOperation: CastColumnTypeOperation;
|
|
3325
|
-
TagColumnOperation?: never;
|
|
3326
|
-
UntagColumnOperation?: never;
|
|
3327
|
-
OverrideDatasetParameterOperation?: never;
|
|
3328
|
-
$unknown?: never;
|
|
3329
|
-
}
|
|
3330
|
-
interface TagColumnOperationMember {
|
|
3331
|
-
ProjectOperation?: never;
|
|
3332
|
-
FilterOperation?: never;
|
|
3333
|
-
CreateColumnsOperation?: never;
|
|
3334
|
-
RenameColumnOperation?: never;
|
|
3335
|
-
CastColumnTypeOperation?: never;
|
|
3336
|
-
TagColumnOperation: TagColumnOperation;
|
|
3337
|
-
UntagColumnOperation?: never;
|
|
3338
|
-
OverrideDatasetParameterOperation?: never;
|
|
3339
|
-
$unknown?: never;
|
|
3340
|
-
}
|
|
3341
|
-
interface UntagColumnOperationMember {
|
|
3342
|
-
ProjectOperation?: never;
|
|
3343
|
-
FilterOperation?: never;
|
|
3344
|
-
CreateColumnsOperation?: never;
|
|
3345
|
-
RenameColumnOperation?: never;
|
|
3346
|
-
CastColumnTypeOperation?: never;
|
|
3347
|
-
TagColumnOperation?: never;
|
|
3348
|
-
UntagColumnOperation: UntagColumnOperation;
|
|
3349
|
-
OverrideDatasetParameterOperation?: never;
|
|
3350
|
-
$unknown?: never;
|
|
3351
|
-
}
|
|
3352
|
-
interface OverrideDatasetParameterOperationMember {
|
|
3353
|
-
ProjectOperation?: never;
|
|
3354
|
-
FilterOperation?: never;
|
|
3355
|
-
CreateColumnsOperation?: never;
|
|
3356
|
-
RenameColumnOperation?: never;
|
|
3357
|
-
CastColumnTypeOperation?: never;
|
|
3358
|
-
TagColumnOperation?: never;
|
|
3359
|
-
UntagColumnOperation?: never;
|
|
3360
|
-
OverrideDatasetParameterOperation: OverrideDatasetParameterOperation;
|
|
3361
|
-
$unknown?: never;
|
|
3362
|
-
}
|
|
3363
|
-
interface $UnknownMember {
|
|
3364
|
-
ProjectOperation?: never;
|
|
3365
|
-
FilterOperation?: never;
|
|
3366
|
-
CreateColumnsOperation?: never;
|
|
3367
|
-
RenameColumnOperation?: never;
|
|
3368
|
-
CastColumnTypeOperation?: never;
|
|
3369
|
-
TagColumnOperation?: never;
|
|
3370
|
-
UntagColumnOperation?: never;
|
|
3371
|
-
OverrideDatasetParameterOperation?: never;
|
|
3372
|
-
$unknown: [string, any];
|
|
3373
|
-
}
|
|
3374
|
-
interface Visitor<T> {
|
|
3375
|
-
ProjectOperation: (value: ProjectOperation) => T;
|
|
3376
|
-
FilterOperation: (value: FilterOperation) => T;
|
|
3377
|
-
CreateColumnsOperation: (value: CreateColumnsOperation) => T;
|
|
3378
|
-
RenameColumnOperation: (value: RenameColumnOperation) => T;
|
|
3379
|
-
CastColumnTypeOperation: (value: CastColumnTypeOperation) => T;
|
|
3380
|
-
TagColumnOperation: (value: TagColumnOperation) => T;
|
|
3381
|
-
UntagColumnOperation: (value: UntagColumnOperation) => T;
|
|
3382
|
-
OverrideDatasetParameterOperation: (
|
|
3383
|
-
value: OverrideDatasetParameterOperation
|
|
3384
|
-
) => T;
|
|
3385
|
-
_: (name: string, value: any) => T;
|
|
3386
|
-
}
|
|
3387
|
-
}
|
|
3388
|
-
export interface JoinKeyProperties {
|
|
3389
|
-
UniqueKey?: boolean | undefined;
|
|
3390
|
-
}
|
|
3391
|
-
export interface JoinInstruction {
|
|
3392
|
-
LeftOperand: string | undefined;
|
|
3393
|
-
RightOperand: string | undefined;
|
|
3394
|
-
LeftJoinKeyProperties?: JoinKeyProperties | undefined;
|
|
3395
|
-
RightJoinKeyProperties?: JoinKeyProperties | undefined;
|
|
3396
|
-
Type: JoinType | undefined;
|
|
3397
|
-
OnClause: string | undefined;
|
|
3398
|
-
}
|
|
@@ -5,6 +5,7 @@ import {
|
|
|
5
5
|
AssetBundleImportJobStatus,
|
|
6
6
|
AssignmentStatus,
|
|
7
7
|
AuthorSpecifiedAggregation,
|
|
8
|
+
AutomationJobStatus,
|
|
8
9
|
CategoryFilterFunction,
|
|
9
10
|
CategoryFilterType,
|
|
10
11
|
ColumnDataRole,
|
|
@@ -35,6 +36,7 @@ import {
|
|
|
35
36
|
IngestionRequestType,
|
|
36
37
|
IngestionStatus,
|
|
37
38
|
IngestionType,
|
|
39
|
+
JoinType,
|
|
38
40
|
MemberType,
|
|
39
41
|
NamedEntityAggType,
|
|
40
42
|
NamedFilterAggType,
|
|
@@ -57,7 +59,6 @@ import {
|
|
|
57
59
|
SharingModel,
|
|
58
60
|
SnapshotJobStatus,
|
|
59
61
|
Status,
|
|
60
|
-
TemplateErrorType,
|
|
61
62
|
TextQualifier,
|
|
62
63
|
TextTransform,
|
|
63
64
|
TopicRelativeDateFilterFunction,
|
|
@@ -104,6 +105,7 @@ import {
|
|
|
104
105
|
BrandDefinition,
|
|
105
106
|
BrandDetail,
|
|
106
107
|
Capabilities,
|
|
108
|
+
CastColumnTypeOperation,
|
|
107
109
|
CellValueSynonym,
|
|
108
110
|
CollectiveConstant,
|
|
109
111
|
ColumnGroup,
|
|
@@ -111,6 +113,7 @@ import {
|
|
|
111
113
|
ColumnLevelPermissionRule,
|
|
112
114
|
ColumnSchema,
|
|
113
115
|
ComparativeOrder,
|
|
116
|
+
CreateColumnsOperation,
|
|
114
117
|
DashboardPublishOptions,
|
|
115
118
|
DashboardVersionDefinition,
|
|
116
119
|
DataPrepConfiguration,
|
|
@@ -121,9 +124,12 @@ import {
|
|
|
121
124
|
DataSourceParameters,
|
|
122
125
|
DisplayFormatOptions,
|
|
123
126
|
FieldFolder,
|
|
127
|
+
FilterOperation,
|
|
124
128
|
InputColumn,
|
|
125
|
-
JoinInstruction,
|
|
126
129
|
LinkSharingConfiguration,
|
|
130
|
+
OverrideDatasetParameterOperation,
|
|
131
|
+
ProjectOperation,
|
|
132
|
+
RenameColumnOperation,
|
|
127
133
|
ResourcePermission,
|
|
128
134
|
SheetDefinition,
|
|
129
135
|
SnapshotFile,
|
|
@@ -132,10 +138,147 @@ import {
|
|
|
132
138
|
SslProperties,
|
|
133
139
|
StaticFile,
|
|
134
140
|
Tag,
|
|
135
|
-
|
|
141
|
+
TagColumnOperation,
|
|
142
|
+
TooltipSheetDefinition,
|
|
143
|
+
UntagColumnOperation,
|
|
136
144
|
ValidationStrategy,
|
|
137
145
|
VpcConnectionProperties,
|
|
138
146
|
} from "./models_2";
|
|
147
|
+
export type TransformOperation =
|
|
148
|
+
| TransformOperation.CastColumnTypeOperationMember
|
|
149
|
+
| TransformOperation.CreateColumnsOperationMember
|
|
150
|
+
| TransformOperation.FilterOperationMember
|
|
151
|
+
| TransformOperation.OverrideDatasetParameterOperationMember
|
|
152
|
+
| TransformOperation.ProjectOperationMember
|
|
153
|
+
| TransformOperation.RenameColumnOperationMember
|
|
154
|
+
| TransformOperation.TagColumnOperationMember
|
|
155
|
+
| TransformOperation.UntagColumnOperationMember
|
|
156
|
+
| TransformOperation.$UnknownMember;
|
|
157
|
+
export declare namespace TransformOperation {
|
|
158
|
+
interface ProjectOperationMember {
|
|
159
|
+
ProjectOperation: ProjectOperation;
|
|
160
|
+
FilterOperation?: never;
|
|
161
|
+
CreateColumnsOperation?: never;
|
|
162
|
+
RenameColumnOperation?: never;
|
|
163
|
+
CastColumnTypeOperation?: never;
|
|
164
|
+
TagColumnOperation?: never;
|
|
165
|
+
UntagColumnOperation?: never;
|
|
166
|
+
OverrideDatasetParameterOperation?: never;
|
|
167
|
+
$unknown?: never;
|
|
168
|
+
}
|
|
169
|
+
interface FilterOperationMember {
|
|
170
|
+
ProjectOperation?: never;
|
|
171
|
+
FilterOperation: FilterOperation;
|
|
172
|
+
CreateColumnsOperation?: never;
|
|
173
|
+
RenameColumnOperation?: never;
|
|
174
|
+
CastColumnTypeOperation?: never;
|
|
175
|
+
TagColumnOperation?: never;
|
|
176
|
+
UntagColumnOperation?: never;
|
|
177
|
+
OverrideDatasetParameterOperation?: never;
|
|
178
|
+
$unknown?: never;
|
|
179
|
+
}
|
|
180
|
+
interface CreateColumnsOperationMember {
|
|
181
|
+
ProjectOperation?: never;
|
|
182
|
+
FilterOperation?: never;
|
|
183
|
+
CreateColumnsOperation: CreateColumnsOperation;
|
|
184
|
+
RenameColumnOperation?: never;
|
|
185
|
+
CastColumnTypeOperation?: never;
|
|
186
|
+
TagColumnOperation?: never;
|
|
187
|
+
UntagColumnOperation?: never;
|
|
188
|
+
OverrideDatasetParameterOperation?: never;
|
|
189
|
+
$unknown?: never;
|
|
190
|
+
}
|
|
191
|
+
interface RenameColumnOperationMember {
|
|
192
|
+
ProjectOperation?: never;
|
|
193
|
+
FilterOperation?: never;
|
|
194
|
+
CreateColumnsOperation?: never;
|
|
195
|
+
RenameColumnOperation: RenameColumnOperation;
|
|
196
|
+
CastColumnTypeOperation?: never;
|
|
197
|
+
TagColumnOperation?: never;
|
|
198
|
+
UntagColumnOperation?: never;
|
|
199
|
+
OverrideDatasetParameterOperation?: never;
|
|
200
|
+
$unknown?: never;
|
|
201
|
+
}
|
|
202
|
+
interface CastColumnTypeOperationMember {
|
|
203
|
+
ProjectOperation?: never;
|
|
204
|
+
FilterOperation?: never;
|
|
205
|
+
CreateColumnsOperation?: never;
|
|
206
|
+
RenameColumnOperation?: never;
|
|
207
|
+
CastColumnTypeOperation: CastColumnTypeOperation;
|
|
208
|
+
TagColumnOperation?: never;
|
|
209
|
+
UntagColumnOperation?: never;
|
|
210
|
+
OverrideDatasetParameterOperation?: never;
|
|
211
|
+
$unknown?: never;
|
|
212
|
+
}
|
|
213
|
+
interface TagColumnOperationMember {
|
|
214
|
+
ProjectOperation?: never;
|
|
215
|
+
FilterOperation?: never;
|
|
216
|
+
CreateColumnsOperation?: never;
|
|
217
|
+
RenameColumnOperation?: never;
|
|
218
|
+
CastColumnTypeOperation?: never;
|
|
219
|
+
TagColumnOperation: TagColumnOperation;
|
|
220
|
+
UntagColumnOperation?: never;
|
|
221
|
+
OverrideDatasetParameterOperation?: never;
|
|
222
|
+
$unknown?: never;
|
|
223
|
+
}
|
|
224
|
+
interface UntagColumnOperationMember {
|
|
225
|
+
ProjectOperation?: never;
|
|
226
|
+
FilterOperation?: never;
|
|
227
|
+
CreateColumnsOperation?: never;
|
|
228
|
+
RenameColumnOperation?: never;
|
|
229
|
+
CastColumnTypeOperation?: never;
|
|
230
|
+
TagColumnOperation?: never;
|
|
231
|
+
UntagColumnOperation: UntagColumnOperation;
|
|
232
|
+
OverrideDatasetParameterOperation?: never;
|
|
233
|
+
$unknown?: never;
|
|
234
|
+
}
|
|
235
|
+
interface OverrideDatasetParameterOperationMember {
|
|
236
|
+
ProjectOperation?: never;
|
|
237
|
+
FilterOperation?: never;
|
|
238
|
+
CreateColumnsOperation?: never;
|
|
239
|
+
RenameColumnOperation?: never;
|
|
240
|
+
CastColumnTypeOperation?: never;
|
|
241
|
+
TagColumnOperation?: never;
|
|
242
|
+
UntagColumnOperation?: never;
|
|
243
|
+
OverrideDatasetParameterOperation: OverrideDatasetParameterOperation;
|
|
244
|
+
$unknown?: never;
|
|
245
|
+
}
|
|
246
|
+
interface $UnknownMember {
|
|
247
|
+
ProjectOperation?: never;
|
|
248
|
+
FilterOperation?: never;
|
|
249
|
+
CreateColumnsOperation?: never;
|
|
250
|
+
RenameColumnOperation?: never;
|
|
251
|
+
CastColumnTypeOperation?: never;
|
|
252
|
+
TagColumnOperation?: never;
|
|
253
|
+
UntagColumnOperation?: never;
|
|
254
|
+
OverrideDatasetParameterOperation?: never;
|
|
255
|
+
$unknown: [string, any];
|
|
256
|
+
}
|
|
257
|
+
interface Visitor<T> {
|
|
258
|
+
ProjectOperation: (value: ProjectOperation) => T;
|
|
259
|
+
FilterOperation: (value: FilterOperation) => T;
|
|
260
|
+
CreateColumnsOperation: (value: CreateColumnsOperation) => T;
|
|
261
|
+
RenameColumnOperation: (value: RenameColumnOperation) => T;
|
|
262
|
+
CastColumnTypeOperation: (value: CastColumnTypeOperation) => T;
|
|
263
|
+
TagColumnOperation: (value: TagColumnOperation) => T;
|
|
264
|
+
UntagColumnOperation: (value: UntagColumnOperation) => T;
|
|
265
|
+
OverrideDatasetParameterOperation: (
|
|
266
|
+
value: OverrideDatasetParameterOperation
|
|
267
|
+
) => T;
|
|
268
|
+
_: (name: string, value: any) => T;
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
export interface JoinKeyProperties {
|
|
272
|
+
UniqueKey?: boolean | undefined;
|
|
273
|
+
}
|
|
274
|
+
export interface JoinInstruction {
|
|
275
|
+
LeftOperand: string | undefined;
|
|
276
|
+
RightOperand: string | undefined;
|
|
277
|
+
LeftJoinKeyProperties?: JoinKeyProperties | undefined;
|
|
278
|
+
RightJoinKeyProperties?: JoinKeyProperties | undefined;
|
|
279
|
+
Type: JoinType | undefined;
|
|
280
|
+
OnClause: string | undefined;
|
|
281
|
+
}
|
|
139
282
|
export interface LogicalTableSource {
|
|
140
283
|
JoinInstruction?: JoinInstruction | undefined;
|
|
141
284
|
PhysicalTableId?: string | undefined;
|
|
@@ -309,6 +452,11 @@ export interface KeyPairCredentials {
|
|
|
309
452
|
PrivateKey: string | undefined;
|
|
310
453
|
PrivateKeyPassphrase?: string | undefined;
|
|
311
454
|
}
|
|
455
|
+
export interface OAuthClientCredentials {
|
|
456
|
+
ClientId?: string | undefined;
|
|
457
|
+
ClientSecret?: string | undefined;
|
|
458
|
+
Username?: string | undefined;
|
|
459
|
+
}
|
|
312
460
|
export interface WebProxyCredentials {
|
|
313
461
|
WebProxyUsername: string | undefined;
|
|
314
462
|
WebProxyPassword: string | undefined;
|
|
@@ -319,6 +467,7 @@ export interface DataSourceCredentials {
|
|
|
319
467
|
SecretArn?: string | undefined;
|
|
320
468
|
KeyPairCredentials?: KeyPairCredentials | undefined;
|
|
321
469
|
WebProxyCredentials?: WebProxyCredentials | undefined;
|
|
470
|
+
OAuthClientCredentials?: OAuthClientCredentials | undefined;
|
|
322
471
|
}
|
|
323
472
|
export interface CreateDataSourceRequest {
|
|
324
473
|
AwsAccountId: string | undefined;
|
|
@@ -497,6 +646,7 @@ export interface DataSetConfiguration {
|
|
|
497
646
|
export interface TemplateVersionDefinition {
|
|
498
647
|
DataSetConfigurations: DataSetConfiguration[] | undefined;
|
|
499
648
|
Sheets?: SheetDefinition[] | undefined;
|
|
649
|
+
TooltipSheets?: TooltipSheetDefinition[] | undefined;
|
|
500
650
|
CalculatedFields?: CalculatedField[] | undefined;
|
|
501
651
|
ParameterDeclarations?: ParameterDeclaration[] | undefined;
|
|
502
652
|
FilterGroups?: FilterGroup[] | undefined;
|
|
@@ -1485,6 +1635,24 @@ export interface DescribeAssetBundleImportJobResponse {
|
|
|
1485
1635
|
| undefined;
|
|
1486
1636
|
Warnings?: AssetBundleImportJobWarning[] | undefined;
|
|
1487
1637
|
}
|
|
1638
|
+
export interface DescribeAutomationJobRequest {
|
|
1639
|
+
AwsAccountId: string | undefined;
|
|
1640
|
+
AutomationGroupId: string | undefined;
|
|
1641
|
+
AutomationId: string | undefined;
|
|
1642
|
+
IncludeInputPayload?: boolean | undefined;
|
|
1643
|
+
IncludeOutputPayload?: boolean | undefined;
|
|
1644
|
+
JobId: string | undefined;
|
|
1645
|
+
}
|
|
1646
|
+
export interface DescribeAutomationJobResponse {
|
|
1647
|
+
Arn: string | undefined;
|
|
1648
|
+
CreatedAt?: Date | undefined;
|
|
1649
|
+
StartedAt?: Date | undefined;
|
|
1650
|
+
EndedAt?: Date | undefined;
|
|
1651
|
+
JobStatus: AutomationJobStatus | undefined;
|
|
1652
|
+
InputPayload?: string | undefined;
|
|
1653
|
+
OutputPayload?: string | undefined;
|
|
1654
|
+
RequestId?: string | undefined;
|
|
1655
|
+
}
|
|
1488
1656
|
export interface DescribeBrandRequest {
|
|
1489
1657
|
AwsAccountId: string | undefined;
|
|
1490
1658
|
BrandId: string | undefined;
|
|
@@ -1914,43 +2082,3 @@ export interface DescribeSelfUpgradeConfigurationResponse {
|
|
|
1914
2082
|
RequestId?: string | undefined;
|
|
1915
2083
|
Status?: number | undefined;
|
|
1916
2084
|
}
|
|
1917
|
-
export interface DescribeTemplateRequest {
|
|
1918
|
-
AwsAccountId: string | undefined;
|
|
1919
|
-
TemplateId: string | undefined;
|
|
1920
|
-
VersionNumber?: number | undefined;
|
|
1921
|
-
AliasName?: string | undefined;
|
|
1922
|
-
}
|
|
1923
|
-
export interface TemplateError {
|
|
1924
|
-
Type?: TemplateErrorType | undefined;
|
|
1925
|
-
Message?: string | undefined;
|
|
1926
|
-
ViolatedEntities?: Entity[] | undefined;
|
|
1927
|
-
}
|
|
1928
|
-
export interface TemplateVersion {
|
|
1929
|
-
CreatedTime?: Date | undefined;
|
|
1930
|
-
Errors?: TemplateError[] | undefined;
|
|
1931
|
-
VersionNumber?: number | undefined;
|
|
1932
|
-
Status?: ResourceStatus | undefined;
|
|
1933
|
-
DataSetConfigurations?: DataSetConfiguration[] | undefined;
|
|
1934
|
-
Description?: string | undefined;
|
|
1935
|
-
SourceEntityArn?: string | undefined;
|
|
1936
|
-
ThemeArn?: string | undefined;
|
|
1937
|
-
Sheets?: Sheet[] | undefined;
|
|
1938
|
-
}
|
|
1939
|
-
export interface Template {
|
|
1940
|
-
Arn?: string | undefined;
|
|
1941
|
-
Name?: string | undefined;
|
|
1942
|
-
Version?: TemplateVersion | undefined;
|
|
1943
|
-
TemplateId?: string | undefined;
|
|
1944
|
-
LastUpdatedTime?: Date | undefined;
|
|
1945
|
-
CreatedTime?: Date | undefined;
|
|
1946
|
-
}
|
|
1947
|
-
export interface DescribeTemplateResponse {
|
|
1948
|
-
Template?: Template | undefined;
|
|
1949
|
-
Status?: number | undefined;
|
|
1950
|
-
RequestId?: string | undefined;
|
|
1951
|
-
}
|
|
1952
|
-
export interface DescribeTemplateAliasRequest {
|
|
1953
|
-
AwsAccountId: string | undefined;
|
|
1954
|
-
TemplateId: string | undefined;
|
|
1955
|
-
AliasName: string | undefined;
|
|
1956
|
-
}
|