@aws-sdk/client-quicksight 3.635.0 → 3.642.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 (31) hide show
  1. package/dist-cjs/index.js +157 -112
  2. package/dist-es/commands/CreateDataSourceCommand.js +1 -1
  3. package/dist-es/models/models_0.js +4 -0
  4. package/dist-es/models/models_1.js +0 -3
  5. package/dist-es/models/models_2.js +22 -59
  6. package/dist-es/models/models_3.js +63 -31
  7. package/dist-es/models/models_4.js +31 -0
  8. package/dist-es/protocols/Aws_restJson1.js +7 -3
  9. package/dist-types/commands/CreateAnalysisCommand.d.ts +3 -0
  10. package/dist-types/commands/CreateDataSourceCommand.d.ts +1 -1
  11. package/dist-types/commands/CreateTemplateCommand.d.ts +3 -0
  12. package/dist-types/commands/DescribeAnalysisDefinitionCommand.d.ts +3 -0
  13. package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +3 -0
  14. package/dist-types/commands/DescribeVPCConnectionCommand.d.ts +2 -1
  15. package/dist-types/commands/GenerateEmbedUrlForAnonymousUserCommand.d.ts +11 -0
  16. package/dist-types/commands/GenerateEmbedUrlForRegisteredUserCommand.d.ts +6 -0
  17. package/dist-types/commands/UpdateAnalysisCommand.d.ts +3 -0
  18. package/dist-types/commands/UpdateTemplateCommand.d.ts +3 -0
  19. package/dist-types/models/models_0.d.ts +23 -58
  20. package/dist-types/models/models_1.d.ts +59 -63
  21. package/dist-types/models/models_2.d.ts +138 -179
  22. package/dist-types/models/models_3.d.ts +188 -172
  23. package/dist-types/models/models_4.d.ts +184 -2
  24. package/dist-types/ts3.4/commands/CreateDataSourceCommand.d.ts +1 -1
  25. package/dist-types/ts3.4/commands/DescribeVPCConnectionCommand.d.ts +2 -4
  26. package/dist-types/ts3.4/models/models_0.d.ts +9 -8
  27. package/dist-types/ts3.4/models/models_1.d.ts +9 -18
  28. package/dist-types/ts3.4/models/models_2.d.ts +46 -81
  29. package/dist-types/ts3.4/models/models_3.d.ts +82 -59
  30. package/dist-types/ts3.4/models/models_4.d.ts +61 -4
  31. package/package.json +6 -6
