@aws-sdk/client-quicksight 3.428.0 → 3.430.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.
@@ -90,7 +90,7 @@ export interface DataSet {
90
90
  PhysicalTableMap?: Record<string, PhysicalTable>;
91
91
  LogicalTableMap?: Record<string, LogicalTable>;
92
92
  OutputColumns?: OutputColumn[];
93
- ImportMode?: DataSetImportMode | string;
93
+ ImportMode?: DataSetImportMode;
94
94
  ConsumedSpiceCapacityInBytes?: number;
95
95
  ColumnGroups?: ColumnGroup[];
96
96
  FieldFolders?: Record<string, FieldFolder>;
@@ -120,7 +120,7 @@ export type LookbackWindowSizeUnit =
120
120
  export interface LookbackWindow {
121
121
  ColumnName: string | undefined;
122
122
  Size: number | undefined;
123
- SizeUnit: LookbackWindowSizeUnit | string | undefined;
123
+ SizeUnit: LookbackWindowSizeUnit | undefined;
124
124
  }
125
125
  export interface IncrementalRefresh {
126
126
  LookbackWindow: LookbackWindow | undefined;
@@ -132,8 +132,8 @@ export interface DataSetRefreshProperties {
132
132
  RefreshConfiguration: RefreshConfiguration | undefined;
133
133
  }
134
134
  export interface DataSetSearchFilter {
135
- Operator: FilterOperator | string | undefined;
136
- Name: DataSetFilterAttribute | string | undefined;
135
+ Operator: FilterOperator | undefined;
136
+ Name: DataSetFilterAttribute | undefined;
137
137
  Value: string | undefined;
138
138
  }
139
139
  export interface DataSetSummary {
@@ -142,7 +142,7 @@ export interface DataSetSummary {
142
142
  Name?: string;
143
143
  CreatedTime?: Date;
144
144
  LastUpdatedTime?: Date;
145
- ImportMode?: DataSetImportMode | string;
145
+ ImportMode?: DataSetImportMode;
146
146
  RowLevelPermissionDataSet?: RowLevelPermissionDataSet;
147
147
  RowLevelPermissionTagConfigurationApplied?: boolean;
148
148
  ColumnLevelPermissionRulesApplied?: boolean;
@@ -160,15 +160,15 @@ export declare const DataSourceErrorInfoType: {
160
160
  export type DataSourceErrorInfoType =
161
161
  (typeof DataSourceErrorInfoType)[keyof typeof DataSourceErrorInfoType];
162
162
  export interface DataSourceErrorInfo {
163
- Type?: DataSourceErrorInfoType | string;
163
+ Type?: DataSourceErrorInfoType;
164
164
  Message?: string;
165
165
  }
166
166
  export interface DataSource {
167
167
  Arn?: string;
168
168
  DataSourceId?: string;
169
169
  Name?: string;
170
- Type?: DataSourceType | string;
171
- Status?: ResourceStatus | string;
170
+ Type?: DataSourceType;
171
+ Status?: ResourceStatus;
172
172
  CreatedTime?: Date;
173
173
  LastUpdatedTime?: Date;
174
174
  DataSourceParameters?: DataSourceParameters;
@@ -187,15 +187,15 @@ export declare const DataSourceFilterAttribute: {
187
187
  export type DataSourceFilterAttribute =
188
188
  (typeof DataSourceFilterAttribute)[keyof typeof DataSourceFilterAttribute];
189
189
  export interface DataSourceSearchFilter {
190
- Operator: FilterOperator | string | undefined;
191
- Name: DataSourceFilterAttribute | string | undefined;
190
+ Operator: FilterOperator | undefined;
191
+ Name: DataSourceFilterAttribute | undefined;
192
192
  Value: string | undefined;
193
193
  }
194
194
  export interface DataSourceSummary {
195
195
  Arn?: string;
196
196
  DataSourceId?: string;
197
197
  Name?: string;
198
- Type?: DataSourceType | string;
198
+ Type?: DataSourceType;
199
199
  CreatedTime?: Date;
200
200
  LastUpdatedTime?: Date;
201
201
  }
@@ -280,7 +280,7 @@ export interface DeleteFolderMembershipRequest {
280
280
  AwsAccountId: string | undefined;
281
281
  FolderId: string | undefined;
282
282
  MemberId: string | undefined;
283
- MemberType: MemberType | string | undefined;
283
+ MemberType: MemberType | undefined;
284
284
  }
285
285
  export interface DeleteFolderMembershipResponse {
286
286
  Status?: number;
@@ -427,8 +427,8 @@ export interface DeleteVPCConnectionRequest {
427
427
  export interface DeleteVPCConnectionResponse {
428
428
  Arn?: string;
429
429
  VPCConnectionId?: string;
430
- DeletionStatus?: VPCConnectionResourceStatus | string;
431
- AvailabilityStatus?: VPCConnectionAvailabilityStatus | string;
430
+ DeletionStatus?: VPCConnectionResourceStatus;
431
+ AvailabilityStatus?: VPCConnectionAvailabilityStatus;
432
432
  RequestId?: string;
433
433
  Status?: number;
434
434
  }
@@ -478,7 +478,7 @@ export interface DescribeAnalysisDefinitionResponse {
478
478
  AnalysisId?: string;
479
479
  Name?: string;
480
480
  Errors?: AnalysisError[];
481
- ResourceStatus?: ResourceStatus | string;
481
+ ResourceStatus?: ResourceStatus;
482
482
  ThemeArn?: string;
483
483
  Definition?: AnalysisDefinition;
484
484
  Status?: number;
@@ -500,7 +500,7 @@ export interface DescribeAssetBundleExportJobRequest {
500
500
  AssetBundleExportJobId: string | undefined;
501
501
  }
502
502
  export interface DescribeAssetBundleExportJobResponse {
503
- JobStatus?: AssetBundleExportJobStatus | string;
503
+ JobStatus?: AssetBundleExportJobStatus;
504
504
  DownloadUrl?: string;
505
505
  Errors?: AssetBundleExportJobError[];
506
506
  Arn?: string;
@@ -509,7 +509,7 @@ export interface DescribeAssetBundleExportJobResponse {
509
509
  AwsAccountId?: string;
510
510
  ResourceArns?: string[];
511
511
  IncludeAllDependencies?: boolean;
512
- ExportFormat?: AssetBundleExportFormat | string;
512
+ ExportFormat?: AssetBundleExportFormat;
513
513
  CloudFormationOverridePropertyConfiguration?: AssetBundleCloudFormationOverridePropertyConfiguration;
514
514
  RequestId?: string;
515
515
  Status?: number;
@@ -519,7 +519,7 @@ export interface DescribeAssetBundleImportJobRequest {
519
519
  AssetBundleImportJobId: string | undefined;
520
520
  }
521
521
  export interface DescribeAssetBundleImportJobResponse {
522
- JobStatus?: AssetBundleImportJobStatus | string;
522
+ JobStatus?: AssetBundleImportJobStatus;
523
523
  Errors?: AssetBundleImportJobError[];
524
524
  RollbackErrors?: AssetBundleImportJobError[];
525
525
  Arn?: string;
@@ -528,7 +528,7 @@ export interface DescribeAssetBundleImportJobResponse {
528
528
  AwsAccountId?: string;
529
529
  AssetBundleImportSource?: AssetBundleImportSourceDescription;
530
530
  OverrideParameters?: AssetBundleImportJobOverrideParameters;
531
- FailureAction?: AssetBundleImportFailureAction | string;
531
+ FailureAction?: AssetBundleImportFailureAction;
532
532
  RequestId?: string;
533
533
  Status?: number;
534
534
  }
@@ -553,7 +553,7 @@ export interface DescribeDashboardDefinitionResponse {
553
553
  DashboardId?: string;
554
554
  Errors?: DashboardError[];
555
555
  Name?: string;
556
- ResourceStatus?: ResourceStatus | string;
556
+ ResourceStatus?: ResourceStatus;
557
557
  ThemeArn?: string;
558
558
  Definition?: DashboardVersionDefinition;
559
559
  Status?: number;
@@ -612,7 +612,7 @@ export interface DescribeDashboardSnapshotJobResponse {
612
612
  UserConfiguration?: SnapshotUserConfigurationRedacted;
613
613
  SnapshotConfiguration?: SnapshotConfiguration;
614
614
  Arn?: string;
615
- JobStatus?: SnapshotJobStatus | string;
615
+ JobStatus?: SnapshotJobStatus;
616
616
  CreatedTime?: Date;
617
617
  LastUpdatedTime?: Date;
618
618
  RequestId?: string;
@@ -632,7 +632,7 @@ export interface SnapshotJobResult {
632
632
  }
633
633
  export interface DescribeDashboardSnapshotJobResultResponse {
634
634
  Arn?: string;
635
- JobStatus?: SnapshotJobStatus | string;
635
+ JobStatus?: SnapshotJobStatus;
636
636
  CreatedTime?: Date;
637
637
  LastUpdatedTime?: Date;
638
638
  Result?: SnapshotJobResult;
@@ -697,11 +697,11 @@ export interface Folder {
697
697
  FolderId?: string;
698
698
  Arn?: string;
699
699
  Name?: string;
700
- FolderType?: FolderType | string;
700
+ FolderType?: FolderType;
701
701
  FolderPath?: string[];
702
702
  CreatedTime?: Date;
703
703
  LastUpdatedTime?: Date;
704
- SharingModel?: SharingModel | string;
704
+ SharingModel?: SharingModel;
705
705
  }
706
706
  export interface DescribeFolderResponse {
707
707
  Status?: number;
@@ -779,7 +779,7 @@ export interface IAMPolicyAssignment {
779
779
  AssignmentName?: string;
780
780
  PolicyArn?: string;
781
781
  Identities?: Record<string, string[]>;
782
- AssignmentStatus?: AssignmentStatus | string;
782
+ AssignmentStatus?: AssignmentStatus;
783
783
  }
784
784
  export interface DescribeIAMPolicyAssignmentResponse {
785
785
  IAMPolicyAssignment?: IAMPolicyAssignment;
@@ -841,7 +841,7 @@ export declare const IngestionErrorType: {
841
841
  export type IngestionErrorType =
842
842
  (typeof IngestionErrorType)[keyof typeof IngestionErrorType];
843
843
  export interface ErrorInfo {
844
- Type?: IngestionErrorType | string;
844
+ Type?: IngestionErrorType;
845
845
  Message?: string;
846
846
  }
847
847
  export interface QueueInfo {
@@ -870,15 +870,15 @@ export interface RowInfo {
870
870
  export interface Ingestion {
871
871
  Arn: string | undefined;
872
872
  IngestionId?: string;
873
- IngestionStatus: IngestionStatus | string | undefined;
873
+ IngestionStatus: IngestionStatus | undefined;
874
874
  ErrorInfo?: ErrorInfo;
875
875
  RowInfo?: RowInfo;
876
876
  QueueInfo?: QueueInfo;
877
877
  CreatedTime: Date | undefined;
878
878
  IngestionTimeInSeconds?: number;
879
879
  IngestionSizeInBytes?: number;
880
- RequestSource?: IngestionRequestSource | string;
881
- RequestType?: IngestionRequestType | string;
880
+ RequestSource?: IngestionRequestSource;
881
+ RequestType?: IngestionRequestType;
882
882
  }
883
883
  export interface DescribeIngestionResponse {
884
884
  Ingestion?: Ingestion;
@@ -906,15 +906,15 @@ export declare const NamespaceErrorType: {
906
906
  export type NamespaceErrorType =
907
907
  (typeof NamespaceErrorType)[keyof typeof NamespaceErrorType];
908
908
  export interface NamespaceError {
909
- Type?: NamespaceErrorType | string;
909
+ Type?: NamespaceErrorType;
910
910
  Message?: string;
911
911
  }
912
912
  export interface NamespaceInfoV2 {
913
913
  Name?: string;
914
914
  Arn?: string;
915
915
  CapacityRegion?: string;
916
- CreationStatus?: NamespaceStatus | string;
917
- IdentityStore?: IdentityStore | string;
916
+ CreationStatus?: NamespaceStatus;
917
+ IdentityStore?: IdentityStore;
918
918
  NamespaceError?: NamespaceError;
919
919
  }
920
920
  export interface DescribeNamespaceResponse {
@@ -948,7 +948,7 @@ export declare const TemplateErrorType: {
948
948
  export type TemplateErrorType =
949
949
  (typeof TemplateErrorType)[keyof typeof TemplateErrorType];
950
950
  export interface TemplateError {
951
- Type?: TemplateErrorType | string;
951
+ Type?: TemplateErrorType;
952
952
  Message?: string;
953
953
  ViolatedEntities?: Entity[];
954
954
  }
@@ -956,7 +956,7 @@ export interface TemplateVersion {
956
956
  CreatedTime?: Date;
957
957
  Errors?: TemplateError[];
958
958
  VersionNumber?: number;
959
- Status?: ResourceStatus | string;
959
+ Status?: ResourceStatus;
960
960
  DataSetConfigurations?: DataSetConfiguration[];
961
961
  Description?: string;
962
962
  SourceEntityArn?: string;
@@ -996,7 +996,7 @@ export interface DescribeTemplateDefinitionResponse {
996
996
  Name?: string;
997
997
  TemplateId?: string;
998
998
  Errors?: TemplateError[];
999
- ResourceStatus?: ResourceStatus | string;
999
+ ResourceStatus?: ResourceStatus;
1000
1000
  ThemeArn?: string;
1001
1001
  Definition?: TemplateVersionDefinition;
1002
1002
  Status?: number;
@@ -1031,7 +1031,7 @@ export declare const ThemeErrorType: {
1031
1031
  export type ThemeErrorType =
1032
1032
  (typeof ThemeErrorType)[keyof typeof ThemeErrorType];
1033
1033
  export interface ThemeError {
1034
- Type?: ThemeErrorType | string;
1034
+ Type?: ThemeErrorType;
1035
1035
  Message?: string;
1036
1036
  }
1037
1037
  export interface ThemeVersion {
@@ -1042,7 +1042,7 @@ export interface ThemeVersion {
1042
1042
  CreatedTime?: Date;
1043
1043
  Configuration?: ThemeConfiguration;
1044
1044
  Errors?: ThemeError[];
1045
- Status?: ResourceStatus | string;
1045
+ Status?: ResourceStatus;
1046
1046
  }
1047
1047
  export interface Theme {
1048
1048
  Arn?: string;
@@ -1051,7 +1051,7 @@ export interface Theme {
1051
1051
  Version?: ThemeVersion;
1052
1052
  CreatedTime?: Date;
1053
1053
  LastUpdatedTime?: Date;
1054
- Type?: ThemeType | string;
1054
+ Type?: ThemeType;
1055
1055
  }
1056
1056
  export interface DescribeThemeResponse {
1057
1057
  Theme?: Theme;
@@ -1118,7 +1118,7 @@ export type TopicRefreshStatus =
1118
1118
  export interface TopicRefreshDetails {
1119
1119
  RefreshArn?: string;
1120
1120
  RefreshId?: string;
1121
- RefreshStatus?: TopicRefreshStatus | string;
1121
+ RefreshStatus?: TopicRefreshStatus;
1122
1122
  }
1123
1123
  export interface DescribeTopicRefreshResponse {
1124
1124
  RefreshDetails?: TopicRefreshDetails;
@@ -1161,8 +1161,8 @@ export interface User {
1161
1161
  Arn?: string;
1162
1162
  UserName?: string;
1163
1163
  Email?: string;
1164
- Role?: UserRole | string;
1165
- IdentityType?: IdentityType | string;
1164
+ Role?: UserRole;
1165
+ IdentityType?: IdentityType;
1166
1166
  Active?: boolean;
1167
1167
  PrincipalId?: string;
1168
1168
  CustomPermissionsName?: string;
@@ -1197,7 +1197,7 @@ export interface NetworkInterface {
1197
1197
  SubnetId?: string;
1198
1198
  AvailabilityZone?: string;
1199
1199
  ErrorMessage?: string;
1200
- Status?: NetworkInterfaceStatus | string;
1200
+ Status?: NetworkInterfaceStatus;
1201
1201
  NetworkInterfaceId?: string;
1202
1202
  }
1203
1203
  export interface VPCConnection {
@@ -1207,8 +1207,8 @@ export interface VPCConnection {
1207
1207
  VPCId?: string;
1208
1208
  SecurityGroupIds?: string[];
1209
1209
  DnsResolvers?: string[];
1210
- Status?: VPCConnectionResourceStatus | string;
1211
- AvailabilityStatus?: VPCConnectionAvailabilityStatus | string;
1210
+ Status?: VPCConnectionResourceStatus;
1211
+ AvailabilityStatus?: VPCConnectionAvailabilityStatus;
1212
1212
  NetworkInterfaces?: NetworkInterface[];
1213
1213
  RoleArn?: string;
1214
1214
  CreatedTime?: Date;
@@ -1251,18 +1251,18 @@ export interface MemberIdArnPair {
1251
1251
  MemberArn?: string;
1252
1252
  }
1253
1253
  export interface FolderSearchFilter {
1254
- Operator?: FilterOperator | string;
1255
- Name?: FolderFilterAttribute | string;
1254
+ Operator?: FilterOperator;
1255
+ Name?: FolderFilterAttribute;
1256
1256
  Value?: string;
1257
1257
  }
1258
1258
  export interface FolderSummary {
1259
1259
  Arn?: string;
1260
1260
  FolderId?: string;
1261
1261
  Name?: string;
1262
- FolderType?: FolderType | string;
1262
+ FolderType?: FolderType;
1263
1263
  CreatedTime?: Date;
1264
1264
  LastUpdatedTime?: Date;
1265
- SharingModel?: SharingModel | string;
1265
+ SharingModel?: SharingModel;
1266
1266
  }
1267
1267
  export interface SessionTag {
1268
1268
  Key: string | undefined;
@@ -1368,7 +1368,7 @@ export declare class QuickSightUserNotFoundException extends __BaseException {
1368
1368
  export interface GetDashboardEmbedUrlRequest {
1369
1369
  AwsAccountId: string | undefined;
1370
1370
  DashboardId: string | undefined;
1371
- IdentityType: EmbeddingIdentityType | string | undefined;
1371
+ IdentityType: EmbeddingIdentityType | undefined;
1372
1372
  SessionLifetimeInMinutes?: number;
1373
1373
  UndoRedoDisabled?: boolean;
1374
1374
  ResetDisabled?: boolean;
@@ -1416,13 +1416,13 @@ export declare const GroupFilterOperator: {
1416
1416
  export type GroupFilterOperator =
1417
1417
  (typeof GroupFilterOperator)[keyof typeof GroupFilterOperator];
1418
1418
  export interface GroupSearchFilter {
1419
- Operator: GroupFilterOperator | string | undefined;
1420
- Name: GroupFilterAttribute | string | undefined;
1419
+ Operator: GroupFilterOperator | undefined;
1420
+ Name: GroupFilterAttribute | undefined;
1421
1421
  Value: string | undefined;
1422
1422
  }
1423
1423
  export interface IAMPolicyAssignmentSummary {
1424
1424
  AssignmentName?: string;
1425
- AssignmentStatus?: AssignmentStatus | string;
1425
+ AssignmentStatus?: AssignmentStatus;
1426
1426
  }
1427
1427
  export declare class InvalidRequestException extends __BaseException {
1428
1428
  readonly name: "InvalidRequestException";
@@ -1561,7 +1561,7 @@ export interface ListGroupsResponse {
1561
1561
  }
1562
1562
  export interface ListIAMPolicyAssignmentsRequest {
1563
1563
  AwsAccountId: string | undefined;
1564
- AssignmentStatus?: AssignmentStatus | string;
1564
+ AssignmentStatus?: AssignmentStatus;
1565
1565
  Namespace: string | undefined;
1566
1566
  NextToken?: string;
1567
1567
  MaxResults?: number;
@@ -1666,7 +1666,7 @@ export interface TemplateVersionSummary {
1666
1666
  Arn?: string;
1667
1667
  VersionNumber?: number;
1668
1668
  CreatedTime?: Date;
1669
- Status?: ResourceStatus | string;
1669
+ Status?: ResourceStatus;
1670
1670
  Description?: string;
1671
1671
  }
1672
1672
  export interface ListTemplateVersionsResponse {
@@ -1691,7 +1691,7 @@ export interface ListThemesRequest {
1691
1691
  AwsAccountId: string | undefined;
1692
1692
  NextToken?: string;
1693
1693
  MaxResults?: number;
1694
- Type?: ThemeType | string;
1694
+ Type?: ThemeType;
1695
1695
  }
1696
1696
  export interface ThemeSummary {
1697
1697
  Arn?: string;
@@ -1718,7 +1718,7 @@ export interface ThemeVersionSummary {
1718
1718
  Arn?: string;
1719
1719
  Description?: string;
1720
1720
  CreatedTime?: Date;
1721
- Status?: ResourceStatus | string;
1721
+ Status?: ResourceStatus;
1722
1722
  }
1723
1723
  export interface ListThemeVersionsResponse {
1724
1724
  ThemeVersionSummaryList?: ThemeVersionSummary[];
@@ -1796,8 +1796,8 @@ export interface VPCConnectionSummary {
1796
1796
  VPCId?: string;
1797
1797
  SecurityGroupIds?: string[];
1798
1798
  DnsResolvers?: string[];
1799
- Status?: VPCConnectionResourceStatus | string;
1800
- AvailabilityStatus?: VPCConnectionAvailabilityStatus | string;
1799
+ Status?: VPCConnectionResourceStatus;
1800
+ AvailabilityStatus?: VPCConnectionAvailabilityStatus;
1801
1801
  NetworkInterfaces?: NetworkInterface[];
1802
1802
  RoleArn?: string;
1803
1803
  CreatedTime?: Date;
@@ -1819,9 +1819,9 @@ export interface PutDataSetRefreshPropertiesResponse {
1819
1819
  Status?: number;
1820
1820
  }
1821
1821
  export interface RegisterUserRequest {
1822
- IdentityType: IdentityType | string | undefined;
1822
+ IdentityType: IdentityType | undefined;
1823
1823
  Email: string | undefined;
1824
- UserRole: UserRole | string | undefined;
1824
+ UserRole: UserRole | undefined;
1825
1825
  IamArn?: string;
1826
1826
  SessionName?: string;
1827
1827
  AwsAccountId: string | undefined;
@@ -1927,7 +1927,7 @@ export interface StartAssetBundleExportJobRequest {
1927
1927
  AssetBundleExportJobId: string | undefined;
1928
1928
  ResourceArns: string[] | undefined;
1929
1929
  IncludeAllDependencies?: boolean;
1930
- ExportFormat: AssetBundleExportFormat | string | undefined;
1930
+ ExportFormat: AssetBundleExportFormat | undefined;
1931
1931
  CloudFormationOverridePropertyConfiguration?: AssetBundleCloudFormationOverridePropertyConfiguration;
1932
1932
  }
1933
1933
  export interface StartAssetBundleExportJobResponse {
@@ -1941,7 +1941,7 @@ export interface StartAssetBundleImportJobRequest {
1941
1941
  AssetBundleImportJobId: string | undefined;
1942
1942
  AssetBundleImportSource: AssetBundleImportSource | undefined;
1943
1943
  OverrideParameters?: AssetBundleImportJobOverrideParameters;
1944
- FailureAction?: AssetBundleImportFailureAction | string;
1944
+ FailureAction?: AssetBundleImportFailureAction;
1945
1945
  }
1946
1946
  export interface StartAssetBundleImportJobResponse {
1947
1947
  Arn?: string;
@@ -110,7 +110,7 @@ export interface UpdateAnalysisRequest {
110
110
  export interface UpdateAnalysisResponse {
111
111
  Arn?: string;
112
112
  AnalysisId?: string;
113
- UpdateStatus?: ResourceStatus | string;
113
+ UpdateStatus?: ResourceStatus;
114
114
  Status?: number;
115
115
  RequestId?: string;
116
116
  }
@@ -143,7 +143,7 @@ export interface UpdateDashboardResponse {
143
143
  Arn?: string;
144
144
  VersionArn?: string;
145
145
  DashboardId?: string;
146
- CreationStatus?: ResourceStatus | string;
146
+ CreationStatus?: ResourceStatus;
147
147
  Status?: number;
148
148
  RequestId?: string;
149
149
  }
@@ -180,7 +180,7 @@ export interface UpdateDataSetRequest {
180
180
  Name: string | undefined;
181
181
  PhysicalTableMap: Record<string, PhysicalTable> | undefined;
182
182
  LogicalTableMap?: Record<string, LogicalTable>;
183
- ImportMode: DataSetImportMode | string | undefined;
183
+ ImportMode: DataSetImportMode | undefined;
184
184
  ColumnGroups?: ColumnGroup[];
185
185
  FieldFolders?: Record<string, FieldFolder>;
186
186
  RowLevelPermissionDataSet?: RowLevelPermissionDataSet;
@@ -221,7 +221,7 @@ export interface UpdateDataSourceRequest {
221
221
  export interface UpdateDataSourceResponse {
222
222
  Arn?: string;
223
223
  DataSourceId?: string;
224
- UpdateStatus?: ResourceStatus | string;
224
+ UpdateStatus?: ResourceStatus;
225
225
  RequestId?: string;
226
226
  Status?: number;
227
227
  }
@@ -276,7 +276,7 @@ export interface UpdateIAMPolicyAssignmentRequest {
276
276
  AwsAccountId: string | undefined;
277
277
  AssignmentName: string | undefined;
278
278
  Namespace: string | undefined;
279
- AssignmentStatus?: AssignmentStatus | string;
279
+ AssignmentStatus?: AssignmentStatus;
280
280
  PolicyArn?: string;
281
281
  Identities?: Record<string, string[]>;
282
282
  }
@@ -285,7 +285,7 @@ export interface UpdateIAMPolicyAssignmentResponse {
285
285
  AssignmentId?: string;
286
286
  PolicyArn?: string;
287
287
  Identities?: Record<string, string[]>;
288
- AssignmentStatus?: AssignmentStatus | string;
288
+ AssignmentStatus?: AssignmentStatus;
289
289
  RequestId?: string;
290
290
  Status?: number;
291
291
  }
@@ -331,7 +331,7 @@ export interface UpdateTemplateResponse {
331
331
  TemplateId?: string;
332
332
  Arn?: string;
333
333
  VersionArn?: string;
334
- CreationStatus?: ResourceStatus | string;
334
+ CreationStatus?: ResourceStatus;
335
335
  Status?: number;
336
336
  RequestId?: string;
337
337
  }
@@ -371,7 +371,7 @@ export interface UpdateThemeResponse {
371
371
  ThemeId?: string;
372
372
  Arn?: string;
373
373
  VersionArn?: string;
374
- CreationStatus?: ResourceStatus | string;
374
+ CreationStatus?: ResourceStatus;
375
375
  Status?: number;
376
376
  RequestId?: string;
377
377
  }
@@ -442,7 +442,7 @@ export interface UpdateUserRequest {
442
442
  AwsAccountId: string | undefined;
443
443
  Namespace: string | undefined;
444
444
  Email: string | undefined;
445
- Role: UserRole | string | undefined;
445
+ Role: UserRole | undefined;
446
446
  CustomPermissionsName?: string;
447
447
  UnapplyCustomPermissions?: boolean;
448
448
  ExternalLoginFederationProviderType?: string;
@@ -466,8 +466,8 @@ export interface UpdateVPCConnectionRequest {
466
466
  export interface UpdateVPCConnectionResponse {
467
467
  Arn?: string;
468
468
  VPCConnectionId?: string;
469
- UpdateStatus?: VPCConnectionResourceStatus | string;
470
- AvailabilityStatus?: VPCConnectionAvailabilityStatus | string;
469
+ UpdateStatus?: VPCConnectionResourceStatus;
470
+ AvailabilityStatus?: VPCConnectionAvailabilityStatus;
471
471
  RequestId?: string;
472
472
  Status?: number;
473
473
  }
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.428.0",
4
+ "version": "3.430.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,28 +21,28 @@
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.428.0",
25
- "@aws-sdk/credential-provider-node": "3.428.0",
26
- "@aws-sdk/middleware-host-header": "3.428.0",
24
+ "@aws-sdk/client-sts": "3.430.0",
25
+ "@aws-sdk/credential-provider-node": "3.430.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
27
  "@aws-sdk/middleware-logger": "3.428.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
29
  "@aws-sdk/middleware-signing": "3.428.0",
30
30
  "@aws-sdk/middleware-user-agent": "3.428.0",
31
- "@aws-sdk/region-config-resolver": "3.428.0",
31
+ "@aws-sdk/region-config-resolver": "3.430.0",
32
32
  "@aws-sdk/types": "3.428.0",
33
33
  "@aws-sdk/util-endpoints": "3.428.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.428.0",
35
- "@aws-sdk/util-user-agent-node": "3.428.0",
36
- "@smithy/config-resolver": "^2.0.14",
35
+ "@aws-sdk/util-user-agent-node": "3.430.0",
36
+ "@smithy/config-resolver": "^2.0.15",
37
37
  "@smithy/fetch-http-handler": "^2.2.3",
38
38
  "@smithy/hash-node": "^2.0.11",
39
39
  "@smithy/invalid-dependency": "^2.0.11",
40
40
  "@smithy/middleware-content-length": "^2.0.13",
41
- "@smithy/middleware-endpoint": "^2.1.0",
42
- "@smithy/middleware-retry": "^2.0.16",
41
+ "@smithy/middleware-endpoint": "^2.1.2",
42
+ "@smithy/middleware-retry": "^2.0.17",
43
43
  "@smithy/middleware-serde": "^2.0.11",
44
44
  "@smithy/middleware-stack": "^2.0.5",
45
- "@smithy/node-config-provider": "^2.1.1",
45
+ "@smithy/node-config-provider": "^2.1.2",
46
46
  "@smithy/node-http-handler": "^2.1.7",
47
47
  "@smithy/protocol-http": "^3.0.7",
48
48
  "@smithy/smithy-client": "^2.1.11",
@@ -52,7 +52,7 @@
52
52
  "@smithy/util-body-length-browser": "^2.0.0",
53
53
  "@smithy/util-body-length-node": "^2.1.0",
54
54
  "@smithy/util-defaults-mode-browser": "^2.0.15",
55
- "@smithy/util-defaults-mode-node": "^2.0.19",
55
+ "@smithy/util-defaults-mode-node": "^2.0.20",
56
56
  "@smithy/util-retry": "^2.0.4",
57
57
  "@smithy/util-utf8": "^2.0.0",
58
58
  "tslib": "^2.5.0"