@aws-sdk/client-quicksight 3.423.0 → 3.427.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.
Files changed (43) hide show
  1. package/dist-cjs/commands/StartDashboardSnapshotJobCommand.js +2 -2
  2. package/dist-cjs/models/models_1.js +1 -0
  3. package/dist-cjs/models/models_2.js +8 -29
  4. package/dist-cjs/models/models_3.js +28 -10
  5. package/dist-cjs/models/models_4.js +9 -1
  6. package/dist-cjs/protocols/Aws_restJson1.js +6 -0
  7. package/dist-es/commands/StartDashboardSnapshotJobCommand.js +1 -1
  8. package/dist-es/models/models_1.js +1 -0
  9. package/dist-es/models/models_2.js +5 -25
  10. package/dist-es/models/models_3.js +26 -7
  11. package/dist-es/models/models_4.js +6 -0
  12. package/dist-es/protocols/Aws_restJson1.js +6 -0
  13. package/dist-types/QuickSightClient.d.ts +2 -0
  14. package/dist-types/commands/CreateAnalysisCommand.d.ts +7 -3
  15. package/dist-types/commands/CreateDashboardCommand.d.ts +7 -3
  16. package/dist-types/commands/CreateDataSourceCommand.d.ts +16 -0
  17. package/dist-types/commands/CreateFolderMembershipCommand.d.ts +2 -2
  18. package/dist-types/commands/CreateTemplateCommand.d.ts +7 -3
  19. package/dist-types/commands/DeleteFolderMembershipCommand.d.ts +1 -1
  20. package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +4 -3
  21. package/dist-types/commands/DescribeAssetBundleImportJobCommand.d.ts +8 -0
  22. package/dist-types/commands/DescribeDashboardDefinitionCommand.d.ts +4 -3
  23. package/dist-types/commands/DescribeDataSourceCommand.d.ts +16 -0
  24. package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +4 -3
  25. package/dist-types/commands/ListDataSourcesCommand.d.ts +16 -0
  26. package/dist-types/commands/StartAssetBundleImportJobCommand.d.ts +8 -0
  27. package/dist-types/commands/StartDashboardSnapshotJobCommand.d.ts +1 -1
  28. package/dist-types/commands/UpdateAnalysisCommand.d.ts +7 -3
  29. package/dist-types/commands/UpdateDashboardCommand.d.ts +7 -3
  30. package/dist-types/commands/UpdateDataSourceCommand.d.ts +16 -0
  31. package/dist-types/commands/UpdateTemplateCommand.d.ts +7 -3
  32. package/dist-types/models/models_0.d.ts +19 -0
  33. package/dist-types/models/models_1.d.ts +1 -0
  34. package/dist-types/models/models_2.d.ts +73 -132
  35. package/dist-types/models/models_3.d.ts +129 -77
  36. package/dist-types/models/models_4.d.ts +95 -2
  37. package/dist-types/ts3.4/commands/StartDashboardSnapshotJobCommand.d.ts +1 -1
  38. package/dist-types/ts3.4/models/models_0.d.ts +1 -0
  39. package/dist-types/ts3.4/models/models_1.d.ts +1 -0
  40. package/dist-types/ts3.4/models/models_2.d.ts +20 -37
  41. package/dist-types/ts3.4/models/models_3.d.ts +46 -25
  42. package/dist-types/ts3.4/models/models_4.d.ts +33 -1
  43. package/package.json +31 -31
@@ -254,11 +254,18 @@ export interface RdsParameters {
254
254
  InstanceId: string | undefined;
255
255
  Database: string | undefined;
256
256
  }
257
+ export interface RedshiftIAMParameters {
258
+ RoleArn: string | undefined;
259
+ DatabaseUser: string | undefined;
260
+ DatabaseGroups?: string[];
261
+ AutoCreateDatabaseUser?: boolean;
262
+ }
257
263
  export interface RedshiftParameters {
258
264
  Host?: string;
259
265
  Port?: number;
260
266
  Database: string | undefined;
261
267
  ClusterId?: string;
268
+ IAMParameters?: RedshiftIAMParameters;
262
269
  }