@@ -12,14 +12,13 @@ import {
12
12
  DataLabelOptions,
13
13
  DataLabelPosition,
14
14
  DimensionField,
15
- FieldSort,
16
15
  FontConfiguration,
17
16
  FormatConfiguration,
18
17
  HorizontalTextAlignment,
19
- ItemsLimitConfiguration,
20
18
  LegendOptions,
21
19
  MeasureField,
22
20
  NumberDisplayFormatConfiguration,
21
+ OtherCategories,
23
22
  PercentageDisplayFormatConfiguration,
24
23
  ReferenceLine,
25
24
  SmallMultiplesOptions,
@@ -31,6 +30,14 @@ import {
31
30
  VisualInteractionOptions,
32
31
  WidgetStatus,
33
32
  } from "./models_0";
33
+ export interface ItemsLimitConfiguration {
34
+ ItemsLimit?: number;
35
+ OtherCategories?: OtherCategories;
36
+ }
37
+ export interface FieldSort {
38
+ FieldId: string | undefined;
39
+ Direction: SortDirection | undefined;
40
+ }
34
41
  export interface FieldSortOptions {
35
42
  FieldSort?: FieldSort;
36
43
  ColumnSort?: ColumnSort;
@@ -1739,19 +1746,6 @@ export interface TreeMapConfiguration {
1739
1746
  Tooltip?: TooltipOptions;
1740
1747
  Interactions?: VisualInteractionOptions;
1741
1748
  }
1742
- export interface TreeMapVisual {
1743
- VisualId: string | undefined;
1744
- Title?: VisualTitleLabelOptions;
1745
- Subtitle?: VisualSubtitleLabelOptions;
1746
- ChartConfiguration?: TreeMapConfiguration;
1747
- Actions?: VisualCustomAction[];
1748
- ColumnHierarchies?: ColumnHierarchy[];
1749
- }
1750
- export interface WaterfallChartGroupColorConfiguration {
1751
- PositiveBarColor?: string;
1752
- NegativeBarColor?: string;
1753
- TotalBarColor?: string;
1754
- }
1755
1749
  export declare const DataPathValueFilterSensitiveLog: (
1756
1750
  obj: DataPathValue
1757
1751
  ) => any;
@@ -2128,6 +2122,3 @@ export declare const TreeMapFieldWellsFilterSensitiveLog: (
2128
2122
  export declare const TreeMapConfigurationFilterSensitiveLog: (
2129
2123
  obj: TreeMapConfiguration
2130
2124
  ) => any;
2131
- export declare const TreeMapVisualFilterSensitiveLog: (
2132
- obj: TreeMapVisual
2133
- ) => any;
@@ -20,13 +20,13 @@ import {
20
20
  Edition,
21
21
  FilterControl,
22
22
  FilterGroup,
23
- ItemsLimitConfiguration,
24
23
  Layout,
25
24
  LegendOptions,
26
25
  MeasureField,
27
26
  NumberScale,
28
27
  ParameterControl,
29
28
  ParameterDeclaration,
29
+ QueryExecutionOptions,
30
30
  ResourceStatus,
31
31
  SheetContentType,
32
32
  SheetControlLayout,
@@ -52,6 +52,7 @@ import {
52
52
  HeatMapVisual,
53
53
  HistogramVisual,
54
54
  InsightVisual,
55
+ ItemsLimitConfiguration,
55
56
  KPIVisual,
56
57
  LineChartVisual,
57
58
  PieChartVisual,
@@ -60,13 +61,25 @@ import {
60
61
  SankeyDiagramVisual,
61
62
  ScatterPlotVisual,
62
63
  TableVisual,
63
- TreeMapVisual,
64
+ TreeMapConfiguration,
64
65
  VisualPalette,
65
66
  VisualSubtitleLabelOptions,
66
67
  VisualTitleLabelOptions,
67
- WaterfallChartGroupColorConfiguration,
68
68
  } from "./models_1";
69
69
  import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
70
+ export interface TreeMapVisual {
71
+ VisualId: string | undefined;
72
+ Title?: VisualTitleLabelOptions;
73
+ Subtitle?: VisualSubtitleLabelOptions;
74
+ ChartConfiguration?: TreeMapConfiguration;
75
+ Actions?: VisualCustomAction[];
76
+ ColumnHierarchies?: ColumnHierarchy[];
77
+ }
78
+ export interface WaterfallChartGroupColorConfiguration {
79
+ PositiveBarColor?: string;
80
+ NegativeBarColor?: string;
81
+ TotalBarColor?: string;
82
+ }
70
83
  export interface WaterfallChartColorConfiguration {
71
84
  GroupColorConfiguration?: WaterfallChartGroupColorConfiguration;
72
85
  }
@@ -220,6 +233,7 @@ export interface AnalysisDefinition {
220
233
  ColumnConfigurations?: ColumnConfiguration[];
221
234
  AnalysisDefaults?: AnalysisDefaults;
222
235
  Options?: AssetOptions;
236
+ QueryExecutionOptions?: QueryExecutionOptions;
223
237
  }
224
238
  export declare const AnalysisFilterAttribute: {
225
239
  readonly ANALYSIS_NAME: "ANALYSIS_NAME";
@@ -271,8 +285,27 @@ export interface Anchor {
271
285
  TimeGranularity?: TimeGranularity;
272
286
  Offset?: number;
273
287
  }
288
+ export declare const AnonymousUserDashboardEmbeddingConfigurationDisabledFeature: {
289
+ readonly SHARED_VIEW: "SHARED_VIEW";
290
+ };
291
+ export type AnonymousUserDashboardEmbeddingConfigurationDisabledFeature =
292
+ (typeof AnonymousUserDashboardEmbeddingConfigurationDisabledFeature)[keyof typeof AnonymousUserDashboardEmbeddingConfigurationDisabledFeature];
293
+ export declare const AnonymousUserDashboardEmbeddingConfigurationEnabledFeature: {
294
+ readonly SHARED_VIEW: "SHARED_VIEW";
295
+ };
296
+ export type AnonymousUserDashboardEmbeddingConfigurationEnabledFeature =
297
+ (typeof AnonymousUserDashboardEmbeddingConfigurationEnabledFeature)[keyof typeof AnonymousUserDashboardEmbeddingConfigurationEnabledFeature];
298
+ export interface SharedViewConfigurations {
299
+ Enabled: boolean | undefined;
300
+ }
301
+ export interface AnonymousUserDashboardFeatureConfigurations {
302
+ SharedView?: SharedViewConfigurations;
303
+ }
274
304
  export interface AnonymousUserDashboardEmbeddingConfiguration {
275
305
  InitialDashboardId: string | undefined;
306
+ EnabledFeatures?: AnonymousUserDashboardEmbeddingConfigurationEnabledFeature[];
307
+ DisabledFeatures?: AnonymousUserDashboardEmbeddingConfigurationDisabledFeature[];
308
+ FeatureConfigurations?: AnonymousUserDashboardFeatureConfigurations;
276
309
  }
277
310
  export interface DashboardVisualId {
278
311
  DashboardId: string | undefined;
@@ -2789,81 +2822,9 @@ export interface DataSourceCredentials {
2789
2822
  CopySourceArn?: string;
2790
2823
  SecretArn?: string;
2791
2824
  }
2792
- export declare const DataSourceType: {
2793
- readonly ADOBE_ANALYTICS: "ADOBE_ANALYTICS";
2794
- readonly AMAZON_ELASTICSEARCH: "AMAZON_ELASTICSEARCH";
2795
- readonly AMAZON_OPENSEARCH: "AMAZON_OPENSEARCH";
2796
- readonly ATHENA: "ATHENA";
2797
- readonly AURORA: "AURORA";
2798
- readonly AURORA_POSTGRESQL: "AURORA_POSTGRESQL";
2799
- readonly AWS_IOT_ANALYTICS: "AWS_IOT_ANALYTICS";
2800
- readonly BIGQUERY: "BIGQUERY";
2801
- readonly DATABRICKS: "DATABRICKS";
2802
- readonly EXASOL: "EXASOL";
2803
- readonly GITHUB: "GITHUB";
2804
- readonly JIRA: "JIRA";
2805
- readonly MARIADB: "MARIADB";
2806
- readonly MYSQL: "MYSQL";
2807
- readonly ORACLE: "ORACLE";
2808
- readonly POSTGRESQL: "POSTGRESQL";
2809
- readonly PRESTO: "PRESTO";
2810
- readonly REDSHIFT: "REDSHIFT";
2811
- readonly S3: "S3";
2812
- readonly SALESFORCE: "SALESFORCE";
2813
- readonly SERVICENOW: "SERVICENOW";
2814
- readonly SNOWFLAKE: "SNOWFLAKE";
2815
- readonly SPARK: "SPARK";
2816
- readonly SQLSERVER: "SQLSERVER";
2817
- readonly STARBURST: "STARBURST";
2818
- readonly TERADATA: "TERADATA";
2819
- readonly TIMESTREAM: "TIMESTREAM";
2820
- readonly TRINO: "TRINO";
2821
- readonly TWITTER: "TWITTER";
2822
- };
2823
- export type DataSourceType =
2824
- (typeof DataSourceType)[keyof typeof DataSourceType];
2825
- export interface CreateDataSourceRequest {
2826
- AwsAccountId: string | undefined;
2827
- DataSourceId: string | undefined;
2828
- Name: string | undefined;
2829
- Type: DataSourceType | undefined;
2830
- DataSourceParameters?: DataSourceParameters;
2831
- Credentials?: DataSourceCredentials;
2832
- Permissions?: ResourcePermission[];
2833
- VpcConnectionProperties?: VpcConnectionProperties;
2834
- SslProperties?: SslProperties;
2835
- Tags?: Tag[];
2836
- FolderArns?: string[];
2837
- }
2838
- export interface CreateDataSourceResponse {
2839
- Arn?: string;
2840
- DataSourceId?: string;
2841
- CreationStatus?: ResourceStatus;
2842
- RequestId?: string;
2843
- Status?: number;
2844
- }
2845
- export declare class CustomerManagedKeyUnavailableException extends __BaseException {
2846
- readonly name: "CustomerManagedKeyUnavailableException";
2847
- readonly $fault: "client";
2848
- Message?: string;
2849
- RequestId?: string;
2850
- constructor(
2851
- opts: __ExceptionOptionType<
2852
- CustomerManagedKeyUnavailableException,
2853
- __BaseException
2854
- >
2855
- );
2856
- }
2857
- export declare const FolderType: {
2858
- readonly RESTRICTED: "RESTRICTED";
2859
- readonly SHARED: "SHARED";
2860
- };
2861
- export type FolderType = (typeof FolderType)[keyof typeof FolderType];
2862
- export declare const SharingModel: {
2863
- readonly ACCOUNT: "ACCOUNT";
2864
- readonly NAMESPACE: "NAMESPACE";
2865
- };
2866
- export type SharingModel = (typeof SharingModel)[keyof typeof SharingModel];
2825
+ export declare const TreeMapVisualFilterSensitiveLog: (
2826
+ obj: TreeMapVisual
2827
+ ) => any;
2867
2828
  export declare const WaterfallChartAggregatedFieldWellsFilterSensitiveLog: (
2868
2829
  obj: WaterfallChartAggregatedFieldWells
2869
2830
  ) => any;
@@ -2929,6 +2890,10 @@ export declare const TopicIRFilterSensitiveLog: (obj: TopicIR) => any;
2929
2890
  export declare const CalculatedColumnFilterSensitiveLog: (
2930
2891
  obj: CalculatedColumn
2931
2892
  ) => any;
2893
+ export declare const ColumnDescriptionFilterSensitiveLog: (
2894
+ obj: ColumnDescription
2895
+ ) => any;
2896
+ export declare const ColumnTagFilterSensitiveLog: (obj: ColumnTag) => any;
2932
2897
  export declare const DateTimeParameterFilterSensitiveLog: (
2933
2898
  obj: DateTimeParameter
2934
2899
  ) => any;
@@ -2957,6 +2922,9 @@ export declare const CreateDashboardRequestFilterSensitiveLog: (
2957
2922
  export declare const FilterOperationFilterSensitiveLog: (
2958
2923
  obj: FilterOperation
2959
2924
  ) => any;
2925
+ export declare const TagColumnOperationFilterSensitiveLog: (
2926
+ obj: TagColumnOperation
2927
+ ) => any;
2960
2928
  export declare const TransformOperationFilterSensitiveLog: (
2961
2929
  obj: TransformOperation
2962
2930
  ) => any;
@@ -2973,6 +2941,3 @@ export declare const CreateDataSetRequestFilterSensitiveLog: (
2973
2941
  export declare const DataSourceCredentialsFilterSensitiveLog: (
2974
2942
  obj: DataSourceCredentials
2975
2943
  ) => any;
2976
- export declare const CreateDataSourceRequestFilterSensitiveLog: (
2977
- obj: CreateDataSourceRequest
2978
- ) => any;
@@ -12,6 +12,7 @@ import {
12
12
  Entity,
13
13
  FilterGroup,
14
14
  ParameterDeclaration,
15
+ QueryExecutionOptions,
15
16
  ResourceStatus,
16
17
  Sheet,
17
18
  TopicTimeGranularity,
@@ -57,14 +58,13 @@ import {
57
58
  DatasetParameter,
58
59
  DataSetReference,
59
60
  DataSetUsageConfiguration,
61
+ DataSourceCredentials,
60
62
  DataSourceParameters,
61
- DataSourceType,
62
63
  DisplayFormat,
63
64
  DisplayFormatOptions,
64
65
  FieldFolder,
65
66
  FilterClass,
66
67
  FilterOperator,
67
- FolderType,
68
68
  LinkSharingConfiguration,
69
69
  LogicalTable,
70
70
  PhysicalTable,
@@ -72,7 +72,6 @@ import {
72
72
  RowLevelPermissionDataSet,
73
73
  RowLevelPermissionTagConfiguration,
74
74
  ServiceType,
75
- SharingModel,
76
75
  SheetDefinition,
77
76
  SnapshotFile,
78
77
  SnapshotS3DestinationConfiguration,
@@ -82,6 +81,81 @@ import {
82
81
  VpcConnectionProperties,
83
82
  } from "./models_2";
84
83
  import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
84
+ export declare const DataSourceType: {
85
+ readonly ADOBE_ANALYTICS: "ADOBE_ANALYTICS";
86
+ readonly AMAZON_ELASTICSEARCH: "AMAZON_ELASTICSEARCH";
87
+ readonly AMAZON_OPENSEARCH: "AMAZON_OPENSEARCH";
88
+ readonly ATHENA: "ATHENA";
89
+ readonly AURORA: "AURORA";
90
+ readonly AURORA_POSTGRESQL: "AURORA_POSTGRESQL";
91
+ readonly AWS_IOT_ANALYTICS: "AWS_IOT_ANALYTICS";
92
+ readonly BIGQUERY: "BIGQUERY";
93
+ readonly DATABRICKS: "DATABRICKS";
94
+ readonly EXASOL: "EXASOL";
95
+ readonly GITHUB: "GITHUB";
96
+ readonly JIRA: "JIRA";
97
+ readonly MARIADB: "MARIADB";
98
+ readonly MYSQL: "MYSQL";
99
+ readonly ORACLE: "ORACLE";
100
+ readonly POSTGRESQL: "POSTGRESQL";
101
+ readonly PRESTO: "PRESTO";
102
+ readonly REDSHIFT: "REDSHIFT";
103
+ readonly S3: "S3";
104
+ readonly SALESFORCE: "SALESFORCE";
105
+ readonly SERVICENOW: "SERVICENOW";
106
+ readonly SNOWFLAKE: "SNOWFLAKE";
107
+ readonly SPARK: "SPARK";
108
+ readonly SQLSERVER: "SQLSERVER";
109
+ readonly STARBURST: "STARBURST";
110
+ readonly TERADATA: "TERADATA";
111
+ readonly TIMESTREAM: "TIMESTREAM";
112
+ readonly TRINO: "TRINO";
113
+ readonly TWITTER: "TWITTER";
114
+ };
115
+ export type DataSourceType =
116
+ (typeof DataSourceType)[keyof typeof DataSourceType];
117
+ export interface CreateDataSourceRequest {
118
+ AwsAccountId: string | undefined;
119
+ DataSourceId: string | undefined;
120
+ Name: string | undefined;
121
+ Type: DataSourceType | undefined;
122
+ DataSourceParameters?: DataSourceParameters;
123
+ Credentials?: DataSourceCredentials;
124
+ Permissions?: ResourcePermission[];
125
+ VpcConnectionProperties?: VpcConnectionProperties;
126
+ SslProperties?: SslProperties;
127
+ Tags?: Tag[];
128
+ FolderArns?: string[];
129
+ }
130
+ export interface CreateDataSourceResponse {
131
+ Arn?: string;
132
+ DataSourceId?: string;
133
+ CreationStatus?: ResourceStatus;
134
+ RequestId?: string;
135
+ Status?: number;
136
+ }
137
+ export declare class CustomerManagedKeyUnavailableException extends __BaseException {
138
+ readonly name: "CustomerManagedKeyUnavailableException";
139
+ readonly $fault: "client";
140
+ Message?: string;
141
+ RequestId?: string;
142
+ constructor(
143
+ opts: __ExceptionOptionType<
144
+ CustomerManagedKeyUnavailableException,
145
+ __BaseException
146
+ >
147
+ );
148
+ }
149
+ export declare const FolderType: {
150
+ readonly RESTRICTED: "RESTRICTED";
151
+ readonly SHARED: "SHARED";
152
+ };
153
+ export type FolderType = (typeof FolderType)[keyof typeof FolderType];
154
+ export declare const SharingModel: {
155
+ readonly ACCOUNT: "ACCOUNT";
156
+ readonly NAMESPACE: "NAMESPACE";
157
+ };
158
+ export type SharingModel = (typeof SharingModel)[keyof typeof SharingModel];
85
159
  export interface CreateFolderRequest {
86
160
  AwsAccountId: string | undefined;
87
161
  FolderId: string | undefined;
@@ -310,6 +384,7 @@ export interface TemplateVersionDefinition {
310
384
  ColumnConfigurations?: ColumnConfiguration[];
311
385
  AnalysisDefaults?: AnalysisDefaults;
312
386
  Options?: AssetOptions;
387
+ QueryExecutionOptions?: QueryExecutionOptions;
313
388
  }
314
389
  export interface TemplateSourceAnalysis {
315
390
  Arn: string | undefined;
@@ -1994,62 +2069,9 @@ export interface DescribeVPCConnectionRequest {
1994
2069
  AwsAccountId: string | undefined;
1995
2070
  VPCConnectionId: string | undefined;
1996
2071
  }
1997
- export declare const NetworkInterfaceStatus: {
1998
- readonly ATTACHMENT_FAILED_ROLLBACK_FAILED: "ATTACHMENT_FAILED_ROLLBACK_FAILED";
1999
- readonly AVAILABLE: "AVAILABLE";
2000
- readonly CREATING: "CREATING";
2001
- readonly CREATION_FAILED: "CREATION_FAILED";
2002
- readonly DELETED: "DELETED";
2003
- readonly DELETING: "DELETING";
2004
- readonly DELETION_FAILED: "DELETION_FAILED";
2005
- readonly DELETION_SCHEDULED: "DELETION_SCHEDULED";
2006
- readonly UPDATE_FAILED: "UPDATE_FAILED";
2007
- readonly UPDATING: "UPDATING";
2008
- };
2009
- export type NetworkInterfaceStatus =
2010
- (typeof NetworkInterfaceStatus)[keyof typeof NetworkInterfaceStatus];
2011
- export interface NetworkInterface {
2012
- SubnetId?: string;
2013
- AvailabilityZone?: string;
2014
- ErrorMessage?: string;
2015
- Status?: NetworkInterfaceStatus;
2016
- NetworkInterfaceId?: string;
2017
- }
2018
- export interface VPCConnection {
2019
- VPCConnectionId?: string;
2020
- Arn?: string;
2021
- Name?: string;
2022
- VPCId?: string;
2023
- SecurityGroupIds?: string[];
2024
- DnsResolvers?: string[];
2025
- Status?: VPCConnectionResourceStatus;
2026
- AvailabilityStatus?: VPCConnectionAvailabilityStatus;
2027
- NetworkInterfaces?: NetworkInterface[];
2028
- RoleArn?: string;
2029
- CreatedTime?: Date;
2030
- LastUpdatedTime?: Date;
2031
- }
2032
- export interface DescribeVPCConnectionResponse {
2033
- VPCConnection?: VPCConnection;
2034
- RequestId?: string;
2035
- Status?: number;
2036
- }
2037
- export declare class DomainNotWhitelistedException extends __BaseException {
2038
- readonly name: "DomainNotWhitelistedException";
2039
- readonly $fault: "client";
2040
- Message?: string;
2041
- RequestId?: string;
2042
- constructor(
2043
- opts: __ExceptionOptionType<DomainNotWhitelistedException, __BaseException>
2044
- );
2045
- }
2046
- export declare const EmbeddingIdentityType: {
2047
- readonly ANONYMOUS: "ANONYMOUS";
2048
- readonly IAM: "IAM";
2049
- readonly QUICKSIGHT: "QUICKSIGHT";
2050
- };
2051
- export type EmbeddingIdentityType =
2052
- (typeof EmbeddingIdentityType)[keyof typeof EmbeddingIdentityType];
2072
+ export declare const CreateDataSourceRequestFilterSensitiveLog: (
2073
+ obj: CreateDataSourceRequest
2074
+ ) => any;
2053
2075
  export declare const TemplateVersionDefinitionFilterSensitiveLog: (
2054
2076
  obj: TemplateVersionDefinition
2055
2077
  ) => any;
@@ -2093,6 +2115,7 @@ export declare const TopicDetailsFilterSensitiveLog: (obj: TopicDetails) => any;
2093
2115
  export declare const CreateTopicRequestFilterSensitiveLog: (
2094
2116
  obj: CreateTopicRequest
2095
2117
  ) => any;
2118
+ export declare const OutputColumnFilterSensitiveLog: (obj: OutputColumn) => any;
2096
2119
  export declare const DataSetFilterSensitiveLog: (obj: DataSet) => any;
2097
2120
  export declare const DescribeAnalysisDefinitionResponseFilterSensitiveLog: (
2098
2121
  obj: DescribeAnalysisDefinitionResponse
@@ -38,7 +38,6 @@ import {
38
38
  DataSourceParameters,
39
39
  FieldFolder,
40
40
  FilterOperator,
41
- FolderType,
42
41
  LinkSharingConfiguration,
43
42
  LogicalTable,
44
43
  PhysicalTable,
@@ -46,7 +45,7 @@ import {
46
45
  RowLevelPermissionDataSet,
47
46
  RowLevelPermissionTagConfiguration,
48
47
  ServiceType,
49
- SharingModel,
48
+ SharedViewConfigurations,
50
49
  SslProperties,
51
50
  Tag,
52
51
  TopicIR,
@@ -65,16 +64,16 @@ import {
65
64
  DataSource,
66
65
  DataSourceSearchFilter,
67
66
  DataSourceSummary,
68
- EmbeddingIdentityType,
67
+ FolderType,
69
68
  Group,
70
69
  GroupMember,
71
70
  IdentityType,
72
71
  Ingestion,
73
72
  NamespaceInfoV2,
74
- NetworkInterface,
75
73
  RefreshSchedule,
76
74
  RegisteredCustomerManagedKey,
77
75
  Role,
76
+ SharingModel,
78
77
  SnapshotConfiguration,
79
78
  TemplateAlias,
80
79
  TemplateSourceEntity,
@@ -91,6 +90,62 @@ import {
91
90
  VPCConnectionResourceStatus,
92
91
  } from "./models_3";
93
92
  import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
93
+ export declare const NetworkInterfaceStatus: {
94
+ readonly ATTACHMENT_FAILED_ROLLBACK_FAILED: "ATTACHMENT_FAILED_ROLLBACK_FAILED";
95
+ readonly AVAILABLE: "AVAILABLE";
96
+ readonly CREATING: "CREATING";
97
+ readonly CREATION_FAILED: "CREATION_FAILED";
98
+ readonly DELETED: "DELETED";
99
+ readonly DELETING: "DELETING";
100
+ readonly DELETION_FAILED: "DELETION_FAILED";
101
+ readonly DELETION_SCHEDULED: "DELETION_SCHEDULED";
102
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
103
+ readonly UPDATING: "UPDATING";
104
+ };
105
+ export type NetworkInterfaceStatus =
106
+ (typeof NetworkInterfaceStatus)[keyof typeof NetworkInterfaceStatus];
107
+ export interface NetworkInterface {
108
+ SubnetId?: string;
109
+ AvailabilityZone?: string;
110
+ ErrorMessage?: string;
111
+ Status?: NetworkInterfaceStatus;
112
+ NetworkInterfaceId?: string;
113
+ }
114
+ export interface VPCConnection {
115
+ VPCConnectionId?: string;
116
+ Arn?: string;
117
+ Name?: string;
118
+ VPCId?: string;
119
+ SecurityGroupIds?: string[];
120
+ DnsResolvers?: string[];
121
+ Status?: VPCConnectionResourceStatus;
122
+ AvailabilityStatus?: VPCConnectionAvailabilityStatus;
123
+ NetworkInterfaces?: NetworkInterface[];
124
+ RoleArn?: string;
125
+ CreatedTime?: Date;
126
+ LastUpdatedTime?: Date;
127
+ }
128
+ export interface DescribeVPCConnectionResponse {
129
+ VPCConnection?: VPCConnection;
130
+ RequestId?: string;
131
+ Status?: number;
132
+ }
133
+ export declare class DomainNotWhitelistedException extends __BaseException {
134
+ readonly name: "DomainNotWhitelistedException";
135
+ readonly $fault: "client";
136
+ Message?: string;
137
+ RequestId?: string;
138
+ constructor(
139
+ opts: __ExceptionOptionType<DomainNotWhitelistedException, __BaseException>
140
+ );
141
+ }
142
+ export declare const EmbeddingIdentityType: {
143
+ readonly ANONYMOUS: "ANONYMOUS";
144
+ readonly IAM: "IAM";
145
+ readonly QUICKSIGHT: "QUICKSIGHT";
146
+ };
147
+ export type EmbeddingIdentityType =
148
+ (typeof EmbeddingIdentityType)[keyof typeof EmbeddingIdentityType];
94
149
  export interface FailedKeyRegistrationEntry {
95
150
  KeyArn?: string;
96
151
  Message: string | undefined;
@@ -176,6 +231,7 @@ export interface StatePersistenceConfigurations {
176
231
  }
177
232
  export interface RegisteredUserDashboardFeatureConfigurations {
178
233
  StatePersistence?: StatePersistenceConfigurations;
234
+ SharedView?: SharedViewConfigurations;
179
235
  Bookmarks?: BookmarksConfigurations;
180
236
  }
181
237
  export interface RegisteredUserDashboardEmbeddingConfiguration {
@@ -193,6 +249,7 @@ export interface RegisteredUserQSearchBarEmbeddingConfiguration {
193
249
  }
194
250
  export interface RegisteredUserConsoleFeatureConfigurations {
195
251
  StatePersistence?: StatePersistenceConfigurations;
252
+ SharedView?: SharedViewConfigurations;
196
253
  }
197
254
  export interface RegisteredUserQuickSightConsoleEmbeddingConfiguration {
198
255
  InitialPath?: string;
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.635.0",
4
+ "version": "3.642.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-quicksight",
@@ -20,17 +20,17 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.635.0",
24
- "@aws-sdk/client-sts": "3.635.0",
23
+ "@aws-sdk/client-sso-oidc": "3.637.0",
24
+ "@aws-sdk/client-sts": "3.637.0",
25
25
  "@aws-sdk/core": "3.635.0",
26
- "@aws-sdk/credential-provider-node": "3.635.0",
26
+ "@aws-sdk/credential-provider-node": "3.637.0",
27
27
  "@aws-sdk/middleware-host-header": "3.620.0",
28
28
  "@aws-sdk/middleware-logger": "3.609.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.620.0",
30
- "@aws-sdk/middleware-user-agent": "3.632.0",
30
+ "@aws-sdk/middleware-user-agent": "3.637.0",
31
31
  "@aws-sdk/region-config-resolver": "3.614.0",
32
32
  "@aws-sdk/types": "3.609.0",
33
- "@aws-sdk/util-endpoints": "3.632.0",
33
+ "@aws-sdk/util-endpoints": "3.637.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.609.0",
35
35
  "@aws-sdk/util-user-agent-node": "3.614.0",
36
36
  "@smithy/config-resolver": "^3.0.5",