@aws-sdk/client-quicksight 3.687.0 → 3.691.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/dist-types/models/models_0.d.ts +525 -525
- package/dist-types/models/models_1.d.ts +743 -743
- package/dist-types/models/models_2.d.ts +530 -530
- package/dist-types/models/models_3.d.ts +796 -796
- package/dist-types/models/models_4.d.ts +659 -659
- package/dist-types/ts3.4/models/models_0.d.ts +565 -525
- package/dist-types/ts3.4/models/models_1.d.ts +763 -743
- package/dist-types/ts3.4/models/models_2.d.ts +556 -530
- package/dist-types/ts3.4/models/models_3.d.ts +804 -796
- package/dist-types/ts3.4/models/models_4.d.ts +673 -659
- package/package.json +7 -7
|
@@ -90,11 +90,11 @@ import {
|
|
|
90
90
|
} from "./models_3";
|
|
91
91
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
92
92
|
export interface DescribeTopicPermissionsResponse {
|
|
93
|
-
TopicId?: string;
|
|
94
|
-
TopicArn?: string;
|
|
95
|
-
Permissions?: ResourcePermission[];
|
|
96
|
-
Status?: number;
|
|
97
|
-
RequestId?: string;
|
|
93
|
+
TopicId?: string | undefined;
|
|
94
|
+
TopicArn?: string | undefined;
|
|
95
|
+
Permissions?: ResourcePermission[] | undefined;
|
|
96
|
+
Status?: number | undefined;
|
|
97
|
+
RequestId?: string | undefined;
|
|
98
98
|
}
|
|
99
99
|
export interface DescribeTopicRefreshRequest {
|
|
100
100
|
AwsAccountId: string | undefined;
|
|
@@ -111,14 +111,14 @@ export declare const TopicRefreshStatus: {
|
|
|
111
111
|
export type TopicRefreshStatus =
|
|
112
112
|
(typeof TopicRefreshStatus)[keyof typeof TopicRefreshStatus];
|
|
113
113
|
export interface TopicRefreshDetails {
|
|
114
|
-
RefreshArn?: string;
|
|
115
|
-
RefreshId?: string;
|
|
116
|
-
RefreshStatus?: TopicRefreshStatus;
|
|
114
|
+
RefreshArn?: string | undefined;
|
|
115
|
+
RefreshId?: string | undefined;
|
|
116
|
+
RefreshStatus?: TopicRefreshStatus | undefined;
|
|
117
117
|
}
|
|
118
118
|
export interface DescribeTopicRefreshResponse {
|
|
119
|
-
RefreshDetails?: TopicRefreshDetails;
|
|
120
|
-
RequestId?: string;
|
|
121
|
-
Status?: number;
|
|
119
|
+
RefreshDetails?: TopicRefreshDetails | undefined;
|
|
120
|
+
RequestId?: string | undefined;
|
|
121
|
+
Status?: number | undefined;
|
|
122
122
|
}
|
|
123
123
|
export interface DescribeTopicRefreshScheduleRequest {
|
|
124
124
|
AwsAccountId: string | undefined;
|
|
@@ -126,12 +126,12 @@ export interface DescribeTopicRefreshScheduleRequest {
|
|
|
126
126
|
DatasetId: string | undefined;
|
|
127
127
|
}
|
|
128
128
|
export interface DescribeTopicRefreshScheduleResponse {
|
|
129
|
-
TopicId?: string;
|
|
130
|
-
TopicArn?: string;
|
|
131
|
-
DatasetArn?: string;
|
|
132
|
-
RefreshSchedule?: TopicRefreshSchedule;
|
|
133
|
-
Status?: number;
|
|
134
|
-
RequestId?: string;
|
|
129
|
+
TopicId?: string | undefined;
|
|
130
|
+
TopicArn?: string | undefined;
|
|
131
|
+
DatasetArn?: string | undefined;
|
|
132
|
+
RefreshSchedule?: TopicRefreshSchedule | undefined;
|
|
133
|
+
Status?: number | undefined;
|
|
134
|
+
RequestId?: string | undefined;
|
|
135
135
|
}
|
|
136
136
|
export interface DescribeUserRequest {
|
|
137
137
|
UserName: string | undefined;
|
|
@@ -156,22 +156,22 @@ export declare const UserRole: {
|
|
|
156
156
|
};
|
|
157
157
|
export type UserRole = (typeof UserRole)[keyof typeof UserRole];
|
|
158
158
|
export interface User {
|
|
159
|
-
Arn?: string;
|
|
160
|
-
UserName?: string;
|
|
161
|
-
Email?: string;
|
|
162
|
-
Role?: UserRole;
|
|
163
|
-
IdentityType?: IdentityType;
|
|
164
|
-
Active?: boolean;
|
|
165
|
-
PrincipalId?: string;
|
|
166
|
-
CustomPermissionsName?: string;
|
|
167
|
-
ExternalLoginFederationProviderType?: string;
|
|
168
|
-
ExternalLoginFederationProviderUrl?: string;
|
|
169
|
-
ExternalLoginId?: string;
|
|
159
|
+
Arn?: string | undefined;
|
|
160
|
+
UserName?: string | undefined;
|
|
161
|
+
Email?: string | undefined;
|
|
162
|
+
Role?: UserRole | undefined;
|
|
163
|
+
IdentityType?: IdentityType | undefined;
|
|
164
|
+
Active?: boolean | undefined;
|
|
165
|
+
PrincipalId?: string | undefined;
|
|
166
|
+
CustomPermissionsName?: string | undefined;
|
|
167
|
+
ExternalLoginFederationProviderType?: string | undefined;
|
|
168
|
+
ExternalLoginFederationProviderUrl?: string | undefined;
|
|
169
|
+
ExternalLoginId?: string | undefined;
|
|
170
170
|
}
|
|
171
171
|
export interface DescribeUserResponse {
|
|
172
|
-
User?: User;
|
|
173
|
-
RequestId?: string;
|
|
174
|
-
Status?: number;
|
|
172
|
+
User?: User | undefined;
|
|
173
|
+
RequestId?: string | undefined;
|
|
174
|
+
Status?: number | undefined;
|
|
175
175
|
}
|
|
176
176
|
export interface DescribeVPCConnectionRequest {
|
|
177
177
|
AwsAccountId: string | undefined;
|
|
@@ -192,36 +192,36 @@ export declare const NetworkInterfaceStatus: {
|
|
|
192
192
|
export type NetworkInterfaceStatus =
|
|
193
193
|
(typeof NetworkInterfaceStatus)[keyof typeof NetworkInterfaceStatus];
|
|
194
194
|
export interface NetworkInterface {
|
|
195
|
-
SubnetId?: string;
|
|
196
|
-
AvailabilityZone?: string;
|
|
197
|
-
ErrorMessage?: string;
|
|
198
|
-
Status?: NetworkInterfaceStatus;
|
|
199
|
-
NetworkInterfaceId?: string;
|
|
195
|
+
SubnetId?: string | undefined;
|
|
196
|
+
AvailabilityZone?: string | undefined;
|
|
197
|
+
ErrorMessage?: string | undefined;
|
|
198
|
+
Status?: NetworkInterfaceStatus | undefined;
|
|
199
|
+
NetworkInterfaceId?: string | undefined;
|
|
200
200
|
}
|
|
201
201
|
export interface VPCConnection {
|
|
202
|
-
VPCConnectionId?: string;
|
|
203
|
-
Arn?: string;
|
|
204
|
-
Name?: string;
|
|
205
|
-
VPCId?: string;
|
|
206
|
-
SecurityGroupIds?: string[];
|
|
207
|
-
DnsResolvers?: string[];
|
|
208
|
-
Status?: VPCConnectionResourceStatus;
|
|
209
|
-
AvailabilityStatus?: VPCConnectionAvailabilityStatus;
|
|
210
|
-
NetworkInterfaces?: NetworkInterface[];
|
|
211
|
-
RoleArn?: string;
|
|
212
|
-
CreatedTime?: Date;
|
|
213
|
-
LastUpdatedTime?: Date;
|
|
202
|
+
VPCConnectionId?: string | undefined;
|
|
203
|
+
Arn?: string | undefined;
|
|
204
|
+
Name?: string | undefined;
|
|
205
|
+
VPCId?: string | undefined;
|
|
206
|
+
SecurityGroupIds?: string[] | undefined;
|
|
207
|
+
DnsResolvers?: string[] | undefined;
|
|
208
|
+
Status?: VPCConnectionResourceStatus | undefined;
|
|
209
|
+
AvailabilityStatus?: VPCConnectionAvailabilityStatus | undefined;
|
|
210
|
+
NetworkInterfaces?: NetworkInterface[] | undefined;
|
|
211
|
+
RoleArn?: string | undefined;
|
|
212
|
+
CreatedTime?: Date | undefined;
|
|
213
|
+
LastUpdatedTime?: Date | undefined;
|
|
214
214
|
}
|
|
215
215
|
export interface DescribeVPCConnectionResponse {
|
|
216
|
-
VPCConnection?: VPCConnection;
|
|
217
|
-
RequestId?: string;
|
|
218
|
-
Status?: number;
|
|
216
|
+
VPCConnection?: VPCConnection | undefined;
|
|
217
|
+
RequestId?: string | undefined;
|
|
218
|
+
Status?: number | undefined;
|
|
219
219
|
}
|
|
220
220
|
export declare class DomainNotWhitelistedException extends __BaseException {
|
|
221
221
|
readonly name: "DomainNotWhitelistedException";
|
|
222
222
|
readonly $fault: "client";
|
|
223
|
-
Message?: string;
|
|
224
|
-
RequestId?: string;
|
|
223
|
+
Message?: string | undefined;
|
|
224
|
+
RequestId?: string | undefined;
|
|
225
225
|
constructor(
|
|
226
226
|
opts: __ExceptionOptionType<DomainNotWhitelistedException, __BaseException>
|
|
227
227
|
);
|
|
@@ -234,7 +234,7 @@ export declare const EmbeddingIdentityType: {
|
|
|
234
234
|
export type EmbeddingIdentityType =
|
|
235
235
|
(typeof EmbeddingIdentityType)[keyof typeof EmbeddingIdentityType];
|
|
236
236
|
export interface FailedKeyRegistrationEntry {
|
|
237
|
-
KeyArn?: string;
|
|
237
|
+
KeyArn?: string | undefined;
|
|
238
238
|
Message: string | undefined;
|
|
239
239
|
StatusCode: number | undefined;
|
|
240
240
|
SenderFault: boolean | undefined;
|
|
@@ -251,22 +251,22 @@ export declare const FolderFilterAttribute: {
|
|
|
251
251
|
export type FolderFilterAttribute =
|
|
252
252
|
(typeof FolderFilterAttribute)[keyof typeof FolderFilterAttribute];
|
|
253
253
|
export interface MemberIdArnPair {
|
|
254
|
-
MemberId?: string;
|
|
255
|
-
MemberArn?: string;
|
|
254
|
+
MemberId?: string | undefined;
|
|
255
|
+
MemberArn?: string | undefined;
|
|
256
256
|
}
|
|
257
257
|
export interface FolderSearchFilter {
|
|
258
|
-
Operator?: FilterOperator;
|
|
259
|
-
Name?: FolderFilterAttribute;
|
|
260
|
-
Value?: string;
|
|
258
|
+
Operator?: FilterOperator | undefined;
|
|
259
|
+
Name?: FolderFilterAttribute | undefined;
|
|
260
|
+
Value?: string | undefined;
|
|
261
261
|
}
|
|
262
262
|
export interface FolderSummary {
|
|
263
|
-
Arn?: string;
|
|
264
|
-
FolderId?: string;
|
|
265
|
-
Name?: string;
|
|
266
|
-
FolderType?: FolderType;
|
|
267
|
-
CreatedTime?: Date;
|
|
268
|
-
LastUpdatedTime?: Date;
|
|
269
|
-
SharingModel?: SharingModel;
|
|
263
|
+
Arn?: string | undefined;
|
|
264
|
+
FolderId?: string | undefined;
|
|
265
|
+
Name?: string | undefined;
|
|
266
|
+
FolderType?: FolderType | undefined;
|
|
267
|
+
CreatedTime?: Date | undefined;
|
|
268
|
+
LastUpdatedTime?: Date | undefined;
|
|
269
|
+
SharingModel?: SharingModel | undefined;
|
|
270
270
|
}
|
|
271
271
|
export interface SessionTag {
|
|
272
272
|
Key: string | undefined;
|
|
@@ -274,14 +274,14 @@ export interface SessionTag {
|
|
|
274
274
|
}
|
|
275
275
|
export interface GenerateEmbedUrlForAnonymousUserRequest {
|
|
276
276
|
AwsAccountId: string | undefined;
|
|
277
|
-
SessionLifetimeInMinutes?: number;
|
|
277
|
+
SessionLifetimeInMinutes?: number | undefined;
|
|
278
278
|
Namespace: string | undefined;
|
|
279
|
-
SessionTags?: SessionTag[];
|
|
279
|
+
SessionTags?: SessionTag[] | undefined;
|
|
280
280
|
AuthorizedResourceArns: string[] | undefined;
|
|
281
281
|
ExperienceConfiguration:
|
|
282
282
|
| AnonymousUserEmbeddingExperienceConfiguration
|
|
283
283
|
| undefined;
|
|
284
|
-
AllowedDomains?: string[];
|
|
284
|
+
AllowedDomains?: string[] | undefined;
|
|
285
285
|
}
|
|
286
286
|
export interface GenerateEmbedUrlForAnonymousUserResponse {
|
|
287
287
|
EmbedUrl: string | undefined;
|
|
@@ -292,8 +292,8 @@ export interface GenerateEmbedUrlForAnonymousUserResponse {
|
|
|
292
292
|
export declare class SessionLifetimeInMinutesInvalidException extends __BaseException {
|
|
293
293
|
readonly name: "SessionLifetimeInMinutesInvalidException";
|
|
294
294
|
readonly $fault: "client";
|
|
295
|
-
Message?: string;
|
|
296
|
-
RequestId?: string;
|
|
295
|
+
Message?: string | undefined;
|
|
296
|
+
RequestId?: string | undefined;
|
|
297
297
|
constructor(
|
|
298
298
|
opts: __ExceptionOptionType<
|
|
299
299
|
SessionLifetimeInMinutesInvalidException,
|
|
@@ -304,8 +304,8 @@ export declare class SessionLifetimeInMinutesInvalidException extends __BaseExce
|
|
|
304
304
|
export declare class UnsupportedPricingPlanException extends __BaseException {
|
|
305
305
|
readonly name: "UnsupportedPricingPlanException";
|
|
306
306
|
readonly $fault: "client";
|
|
307
|
-
Message?: string;
|
|
308
|
-
RequestId?: string;
|
|
307
|
+
Message?: string | undefined;
|
|
308
|
+
RequestId?: string | undefined;
|
|
309
309
|
constructor(
|
|
310
310
|
opts: __ExceptionOptionType<
|
|
311
311
|
UnsupportedPricingPlanException,
|
|
@@ -317,46 +317,54 @@ export interface StatePersistenceConfigurations {
|
|
|
317
317
|
Enabled: boolean | undefined;
|
|
318
318
|
}
|
|
319
319
|
export interface RegisteredUserDashboardFeatureConfigurations {
|
|
320
|
-
StatePersistence?: StatePersistenceConfigurations;
|
|
321
|
-
SharedView?: SharedViewConfigurations;
|
|
322
|
-
Bookmarks?: BookmarksConfigurations;
|
|
320
|
+
StatePersistence?: StatePersistenceConfigurations | undefined;
|
|
321
|
+
SharedView?: SharedViewConfigurations | undefined;
|
|
322
|
+
Bookmarks?: BookmarksConfigurations | undefined;
|
|
323
323
|
}
|
|
324
324
|
export interface RegisteredUserDashboardEmbeddingConfiguration {
|
|
325
325
|
InitialDashboardId: string | undefined;
|
|
326
|
-
FeatureConfigurations?:
|
|
326
|
+
FeatureConfigurations?:
|
|
327
|
+
| RegisteredUserDashboardFeatureConfigurations
|
|
328
|
+
| undefined;
|
|
327
329
|
}
|
|
328
330
|
export interface RegisteredUserDashboardVisualEmbeddingConfiguration {
|
|
329
331
|
InitialDashboardVisualId: DashboardVisualId | undefined;
|
|
330
332
|
}
|
|
331
333
|
export interface RegisteredUserGenerativeQnAEmbeddingConfiguration {
|
|
332
|
-
InitialTopicId?: string;
|
|
334
|
+
InitialTopicId?: string | undefined;
|
|
333
335
|
}
|
|
334
336
|
export interface RegisteredUserQSearchBarEmbeddingConfiguration {
|
|
335
|
-
InitialTopicId?: string;
|
|
337
|
+
InitialTopicId?: string | undefined;
|
|
336
338
|
}
|
|
337
339
|
export interface RegisteredUserConsoleFeatureConfigurations {
|
|
338
|
-
StatePersistence?: StatePersistenceConfigurations;
|
|
339
|
-
SharedView?: SharedViewConfigurations;
|
|
340
|
+
StatePersistence?: StatePersistenceConfigurations | undefined;
|
|
341
|
+
SharedView?: SharedViewConfigurations | undefined;
|
|
340
342
|
}
|
|
341
343
|
export interface RegisteredUserQuickSightConsoleEmbeddingConfiguration {
|
|
342
|
-
InitialPath?: string;
|
|
343
|
-
FeatureConfigurations?:
|
|
344
|
+
InitialPath?: string | undefined;
|
|
345
|
+
FeatureConfigurations?:
|
|
346
|
+
| RegisteredUserConsoleFeatureConfigurations
|
|
347
|
+
| undefined;
|
|
344
348
|
}
|
|
345
349
|
export interface RegisteredUserEmbeddingExperienceConfiguration {
|
|
346
|
-
Dashboard?: RegisteredUserDashboardEmbeddingConfiguration;
|
|
347
|
-
QuickSightConsole?:
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
350
|
+
Dashboard?: RegisteredUserDashboardEmbeddingConfiguration | undefined;
|
|
351
|
+
QuickSightConsole?:
|
|
352
|
+
| RegisteredUserQuickSightConsoleEmbeddingConfiguration
|
|
353
|
+
| undefined;
|
|
354
|
+
QSearchBar?: RegisteredUserQSearchBarEmbeddingConfiguration | undefined;
|
|
355
|
+
DashboardVisual?:
|
|
356
|
+
| RegisteredUserDashboardVisualEmbeddingConfiguration
|
|
357
|
+
| undefined;
|
|
358
|
+
GenerativeQnA?: RegisteredUserGenerativeQnAEmbeddingConfiguration | undefined;
|
|
351
359
|
}
|
|
352
360
|
export interface GenerateEmbedUrlForRegisteredUserRequest {
|
|
353
361
|
AwsAccountId: string | undefined;
|
|
354
|
-
SessionLifetimeInMinutes?: number;
|
|
362
|
+
SessionLifetimeInMinutes?: number | undefined;
|
|
355
363
|
UserArn: string | undefined;
|
|
356
364
|
ExperienceConfiguration:
|
|
357
365
|
| RegisteredUserEmbeddingExperienceConfiguration
|
|
358
366
|
| undefined;
|
|
359
|
-
AllowedDomains?: string[];
|
|
367
|
+
AllowedDomains?: string[] | undefined;
|
|
360
368
|
}
|
|
361
369
|
export interface GenerateEmbedUrlForRegisteredUserResponse {
|
|
362
370
|
EmbedUrl: string | undefined;
|
|
@@ -366,8 +374,8 @@ export interface GenerateEmbedUrlForRegisteredUserResponse {
|
|
|
366
374
|
export declare class QuickSightUserNotFoundException extends __BaseException {
|
|
367
375
|
readonly name: "QuickSightUserNotFoundException";
|
|
368
376
|
readonly $fault: "client";
|
|
369
|
-
Message?: string;
|
|
370
|
-
RequestId?: string;
|
|
377
|
+
Message?: string | undefined;
|
|
378
|
+
RequestId?: string | undefined;
|
|
371
379
|
constructor(
|
|
372
380
|
opts: __ExceptionOptionType<
|
|
373
381
|
QuickSightUserNotFoundException,
|
|
@@ -379,24 +387,24 @@ export interface GetDashboardEmbedUrlRequest {
|
|
|
379
387
|
AwsAccountId: string | undefined;
|
|
380
388
|
DashboardId: string | undefined;
|
|
381
389
|
IdentityType: EmbeddingIdentityType | undefined;
|
|
382
|
-
SessionLifetimeInMinutes?: number;
|
|
383
|
-
UndoRedoDisabled?: boolean;
|
|
384
|
-
ResetDisabled?: boolean;
|
|
385
|
-
StatePersistenceEnabled?: boolean;
|
|
386
|
-
UserArn?: string;
|
|
387
|
-
Namespace?: string;
|
|
388
|
-
AdditionalDashboardIds?: string[];
|
|
390
|
+
SessionLifetimeInMinutes?: number | undefined;
|
|
391
|
+
UndoRedoDisabled?: boolean | undefined;
|
|
392
|
+
ResetDisabled?: boolean | undefined;
|
|
393
|
+
StatePersistenceEnabled?: boolean | undefined;
|
|
394
|
+
UserArn?: string | undefined;
|
|
395
|
+
Namespace?: string | undefined;
|
|
396
|
+
AdditionalDashboardIds?: string[] | undefined;
|
|
389
397
|
}
|
|
390
398
|
export interface GetDashboardEmbedUrlResponse {
|
|
391
|
-
EmbedUrl?: string;
|
|
392
|
-
Status?: number;
|
|
393
|
-
RequestId?: string;
|
|
399
|
+
EmbedUrl?: string | undefined;
|
|
400
|
+
Status?: number | undefined;
|
|
401
|
+
RequestId?: string | undefined;
|
|
394
402
|
}
|
|
395
403
|
export declare class IdentityTypeNotSupportedException extends __BaseException {
|
|
396
404
|
readonly name: "IdentityTypeNotSupportedException";
|
|
397
405
|
readonly $fault: "client";
|
|
398
|
-
Message?: string;
|
|
399
|
-
RequestId?: string;
|
|
406
|
+
Message?: string | undefined;
|
|
407
|
+
RequestId?: string | undefined;
|
|
400
408
|
constructor(
|
|
401
409
|
opts: __ExceptionOptionType<
|
|
402
410
|
IdentityTypeNotSupportedException,
|
|
@@ -406,14 +414,14 @@ export declare class IdentityTypeNotSupportedException extends __BaseException {
|
|
|
406
414
|
}
|
|
407
415
|
export interface GetSessionEmbedUrlRequest {
|
|
408
416
|
AwsAccountId: string | undefined;
|
|
409
|
-
EntryPoint?: string;
|
|
410
|
-
SessionLifetimeInMinutes?: number;
|
|
411
|
-
UserArn?: string;
|
|
417
|
+
EntryPoint?: string | undefined;
|
|
418
|
+
SessionLifetimeInMinutes?: number | undefined;
|
|
419
|
+
UserArn?: string | undefined;
|
|
412
420
|
}
|
|
413
421
|
export interface GetSessionEmbedUrlResponse {
|
|
414
|
-
EmbedUrl?: string;
|
|
415
|
-
Status?: number;
|
|
416
|
-
RequestId?: string;
|
|
422
|
+
EmbedUrl?: string | undefined;
|
|
423
|
+
Status?: number | undefined;
|
|
424
|
+
RequestId?: string | undefined;
|
|
417
425
|
}
|
|
418
426
|
export declare const GroupFilterAttribute: {
|
|
419
427
|
readonly GROUP_NAME: "GROUP_NAME";
|
|
@@ -431,363 +439,363 @@ export interface GroupSearchFilter {
|
|
|
431
439
|
Value: string | undefined;
|
|
432
440
|
}
|
|
433
441
|
export interface IAMPolicyAssignmentSummary {
|
|
434
|
-
AssignmentName?: string;
|
|
435
|
-
AssignmentStatus?: AssignmentStatus;
|
|
442
|
+
AssignmentName?: string | undefined;
|
|
443
|
+
AssignmentStatus?: AssignmentStatus | undefined;
|
|
436
444
|
}
|
|
437
445
|
export declare class InvalidRequestException extends __BaseException {
|
|
438
446
|
readonly name: "InvalidRequestException";
|
|
439
447
|
readonly $fault: "client";
|
|
440
|
-
Message?: string;
|
|
441
|
-
RequestId?: string;
|
|
448
|
+
Message?: string | undefined;
|
|
449
|
+
RequestId?: string | undefined;
|
|
442
450
|
constructor(
|
|
443
451
|
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
444
452
|
);
|
|
445
453
|
}
|
|
446
454
|
export interface ListAnalysesRequest {
|
|
447
455
|
AwsAccountId: string | undefined;
|
|
448
|
-
NextToken?: string;
|
|
449
|
-
MaxResults?: number;
|
|
456
|
+
NextToken?: string | undefined;
|
|
457
|
+
MaxResults?: number | undefined;
|
|
450
458
|
}
|
|
451
459
|
export interface ListAnalysesResponse {
|
|
452
|
-
AnalysisSummaryList?: AnalysisSummary[];
|
|
453
|
-
NextToken?: string;
|
|
454
|
-
Status?: number;
|
|
455
|
-
RequestId?: string;
|
|
460
|
+
AnalysisSummaryList?: AnalysisSummary[] | undefined;
|
|
461
|
+
NextToken?: string | undefined;
|
|
462
|
+
Status?: number | undefined;
|
|
463
|
+
RequestId?: string | undefined;
|
|
456
464
|
}
|
|
457
465
|
export interface ListAssetBundleExportJobsRequest {
|
|
458
466
|
AwsAccountId: string | undefined;
|
|
459
|
-
NextToken?: string;
|
|
460
|
-
MaxResults?: number;
|
|
467
|
+
NextToken?: string | undefined;
|
|
468
|
+
MaxResults?: number | undefined;
|
|
461
469
|
}
|
|
462
470
|
export interface ListAssetBundleExportJobsResponse {
|
|
463
|
-
AssetBundleExportJobSummaryList?: AssetBundleExportJobSummary[];
|
|
464
|
-
NextToken?: string;
|
|
465
|
-
RequestId?: string;
|
|
466
|
-
Status?: number;
|
|
471
|
+
AssetBundleExportJobSummaryList?: AssetBundleExportJobSummary[] | undefined;
|
|
472
|
+
NextToken?: string | undefined;
|
|
473
|
+
RequestId?: string | undefined;
|
|
474
|
+
Status?: number | undefined;
|
|
467
475
|
}
|
|
468
476
|
export interface ListAssetBundleImportJobsRequest {
|
|
469
477
|
AwsAccountId: string | undefined;
|
|
470
|
-
NextToken?: string;
|
|
471
|
-
MaxResults?: number;
|
|
478
|
+
NextToken?: string | undefined;
|
|
479
|
+
MaxResults?: number | undefined;
|
|
472
480
|
}
|
|
473
481
|
export interface ListAssetBundleImportJobsResponse {
|
|
474
|
-
AssetBundleImportJobSummaryList?: AssetBundleImportJobSummary[];
|
|
475
|
-
NextToken?: string;
|
|
476
|
-
RequestId?: string;
|
|
477
|
-
Status?: number;
|
|
482
|
+
AssetBundleImportJobSummaryList?: AssetBundleImportJobSummary[] | undefined;
|
|
483
|
+
NextToken?: string | undefined;
|
|
484
|
+
RequestId?: string | undefined;
|
|
485
|
+
Status?: number | undefined;
|
|
478
486
|
}
|
|
479
487
|
export interface ListDashboardsRequest {
|
|
480
488
|
AwsAccountId: string | undefined;
|
|
481
|
-
NextToken?: string;
|
|
482
|
-
MaxResults?: number;
|
|
489
|
+
NextToken?: string | undefined;
|
|
490
|
+
MaxResults?: number | undefined;
|
|
483
491
|
}
|
|
484
492
|
export interface ListDashboardsResponse {
|
|
485
|
-
DashboardSummaryList?: DashboardSummary[];
|
|
486
|
-
NextToken?: string;
|
|
487
|
-
Status?: number;
|
|
488
|
-
RequestId?: string;
|
|
493
|
+
DashboardSummaryList?: DashboardSummary[] | undefined;
|
|
494
|
+
NextToken?: string | undefined;
|
|
495
|
+
Status?: number | undefined;
|
|
496
|
+
RequestId?: string | undefined;
|
|
489
497
|
}
|
|
490
498
|
export interface ListDashboardVersionsRequest {
|
|
491
499
|
AwsAccountId: string | undefined;
|
|
492
500
|
DashboardId: string | undefined;
|
|
493
|
-
NextToken?: string;
|
|
494
|
-
MaxResults?: number;
|
|
501
|
+
NextToken?: string | undefined;
|
|
502
|
+
MaxResults?: number | undefined;
|
|
495
503
|
}
|
|
496
504
|
export interface ListDashboardVersionsResponse {
|
|
497
|
-
DashboardVersionSummaryList?: DashboardVersionSummary[];
|
|
498
|
-
NextToken?: string;
|
|
499
|
-
Status?: number;
|
|
500
|
-
RequestId?: string;
|
|
505
|
+
DashboardVersionSummaryList?: DashboardVersionSummary[] | undefined;
|
|
506
|
+
NextToken?: string | undefined;
|
|
507
|
+
Status?: number | undefined;
|
|
508
|
+
RequestId?: string | undefined;
|
|
501
509
|
}
|
|
502
510
|
export interface ListDataSetsRequest {
|
|
503
511
|
AwsAccountId: string | undefined;
|
|
504
|
-
NextToken?: string;
|
|
505
|
-
MaxResults?: number;
|
|
512
|
+
NextToken?: string | undefined;
|
|
513
|
+
MaxResults?: number | undefined;
|
|
506
514
|
}
|
|
507
515
|
export interface ListDataSetsResponse {
|
|
508
|
-
DataSetSummaries?: DataSetSummary[];
|
|
509
|
-
NextToken?: string;
|
|
510
|
-
RequestId?: string;
|
|
511
|
-
Status?: number;
|
|
516
|
+
DataSetSummaries?: DataSetSummary[] | undefined;
|
|
517
|
+
NextToken?: string | undefined;
|
|
518
|
+
RequestId?: string | undefined;
|
|
519
|
+
Status?: number | undefined;
|
|
512
520
|
}
|
|
513
521
|
export interface ListDataSourcesRequest {
|
|
514
522
|
AwsAccountId: string | undefined;
|
|
515
|
-
NextToken?: string;
|
|
516
|
-
MaxResults?: number;
|
|
523
|
+
NextToken?: string | undefined;
|
|
524
|
+
MaxResults?: number | undefined;
|
|
517
525
|
}
|
|
518
526
|
export interface ListDataSourcesResponse {
|
|
519
|
-
DataSources?: DataSource[];
|
|
520
|
-
NextToken?: string;
|
|
521
|
-
RequestId?: string;
|
|
522
|
-
Status?: number;
|
|
527
|
+
DataSources?: DataSource[] | undefined;
|
|
528
|
+
NextToken?: string | undefined;
|
|
529
|
+
RequestId?: string | undefined;
|
|
530
|
+
Status?: number | undefined;
|
|
523
531
|
}
|
|
524
532
|
export interface ListFolderMembersRequest {
|
|
525
533
|
AwsAccountId: string | undefined;
|
|
526
534
|
FolderId: string | undefined;
|
|
527
|
-
NextToken?: string;
|
|
528
|
-
MaxResults?: number;
|
|
535
|
+
NextToken?: string | undefined;
|
|
536
|
+
MaxResults?: number | undefined;
|
|
529
537
|
}
|
|
530
538
|
export interface ListFolderMembersResponse {
|
|
531
|
-
Status?: number;
|
|
532
|
-
FolderMemberList?: MemberIdArnPair[];
|
|
533
|
-
NextToken?: string;
|
|
534
|
-
RequestId?: string;
|
|
539
|
+
Status?: number | undefined;
|
|
540
|
+
FolderMemberList?: MemberIdArnPair[] | undefined;
|
|
541
|
+
NextToken?: string | undefined;
|
|
542
|
+
RequestId?: string | undefined;
|
|
535
543
|
}
|
|
536
544
|
export interface ListFoldersRequest {
|
|
537
545
|
AwsAccountId: string | undefined;
|
|
538
|
-
NextToken?: string;
|
|
539
|
-
MaxResults?: number;
|
|
546
|
+
NextToken?: string | undefined;
|
|
547
|
+
MaxResults?: number | undefined;
|
|
540
548
|
}
|
|
541
549
|
export interface ListFoldersResponse {
|
|
542
|
-
Status?: number;
|
|
543
|
-
FolderSummaryList?: FolderSummary[];
|
|
544
|
-
NextToken?: string;
|
|
545
|
-
RequestId?: string;
|
|
550
|
+
Status?: number | undefined;
|
|
551
|
+
FolderSummaryList?: FolderSummary[] | undefined;
|
|
552
|
+
NextToken?: string | undefined;
|
|
553
|
+
RequestId?: string | undefined;
|
|
546
554
|
}
|
|
547
555
|
export interface ListFoldersForResourceRequest {
|
|
548
556
|
AwsAccountId: string | undefined;
|
|
549
557
|
ResourceArn: string | undefined;
|
|
550
|
-
NextToken?: string;
|
|
551
|
-
MaxResults?: number;
|
|
558
|
+
NextToken?: string | undefined;
|
|
559
|
+
MaxResults?: number | undefined;
|
|
552
560
|
}
|
|
553
561
|
export interface ListFoldersForResourceResponse {
|
|
554
|
-
Status?: number;
|
|
555
|
-
Folders?: string[];
|
|
556
|
-
NextToken?: string;
|
|
557
|
-
RequestId?: string;
|
|
562
|
+
Status?: number | undefined;
|
|
563
|
+
Folders?: string[] | undefined;
|
|
564
|
+
NextToken?: string | undefined;
|
|
565
|
+
RequestId?: string | undefined;
|
|
558
566
|
}
|
|
559
567
|
export interface ListGroupMembershipsRequest {
|
|
560
568
|
GroupName: string | undefined;
|
|
561
|
-
NextToken?: string;
|
|
562
|
-
MaxResults?: number;
|
|
569
|
+
NextToken?: string | undefined;
|
|
570
|
+
MaxResults?: number | undefined;
|
|
563
571
|
AwsAccountId: string | undefined;
|
|
564
572
|
Namespace: string | undefined;
|
|
565
573
|
}
|
|
566
574
|
export interface ListGroupMembershipsResponse {
|
|
567
|
-
GroupMemberList?: GroupMember[];
|
|
568
|
-
NextToken?: string;
|
|
569
|
-
RequestId?: string;
|
|
570
|
-
Status?: number;
|
|
575
|
+
GroupMemberList?: GroupMember[] | undefined;
|
|
576
|
+
NextToken?: string | undefined;
|
|
577
|
+
RequestId?: string | undefined;
|
|
578
|
+
Status?: number | undefined;
|
|
571
579
|
}
|
|
572
580
|
export interface ListGroupsRequest {
|
|
573
581
|
AwsAccountId: string | undefined;
|
|
574
|
-
NextToken?: string;
|
|
575
|
-
MaxResults?: number;
|
|
582
|
+
NextToken?: string | undefined;
|
|
583
|
+
MaxResults?: number | undefined;
|
|
576
584
|
Namespace: string | undefined;
|
|
577
585
|
}
|
|
578
586
|
export interface ListGroupsResponse {
|
|
579
|
-
GroupList?: Group[];
|
|
580
|
-
NextToken?: string;
|
|
581
|
-
RequestId?: string;
|
|
582
|
-
Status?: number;
|
|
587
|
+
GroupList?: Group[] | undefined;
|
|
588
|
+
NextToken?: string | undefined;
|
|
589
|
+
RequestId?: string | undefined;
|
|
590
|
+
Status?: number | undefined;
|
|
583
591
|
}
|
|
584
592
|
export interface ListIAMPolicyAssignmentsRequest {
|
|
585
593
|
AwsAccountId: string | undefined;
|
|
586
|
-
AssignmentStatus?: AssignmentStatus;
|
|
594
|
+
AssignmentStatus?: AssignmentStatus | undefined;
|
|
587
595
|
Namespace: string | undefined;
|
|
588
|
-
NextToken?: string;
|
|
589
|
-
MaxResults?: number;
|
|
596
|
+
NextToken?: string | undefined;
|
|
597
|
+
MaxResults?: number | undefined;
|
|
590
598
|
}
|
|
591
599
|
export interface ListIAMPolicyAssignmentsResponse {
|
|
592
|
-
IAMPolicyAssignments?: IAMPolicyAssignmentSummary[];
|
|
593
|
-
NextToken?: string;
|
|
594
|
-
RequestId?: string;
|
|
595
|
-
Status?: number;
|
|
600
|
+
IAMPolicyAssignments?: IAMPolicyAssignmentSummary[] | undefined;
|
|
601
|
+
NextToken?: string | undefined;
|
|
602
|
+
RequestId?: string | undefined;
|
|
603
|
+
Status?: number | undefined;
|
|
596
604
|
}
|
|
597
605
|
export interface ListIAMPolicyAssignmentsForUserRequest {
|
|
598
606
|
AwsAccountId: string | undefined;
|
|
599
607
|
UserName: string | undefined;
|
|
600
|
-
NextToken?: string;
|
|
601
|
-
MaxResults?: number;
|
|
608
|
+
NextToken?: string | undefined;
|
|
609
|
+
MaxResults?: number | undefined;
|
|
602
610
|
Namespace: string | undefined;
|
|
603
611
|
}
|
|
604
612
|
export interface ListIAMPolicyAssignmentsForUserResponse {
|
|
605
|
-
ActiveAssignments?: ActiveIAMPolicyAssignment[];
|
|
606
|
-
RequestId?: string;
|
|
607
|
-
NextToken?: string;
|
|
608
|
-
Status?: number;
|
|
613
|
+
ActiveAssignments?: ActiveIAMPolicyAssignment[] | undefined;
|
|
614
|
+
RequestId?: string | undefined;
|
|
615
|
+
NextToken?: string | undefined;
|
|
616
|
+
Status?: number | undefined;
|
|
609
617
|
}
|
|
610
618
|
export interface ListIdentityPropagationConfigsRequest {
|
|
611
619
|
AwsAccountId: string | undefined;
|
|
612
|
-
MaxResults?: number;
|
|
613
|
-
NextToken?: string;
|
|
620
|
+
MaxResults?: number | undefined;
|
|
621
|
+
NextToken?: string | undefined;
|
|
614
622
|
}
|
|
615
623
|
export interface ListIdentityPropagationConfigsResponse {
|
|
616
|
-
Services?: AuthorizedTargetsByService[];
|
|
617
|
-
NextToken?: string;
|
|
618
|
-
Status?: number;
|
|
619
|
-
RequestId?: string;
|
|
624
|
+
Services?: AuthorizedTargetsByService[] | undefined;
|
|
625
|
+
NextToken?: string | undefined;
|
|
626
|
+
Status?: number | undefined;
|
|
627
|
+
RequestId?: string | undefined;
|
|
620
628
|
}
|
|
621
629
|
export interface ListIngestionsRequest {
|
|
622
630
|
DataSetId: string | undefined;
|
|
623
|
-
NextToken?: string;
|
|
631
|
+
NextToken?: string | undefined;
|
|
624
632
|
AwsAccountId: string | undefined;
|
|
625
|
-
MaxResults?: number;
|
|
633
|
+
MaxResults?: number | undefined;
|
|
626
634
|
}
|
|
627
635
|
export interface ListIngestionsResponse {
|
|
628
|
-
Ingestions?: Ingestion[];
|
|
629
|
-
NextToken?: string;
|
|
630
|
-
RequestId?: string;
|
|
631
|
-
Status?: number;
|
|
636
|
+
Ingestions?: Ingestion[] | undefined;
|
|
637
|
+
NextToken?: string | undefined;
|
|
638
|
+
RequestId?: string | undefined;
|
|
639
|
+
Status?: number | undefined;
|
|
632
640
|
}
|
|
633
641
|
export interface ListNamespacesRequest {
|
|
634
642
|
AwsAccountId: string | undefined;
|
|
635
|
-
NextToken?: string;
|
|
636
|
-
MaxResults?: number;
|
|
643
|
+
NextToken?: string | undefined;
|
|
644
|
+
MaxResults?: number | undefined;
|
|
637
645
|
}
|
|
638
646
|
export interface ListNamespacesResponse {
|
|
639
|
-
Namespaces?: NamespaceInfoV2[];
|
|
640
|
-
NextToken?: string;
|
|
641
|
-
RequestId?: string;
|
|
642
|
-
Status?: number;
|
|
647
|
+
Namespaces?: NamespaceInfoV2[] | undefined;
|
|
648
|
+
NextToken?: string | undefined;
|
|
649
|
+
RequestId?: string | undefined;
|
|
650
|
+
Status?: number | undefined;
|
|
643
651
|
}
|
|
644
652
|
export interface ListRefreshSchedulesRequest {
|
|
645
653
|
AwsAccountId: string | undefined;
|
|
646
654
|
DataSetId: string | undefined;
|
|
647
655
|
}
|
|
648
656
|
export interface ListRefreshSchedulesResponse {
|
|
649
|
-
RefreshSchedules?: RefreshSchedule[];
|
|
650
|
-
Status?: number;
|
|
651
|
-
RequestId?: string;
|
|
657
|
+
RefreshSchedules?: RefreshSchedule[] | undefined;
|
|
658
|
+
Status?: number | undefined;
|
|
659
|
+
RequestId?: string | undefined;
|
|
652
660
|
}
|
|
653
661
|
export interface ListRoleMembershipsRequest {
|
|
654
662
|
Role: Role | undefined;
|
|
655
|
-
NextToken?: string;
|
|
656
|
-
MaxResults?: number;
|
|
663
|
+
NextToken?: string | undefined;
|
|
664
|
+
MaxResults?: number | undefined;
|
|
657
665
|
AwsAccountId: string | undefined;
|
|
658
666
|
Namespace: string | undefined;
|
|
659
667
|
}
|
|
660
668
|
export interface ListRoleMembershipsResponse {
|
|
661
|
-
MembersList?: string[];
|
|
662
|
-
NextToken?: string;
|
|
663
|
-
RequestId?: string;
|
|
664
|
-
Status?: number;
|
|
669
|
+
MembersList?: string[] | undefined;
|
|
670
|
+
NextToken?: string | undefined;
|
|
671
|
+
RequestId?: string | undefined;
|
|
672
|
+
Status?: number | undefined;
|
|
665
673
|
}
|
|
666
674
|
export interface ListTagsForResourceRequest {
|
|
667
675
|
ResourceArn: string | undefined;
|
|
668
676
|
}
|
|
669
677
|
export interface ListTagsForResourceResponse {
|
|
670
|
-
Tags?: Tag[];
|
|
671
|
-
RequestId?: string;
|
|
672
|
-
Status?: number;
|
|
678
|
+
Tags?: Tag[] | undefined;
|
|
679
|
+
RequestId?: string | undefined;
|
|
680
|
+
Status?: number | undefined;
|
|
673
681
|
}
|
|
674
682
|
export interface ListTemplateAliasesRequest {
|
|
675
683
|
AwsAccountId: string | undefined;
|
|
676
684
|
TemplateId: string | undefined;
|
|
677
|
-
NextToken?: string;
|
|
678
|
-
MaxResults?: number;
|
|
685
|
+
NextToken?: string | undefined;
|
|
686
|
+
MaxResults?: number | undefined;
|
|
679
687
|
}
|
|
680
688
|
export interface ListTemplateAliasesResponse {
|
|
681
|
-
TemplateAliasList?: TemplateAlias[];
|
|
682
|
-
Status?: number;
|
|
683
|
-
RequestId?: string;
|
|
684
|
-
NextToken?: string;
|
|
689
|
+
TemplateAliasList?: TemplateAlias[] | undefined;
|
|
690
|
+
Status?: number | undefined;
|
|
691
|
+
RequestId?: string | undefined;
|
|
692
|
+
NextToken?: string | undefined;
|
|
685
693
|
}
|
|
686
694
|
export interface ListTemplatesRequest {
|
|
687
695
|
AwsAccountId: string | undefined;
|
|
688
|
-
NextToken?: string;
|
|
689
|
-
MaxResults?: number;
|
|
696
|
+
NextToken?: string | undefined;
|
|
697
|
+
MaxResults?: number | undefined;
|
|
690
698
|
}
|
|
691
699
|
export interface TemplateSummary {
|
|
692
|
-
Arn?: string;
|
|
693
|
-
TemplateId?: string;
|
|
694
|
-
Name?: string;
|
|
695
|
-
LatestVersionNumber?: number;
|
|
696
|
-
CreatedTime?: Date;
|
|
697
|
-
LastUpdatedTime?: Date;
|
|
700
|
+
Arn?: string | undefined;
|
|
701
|
+
TemplateId?: string | undefined;
|
|
702
|
+
Name?: string | undefined;
|
|
703
|
+
LatestVersionNumber?: number | undefined;
|
|
704
|
+
CreatedTime?: Date | undefined;
|
|
705
|
+
LastUpdatedTime?: Date | undefined;
|
|
698
706
|
}
|
|
699
707
|
export interface ListTemplatesResponse {
|
|
700
|
-
TemplateSummaryList?: TemplateSummary[];
|
|
701
|
-
NextToken?: string;
|
|
702
|
-
Status?: number;
|
|
703
|
-
RequestId?: string;
|
|
708
|
+
TemplateSummaryList?: TemplateSummary[] | undefined;
|
|
709
|
+
NextToken?: string | undefined;
|
|
710
|
+
Status?: number | undefined;
|
|
711
|
+
RequestId?: string | undefined;
|
|
704
712
|
}
|
|
705
713
|
export interface ListTemplateVersionsRequest {
|
|
706
714
|
AwsAccountId: string | undefined;
|
|
707
715
|
TemplateId: string | undefined;
|
|
708
|
-
NextToken?: string;
|
|
709
|
-
MaxResults?: number;
|
|
716
|
+
NextToken?: string | undefined;
|
|
717
|
+
MaxResults?: number | undefined;
|
|
710
718
|
}
|
|
711
719
|
export interface TemplateVersionSummary {
|
|
712
|
-
Arn?: string;
|
|
713
|
-
VersionNumber?: number;
|
|
714
|
-
CreatedTime?: Date;
|
|
715
|
-
Status?: ResourceStatus;
|
|
716
|
-
Description?: string;
|
|
720
|
+
Arn?: string | undefined;
|
|
721
|
+
VersionNumber?: number | undefined;
|
|
722
|
+
CreatedTime?: Date | undefined;
|
|
723
|
+
Status?: ResourceStatus | undefined;
|
|
724
|
+
Description?: string | undefined;
|
|
717
725
|
}
|
|
718
726
|
export interface ListTemplateVersionsResponse {
|
|
719
|
-
TemplateVersionSummaryList?: TemplateVersionSummary[];
|
|
720
|
-
NextToken?: string;
|
|
721
|
-
Status?: number;
|
|
722
|
-
RequestId?: string;
|
|
727
|
+
TemplateVersionSummaryList?: TemplateVersionSummary[] | undefined;
|
|
728
|
+
NextToken?: string | undefined;
|
|
729
|
+
Status?: number | undefined;
|
|
730
|
+
RequestId?: string | undefined;
|
|
723
731
|
}
|
|
724
732
|
export interface ListThemeAliasesRequest {
|
|
725
733
|
AwsAccountId: string | undefined;
|
|
726
734
|
ThemeId: string | undefined;
|
|
727
|
-
NextToken?: string;
|
|
728
|
-
MaxResults?: number;
|
|
735
|
+
NextToken?: string | undefined;
|
|
736
|
+
MaxResults?: number | undefined;
|
|
729
737
|
}
|
|
730
738
|
export interface ListThemeAliasesResponse {
|
|
731
|
-
ThemeAliasList?: ThemeAlias[];
|
|
732
|
-
Status?: number;
|
|
733
|
-
RequestId?: string;
|
|
734
|
-
NextToken?: string;
|
|
739
|
+
ThemeAliasList?: ThemeAlias[] | undefined;
|
|
740
|
+
Status?: number | undefined;
|
|
741
|
+
RequestId?: string | undefined;
|
|
742
|
+
NextToken?: string | undefined;
|
|
735
743
|
}
|
|
736
744
|
export interface ListThemesRequest {
|
|
737
745
|
AwsAccountId: string | undefined;
|
|
738
|
-
NextToken?: string;
|
|
739
|
-
MaxResults?: number;
|
|
740
|
-
Type?: ThemeType;
|
|
746
|
+
NextToken?: string | undefined;
|
|
747
|
+
MaxResults?: number | undefined;
|
|
748
|
+
Type?: ThemeType | undefined;
|
|
741
749
|
}
|
|
742
750
|
export interface ThemeSummary {
|
|
743
|
-
Arn?: string;
|
|
744
|
-
Name?: string;
|
|
745
|
-
ThemeId?: string;
|
|
746
|
-
LatestVersionNumber?: number;
|
|
747
|
-
CreatedTime?: Date;
|
|
748
|
-
LastUpdatedTime?: Date;
|
|
751
|
+
Arn?: string | undefined;
|
|
752
|
+
Name?: string | undefined;
|
|
753
|
+
ThemeId?: string | undefined;
|
|
754
|
+
LatestVersionNumber?: number | undefined;
|
|
755
|
+
CreatedTime?: Date | undefined;
|
|
756
|
+
LastUpdatedTime?: Date | undefined;
|
|
749
757
|
}
|
|
750
758
|
export interface ListThemesResponse {
|
|
751
|
-
ThemeSummaryList?: ThemeSummary[];
|
|
752
|
-
NextToken?: string;
|
|
753
|
-
Status?: number;
|
|
754
|
-
RequestId?: string;
|
|
759
|
+
ThemeSummaryList?: ThemeSummary[] | undefined;
|
|
760
|
+
NextToken?: string | undefined;
|
|
761
|
+
Status?: number | undefined;
|
|
762
|
+
RequestId?: string | undefined;
|
|
755
763
|
}
|
|
756
764
|
export interface ListThemeVersionsRequest {
|
|
757
765
|
AwsAccountId: string | undefined;
|
|
758
766
|
ThemeId: string | undefined;
|
|
759
|
-
NextToken?: string;
|
|
760
|
-
MaxResults?: number;
|
|
767
|
+
NextToken?: string | undefined;
|
|
768
|
+
MaxResults?: number | undefined;
|
|
761
769
|
}
|
|
762
770
|
export interface ThemeVersionSummary {
|
|
763
|
-
VersionNumber?: number;
|
|
764
|
-
Arn?: string;
|
|
765
|
-
Description?: string;
|
|
766
|
-
CreatedTime?: Date;
|
|
767
|
-
Status?: ResourceStatus;
|
|
771
|
+
VersionNumber?: number | undefined;
|
|
772
|
+
Arn?: string | undefined;
|
|
773
|
+
Description?: string | undefined;
|
|
774
|
+
CreatedTime?: Date | undefined;
|
|
775
|
+
Status?: ResourceStatus | undefined;
|
|
768
776
|
}
|
|
769
777
|
export interface ListThemeVersionsResponse {
|
|
770
|
-
ThemeVersionSummaryList?: ThemeVersionSummary[];
|
|
771
|
-
NextToken?: string;
|
|
772
|
-
Status?: number;
|
|
773
|
-
RequestId?: string;
|
|
778
|
+
ThemeVersionSummaryList?: ThemeVersionSummary[] | undefined;
|
|
779
|
+
NextToken?: string | undefined;
|
|
780
|
+
Status?: number | undefined;
|
|
781
|
+
RequestId?: string | undefined;
|
|
774
782
|
}
|
|
775
783
|
export interface ListTopicRefreshSchedulesRequest {
|
|
776
784
|
AwsAccountId: string | undefined;
|
|
777
785
|
TopicId: string | undefined;
|
|
778
786
|
}
|
|
779
787
|
export interface TopicRefreshScheduleSummary {
|
|
780
|
-
DatasetId?: string;
|
|
781
|
-
DatasetArn?: string;
|
|
782
|
-
DatasetName?: string;
|
|
783
|
-
RefreshSchedule?: TopicRefreshSchedule;
|
|
788
|
+
DatasetId?: string | undefined;
|
|
789
|
+
DatasetArn?: string | undefined;
|
|
790
|
+
DatasetName?: string | undefined;
|
|
791
|
+
RefreshSchedule?: TopicRefreshSchedule | undefined;
|
|
784
792
|
}
|
|
785
793
|
export interface ListTopicRefreshSchedulesResponse {
|
|
786
|
-
TopicId?: string;
|
|
787
|
-
TopicArn?: string;
|
|
788
|
-
RefreshSchedules?: TopicRefreshScheduleSummary[];
|
|
789
|
-
Status?: number;
|
|
790
|
-
RequestId?: string;
|
|
794
|
+
TopicId?: string | undefined;
|
|
795
|
+
TopicArn?: string | undefined;
|
|
796
|
+
RefreshSchedules?: TopicRefreshScheduleSummary[] | undefined;
|
|
797
|
+
Status?: number | undefined;
|
|
798
|
+
RequestId?: string | undefined;
|
|
791
799
|
}
|
|
792
800
|
export interface ListTopicReviewedAnswersRequest {
|
|
793
801
|
AwsAccountId: string | undefined;
|
|
@@ -795,70 +803,70 @@ export interface ListTopicReviewedAnswersRequest {
|
|
|
795
803
|
}
|
|
796
804
|
export interface ListTopicsRequest {
|
|
797
805
|
AwsAccountId: string | undefined;
|
|
798
|
-
NextToken?: string;
|
|
799
|
-
MaxResults?: number;
|
|
806
|
+
NextToken?: string | undefined;
|
|
807
|
+
MaxResults?: number | undefined;
|
|
800
808
|
}
|
|
801
809
|
export interface TopicSummary {
|
|
802
|
-
Arn?: string;
|
|
803
|
-
TopicId?: string;
|
|
804
|
-
Name?: string;
|
|
805
|
-
UserExperienceVersion?: TopicUserExperienceVersion;
|
|
810
|
+
Arn?: string | undefined;
|
|
811
|
+
TopicId?: string | undefined;
|
|
812
|
+
Name?: string | undefined;
|
|
813
|
+
UserExperienceVersion?: TopicUserExperienceVersion | undefined;
|
|
806
814
|
}
|
|
807
815
|
export interface ListTopicsResponse {
|
|
808
|
-
TopicsSummaries?: TopicSummary[];
|
|
809
|
-
NextToken?: string;
|
|
810
|
-
RequestId?: string;
|
|
811
|
-
Status?: number;
|
|
816
|
+
TopicsSummaries?: TopicSummary[] | undefined;
|
|
817
|
+
NextToken?: string | undefined;
|
|
818
|
+
RequestId?: string | undefined;
|
|
819
|
+
Status?: number | undefined;
|
|
812
820
|
}
|
|
813
821
|
export interface ListUserGroupsRequest {
|
|
814
822
|
UserName: string | undefined;
|
|
815
823
|
AwsAccountId: string | undefined;
|
|
816
824
|
Namespace: string | undefined;
|
|
817
|
-
NextToken?: string;
|
|
818
|
-
MaxResults?: number;
|
|
825
|
+
NextToken?: string | undefined;
|
|
826
|
+
MaxResults?: number | undefined;
|
|
819
827
|
}
|
|
820
828
|
export interface ListUserGroupsResponse {
|
|
821
|
-
GroupList?: Group[];
|
|
822
|
-
NextToken?: string;
|
|
823
|
-
RequestId?: string;
|
|
824
|
-
Status?: number;
|
|
829
|
+
GroupList?: Group[] | undefined;
|
|
830
|
+
NextToken?: string | undefined;
|
|
831
|
+
RequestId?: string | undefined;
|
|
832
|
+
Status?: number | undefined;
|
|
825
833
|
}
|
|
826
834
|
export interface ListUsersRequest {
|
|
827
835
|
AwsAccountId: string | undefined;
|
|
828
|
-
NextToken?: string;
|
|
829
|
-
MaxResults?: number;
|
|
836
|
+
NextToken?: string | undefined;
|
|
837
|
+
MaxResults?: number | undefined;
|
|
830
838
|
Namespace: string | undefined;
|
|
831
839
|
}
|
|
832
840
|
export interface ListUsersResponse {
|
|
833
|
-
UserList?: User[];
|
|
834
|
-
NextToken?: string;
|
|
835
|
-
RequestId?: string;
|
|
836
|
-
Status?: number;
|
|
841
|
+
UserList?: User[] | undefined;
|
|
842
|
+
NextToken?: string | undefined;
|
|
843
|
+
RequestId?: string | undefined;
|
|
844
|
+
Status?: number | undefined;
|
|
837
845
|
}
|
|
838
846
|
export interface ListVPCConnectionsRequest {
|
|
839
847
|
AwsAccountId: string | undefined;
|
|
840
|
-
NextToken?: string;
|
|
841
|
-
MaxResults?: number;
|
|
848
|
+
NextToken?: string | undefined;
|
|
849
|
+
MaxResults?: number | undefined;
|
|
842
850
|
}
|
|
843
851
|
export interface VPCConnectionSummary {
|
|
844
|
-
VPCConnectionId?: string;
|
|
845
|
-
Arn?: string;
|
|
846
|
-
Name?: string;
|
|
847
|
-
VPCId?: string;
|
|
848
|
-
SecurityGroupIds?: string[];
|
|
849
|
-
DnsResolvers?: string[];
|
|
850
|
-
Status?: VPCConnectionResourceStatus;
|
|
851
|
-
AvailabilityStatus?: VPCConnectionAvailabilityStatus;
|
|
852
|
-
NetworkInterfaces?: NetworkInterface[];
|
|
853
|
-
RoleArn?: string;
|
|
854
|
-
CreatedTime?: Date;
|
|
855
|
-
LastUpdatedTime?: Date;
|
|
852
|
+
VPCConnectionId?: string | undefined;
|
|
853
|
+
Arn?: string | undefined;
|
|
854
|
+
Name?: string | undefined;
|
|
855
|
+
VPCId?: string | undefined;
|
|
856
|
+
SecurityGroupIds?: string[] | undefined;
|
|
857
|
+
DnsResolvers?: string[] | undefined;
|
|
858
|
+
Status?: VPCConnectionResourceStatus | undefined;
|
|
859
|
+
AvailabilityStatus?: VPCConnectionAvailabilityStatus | undefined;
|
|
860
|
+
NetworkInterfaces?: NetworkInterface[] | undefined;
|
|
861
|
+
RoleArn?: string | undefined;
|
|
862
|
+
CreatedTime?: Date | undefined;
|
|
863
|
+
LastUpdatedTime?: Date | undefined;
|
|
856
864
|
}
|
|
857
865
|
export interface ListVPCConnectionsResponse {
|
|
858
|
-
VPCConnectionSummaries?: VPCConnectionSummary[];
|
|
859
|
-
NextToken?: string;
|
|
860
|
-
RequestId?: string;
|
|
861
|
-
Status?: number;
|
|
866
|
+
VPCConnectionSummaries?: VPCConnectionSummary[] | undefined;
|
|
867
|
+
NextToken?: string | undefined;
|
|
868
|
+
RequestId?: string | undefined;
|
|
869
|
+
Status?: number | undefined;
|
|
862
870
|
}
|
|
863
871
|
export declare const PurchaseMode: {
|
|
864
872
|
readonly AUTO_PURCHASE: "AUTO_PURCHASE";
|
|
@@ -871,155 +879,159 @@ export interface PutDataSetRefreshPropertiesRequest {
|
|
|
871
879
|
DataSetRefreshProperties: DataSetRefreshProperties | undefined;
|
|
872
880
|
}
|
|
873
881
|
export interface PutDataSetRefreshPropertiesResponse {
|
|
874
|
-
RequestId?: string;
|
|
875
|
-
Status?: number;
|
|
882
|
+
RequestId?: string | undefined;
|
|
883
|
+
Status?: number | undefined;
|
|
876
884
|
}
|
|
877
885
|
export interface RegisterUserRequest {
|
|
878
886
|
IdentityType: IdentityType | undefined;
|
|
879
887
|
Email: string | undefined;
|
|
880
888
|
UserRole: UserRole | undefined;
|
|
881
|
-
IamArn?: string;
|
|
882
|
-
SessionName?: string;
|
|
889
|
+
IamArn?: string | undefined;
|
|
890
|
+
SessionName?: string | undefined;
|
|
883
891
|
AwsAccountId: string | undefined;
|
|
884
892
|
Namespace: string | undefined;
|
|
885
|
-
UserName?: string;
|
|
886
|
-
CustomPermissionsName?: string;
|
|
887
|
-
ExternalLoginFederationProviderType?: string;
|
|
888
|
-
CustomFederationProviderUrl?: string;
|
|
889
|
-
ExternalLoginId?: string;
|
|
890
|
-
Tags?: Tag[];
|
|
893
|
+
UserName?: string | undefined;
|
|
894
|
+
CustomPermissionsName?: string | undefined;
|
|
895
|
+
ExternalLoginFederationProviderType?: string | undefined;
|
|
896
|
+
CustomFederationProviderUrl?: string | undefined;
|
|
897
|
+
ExternalLoginId?: string | undefined;
|
|
898
|
+
Tags?: Tag[] | undefined;
|
|
891
899
|
}
|
|
892
900
|
export interface RegisterUserResponse {
|
|
893
|
-
User?: User;
|
|
894
|
-
UserInvitationUrl?: string;
|
|
895
|
-
RequestId?: string;
|
|
896
|
-
Status?: number;
|
|
901
|
+
User?: User | undefined;
|
|
902
|
+
UserInvitationUrl?: string | undefined;
|
|
903
|
+
RequestId?: string | undefined;
|
|
904
|
+
Status?: number | undefined;
|
|
897
905
|
}
|
|
898
906
|
export interface RestoreAnalysisRequest {
|
|
899
907
|
AwsAccountId: string | undefined;
|
|
900
908
|
AnalysisId: string | undefined;
|
|
901
|
-
RestoreToFolders?: boolean;
|
|
909
|
+
RestoreToFolders?: boolean | undefined;
|
|
902
910
|
}
|
|
903
911
|
export interface RestoreAnalysisResponse {
|
|
904
|
-
Status?: number;
|
|
905
|
-
Arn?: string;
|
|
906
|
-
AnalysisId?: string;
|
|
907
|
-
RequestId?: string;
|
|
908
|
-
RestorationFailedFolderArns?: string[];
|
|
912
|
+
Status?: number | undefined;
|
|
913
|
+
Arn?: string | undefined;
|
|
914
|
+
AnalysisId?: string | undefined;
|
|
915
|
+
RequestId?: string | undefined;
|
|
916
|
+
RestorationFailedFolderArns?: string[] | undefined;
|
|
909
917
|
}
|
|
910
918
|
export interface SearchAnalysesRequest {
|
|
911
919
|
AwsAccountId: string | undefined;
|
|
912
920
|
Filters: AnalysisSearchFilter[] | undefined;
|
|
913
|
-
NextToken?: string;
|
|
914
|
-
MaxResults?: number;
|
|
921
|
+
NextToken?: string | undefined;
|
|
922
|
+
MaxResults?: number | undefined;
|
|
915
923
|
}
|
|
916
924
|
export interface SearchAnalysesResponse {
|
|
917
|
-
AnalysisSummaryList?: AnalysisSummary[];
|
|
918
|
-
NextToken?: string;
|
|
919
|
-
Status?: number;
|
|
920
|
-
RequestId?: string;
|
|
925
|
+
AnalysisSummaryList?: AnalysisSummary[] | undefined;
|
|
926
|
+
NextToken?: string | undefined;
|
|
927
|
+
Status?: number | undefined;
|
|
928
|
+
RequestId?: string | undefined;
|
|
921
929
|
}
|
|
922
930
|
export interface SearchDashboardsRequest {
|
|
923
931
|
AwsAccountId: string | undefined;
|
|
924
932
|
Filters: DashboardSearchFilter[] | undefined;
|
|
925
|
-
NextToken?: string;
|
|
926
|
-
MaxResults?: number;
|
|
933
|
+
NextToken?: string | undefined;
|
|
934
|
+
MaxResults?: number | undefined;
|
|
927
935
|
}
|
|
928
936
|
export interface SearchDashboardsResponse {
|
|
929
|
-
DashboardSummaryList?: DashboardSummary[];
|
|
930
|
-
NextToken?: string;
|
|
931
|
-
Status?: number;
|
|
932
|
-
RequestId?: string;
|
|
937
|
+
DashboardSummaryList?: DashboardSummary[] | undefined;
|
|
938
|
+
NextToken?: string | undefined;
|
|
939
|
+
Status?: number | undefined;
|
|
940
|
+
RequestId?: string | undefined;
|
|
933
941
|
}
|
|
934
942
|
export interface SearchDataSetsRequest {
|
|
935
943
|
AwsAccountId: string | undefined;
|
|
936
944
|
Filters: DataSetSearchFilter[] | undefined;
|
|
937
|
-
NextToken?: string;
|
|
938
|
-
MaxResults?: number;
|
|
945
|
+
NextToken?: string | undefined;
|
|
946
|
+
MaxResults?: number | undefined;
|
|
939
947
|
}
|
|
940
948
|
export interface SearchDataSetsResponse {
|
|
941
|
-
DataSetSummaries?: DataSetSummary[];
|
|
942
|
-
NextToken?: string;
|
|
943
|
-
Status?: number;
|
|
944
|
-
RequestId?: string;
|
|
949
|
+
DataSetSummaries?: DataSetSummary[] | undefined;
|
|
950
|
+
NextToken?: string | undefined;
|
|
951
|
+
Status?: number | undefined;
|
|
952
|
+
RequestId?: string | undefined;
|
|
945
953
|
}
|
|
946
954
|
export interface SearchDataSourcesRequest {
|
|
947
955
|
AwsAccountId: string | undefined;
|
|
948
956
|
Filters: DataSourceSearchFilter[] | undefined;
|
|
949
|
-
NextToken?: string;
|
|
950
|
-
MaxResults?: number;
|
|
957
|
+
NextToken?: string | undefined;
|
|
958
|
+
MaxResults?: number | undefined;
|
|
951
959
|
}
|
|
952
960
|
export interface SearchDataSourcesResponse {
|
|
953
|
-
DataSourceSummaries?: DataSourceSummary[];
|
|
954
|
-
NextToken?: string;
|
|
955
|
-
Status?: number;
|
|
956
|
-
RequestId?: string;
|
|
961
|
+
DataSourceSummaries?: DataSourceSummary[] | undefined;
|
|
962
|
+
NextToken?: string | undefined;
|
|
963
|
+
Status?: number | undefined;
|
|
964
|
+
RequestId?: string | undefined;
|
|
957
965
|
}
|
|
958
966
|
export interface SearchFoldersRequest {
|
|
959
967
|
AwsAccountId: string | undefined;
|
|
960
968
|
Filters: FolderSearchFilter[] | undefined;
|
|
961
|
-
NextToken?: string;
|
|
962
|
-
MaxResults?: number;
|
|
969
|
+
NextToken?: string | undefined;
|
|
970
|
+
MaxResults?: number | undefined;
|
|
963
971
|
}
|
|
964
972
|
export interface SearchFoldersResponse {
|
|
965
|
-
Status?: number;
|
|
966
|
-
FolderSummaryList?: FolderSummary[];
|
|
967
|
-
NextToken?: string;
|
|
968
|
-
RequestId?: string;
|
|
973
|
+
Status?: number | undefined;
|
|
974
|
+
FolderSummaryList?: FolderSummary[] | undefined;
|
|
975
|
+
NextToken?: string | undefined;
|
|
976
|
+
RequestId?: string | undefined;
|
|
969
977
|
}
|
|
970
978
|
export interface SearchGroupsRequest {
|
|
971
979
|
AwsAccountId: string | undefined;
|
|
972
|
-
NextToken?: string;
|
|
973
|
-
MaxResults?: number;
|
|
980
|
+
NextToken?: string | undefined;
|
|
981
|
+
MaxResults?: number | undefined;
|
|
974
982
|
Namespace: string | undefined;
|
|
975
983
|
Filters: GroupSearchFilter[] | undefined;
|
|
976
984
|
}
|
|
977
985
|
export interface SearchGroupsResponse {
|
|
978
|
-
GroupList?: Group[];
|
|
979
|
-
NextToken?: string;
|
|
980
|
-
RequestId?: string;
|
|
981
|
-
Status?: number;
|
|
986
|
+
GroupList?: Group[] | undefined;
|
|
987
|
+
NextToken?: string | undefined;
|
|
988
|
+
RequestId?: string | undefined;
|
|
989
|
+
Status?: number | undefined;
|
|
982
990
|
}
|
|
983
991
|
export interface StartAssetBundleExportJobRequest {
|
|
984
992
|
AwsAccountId: string | undefined;
|
|
985
993
|
AssetBundleExportJobId: string | undefined;
|
|
986
994
|
ResourceArns: string[] | undefined;
|
|
987
|
-
IncludeAllDependencies?: boolean;
|
|
995
|
+
IncludeAllDependencies?: boolean | undefined;
|
|
988
996
|
ExportFormat: AssetBundleExportFormat | undefined;
|
|
989
|
-
CloudFormationOverridePropertyConfiguration?:
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
997
|
+
CloudFormationOverridePropertyConfiguration?:
|
|
998
|
+
| AssetBundleCloudFormationOverridePropertyConfiguration
|
|
999
|
+
| undefined;
|
|
1000
|
+
IncludePermissions?: boolean | undefined;
|
|
1001
|
+
IncludeTags?: boolean | undefined;
|
|
1002
|
+
ValidationStrategy?: AssetBundleExportJobValidationStrategy | undefined;
|
|
1003
|
+
IncludeFolderMemberships?: boolean | undefined;
|
|
1004
|
+
IncludeFolderMembers?: IncludeFolderMembers | undefined;
|
|
995
1005
|
}
|
|
996
1006
|
export interface StartAssetBundleExportJobResponse {
|
|
997
|
-
Arn?: string;
|
|
998
|
-
AssetBundleExportJobId?: string;
|
|
999
|
-
RequestId?: string;
|
|
1000
|
-
Status?: number;
|
|
1007
|
+
Arn?: string | undefined;
|
|
1008
|
+
AssetBundleExportJobId?: string | undefined;
|
|
1009
|
+
RequestId?: string | undefined;
|
|
1010
|
+
Status?: number | undefined;
|
|
1001
1011
|
}
|
|
1002
1012
|
export interface StartAssetBundleImportJobRequest {
|
|
1003
1013
|
AwsAccountId: string | undefined;
|
|
1004
1014
|
AssetBundleImportJobId: string | undefined;
|
|
1005
1015
|
AssetBundleImportSource: AssetBundleImportSource | undefined;
|
|
1006
|
-
OverrideParameters?: AssetBundleImportJobOverrideParameters;
|
|
1007
|
-
FailureAction?: AssetBundleImportFailureAction;
|
|
1008
|
-
OverridePermissions?: AssetBundleImportJobOverridePermissions;
|
|
1009
|
-
OverrideTags?: AssetBundleImportJobOverrideTags;
|
|
1010
|
-
OverrideValidationStrategy?:
|
|
1016
|
+
OverrideParameters?: AssetBundleImportJobOverrideParameters | undefined;
|
|
1017
|
+
FailureAction?: AssetBundleImportFailureAction | undefined;
|
|
1018
|
+
OverridePermissions?: AssetBundleImportJobOverridePermissions | undefined;
|
|
1019
|
+
OverrideTags?: AssetBundleImportJobOverrideTags | undefined;
|
|
1020
|
+
OverrideValidationStrategy?:
|
|
1021
|
+
| AssetBundleImportJobOverrideValidationStrategy
|
|
1022
|
+
| undefined;
|
|
1011
1023
|
}
|
|
1012
1024
|
export interface StartAssetBundleImportJobResponse {
|
|
1013
|
-
Arn?: string;
|
|
1014
|
-
AssetBundleImportJobId?: string;
|
|
1015
|
-
RequestId?: string;
|
|
1016
|
-
Status?: number;
|
|
1025
|
+
Arn?: string | undefined;
|
|
1026
|
+
AssetBundleImportJobId?: string | undefined;
|
|
1027
|
+
RequestId?: string | undefined;
|
|
1028
|
+
Status?: number | undefined;
|
|
1017
1029
|
}
|
|
1018
1030
|
export interface SnapshotAnonymousUser {
|
|
1019
|
-
RowLevelPermissionTags?: SessionTag[];
|
|
1031
|
+
RowLevelPermissionTags?: SessionTag[] | undefined;
|
|
1020
1032
|
}
|
|
1021
1033
|
export interface SnapshotUserConfiguration {
|
|
1022
|
-
AnonymousUsers?: SnapshotAnonymousUser[];
|
|
1034
|
+
AnonymousUsers?: SnapshotAnonymousUser[] | undefined;
|
|
1023
1035
|
}
|
|
1024
1036
|
export interface StartDashboardSnapshotJobRequest {
|
|
1025
1037
|
AwsAccountId: string | undefined;
|
|
@@ -1029,10 +1041,10 @@ export interface StartDashboardSnapshotJobRequest {
|
|
|
1029
1041
|
SnapshotConfiguration: SnapshotConfiguration | undefined;
|
|
1030
1042
|
}
|
|
1031
1043
|
export interface StartDashboardSnapshotJobResponse {
|
|
1032
|
-
Arn?: string;
|
|
1033
|
-
SnapshotJobId?: string;
|
|
1034
|
-
RequestId?: string;
|
|
1035
|
-
Status?: number;
|
|
1044
|
+
Arn?: string | undefined;
|
|
1045
|
+
SnapshotJobId?: string | undefined;
|
|
1046
|
+
RequestId?: string | undefined;
|
|
1047
|
+
Status?: number | undefined;
|
|
1036
1048
|
}
|
|
1037
1049
|
export interface StartDashboardSnapshotJobScheduleRequest {
|
|
1038
1050
|
AwsAccountId: string | undefined;
|
|
@@ -1040,97 +1052,97 @@ export interface StartDashboardSnapshotJobScheduleRequest {
|
|
|
1040
1052
|
ScheduleId: string | undefined;
|
|
1041
1053
|
}
|
|
1042
1054
|
export interface StartDashboardSnapshotJobScheduleResponse {
|
|
1043
|
-
RequestId?: string;
|
|
1044
|
-
Status?: number;
|
|
1055
|
+
RequestId?: string | undefined;
|
|
1056
|
+
Status?: number | undefined;
|
|
1045
1057
|
}
|
|
1046
1058
|
export interface TagResourceRequest {
|
|
1047
1059
|
ResourceArn: string | undefined;
|
|
1048
1060
|
Tags: Tag[] | undefined;
|
|
1049
1061
|
}
|
|
1050
1062
|
export interface TagResourceResponse {
|
|
1051
|
-
RequestId?: string;
|
|
1052
|
-
Status?: number;
|
|
1063
|
+
RequestId?: string | undefined;
|
|
1064
|
+
Status?: number | undefined;
|
|
1053
1065
|
}
|
|
1054
1066
|
export interface UntagResourceRequest {
|
|
1055
1067
|
ResourceArn: string | undefined;
|
|
1056
1068
|
TagKeys: string[] | undefined;
|
|
1057
1069
|
}
|
|
1058
1070
|
export interface UntagResourceResponse {
|
|
1059
|
-
RequestId?: string;
|
|
1060
|
-
Status?: number;
|
|
1071
|
+
RequestId?: string | undefined;
|
|
1072
|
+
Status?: number | undefined;
|
|
1061
1073
|
}
|
|
1062
1074
|
export interface UpdateAccountCustomizationRequest {
|
|
1063
1075
|
AwsAccountId: string | undefined;
|
|
1064
|
-
Namespace?: string;
|
|
1076
|
+
Namespace?: string | undefined;
|
|
1065
1077
|
AccountCustomization: AccountCustomization | undefined;
|
|
1066
1078
|
}
|
|
1067
1079
|
export interface UpdateAccountCustomizationResponse {
|
|
1068
|
-
Arn?: string;
|
|
1069
|
-
AwsAccountId?: string;
|
|
1070
|
-
Namespace?: string;
|
|
1071
|
-
AccountCustomization?: AccountCustomization;
|
|
1072
|
-
RequestId?: string;
|
|
1073
|
-
Status?: number;
|
|
1080
|
+
Arn?: string | undefined;
|
|
1081
|
+
AwsAccountId?: string | undefined;
|
|
1082
|
+
Namespace?: string | undefined;
|
|
1083
|
+
AccountCustomization?: AccountCustomization | undefined;
|
|
1084
|
+
RequestId?: string | undefined;
|
|
1085
|
+
Status?: number | undefined;
|
|
1074
1086
|
}
|
|
1075
1087
|
export interface UpdateAccountSettingsRequest {
|
|
1076
1088
|
AwsAccountId: string | undefined;
|
|
1077
1089
|
DefaultNamespace: string | undefined;
|
|
1078
|
-
NotificationEmail?: string;
|
|
1079
|
-
TerminationProtectionEnabled?: boolean;
|
|
1090
|
+
NotificationEmail?: string | undefined;
|
|
1091
|
+
TerminationProtectionEnabled?: boolean | undefined;
|
|
1080
1092
|
}
|
|
1081
1093
|
export interface UpdateAccountSettingsResponse {
|
|
1082
|
-
RequestId?: string;
|
|
1083
|
-
Status?: number;
|
|
1094
|
+
RequestId?: string | undefined;
|
|
1095
|
+
Status?: number | undefined;
|
|
1084
1096
|
}
|
|
1085
1097
|
export interface UpdateAnalysisRequest {
|
|
1086
1098
|
AwsAccountId: string | undefined;
|
|
1087
1099
|
AnalysisId: string | undefined;
|
|
1088
1100
|
Name: string | undefined;
|
|
1089
|
-
Parameters?: _Parameters;
|
|
1090
|
-
SourceEntity?: AnalysisSourceEntity;
|
|
1091
|
-
ThemeArn?: string;
|
|
1092
|
-
Definition?: AnalysisDefinition;
|
|
1093
|
-
ValidationStrategy?: ValidationStrategy;
|
|
1101
|
+
Parameters?: _Parameters | undefined;
|
|
1102
|
+
SourceEntity?: AnalysisSourceEntity | undefined;
|
|
1103
|
+
ThemeArn?: string | undefined;
|
|
1104
|
+
Definition?: AnalysisDefinition | undefined;
|
|
1105
|
+
ValidationStrategy?: ValidationStrategy | undefined;
|
|
1094
1106
|
}
|
|
1095
1107
|
export interface UpdateAnalysisResponse {
|
|
1096
|
-
Arn?: string;
|
|
1097
|
-
AnalysisId?: string;
|
|
1098
|
-
UpdateStatus?: ResourceStatus;
|
|
1099
|
-
Status?: number;
|
|
1100
|
-
RequestId?: string;
|
|
1108
|
+
Arn?: string | undefined;
|
|
1109
|
+
AnalysisId?: string | undefined;
|
|
1110
|
+
UpdateStatus?: ResourceStatus | undefined;
|
|
1111
|
+
Status?: number | undefined;
|
|
1112
|
+
RequestId?: string | undefined;
|
|
1101
1113
|
}
|
|
1102
1114
|
export interface UpdateAnalysisPermissionsRequest {
|
|
1103
1115
|
AwsAccountId: string | undefined;
|
|
1104
1116
|
AnalysisId: string | undefined;
|
|
1105
|
-
GrantPermissions?: ResourcePermission[];
|
|
1106
|
-
RevokePermissions?: ResourcePermission[];
|
|
1117
|
+
GrantPermissions?: ResourcePermission[] | undefined;
|
|
1118
|
+
RevokePermissions?: ResourcePermission[] | undefined;
|
|
1107
1119
|
}
|
|
1108
1120
|
export interface UpdateAnalysisPermissionsResponse {
|
|
1109
|
-
AnalysisArn?: string;
|
|
1110
|
-
AnalysisId?: string;
|
|
1111
|
-
Permissions?: ResourcePermission[];
|
|
1112
|
-
RequestId?: string;
|
|
1113
|
-
Status?: number;
|
|
1121
|
+
AnalysisArn?: string | undefined;
|
|
1122
|
+
AnalysisId?: string | undefined;
|
|
1123
|
+
Permissions?: ResourcePermission[] | undefined;
|
|
1124
|
+
RequestId?: string | undefined;
|
|
1125
|
+
Status?: number | undefined;
|
|
1114
1126
|
}
|
|
1115
1127
|
export interface UpdateDashboardRequest {
|
|
1116
1128
|
AwsAccountId: string | undefined;
|
|
1117
1129
|
DashboardId: string | undefined;
|
|
1118
1130
|
Name: string | undefined;
|
|
1119
|
-
SourceEntity?: DashboardSourceEntity;
|
|
1120
|
-
Parameters?: _Parameters;
|
|
1121
|
-
VersionDescription?: string;
|
|
1122
|
-
DashboardPublishOptions?: DashboardPublishOptions;
|
|
1123
|
-
ThemeArn?: string;
|
|
1124
|
-
Definition?: DashboardVersionDefinition;
|
|
1125
|
-
ValidationStrategy?: ValidationStrategy;
|
|
1131
|
+
SourceEntity?: DashboardSourceEntity | undefined;
|
|
1132
|
+
Parameters?: _Parameters | undefined;
|
|
1133
|
+
VersionDescription?: string | undefined;
|
|
1134
|
+
DashboardPublishOptions?: DashboardPublishOptions | undefined;
|
|
1135
|
+
ThemeArn?: string | undefined;
|
|
1136
|
+
Definition?: DashboardVersionDefinition | undefined;
|
|
1137
|
+
ValidationStrategy?: ValidationStrategy | undefined;
|
|
1126
1138
|
}
|
|
1127
1139
|
export interface UpdateDashboardResponse {
|
|
1128
|
-
Arn?: string;
|
|
1129
|
-
VersionArn?: string;
|
|
1130
|
-
DashboardId?: string;
|
|
1131
|
-
CreationStatus?: ResourceStatus;
|
|
1132
|
-
Status?: number;
|
|
1133
|
-
RequestId?: string;
|
|
1140
|
+
Arn?: string | undefined;
|
|
1141
|
+
VersionArn?: string | undefined;
|
|
1142
|
+
DashboardId?: string | undefined;
|
|
1143
|
+
CreationStatus?: ResourceStatus | undefined;
|
|
1144
|
+
Status?: number | undefined;
|
|
1145
|
+
RequestId?: string | undefined;
|
|
1134
1146
|
}
|
|
1135
1147
|
export interface UpdateDashboardLinksRequest {
|
|
1136
1148
|
AwsAccountId: string | undefined;
|
|
@@ -1138,26 +1150,26 @@ export interface UpdateDashboardLinksRequest {
|
|
|
1138
1150
|
LinkEntities: string[] | undefined;
|
|
1139
1151
|
}
|
|
1140
1152
|
export interface UpdateDashboardLinksResponse {
|
|
1141
|
-
RequestId?: string;
|
|
1142
|
-
Status?: number;
|
|
1143
|
-
DashboardArn?: string;
|
|
1144
|
-
LinkEntities?: string[];
|
|
1153
|
+
RequestId?: string | undefined;
|
|
1154
|
+
Status?: number | undefined;
|
|
1155
|
+
DashboardArn?: string | undefined;
|
|
1156
|
+
LinkEntities?: string[] | undefined;
|
|
1145
1157
|
}
|
|
1146
1158
|
export interface UpdateDashboardPermissionsRequest {
|
|
1147
1159
|
AwsAccountId: string | undefined;
|
|
1148
1160
|
DashboardId: string | undefined;
|
|
1149
|
-
GrantPermissions?: ResourcePermission[];
|
|
1150
|
-
RevokePermissions?: ResourcePermission[];
|
|
1151
|
-
GrantLinkPermissions?: ResourcePermission[];
|
|
1152
|
-
RevokeLinkPermissions?: ResourcePermission[];
|
|
1161
|
+
GrantPermissions?: ResourcePermission[] | undefined;
|
|
1162
|
+
RevokePermissions?: ResourcePermission[] | undefined;
|
|
1163
|
+
GrantLinkPermissions?: ResourcePermission[] | undefined;
|
|
1164
|
+
RevokeLinkPermissions?: ResourcePermission[] | undefined;
|
|
1153
1165
|
}
|
|
1154
1166
|
export interface UpdateDashboardPermissionsResponse {
|
|
1155
|
-
DashboardArn?: string;
|
|
1156
|
-
DashboardId?: string;
|
|
1157
|
-
Permissions?: ResourcePermission[];
|
|
1158
|
-
RequestId?: string;
|
|
1159
|
-
Status?: number;
|
|
1160
|
-
LinkSharingConfiguration?: LinkSharingConfiguration;
|
|
1167
|
+
DashboardArn?: string | undefined;
|
|
1168
|
+
DashboardId?: string | undefined;
|
|
1169
|
+
Permissions?: ResourcePermission[] | undefined;
|
|
1170
|
+
RequestId?: string | undefined;
|
|
1171
|
+
Status?: number | undefined;
|
|
1172
|
+
LinkSharingConfiguration?: LinkSharingConfiguration | undefined;
|
|
1161
1173
|
}
|
|
1162
1174
|
export interface UpdateDashboardPublishedVersionRequest {
|
|
1163
1175
|
AwsAccountId: string | undefined;
|
|
@@ -1165,73 +1177,75 @@ export interface UpdateDashboardPublishedVersionRequest {
|
|
|
1165
1177
|
VersionNumber: number | undefined;
|
|
1166
1178
|
}
|
|
1167
1179
|
export interface UpdateDashboardPublishedVersionResponse {
|
|
1168
|
-
DashboardId?: string;
|
|
1169
|
-
DashboardArn?: string;
|
|
1170
|
-
Status?: number;
|
|
1171
|
-
RequestId?: string;
|
|
1180
|
+
DashboardId?: string | undefined;
|
|
1181
|
+
DashboardArn?: string | undefined;
|
|
1182
|
+
Status?: number | undefined;
|
|
1183
|
+
RequestId?: string | undefined;
|
|
1172
1184
|
}
|
|
1173
1185
|
export interface UpdateDataSetRequest {
|
|
1174
1186
|
AwsAccountId: string | undefined;
|
|
1175
1187
|
DataSetId: string | undefined;
|
|
1176
1188
|
Name: string | undefined;
|
|
1177
1189
|
PhysicalTableMap: Record<string, PhysicalTable> | undefined;
|
|
1178
|
-
LogicalTableMap?: Record<string, LogicalTable
|
|
1190
|
+
LogicalTableMap?: Record<string, LogicalTable> | undefined;
|
|
1179
1191
|
ImportMode: DataSetImportMode | undefined;
|
|
1180
|
-
ColumnGroups?: ColumnGroup[];
|
|
1181
|
-
FieldFolders?: Record<string, FieldFolder
|
|
1182
|
-
RowLevelPermissionDataSet?: RowLevelPermissionDataSet;
|
|
1183
|
-
RowLevelPermissionTagConfiguration?:
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1192
|
+
ColumnGroups?: ColumnGroup[] | undefined;
|
|
1193
|
+
FieldFolders?: Record<string, FieldFolder> | undefined;
|
|
1194
|
+
RowLevelPermissionDataSet?: RowLevelPermissionDataSet | undefined;
|
|
1195
|
+
RowLevelPermissionTagConfiguration?:
|
|
1196
|
+
| RowLevelPermissionTagConfiguration
|
|
1197
|
+
| undefined;
|
|
1198
|
+
ColumnLevelPermissionRules?: ColumnLevelPermissionRule[] | undefined;
|
|
1199
|
+
DataSetUsageConfiguration?: DataSetUsageConfiguration | undefined;
|
|
1200
|
+
DatasetParameters?: DatasetParameter[] | undefined;
|
|
1187
1201
|
}
|
|
1188
1202
|
export interface UpdateDataSetResponse {
|
|
1189
|
-
Arn?: string;
|
|
1190
|
-
DataSetId?: string;
|
|
1191
|
-
IngestionArn?: string;
|
|
1192
|
-
IngestionId?: string;
|
|
1193
|
-
RequestId?: string;
|
|
1194
|
-
Status?: number;
|
|
1203
|
+
Arn?: string | undefined;
|
|
1204
|
+
DataSetId?: string | undefined;
|
|
1205
|
+
IngestionArn?: string | undefined;
|
|
1206
|
+
IngestionId?: string | undefined;
|
|
1207
|
+
RequestId?: string | undefined;
|
|
1208
|
+
Status?: number | undefined;
|
|
1195
1209
|
}
|
|
1196
1210
|
export interface UpdateDataSetPermissionsRequest {
|
|
1197
1211
|
AwsAccountId: string | undefined;
|
|
1198
1212
|
DataSetId: string | undefined;
|
|
1199
|
-
GrantPermissions?: ResourcePermission[];
|
|
1200
|
-
RevokePermissions?: ResourcePermission[];
|
|
1213
|
+
GrantPermissions?: ResourcePermission[] | undefined;
|
|
1214
|
+
RevokePermissions?: ResourcePermission[] | undefined;
|
|
1201
1215
|
}
|
|
1202
1216
|
export interface UpdateDataSetPermissionsResponse {
|
|
1203
|
-
DataSetArn?: string;
|
|
1204
|
-
DataSetId?: string;
|
|
1205
|
-
RequestId?: string;
|
|
1206
|
-
Status?: number;
|
|
1217
|
+
DataSetArn?: string | undefined;
|
|
1218
|
+
DataSetId?: string | undefined;
|
|
1219
|
+
RequestId?: string | undefined;
|
|
1220
|
+
Status?: number | undefined;
|
|
1207
1221
|
}
|
|
1208
1222
|
export interface UpdateDataSourceRequest {
|
|
1209
1223
|
AwsAccountId: string | undefined;
|
|
1210
1224
|
DataSourceId: string | undefined;
|
|
1211
1225
|
Name: string | undefined;
|
|
1212
|
-
DataSourceParameters?: DataSourceParameters;
|
|
1213
|
-
Credentials?: DataSourceCredentials;
|
|
1214
|
-
VpcConnectionProperties?: VpcConnectionProperties;
|
|
1215
|
-
SslProperties?: SslProperties;
|
|
1226
|
+
DataSourceParameters?: DataSourceParameters | undefined;
|
|
1227
|
+
Credentials?: DataSourceCredentials | undefined;
|
|
1228
|
+
VpcConnectionProperties?: VpcConnectionProperties | undefined;
|
|
1229
|
+
SslProperties?: SslProperties | undefined;
|
|
1216
1230
|
}
|
|
1217
1231
|
export interface UpdateDataSourceResponse {
|
|
1218
|
-
Arn?: string;
|
|
1219
|
-
DataSourceId?: string;
|
|
1220
|
-
UpdateStatus?: ResourceStatus;
|
|
1221
|
-
RequestId?: string;
|
|
1222
|
-
Status?: number;
|
|
1232
|
+
Arn?: string | undefined;
|
|
1233
|
+
DataSourceId?: string | undefined;
|
|
1234
|
+
UpdateStatus?: ResourceStatus | undefined;
|
|
1235
|
+
RequestId?: string | undefined;
|
|
1236
|
+
Status?: number | undefined;
|
|
1223
1237
|
}
|
|
1224
1238
|
export interface UpdateDataSourcePermissionsRequest {
|
|
1225
1239
|
AwsAccountId: string | undefined;
|
|
1226
1240
|
DataSourceId: string | undefined;
|
|
1227
|
-
GrantPermissions?: ResourcePermission[];
|
|
1228
|
-
RevokePermissions?: ResourcePermission[];
|
|
1241
|
+
GrantPermissions?: ResourcePermission[] | undefined;
|
|
1242
|
+
RevokePermissions?: ResourcePermission[] | undefined;
|
|
1229
1243
|
}
|
|
1230
1244
|
export interface UpdateDataSourcePermissionsResponse {
|
|
1231
|
-
DataSourceArn?: string;
|
|
1232
|
-
DataSourceId?: string;
|
|
1233
|
-
RequestId?: string;
|
|
1234
|
-
Status?: number;
|
|
1245
|
+
DataSourceArn?: string | undefined;
|
|
1246
|
+
DataSourceId?: string | undefined;
|
|
1247
|
+
RequestId?: string | undefined;
|
|
1248
|
+
Status?: number | undefined;
|
|
1235
1249
|
}
|
|
1236
1250
|
export interface UpdateFolderRequest {
|
|
1237
1251
|
AwsAccountId: string | undefined;
|
|
@@ -1239,72 +1253,72 @@ export interface UpdateFolderRequest {
|
|
|
1239
1253
|
Name: string | undefined;
|
|
1240
1254
|
}
|
|
1241
1255
|
export interface UpdateFolderResponse {
|
|
1242
|
-
Status?: number;
|
|
1243
|
-
Arn?: string;
|
|
1244
|
-
FolderId?: string;
|
|
1245
|
-
RequestId?: string;
|
|
1256
|
+
Status?: number | undefined;
|
|
1257
|
+
Arn?: string | undefined;
|
|
1258
|
+
FolderId?: string | undefined;
|
|
1259
|
+
RequestId?: string | undefined;
|
|
1246
1260
|
}
|
|
1247
1261
|
export interface UpdateFolderPermissionsRequest {
|
|
1248
1262
|
AwsAccountId: string | undefined;
|
|
1249
1263
|
FolderId: string | undefined;
|
|
1250
|
-
GrantPermissions?: ResourcePermission[];
|
|
1251
|
-
RevokePermissions?: ResourcePermission[];
|
|
1264
|
+
GrantPermissions?: ResourcePermission[] | undefined;
|
|
1265
|
+
RevokePermissions?: ResourcePermission[] | undefined;
|
|
1252
1266
|
}
|
|
1253
1267
|
export interface UpdateFolderPermissionsResponse {
|
|
1254
|
-
Status?: number;
|
|
1255
|
-
Arn?: string;
|
|
1256
|
-
FolderId?: string;
|
|
1257
|
-
Permissions?: ResourcePermission[];
|
|
1258
|
-
RequestId?: string;
|
|
1268
|
+
Status?: number | undefined;
|
|
1269
|
+
Arn?: string | undefined;
|
|
1270
|
+
FolderId?: string | undefined;
|
|
1271
|
+
Permissions?: ResourcePermission[] | undefined;
|
|
1272
|
+
RequestId?: string | undefined;
|
|
1259
1273
|
}
|
|
1260
1274
|
export interface UpdateGroupRequest {
|
|
1261
1275
|
GroupName: string | undefined;
|
|
1262
|
-
Description?: string;
|
|
1276
|
+
Description?: string | undefined;
|
|
1263
1277
|
AwsAccountId: string | undefined;
|
|
1264
1278
|
Namespace: string | undefined;
|
|
1265
1279
|
}
|
|
1266
1280
|
export interface UpdateGroupResponse {
|
|
1267
|
-
Group?: Group;
|
|
1268
|
-
RequestId?: string;
|
|
1269
|
-
Status?: number;
|
|
1281
|
+
Group?: Group | undefined;
|
|
1282
|
+
RequestId?: string | undefined;
|
|
1283
|
+
Status?: number | undefined;
|
|
1270
1284
|
}
|
|
1271
1285
|
export interface UpdateIAMPolicyAssignmentRequest {
|
|
1272
1286
|
AwsAccountId: string | undefined;
|
|
1273
1287
|
AssignmentName: string | undefined;
|
|
1274
1288
|
Namespace: string | undefined;
|
|
1275
|
-
AssignmentStatus?: AssignmentStatus;
|
|
1276
|
-
PolicyArn?: string;
|
|
1277
|
-
Identities?: Record<string, string[]
|
|
1289
|
+
AssignmentStatus?: AssignmentStatus | undefined;
|
|
1290
|
+
PolicyArn?: string | undefined;
|
|
1291
|
+
Identities?: Record<string, string[]> | undefined;
|
|
1278
1292
|
}
|
|
1279
1293
|
export interface UpdateIAMPolicyAssignmentResponse {
|
|
1280
|
-
AssignmentName?: string;
|
|
1281
|
-
AssignmentId?: string;
|
|
1282
|
-
PolicyArn?: string;
|
|
1283
|
-
Identities?: Record<string, string[]
|
|
1284
|
-
AssignmentStatus?: AssignmentStatus;
|
|
1285
|
-
RequestId?: string;
|
|
1286
|
-
Status?: number;
|
|
1294
|
+
AssignmentName?: string | undefined;
|
|
1295
|
+
AssignmentId?: string | undefined;
|
|
1296
|
+
PolicyArn?: string | undefined;
|
|
1297
|
+
Identities?: Record<string, string[]> | undefined;
|
|
1298
|
+
AssignmentStatus?: AssignmentStatus | undefined;
|
|
1299
|
+
RequestId?: string | undefined;
|
|
1300
|
+
Status?: number | undefined;
|
|
1287
1301
|
}
|
|
1288
1302
|
export interface UpdateIdentityPropagationConfigRequest {
|
|
1289
1303
|
AwsAccountId: string | undefined;
|
|
1290
1304
|
Service: ServiceType | undefined;
|
|
1291
|
-
AuthorizedTargets?: string[];
|
|
1305
|
+
AuthorizedTargets?: string[] | undefined;
|
|
1292
1306
|
}
|
|
1293
1307
|
export interface UpdateIdentityPropagationConfigResponse {
|
|
1294
|
-
RequestId?: string;
|
|
1295
|
-
Status?: number;
|
|
1308
|
+
RequestId?: string | undefined;
|
|
1309
|
+
Status?: number | undefined;
|
|
1296
1310
|
}
|
|
1297
1311
|
export interface UpdateIpRestrictionRequest {
|
|
1298
1312
|
AwsAccountId: string | undefined;
|
|
1299
|
-
IpRestrictionRuleMap?: Record<string, string
|
|
1300
|
-
VpcIdRestrictionRuleMap?: Record<string, string
|
|
1301
|
-
VpcEndpointIdRestrictionRuleMap?: Record<string, string
|
|
1302
|
-
Enabled?: boolean;
|
|
1313
|
+
IpRestrictionRuleMap?: Record<string, string> | undefined;
|
|
1314
|
+
VpcIdRestrictionRuleMap?: Record<string, string> | undefined;
|
|
1315
|
+
VpcEndpointIdRestrictionRuleMap?: Record<string, string> | undefined;
|
|
1316
|
+
Enabled?: boolean | undefined;
|
|
1303
1317
|
}
|
|
1304
1318
|
export interface UpdateIpRestrictionResponse {
|
|
1305
|
-
AwsAccountId?: string;
|
|
1306
|
-
RequestId?: string;
|
|
1307
|
-
Status?: number;
|
|
1319
|
+
AwsAccountId?: string | undefined;
|
|
1320
|
+
RequestId?: string | undefined;
|
|
1321
|
+
Status?: number | undefined;
|
|
1308
1322
|
}
|
|
1309
1323
|
export interface UpdateKeyRegistrationRequest {
|
|
1310
1324
|
AwsAccountId: string | undefined;
|
|
@@ -1315,26 +1329,26 @@ export interface SuccessfulKeyRegistrationEntry {
|
|
|
1315
1329
|
StatusCode: number | undefined;
|
|
1316
1330
|
}
|
|
1317
1331
|
export interface UpdateKeyRegistrationResponse {
|
|
1318
|
-
FailedKeyRegistration?: FailedKeyRegistrationEntry[];
|
|
1319
|
-
SuccessfulKeyRegistration?: SuccessfulKeyRegistrationEntry[];
|
|
1320
|
-
RequestId?: string;
|
|
1332
|
+
FailedKeyRegistration?: FailedKeyRegistrationEntry[] | undefined;
|
|
1333
|
+
SuccessfulKeyRegistration?: SuccessfulKeyRegistrationEntry[] | undefined;
|
|
1334
|
+
RequestId?: string | undefined;
|
|
1321
1335
|
}
|
|
1322
1336
|
export interface UpdatePublicSharingSettingsRequest {
|
|
1323
1337
|
AwsAccountId: string | undefined;
|
|
1324
|
-
PublicSharingEnabled?: boolean;
|
|
1338
|
+
PublicSharingEnabled?: boolean | undefined;
|
|
1325
1339
|
}
|
|
1326
1340
|
export interface UpdatePublicSharingSettingsResponse {
|
|
1327
|
-
RequestId?: string;
|
|
1328
|
-
Status?: number;
|
|
1341
|
+
RequestId?: string | undefined;
|
|
1342
|
+
Status?: number | undefined;
|
|
1329
1343
|
}
|
|
1330
1344
|
export interface UpdateQPersonalizationConfigurationRequest {
|
|
1331
1345
|
AwsAccountId: string | undefined;
|
|
1332
1346
|
PersonalizationMode: PersonalizationMode | undefined;
|
|
1333
1347
|
}
|
|
1334
1348
|
export interface UpdateQPersonalizationConfigurationResponse {
|
|
1335
|
-
PersonalizationMode?: PersonalizationMode;
|
|
1336
|
-
RequestId?: string;
|
|
1337
|
-
Status?: number;
|
|
1349
|
+
PersonalizationMode?: PersonalizationMode | undefined;
|
|
1350
|
+
RequestId?: string | undefined;
|
|
1351
|
+
Status?: number | undefined;
|
|
1338
1352
|
}
|
|
1339
1353
|
export interface UpdateRefreshScheduleRequest {
|
|
1340
1354
|
DataSetId: string | undefined;
|
|
@@ -1342,10 +1356,10 @@ export interface UpdateRefreshScheduleRequest {
|
|
|
1342
1356
|
Schedule: RefreshSchedule | undefined;
|
|
1343
1357
|
}
|
|
1344
1358
|
export interface UpdateRefreshScheduleResponse {
|
|
1345
|
-
Status?: number;
|
|
1346
|
-
RequestId?: string;
|
|
1347
|
-
ScheduleId?: string;
|
|
1348
|
-
Arn?: string;
|
|
1359
|
+
Status?: number | undefined;
|
|
1360
|
+
RequestId?: string | undefined;
|
|
1361
|
+
ScheduleId?: string | undefined;
|
|
1362
|
+
Arn?: string | undefined;
|
|
1349
1363
|
}
|
|
1350
1364
|
export interface UpdateRoleCustomPermissionRequest {
|
|
1351
1365
|
CustomPermissionsName: string | undefined;
|
|
@@ -1354,33 +1368,33 @@ export interface UpdateRoleCustomPermissionRequest {
|
|
|
1354
1368
|
Namespace: string | undefined;
|
|
1355
1369
|
}
|
|
1356
1370
|
export interface UpdateRoleCustomPermissionResponse {
|
|
1357
|
-
RequestId?: string;
|
|
1358
|
-
Status?: number;
|
|
1371
|
+
RequestId?: string | undefined;
|
|
1372
|
+
Status?: number | undefined;
|
|
1359
1373
|
}
|
|
1360
1374
|
export interface UpdateSPICECapacityConfigurationRequest {
|
|
1361
1375
|
AwsAccountId: string | undefined;
|
|
1362
1376
|
PurchaseMode: PurchaseMode | undefined;
|
|
1363
1377
|
}
|
|
1364
1378
|
export interface UpdateSPICECapacityConfigurationResponse {
|
|
1365
|
-
RequestId?: string;
|
|
1366
|
-
Status?: number;
|
|
1379
|
+
RequestId?: string | undefined;
|
|
1380
|
+
Status?: number | undefined;
|
|
1367
1381
|
}
|
|
1368
1382
|
export interface UpdateTemplateRequest {
|
|
1369
1383
|
AwsAccountId: string | undefined;
|
|
1370
1384
|
TemplateId: string | undefined;
|
|
1371
|
-
SourceEntity?: TemplateSourceEntity;
|
|
1372
|
-
VersionDescription?: string;
|
|
1373
|
-
Name?: string;
|
|
1374
|
-
Definition?: TemplateVersionDefinition;
|
|
1375
|
-
ValidationStrategy?: ValidationStrategy;
|
|
1385
|
+
SourceEntity?: TemplateSourceEntity | undefined;
|
|
1386
|
+
VersionDescription?: string | undefined;
|
|
1387
|
+
Name?: string | undefined;
|
|
1388
|
+
Definition?: TemplateVersionDefinition | undefined;
|
|
1389
|
+
ValidationStrategy?: ValidationStrategy | undefined;
|
|
1376
1390
|
}
|
|
1377
1391
|
export interface UpdateTemplateResponse {
|
|
1378
|
-
TemplateId?: string;
|
|
1379
|
-
Arn?: string;
|
|
1380
|
-
VersionArn?: string;
|
|
1381
|
-
CreationStatus?: ResourceStatus;
|
|
1382
|
-
Status?: number;
|
|
1383
|
-
RequestId?: string;
|
|
1392
|
+
TemplateId?: string | undefined;
|
|
1393
|
+
Arn?: string | undefined;
|
|
1394
|
+
VersionArn?: string | undefined;
|
|
1395
|
+
CreationStatus?: ResourceStatus | undefined;
|
|
1396
|
+
Status?: number | undefined;
|
|
1397
|
+
RequestId?: string | undefined;
|
|
1384
1398
|
}
|
|
1385
1399
|
export interface UpdateTemplateAliasRequest {
|
|
1386
1400
|
AwsAccountId: string | undefined;
|
|
@@ -1389,38 +1403,38 @@ export interface UpdateTemplateAliasRequest {
|
|
|
1389
1403
|
TemplateVersionNumber: number | undefined;
|
|
1390
1404
|
}
|
|
1391
1405
|
export interface UpdateTemplateAliasResponse {
|
|
1392
|
-
TemplateAlias?: TemplateAlias;
|
|
1393
|
-
Status?: number;
|
|
1394
|
-
RequestId?: string;
|
|
1406
|
+
TemplateAlias?: TemplateAlias | undefined;
|
|
1407
|
+
Status?: number | undefined;
|
|
1408
|
+
RequestId?: string | undefined;
|
|
1395
1409
|
}
|
|
1396
1410
|
export interface UpdateTemplatePermissionsRequest {
|
|
1397
1411
|
AwsAccountId: string | undefined;
|
|
1398
1412
|
TemplateId: string | undefined;
|
|
1399
|
-
GrantPermissions?: ResourcePermission[];
|
|
1400
|
-
RevokePermissions?: ResourcePermission[];
|
|
1413
|
+
GrantPermissions?: ResourcePermission[] | undefined;
|
|
1414
|
+
RevokePermissions?: ResourcePermission[] | undefined;
|
|
1401
1415
|
}
|
|
1402
1416
|
export interface UpdateTemplatePermissionsResponse {
|
|
1403
|
-
TemplateId?: string;
|
|
1404
|
-
TemplateArn?: string;
|
|
1405
|
-
Permissions?: ResourcePermission[];
|
|
1406
|
-
RequestId?: string;
|
|
1407
|
-
Status?: number;
|
|
1417
|
+
TemplateId?: string | undefined;
|
|
1418
|
+
TemplateArn?: string | undefined;
|
|
1419
|
+
Permissions?: ResourcePermission[] | undefined;
|
|
1420
|
+
RequestId?: string | undefined;
|
|
1421
|
+
Status?: number | undefined;
|
|
1408
1422
|
}
|
|
1409
1423
|
export interface UpdateThemeRequest {
|
|
1410
1424
|
AwsAccountId: string | undefined;
|
|
1411
1425
|
ThemeId: string | undefined;
|
|
1412
|
-
Name?: string;
|
|
1426
|
+
Name?: string | undefined;
|
|
1413
1427
|
BaseThemeId: string | undefined;
|
|
1414
|
-
VersionDescription?: string;
|
|
1415
|
-
Configuration?: ThemeConfiguration;
|
|
1428
|
+
VersionDescription?: string | undefined;
|
|
1429
|
+
Configuration?: ThemeConfiguration | undefined;
|
|
1416
1430
|
}
|
|
1417
1431
|
export interface UpdateThemeResponse {
|
|
1418
|
-
ThemeId?: string;
|
|
1419
|
-
Arn?: string;
|
|
1420
|
-
VersionArn?: string;
|
|
1421
|
-
CreationStatus?: ResourceStatus;
|
|
1422
|
-
Status?: number;
|
|
1423
|
-
RequestId?: string;
|
|
1432
|
+
ThemeId?: string | undefined;
|
|
1433
|
+
Arn?: string | undefined;
|
|
1434
|
+
VersionArn?: string | undefined;
|
|
1435
|
+
CreationStatus?: ResourceStatus | undefined;
|
|
1436
|
+
Status?: number | undefined;
|
|
1437
|
+
RequestId?: string | undefined;
|
|
1424
1438
|
}
|
|
1425
1439
|
export interface UpdateThemeAliasRequest {
|
|
1426
1440
|
AwsAccountId: string | undefined;
|
|
@@ -1429,22 +1443,22 @@ export interface UpdateThemeAliasRequest {
|
|
|
1429
1443
|
ThemeVersionNumber: number | undefined;
|
|
1430
1444
|
}
|
|
1431
1445
|
export interface UpdateThemeAliasResponse {
|
|
1432
|
-
ThemeAlias?: ThemeAlias;
|
|
1433
|
-
Status?: number;
|
|
1434
|
-
RequestId?: string;
|
|
1446
|
+
ThemeAlias?: ThemeAlias | undefined;
|
|
1447
|
+
Status?: number | undefined;
|
|
1448
|
+
RequestId?: string | undefined;
|
|
1435
1449
|
}
|
|
1436
1450
|
export interface UpdateThemePermissionsRequest {
|
|
1437
1451
|
AwsAccountId: string | undefined;
|
|
1438
1452
|
ThemeId: string | undefined;
|
|
1439
|
-
GrantPermissions?: ResourcePermission[];
|
|
1440
|
-
RevokePermissions?: ResourcePermission[];
|
|
1453
|
+
GrantPermissions?: ResourcePermission[] | undefined;
|
|
1454
|
+
RevokePermissions?: ResourcePermission[] | undefined;
|
|
1441
1455
|
}
|
|
1442
1456
|
export interface UpdateThemePermissionsResponse {
|
|
1443
|
-
ThemeId?: string;
|
|
1444
|
-
ThemeArn?: string;
|
|
1445
|
-
Permissions?: ResourcePermission[];
|
|
1446
|
-
RequestId?: string;
|
|
1447
|
-
Status?: number;
|
|
1457
|
+
ThemeId?: string | undefined;
|
|
1458
|
+
ThemeArn?: string | undefined;
|
|
1459
|
+
Permissions?: ResourcePermission[] | undefined;
|
|
1460
|
+
RequestId?: string | undefined;
|
|
1461
|
+
Status?: number | undefined;
|
|
1448
1462
|
}
|
|
1449
1463
|
export interface UpdateTopicRequest {
|
|
1450
1464
|
AwsAccountId: string | undefined;
|
|
@@ -1452,24 +1466,24 @@ export interface UpdateTopicRequest {
|
|
|
1452
1466
|
Topic: TopicDetails | undefined;
|
|
1453
1467
|
}
|
|
1454
1468
|
export interface UpdateTopicResponse {
|
|
1455
|
-
TopicId?: string;
|
|
1456
|
-
Arn?: string;
|
|
1457
|
-
RefreshArn?: string;
|
|
1458
|
-
RequestId?: string;
|
|
1459
|
-
Status?: number;
|
|
1469
|
+
TopicId?: string | undefined;
|
|
1470
|
+
Arn?: string | undefined;
|
|
1471
|
+
RefreshArn?: string | undefined;
|
|
1472
|
+
RequestId?: string | undefined;
|
|
1473
|
+
Status?: number | undefined;
|
|
1460
1474
|
}
|
|
1461
1475
|
export interface UpdateTopicPermissionsRequest {
|
|
1462
1476
|
AwsAccountId: string | undefined;
|
|
1463
1477
|
TopicId: string | undefined;
|
|
1464
|
-
GrantPermissions?: ResourcePermission[];
|
|
1465
|
-
RevokePermissions?: ResourcePermission[];
|
|
1478
|
+
GrantPermissions?: ResourcePermission[] | undefined;
|
|
1479
|
+
RevokePermissions?: ResourcePermission[] | undefined;
|
|
1466
1480
|
}
|
|
1467
1481
|
export interface UpdateTopicPermissionsResponse {
|
|
1468
|
-
TopicId?: string;
|
|
1469
|
-
TopicArn?: string;
|
|
1470
|
-
Permissions?: ResourcePermission[];
|
|
1471
|
-
Status?: number;
|
|
1472
|
-
RequestId?: string;
|
|
1482
|
+
TopicId?: string | undefined;
|
|
1483
|
+
TopicArn?: string | undefined;
|
|
1484
|
+
Permissions?: ResourcePermission[] | undefined;
|
|
1485
|
+
Status?: number | undefined;
|
|
1486
|
+
RequestId?: string | undefined;
|
|
1473
1487
|
}
|
|
1474
1488
|
export interface UpdateTopicRefreshScheduleRequest {
|
|
1475
1489
|
AwsAccountId: string | undefined;
|
|
@@ -1478,11 +1492,11 @@ export interface UpdateTopicRefreshScheduleRequest {
|
|
|
1478
1492
|
RefreshSchedule: TopicRefreshSchedule | undefined;
|
|
1479
1493
|
}
|
|
1480
1494
|
export interface UpdateTopicRefreshScheduleResponse {
|
|
1481
|
-
TopicId?: string;
|
|
1482
|
-
TopicArn?: string;
|
|
1483
|
-
DatasetArn?: string;
|
|
1484
|
-
Status?: number;
|
|
1485
|
-
RequestId?: string;
|
|
1495
|
+
TopicId?: string | undefined;
|
|
1496
|
+
TopicArn?: string | undefined;
|
|
1497
|
+
DatasetArn?: string | undefined;
|
|
1498
|
+
Status?: number | undefined;
|
|
1499
|
+
RequestId?: string | undefined;
|
|
1486
1500
|
}
|
|
1487
1501
|
export interface UpdateUserRequest {
|
|
1488
1502
|
UserName: string | undefined;
|
|
@@ -1490,16 +1504,16 @@ export interface UpdateUserRequest {
|
|
|
1490
1504
|
Namespace: string | undefined;
|
|
1491
1505
|
Email: string | undefined;
|
|
1492
1506
|
Role: UserRole | undefined;
|
|
1493
|
-
CustomPermissionsName?: string;
|
|
1494
|
-
UnapplyCustomPermissions?: boolean;
|
|
1495
|
-
ExternalLoginFederationProviderType?: string;
|
|
1496
|
-
CustomFederationProviderUrl?: string;
|
|
1497
|
-
ExternalLoginId?: string;
|
|
1507
|
+
CustomPermissionsName?: string | undefined;
|
|
1508
|
+
UnapplyCustomPermissions?: boolean | undefined;
|
|
1509
|
+
ExternalLoginFederationProviderType?: string | undefined;
|
|
1510
|
+
CustomFederationProviderUrl?: string | undefined;
|
|
1511
|
+
ExternalLoginId?: string | undefined;
|
|
1498
1512
|
}
|
|
1499
1513
|
export interface UpdateUserResponse {
|
|
1500
|
-
User?: User;
|
|
1501
|
-
RequestId?: string;
|
|
1502
|
-
Status?: number;
|
|
1514
|
+
User?: User | undefined;
|
|
1515
|
+
RequestId?: string | undefined;
|
|
1516
|
+
Status?: number | undefined;
|
|
1503
1517
|
}
|
|
1504
1518
|
export interface UpdateVPCConnectionRequest {
|
|
1505
1519
|
AwsAccountId: string | undefined;
|
|
@@ -1507,39 +1521,39 @@ export interface UpdateVPCConnectionRequest {
|
|
|
1507
1521
|
Name: string | undefined;
|
|
1508
1522
|
SubnetIds: string[] | undefined;
|
|
1509
1523
|
SecurityGroupIds: string[] | undefined;
|
|
1510
|
-
DnsResolvers?: string[];
|
|
1524
|
+
DnsResolvers?: string[] | undefined;
|
|
1511
1525
|
RoleArn: string | undefined;
|
|
1512
1526
|
}
|
|
1513
1527
|
export interface UpdateVPCConnectionResponse {
|
|
1514
|
-
Arn?: string;
|
|
1515
|
-
VPCConnectionId?: string;
|
|
1516
|
-
UpdateStatus?: VPCConnectionResourceStatus;
|
|
1517
|
-
AvailabilityStatus?: VPCConnectionAvailabilityStatus;
|
|
1518
|
-
RequestId?: string;
|
|
1519
|
-
Status?: number;
|
|
1528
|
+
Arn?: string | undefined;
|
|
1529
|
+
VPCConnectionId?: string | undefined;
|
|
1530
|
+
UpdateStatus?: VPCConnectionResourceStatus | undefined;
|
|
1531
|
+
AvailabilityStatus?: VPCConnectionAvailabilityStatus | undefined;
|
|
1532
|
+
RequestId?: string | undefined;
|
|
1533
|
+
Status?: number | undefined;
|
|
1520
1534
|
}
|
|
1521
1535
|
export interface TopicVisual {
|
|
1522
|
-
VisualId?: string;
|
|
1523
|
-
Role?: VisualRole;
|
|
1524
|
-
Ir?: TopicIR;
|
|
1525
|
-
SupportingVisuals?: TopicVisual[];
|
|
1536
|
+
VisualId?: string | undefined;
|
|
1537
|
+
Role?: VisualRole | undefined;
|
|
1538
|
+
Ir?: TopicIR | undefined;
|
|
1539
|
+
SupportingVisuals?: TopicVisual[] | undefined;
|
|
1526
1540
|
}
|
|
1527
1541
|
export interface CreateTopicReviewedAnswer {
|
|
1528
1542
|
AnswerId: string | undefined;
|
|
1529
1543
|
DatasetArn: string | undefined;
|
|
1530
1544
|
Question: string | undefined;
|
|
1531
|
-
Mir?: TopicIR;
|
|
1532
|
-
PrimaryVisual?: TopicVisual;
|
|
1533
|
-
Template?: TopicTemplate;
|
|
1545
|
+
Mir?: TopicIR | undefined;
|
|
1546
|
+
PrimaryVisual?: TopicVisual | undefined;
|
|
1547
|
+
Template?: TopicTemplate | undefined;
|
|
1534
1548
|
}
|
|
1535
1549
|
export interface TopicReviewedAnswer {
|
|
1536
|
-
Arn?: string;
|
|
1550
|
+
Arn?: string | undefined;
|
|
1537
1551
|
AnswerId: string | undefined;
|
|
1538
1552
|
DatasetArn: string | undefined;
|
|
1539
1553
|
Question: string | undefined;
|
|
1540
|
-
Mir?: TopicIR;
|
|
1541
|
-
PrimaryVisual?: TopicVisual;
|
|
1542
|
-
Template?: TopicTemplate;
|
|
1554
|
+
Mir?: TopicIR | undefined;
|
|
1555
|
+
PrimaryVisual?: TopicVisual | undefined;
|
|
1556
|
+
Template?: TopicTemplate | undefined;
|
|
1543
1557
|
}
|
|
1544
1558
|
export interface BatchCreateTopicReviewedAnswerRequest {
|
|
1545
1559
|
AwsAccountId: string | undefined;
|
|
@@ -1547,11 +1561,11 @@ export interface BatchCreateTopicReviewedAnswerRequest {
|
|
|
1547
1561
|
Answers: CreateTopicReviewedAnswer[] | undefined;
|
|
1548
1562
|
}
|
|
1549
1563
|
export interface ListTopicReviewedAnswersResponse {
|
|
1550
|
-
TopicId?: string;
|
|
1551
|
-
TopicArn?: string;
|
|
1552
|
-
Answers?: TopicReviewedAnswer[];
|
|
1553
|
-
Status?: number;
|
|
1554
|
-
RequestId?: string;
|
|
1564
|
+
TopicId?: string | undefined;
|
|
1565
|
+
TopicArn?: string | undefined;
|
|
1566
|
+
Answers?: TopicReviewedAnswer[] | undefined;
|
|
1567
|
+
Status?: number | undefined;
|
|
1568
|
+
RequestId?: string | undefined;
|
|
1555
1569
|
}
|
|
1556
1570
|
export declare const SessionTagFilterSensitiveLog: (obj: SessionTag) => any;
|
|
1557
1571
|
export declare const GenerateEmbedUrlForAnonymousUserRequestFilterSensitiveLog: (
|