263
270
  export interface ManifestFileLocation {
264
271
  Bucket: string | undefined;
@@ -1382,6 +1389,15 @@ export interface ResourcePermission {
1382
1389
  Principal: string | undefined;
1383
1390
  Actions: string[] | undefined;
1384
1391
  }
1392
+ export declare const ValidationStrategyMode: {
1393
+ readonly LENIENT: "LENIENT";
1394
+ readonly STRICT: "STRICT";
1395
+ };
1396
+ export type ValidationStrategyMode =
1397
+ (typeof ValidationStrategyMode)[keyof typeof ValidationStrategyMode];
1398
+ export interface ValidationStrategy {
1399
+ Mode: ValidationStrategyMode | string | undefined;
1400
+ }
1385
1401
  export interface CreateAnalysisRequest {
1386
1402
  AwsAccountId: string | undefined;
1387
1403
  AnalysisId: string | undefined;
@@ -1392,6 +1408,7 @@ export interface CreateAnalysisRequest {
1392
1408
  ThemeArn?: string;
1393
1409
  Tags?: Tag[];
1394
1410
  Definition?: AnalysisDefinition;
1411
+ ValidationStrategy?: ValidationStrategy;
1395
1412
  }
1396
1413
  export interface CreateAnalysisResponse {
1397
1414
  Arn?: string;
@@ -1505,6 +1522,7 @@ export interface CreateDashboardRequest {
1505
1522
  DashboardPublishOptions?: DashboardPublishOptions;
1506
1523
  ThemeArn?: string;
1507
1524
  Definition?: DashboardVersionDefinition;
1525
+ ValidationStrategy?: ValidationStrategy;
1508
1526
  }
1509
1527
  export interface CreateDashboardResponse {
1510
1528
  Arn?: string;
@@ -1999,6 +2017,7 @@ export declare const MemberType: {
1999
2017
  readonly ANALYSIS: "ANALYSIS";
2000
2018
  readonly DASHBOARD: "DASHBOARD";
2001
2019
  readonly DATASET: "DATASET";
2020
+ readonly DATASOURCE: "DATASOURCE";
2002
2021
  readonly TOPIC: "TOPIC";
2003
2022
  };
2004
2023
  export type MemberType = (typeof MemberType)[keyof typeof MemberType];
@@ -2207,6 +2226,7 @@ export interface CreateTemplateRequest {
2207
2226
  Tags?: Tag[];
2208
2227
  VersionDescription?: string;
2209
2228
  Definition?: TemplateVersionDefinition;
2229
+ ValidationStrategy?: ValidationStrategy;
2210
2230
  }
2211
2231
  export interface CreateTemplateResponse {
2212
2232
  Arn?: string;
@@ -2752,42 +2772,6 @@ export interface OutputColumn {
2752
2772
  Description?: string;
2753
2773
  Type?: ColumnDataType | string;
2754
2774
  }
2755
- export interface DataSet {
2756
- Arn?: string;
2757
- DataSetId?: string;
2758
- Name?: string;
2759
- CreatedTime?: Date;
2760
- LastUpdatedTime?: Date;
2761
- PhysicalTableMap?: Record<string, PhysicalTable>;
2762
- LogicalTableMap?: Record<string, LogicalTable>;
2763
- OutputColumns?: OutputColumn[];
2764
- ImportMode?: DataSetImportMode | string;
2765
- ConsumedSpiceCapacityInBytes?: number;
2766
- ColumnGroups?: ColumnGroup[];
2767
- FieldFolders?: Record<string, FieldFolder>;
2768
- RowLevelPermissionDataSet?: RowLevelPermissionDataSet;
2769
- RowLevelPermissionTagConfiguration?: RowLevelPermissionTagConfiguration;
2770
- ColumnLevelPermissionRules?: ColumnLevelPermissionRule[];
2771
- DataSetUsageConfiguration?: DataSetUsageConfiguration;
2772
- DatasetParameters?: DatasetParameter[];
2773
- }
2774
- export declare const DataSetFilterAttribute: {
2775
- readonly DATASET_NAME: "DATASET_NAME";
2776
- readonly DIRECT_QUICKSIGHT_OWNER: "DIRECT_QUICKSIGHT_OWNER";
2777
- readonly DIRECT_QUICKSIGHT_SOLE_OWNER: "DIRECT_QUICKSIGHT_SOLE_OWNER";
2778
- readonly DIRECT_QUICKSIGHT_VIEWER_OR_OWNER: "DIRECT_QUICKSIGHT_VIEWER_OR_OWNER";
2779
- readonly QUICKSIGHT_OWNER: "QUICKSIGHT_OWNER";
2780
- readonly QUICKSIGHT_VIEWER_OR_OWNER: "QUICKSIGHT_VIEWER_OR_OWNER";
2781
- };
2782
- export type DataSetFilterAttribute =
2783
- (typeof DataSetFilterAttribute)[keyof typeof DataSetFilterAttribute];
2784
- export declare const LookbackWindowSizeUnit: {
2785
- readonly DAY: "DAY";
2786
- readonly HOUR: "HOUR";
2787
- readonly WEEK: "WEEK";
2788
- };
2789
- export type LookbackWindowSizeUnit =
2790
- (typeof LookbackWindowSizeUnit)[keyof typeof LookbackWindowSizeUnit];
2791
2775
  export declare const SnapshotJobResultFileGroupFilterSensitiveLog: (
2792
2776
  obj: SnapshotJobResultFileGroup
2793
2777
  ) => any;
@@ -2902,4 +2886,3 @@ export declare const TopicDetailsFilterSensitiveLog: (obj: TopicDetails) => any;
2902
2886
  export declare const CreateTopicRequestFilterSensitiveLog: (
2903
2887
  obj: CreateTopicRequest
2904
2888
  ) => any;
2905
- export declare const DataSetFilterSensitiveLog: (obj: DataSet) => any;
@@ -37,6 +37,8 @@ import {
37
37
  AssetBundleImportSourceDescription,
38
38
  AssignmentStatus,
39
39
  BookmarksConfigurations,
40
+ ColumnGroup,
41
+ ColumnLevelPermissionRule,
40
42
  Dashboard,
41
43
  DashboardError,
42
44
  DashboardPublishOptions,
@@ -44,23 +46,27 @@ import {
44
46
  DashboardSummary,
45
47
  DashboardVersionDefinition,
46
48
  DashboardVersionSummary,
47
- DataSet,
48
49
  DataSetConfiguration,
49
- DataSetFilterAttribute,
50
50
  DataSetImportMode,
51
+ DatasetParameter,
52
+ DataSetUsageConfiguration,
51
53
  DataSourceParameters,
52
54
  DataSourceType,
55
+ FieldFolder,
53
56
  FolderType,
54
57
  Group,
55
58
  GroupMember,
56
59
  IdentityStore,
57
60
  IngestionStatus,
58
- LookbackWindowSizeUnit,
61
+ LogicalTable,
59
62
  MemberType,
60
63
  NamespaceStatus,
64
+ OutputColumn,
65
+ PhysicalTable,
61
66
  RefreshSchedule,
62
67
  ResourcePermission,
63
68
  RowLevelPermissionDataSet,
69
+ RowLevelPermissionTagConfiguration,
64
70
  SharingModel,
65
71
  SslProperties,
66
72
  Tag,
@@ -75,6 +81,42 @@ import {
75
81
  VPCConnectionResourceStatus,
76
82
  } from "./models_2";
77
83
  import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
84
+ export interface DataSet {
85
+ Arn?: string;
86
+ DataSetId?: string;
87
+ Name?: string;
88
+ CreatedTime?: Date;
89
+ LastUpdatedTime?: Date;
90
+ PhysicalTableMap?: Record<string, PhysicalTable>;
91
+ LogicalTableMap?: Record<string, LogicalTable>;
92
+ OutputColumns?: OutputColumn[];
93
+ ImportMode?: DataSetImportMode | string;
94
+ ConsumedSpiceCapacityInBytes?: number;
95
+ ColumnGroups?: ColumnGroup[];
96
+ FieldFolders?: Record<string, FieldFolder>;
97
+ RowLevelPermissionDataSet?: RowLevelPermissionDataSet;
98
+ RowLevelPermissionTagConfiguration?: RowLevelPermissionTagConfiguration;
99
+ ColumnLevelPermissionRules?: ColumnLevelPermissionRule[];
100
+ DataSetUsageConfiguration?: DataSetUsageConfiguration;
101
+ DatasetParameters?: DatasetParameter[];
102
+ }
103
+ export declare const DataSetFilterAttribute: {
104
+ readonly DATASET_NAME: "DATASET_NAME";
105
+ readonly DIRECT_QUICKSIGHT_OWNER: "DIRECT_QUICKSIGHT_OWNER";
106
+ readonly DIRECT_QUICKSIGHT_SOLE_OWNER: "DIRECT_QUICKSIGHT_SOLE_OWNER";
107
+ readonly DIRECT_QUICKSIGHT_VIEWER_OR_OWNER: "DIRECT_QUICKSIGHT_VIEWER_OR_OWNER";
108
+ readonly QUICKSIGHT_OWNER: "QUICKSIGHT_OWNER";
109
+ readonly QUICKSIGHT_VIEWER_OR_OWNER: "QUICKSIGHT_VIEWER_OR_OWNER";
110
+ };
111
+ export type DataSetFilterAttribute =
112
+ (typeof DataSetFilterAttribute)[keyof typeof DataSetFilterAttribute];
113
+ export declare const LookbackWindowSizeUnit: {
114
+ readonly DAY: "DAY";
115
+ readonly HOUR: "HOUR";
116
+ readonly WEEK: "WEEK";
117
+ };
118
+ export type LookbackWindowSizeUnit =
119
+ (typeof LookbackWindowSizeUnit)[keyof typeof LookbackWindowSizeUnit];
78
120
  export interface LookbackWindow {
79
121
  ColumnName: string | undefined;
80
122
  Size: number | undefined;
@@ -1910,22 +1952,7 @@ export interface StartAssetBundleImportJobResponse {
1910
1952
  export interface SnapshotAnonymousUser {
1911
1953
  RowLevelPermissionTags?: SessionTag[];
1912
1954
  }
1913
- export interface SnapshotUserConfiguration {
1914
- AnonymousUsers?: SnapshotAnonymousUser[];
1915
- }
1916
- export interface StartDashboardSnapshotJobRequest {
1917
- AwsAccountId: string | undefined;
1918
- DashboardId: string | undefined;
1919
- SnapshotJobId: string | undefined;
1920
- UserConfiguration: SnapshotUserConfiguration | undefined;
1921
- SnapshotConfiguration: SnapshotConfiguration | undefined;
1922
- }
1923
- export interface StartDashboardSnapshotJobResponse {
1924
- Arn?: string;
1925
- SnapshotJobId?: string;
1926
- RequestId?: string;
1927
- Status?: number;
1928
- }
1955
+ export declare const DataSetFilterSensitiveLog: (obj: DataSet) => any;
1929
1956
  export declare const DescribeAnalysisDefinitionResponseFilterSensitiveLog: (
1930
1957
  obj: DescribeAnalysisDefinitionResponse
1931
1958
  ) => any;
@@ -1978,9 +2005,3 @@ export declare const StartAssetBundleImportJobRequestFilterSensitiveLog: (
1978
2005
  export declare const SnapshotAnonymousUserFilterSensitiveLog: (
1979
2006
  obj: SnapshotAnonymousUser
1980
2007
  ) => any;
1981
- export declare const SnapshotUserConfigurationFilterSensitiveLog: (
1982
- obj: SnapshotUserConfiguration
1983
- ) => any;
1984
- export declare const StartDashboardSnapshotJobRequestFilterSensitiveLog: (
1985
- obj: StartDashboardSnapshotJobRequest
1986
- ) => any;
@@ -30,11 +30,34 @@ import {
30
30
  ThemeConfiguration,
31
31
  TopicDetails,
32
32
  TopicRefreshSchedule,
33
+ ValidationStrategy,
33
34
  VPCConnectionAvailabilityStatus,
34
35
  VpcConnectionProperties,
35
36
  VPCConnectionResourceStatus,
36
37
  } from "./models_2";
37
- import { LinkSharingConfiguration, User, UserRole } from "./models_3";
38
+ import {
39
+ LinkSharingConfiguration,
40
+ SnapshotAnonymousUser,
41
+ SnapshotConfiguration,
42
+ User,
43
+ UserRole,
44
+ } from "./models_3";
45
+ export interface SnapshotUserConfiguration {
46
+ AnonymousUsers?: SnapshotAnonymousUser[];
47
+ }
48
+ export interface StartDashboardSnapshotJobRequest {
49
+ AwsAccountId: string | undefined;
50
+ DashboardId: string | undefined;
51
+ SnapshotJobId: string | undefined;
52
+ UserConfiguration: SnapshotUserConfiguration | undefined;
53
+ SnapshotConfiguration: SnapshotConfiguration | undefined;
54
+ }
55
+ export interface StartDashboardSnapshotJobResponse {
56
+ Arn?: string;
57
+ SnapshotJobId?: string;
58
+ RequestId?: string;
59
+ Status?: number;
60
+ }
38
61
  export interface TagResourceRequest {
39
62
  ResourceArn: string | undefined;
40
63
  Tags: Tag[] | undefined;
@@ -82,6 +105,7 @@ export interface UpdateAnalysisRequest {
82
105
  SourceEntity?: AnalysisSourceEntity;
83
106
  ThemeArn?: string;
84
107
  Definition?: AnalysisDefinition;
108
+ ValidationStrategy?: ValidationStrategy;
85
109
  }
86
110
  export interface UpdateAnalysisResponse {
87
111
  Arn?: string;
@@ -113,6 +137,7 @@ export interface UpdateDashboardRequest {
113
137
  DashboardPublishOptions?: DashboardPublishOptions;
114
138
  ThemeArn?: string;
115
139
  Definition?: DashboardVersionDefinition;
140
+ ValidationStrategy?: ValidationStrategy;
116
141
  }
117
142
  export interface UpdateDashboardResponse {
118
143
  Arn?: string;
@@ -300,6 +325,7 @@ export interface UpdateTemplateRequest {
300
325
  VersionDescription?: string;
301
326
  Name?: string;
302
327
  Definition?: TemplateVersionDefinition;
328
+ ValidationStrategy?: ValidationStrategy;
303
329
  }
304
330
  export interface UpdateTemplateResponse {
305
331
  TemplateId?: string;
@@ -445,6 +471,12 @@ export interface UpdateVPCConnectionResponse {
445
471
  RequestId?: string;
446
472
  Status?: number;
447
473
  }
474
+ export declare const SnapshotUserConfigurationFilterSensitiveLog: (
475
+ obj: SnapshotUserConfiguration
476
+ ) => any;
477
+ export declare const StartDashboardSnapshotJobRequestFilterSensitiveLog: (
478
+ obj: StartDashboardSnapshotJobRequest
479
+ ) => any;
448
480
  export declare const UpdateAnalysisRequestFilterSensitiveLog: (
449
481
  obj: UpdateAnalysisRequest
450
482
  ) => any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-quicksight",
3
3
  "description": "AWS SDK for JavaScript Quicksight Client for Node.js, Browser and React Native",
4
- "version": "3.423.0",
4
+ "version": "3.427.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,39 +21,39 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.423.0",
25
- "@aws-sdk/credential-provider-node": "3.423.0",
26
- "@aws-sdk/middleware-host-header": "3.418.0",
27
- "@aws-sdk/middleware-logger": "3.418.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.418.0",
29
- "@aws-sdk/middleware-signing": "3.418.0",
30
- "@aws-sdk/middleware-user-agent": "3.418.0",
31
- "@aws-sdk/region-config-resolver": "3.418.0",
32
- "@aws-sdk/types": "3.418.0",
33
- "@aws-sdk/util-endpoints": "3.418.0",
34
- "@aws-sdk/util-user-agent-browser": "3.418.0",
35
- "@aws-sdk/util-user-agent-node": "3.418.0",
36
- "@smithy/config-resolver": "^2.0.10",
37
- "@smithy/fetch-http-handler": "^2.1.5",
38
- "@smithy/hash-node": "^2.0.9",
39
- "@smithy/invalid-dependency": "^2.0.9",
40
- "@smithy/middleware-content-length": "^2.0.11",
41
- "@smithy/middleware-endpoint": "^2.0.9",
42
- "@smithy/middleware-retry": "^2.0.12",
43
- "@smithy/middleware-serde": "^2.0.9",
44
- "@smithy/middleware-stack": "^2.0.2",
45
- "@smithy/node-config-provider": "^2.0.12",
46
- "@smithy/node-http-handler": "^2.1.5",
47
- "@smithy/protocol-http": "^3.0.5",
48
- "@smithy/smithy-client": "^2.1.6",
49
- "@smithy/types": "^2.3.3",
50
- "@smithy/url-parser": "^2.0.9",
24
+ "@aws-sdk/client-sts": "3.427.0",
25
+ "@aws-sdk/credential-provider-node": "3.427.0",
26
+ "@aws-sdk/middleware-host-header": "3.425.0",
27
+ "@aws-sdk/middleware-logger": "3.425.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.425.0",
29
+ "@aws-sdk/middleware-signing": "3.425.0",
30
+ "@aws-sdk/middleware-user-agent": "3.427.0",
31
+ "@aws-sdk/region-config-resolver": "3.425.0",
32
+ "@aws-sdk/types": "3.425.0",
33
+ "@aws-sdk/util-endpoints": "3.427.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.425.0",
35
+ "@aws-sdk/util-user-agent-node": "3.425.0",
36
+ "@smithy/config-resolver": "^2.0.11",
37
+ "@smithy/fetch-http-handler": "^2.2.1",
38
+ "@smithy/hash-node": "^2.0.10",
39
+ "@smithy/invalid-dependency": "^2.0.10",
40
+ "@smithy/middleware-content-length": "^2.0.12",
41
+ "@smithy/middleware-endpoint": "^2.0.10",
42
+ "@smithy/middleware-retry": "^2.0.13",
43
+ "@smithy/middleware-serde": "^2.0.10",
44
+ "@smithy/middleware-stack": "^2.0.4",
45
+ "@smithy/node-config-provider": "^2.0.13",
46
+ "@smithy/node-http-handler": "^2.1.6",
47
+ "@smithy/protocol-http": "^3.0.6",
48
+ "@smithy/smithy-client": "^2.1.9",
49
+ "@smithy/types": "^2.3.4",
50
+ "@smithy/url-parser": "^2.0.10",
51
51
  "@smithy/util-base64": "^2.0.0",
52
52
  "@smithy/util-body-length-browser": "^2.0.0",
53
53
  "@smithy/util-body-length-node": "^2.1.0",
54
- "@smithy/util-defaults-mode-browser": "^2.0.10",
55
- "@smithy/util-defaults-mode-node": "^2.0.12",
56
- "@smithy/util-retry": "^2.0.2",
54
+ "@smithy/util-defaults-mode-browser": "^2.0.13",
55
+ "@smithy/util-defaults-mode-node": "^2.0.15",
56
+ "@smithy/util-retry": "^2.0.3",
57
57
  "@smithy/util-utf8": "^2.0.0",
58
58
  "tslib": "^2.5.0"
59
59
  },