@aws-sdk/client-quicksight 3.686.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-cjs/index.js +12 -5
- package/dist-es/models/models_2.js +5 -4
- package/dist-es/models/models_3.js +4 -0
- package/dist-types/commands/CreateDataSourceCommand.d.ts +41 -3
- package/dist-types/commands/DescribeAssetBundleImportJobCommand.d.ts +21 -1
- package/dist-types/commands/DescribeDataSourceCommand.d.ts +41 -3
- package/dist-types/commands/DescribeTopicPermissionsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeTopicRefreshCommand.d.ts +1 -2
- package/dist-types/commands/ListDataSourcesCommand.d.ts +41 -3
- package/dist-types/commands/StartAssetBundleImportJobCommand.d.ts +21 -1
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +41 -3
- 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 +601 -582
- package/dist-types/models/models_3.d.ts +844 -845
- package/dist-types/models/models_4.d.ts +707 -656
- package/dist-types/ts3.4/commands/DescribeTopicPermissionsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeTopicRefreshCommand.d.ts +4 -2
- 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 +569 -536
- package/dist-types/ts3.4/models/models_3.d.ts +815 -807
- package/dist-types/ts3.4/models/models_4.d.ts +681 -655
- package/package.json +7 -7
|
@@ -68,64 +68,78 @@ import {
|
|
|
68
68
|
LogicalTable,
|
|
69
69
|
PhysicalTable,
|
|
70
70
|
ResourcePermission,
|
|
71
|
-
|
|
71
|
+
RowLevelPermissionFormatVersion,
|
|
72
|
+
RowLevelPermissionPolicy,
|
|
72
73
|
ServiceType,
|
|
73
74
|
SheetDefinition,
|
|
74
75
|
SnapshotFile,
|
|
75
76
|
SnapshotS3DestinationConfiguration,
|
|
76
77
|
SslProperties,
|
|
77
|
-
Status,
|
|
78
78
|
Tag,
|
|
79
79
|
ValidationStrategy,
|
|
80
80
|
VpcConnectionProperties,
|
|
81
81
|
} from "./models_2";
|
|
82
82
|
import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
|
|
83
|
+
export declare const Status: {
|
|
84
|
+
readonly DISABLED: "DISABLED";
|
|
85
|
+
readonly ENABLED: "ENABLED";
|
|
86
|
+
};
|
|
87
|
+
export type Status = (typeof Status)[keyof typeof Status];
|
|
88
|
+
export interface RowLevelPermissionDataSet {
|
|
89
|
+
Namespace?: string | undefined;
|
|
90
|
+
Arn: string | undefined;
|
|
91
|
+
PermissionPolicy: RowLevelPermissionPolicy | undefined;
|
|
92
|
+
FormatVersion?: RowLevelPermissionFormatVersion | undefined;
|
|
93
|
+
Status?: Status | undefined;
|
|
94
|
+
}
|
|
83
95
|
export interface RowLevelPermissionTagRule {
|
|
84
96
|
TagKey: string | undefined;
|
|
85
97
|
ColumnName: string | undefined;
|
|
86
|
-
TagMultiValueDelimiter?: string;
|
|
87
|
-
MatchAllValue?: string;
|
|
98
|
+
TagMultiValueDelimiter?: string | undefined;
|
|
99
|
+
MatchAllValue?: string | undefined;
|
|
88
100
|
}
|
|
89
101
|
export interface RowLevelPermissionTagConfiguration {
|
|
90
|
-
Status?: Status;
|
|
102
|
+
Status?: Status | undefined;
|
|
91
103
|
TagRules: RowLevelPermissionTagRule[] | undefined;
|
|
92
|
-
TagRuleConfigurations?: string[][];
|
|
104
|
+
TagRuleConfigurations?: string[][] | undefined;
|
|
93
105
|
}
|
|
94
106
|
export interface CreateDataSetRequest {
|
|
95
107
|
AwsAccountId: string | undefined;
|
|
96
108
|
DataSetId: string | undefined;
|
|
97
109
|
Name: string | undefined;
|
|
98
110
|
PhysicalTableMap: Record<string, PhysicalTable> | undefined;
|
|
99
|
-
LogicalTableMap?: Record<string, LogicalTable
|
|
111
|
+
LogicalTableMap?: Record<string, LogicalTable> | undefined;
|
|
100
112
|
ImportMode: DataSetImportMode | undefined;
|
|
101
|
-
ColumnGroups?: ColumnGroup[];
|
|
102
|
-
FieldFolders?: Record<string, FieldFolder
|
|
103
|
-
Permissions?: ResourcePermission[];
|
|
104
|
-
RowLevelPermissionDataSet?: RowLevelPermissionDataSet;
|
|
105
|
-
RowLevelPermissionTagConfiguration?:
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
113
|
+
ColumnGroups?: ColumnGroup[] | undefined;
|
|
114
|
+
FieldFolders?: Record<string, FieldFolder> | undefined;
|
|
115
|
+
Permissions?: ResourcePermission[] | undefined;
|
|
116
|
+
RowLevelPermissionDataSet?: RowLevelPermissionDataSet | undefined;
|
|
117
|
+
RowLevelPermissionTagConfiguration?:
|
|
118
|
+
| RowLevelPermissionTagConfiguration
|
|
119
|
+
| undefined;
|
|
120
|
+
ColumnLevelPermissionRules?: ColumnLevelPermissionRule[] | undefined;
|
|
121
|
+
Tags?: Tag[] | undefined;
|
|
122
|
+
DataSetUsageConfiguration?: DataSetUsageConfiguration | undefined;
|
|
123
|
+
DatasetParameters?: DatasetParameter[] | undefined;
|
|
124
|
+
FolderArns?: string[] | undefined;
|
|
111
125
|
}
|
|
112
126
|
export interface CreateDataSetResponse {
|
|
113
|
-
Arn?: string;
|
|
114
|
-
DataSetId?: string;
|
|
115
|
-
IngestionArn?: string;
|
|
116
|
-
IngestionId?: string;
|
|
117
|
-
RequestId?: string;
|
|
118
|
-
Status?: number;
|
|
127
|
+
Arn?: string | undefined;
|
|
128
|
+
DataSetId?: string | undefined;
|
|
129
|
+
IngestionArn?: string | undefined;
|
|
130
|
+
IngestionId?: string | undefined;
|
|
131
|
+
RequestId?: string | undefined;
|
|
132
|
+
Status?: number | undefined;
|
|
119
133
|
}
|
|
120
134
|
export interface CredentialPair {
|
|
121
135
|
Username: string | undefined;
|
|
122
136
|
Password: string | undefined;
|
|
123
|
-
AlternateDataSourceParameters?: DataSourceParameters[];
|
|
137
|
+
AlternateDataSourceParameters?: DataSourceParameters[] | undefined;
|
|
124
138
|
}
|
|
125
139
|
export interface DataSourceCredentials {
|
|
126
|
-
CredentialPair?: CredentialPair;
|
|
127
|
-
CopySourceArn?: string;
|
|
128
|
-
SecretArn?: string;
|
|
140
|
+
CredentialPair?: CredentialPair | undefined;
|
|
141
|
+
CopySourceArn?: string | undefined;
|
|
142
|
+
SecretArn?: string | undefined;
|
|
129
143
|
}
|
|
130
144
|
export declare const DataSourceType: {
|
|
131
145
|
readonly ADOBE_ANALYTICS: "ADOBE_ANALYTICS";
|
|
@@ -165,26 +179,26 @@ export interface CreateDataSourceRequest {
|
|
|
165
179
|
DataSourceId: string | undefined;
|
|
166
180
|
Name: string | undefined;
|
|
167
181
|
Type: DataSourceType | undefined;
|
|
168
|
-
DataSourceParameters?: DataSourceParameters;
|
|
169
|
-
Credentials?: DataSourceCredentials;
|
|
170
|
-
Permissions?: ResourcePermission[];
|
|
171
|
-
VpcConnectionProperties?: VpcConnectionProperties;
|
|
172
|
-
SslProperties?: SslProperties;
|
|
173
|
-
Tags?: Tag[];
|
|
174
|
-
FolderArns?: string[];
|
|
182
|
+
DataSourceParameters?: DataSourceParameters | undefined;
|
|
183
|
+
Credentials?: DataSourceCredentials | undefined;
|
|
184
|
+
Permissions?: ResourcePermission[] | undefined;
|
|
185
|
+
VpcConnectionProperties?: VpcConnectionProperties | undefined;
|
|
186
|
+
SslProperties?: SslProperties | undefined;
|
|
187
|
+
Tags?: Tag[] | undefined;
|
|
188
|
+
FolderArns?: string[] | undefined;
|
|
175
189
|
}
|
|
176
190
|
export interface CreateDataSourceResponse {
|
|
177
|
-
Arn?: string;
|
|
178
|
-
DataSourceId?: string;
|
|
179
|
-
CreationStatus?: ResourceStatus;
|
|
180
|
-
RequestId?: string;
|
|
181
|
-
Status?: number;
|
|
191
|
+
Arn?: string | undefined;
|
|
192
|
+
DataSourceId?: string | undefined;
|
|
193
|
+
CreationStatus?: ResourceStatus | undefined;
|
|
194
|
+
RequestId?: string | undefined;
|
|
195
|
+
Status?: number | undefined;
|
|
182
196
|
}
|
|
183
197
|
export declare class CustomerManagedKeyUnavailableException extends __BaseException {
|
|
184
198
|
readonly name: "CustomerManagedKeyUnavailableException";
|
|
185
199
|
readonly $fault: "client";
|
|
186
|
-
Message?: string;
|
|
187
|
-
RequestId?: string;
|
|
200
|
+
Message?: string | undefined;
|
|
201
|
+
RequestId?: string | undefined;
|
|
188
202
|
constructor(
|
|
189
203
|
opts: __ExceptionOptionType<
|
|
190
204
|
CustomerManagedKeyUnavailableException,
|
|
@@ -205,18 +219,18 @@ export type SharingModel = (typeof SharingModel)[keyof typeof SharingModel];
|
|
|
205
219
|
export interface CreateFolderRequest {
|
|
206
220
|
AwsAccountId: string | undefined;
|
|
207
221
|
FolderId: string | undefined;
|
|
208
|
-
Name?: string;
|
|
209
|
-
FolderType?: FolderType;
|
|
210
|
-
ParentFolderArn?: string;
|
|
211
|
-
Permissions?: ResourcePermission[];
|
|
212
|
-
Tags?: Tag[];
|
|
213
|
-
SharingModel?: SharingModel;
|
|
222
|
+
Name?: string | undefined;
|
|
223
|
+
FolderType?: FolderType | undefined;
|
|
224
|
+
ParentFolderArn?: string | undefined;
|
|
225
|
+
Permissions?: ResourcePermission[] | undefined;
|
|
226
|
+
Tags?: Tag[] | undefined;
|
|
227
|
+
SharingModel?: SharingModel | undefined;
|
|
214
228
|
}
|
|
215
229
|
export interface CreateFolderResponse {
|
|
216
|
-
Status?: number;
|
|
217
|
-
Arn?: string;
|
|
218
|
-
FolderId?: string;
|
|
219
|
-
RequestId?: string;
|
|
230
|
+
Status?: number | undefined;
|
|
231
|
+
Arn?: string | undefined;
|
|
232
|
+
FolderId?: string | undefined;
|
|
233
|
+
RequestId?: string | undefined;
|
|
220
234
|
}
|
|
221
235
|
export declare const MemberType: {
|
|
222
236
|
readonly ANALYSIS: "ANALYSIS";
|
|
@@ -233,30 +247,30 @@ export interface CreateFolderMembershipRequest {
|
|
|
233
247
|
MemberType: MemberType | undefined;
|
|
234
248
|
}
|
|
235
249
|
export interface FolderMember {
|
|
236
|
-
MemberId?: string;
|
|
237
|
-
MemberType?: MemberType;
|
|
250
|
+
MemberId?: string | undefined;
|
|
251
|
+
MemberType?: MemberType | undefined;
|
|
238
252
|
}
|
|
239
253
|
export interface CreateFolderMembershipResponse {
|
|
240
|
-
Status?: number;
|
|
241
|
-
FolderMember?: FolderMember;
|
|
242
|
-
RequestId?: string;
|
|
254
|
+
Status?: number | undefined;
|
|
255
|
+
FolderMember?: FolderMember | undefined;
|
|
256
|
+
RequestId?: string | undefined;
|
|
243
257
|
}
|
|
244
258
|
export interface CreateGroupRequest {
|
|
245
259
|
GroupName: string | undefined;
|
|
246
|
-
Description?: string;
|
|
260
|
+
Description?: string | undefined;
|
|
247
261
|
AwsAccountId: string | undefined;
|
|
248
262
|
Namespace: string | undefined;
|
|
249
263
|
}
|
|
250
264
|
export interface Group {
|
|
251
|
-
Arn?: string;
|
|
252
|
-
GroupName?: string;
|
|
253
|
-
Description?: string;
|
|
254
|
-
PrincipalId?: string;
|
|
265
|
+
Arn?: string | undefined;
|
|
266
|
+
GroupName?: string | undefined;
|
|
267
|
+
Description?: string | undefined;
|
|
268
|
+
PrincipalId?: string | undefined;
|
|
255
269
|
}
|
|
256
270
|
export interface CreateGroupResponse {
|
|
257
|
-
Group?: Group;
|
|
258
|
-
RequestId?: string;
|
|
259
|
-
Status?: number;
|
|
271
|
+
Group?: Group | undefined;
|
|
272
|
+
RequestId?: string | undefined;
|
|
273
|
+
Status?: number | undefined;
|
|
260
274
|
}
|
|
261
275
|
export interface CreateGroupMembershipRequest {
|
|
262
276
|
MemberName: string | undefined;
|
|
@@ -265,30 +279,30 @@ export interface CreateGroupMembershipRequest {
|
|
|
265
279
|
Namespace: string | undefined;
|
|
266
280
|
}
|
|
267
281
|
export interface GroupMember {
|
|
268
|
-
Arn?: string;
|
|
269
|
-
MemberName?: string;
|
|
282
|
+
Arn?: string | undefined;
|
|
283
|
+
MemberName?: string | undefined;
|
|
270
284
|
}
|
|
271
285
|
export interface CreateGroupMembershipResponse {
|
|
272
|
-
GroupMember?: GroupMember;
|
|
273
|
-
RequestId?: string;
|
|
274
|
-
Status?: number;
|
|
286
|
+
GroupMember?: GroupMember | undefined;
|
|
287
|
+
RequestId?: string | undefined;
|
|
288
|
+
Status?: number | undefined;
|
|
275
289
|
}
|
|
276
290
|
export interface CreateIAMPolicyAssignmentRequest {
|
|
277
291
|
AwsAccountId: string | undefined;
|
|
278
292
|
AssignmentName: string | undefined;
|
|
279
293
|
AssignmentStatus: AssignmentStatus | undefined;
|
|
280
|
-
PolicyArn?: string;
|
|
281
|
-
Identities?: Record<string, string[]
|
|
294
|
+
PolicyArn?: string | undefined;
|
|
295
|
+
Identities?: Record<string, string[]> | undefined;
|
|
282
296
|
Namespace: string | undefined;
|
|
283
297
|
}
|
|
284
298
|
export interface CreateIAMPolicyAssignmentResponse {
|
|
285
|
-
AssignmentName?: string;
|
|
286
|
-
AssignmentId?: string;
|
|
287
|
-
AssignmentStatus?: AssignmentStatus;
|
|
288
|
-
PolicyArn?: string;
|
|
289
|
-
Identities?: Record<string, string[]
|
|
290
|
-
RequestId?: string;
|
|
291
|
-
Status?: number;
|
|
299
|
+
AssignmentName?: string | undefined;
|
|
300
|
+
AssignmentId?: string | undefined;
|
|
301
|
+
AssignmentStatus?: AssignmentStatus | undefined;
|
|
302
|
+
PolicyArn?: string | undefined;
|
|
303
|
+
Identities?: Record<string, string[]> | undefined;
|
|
304
|
+
RequestId?: string | undefined;
|
|
305
|
+
Status?: number | undefined;
|
|
292
306
|
}
|
|
293
307
|
export declare const IngestionType: {
|
|
294
308
|
readonly FULL_REFRESH: "FULL_REFRESH";
|
|
@@ -299,7 +313,7 @@ export interface CreateIngestionRequest {
|
|
|
299
313
|
DataSetId: string | undefined;
|
|
300
314
|
IngestionId: string | undefined;
|
|
301
315
|
AwsAccountId: string | undefined;
|
|
302
|
-
IngestionType?: IngestionType;
|
|
316
|
+
IngestionType?: IngestionType | undefined;
|
|
303
317
|
}
|
|
304
318
|
export declare const IngestionStatus: {
|
|
305
319
|
readonly CANCELLED: "CANCELLED";
|
|
@@ -312,11 +326,11 @@ export declare const IngestionStatus: {
|
|
|
312
326
|
export type IngestionStatus =
|
|
313
327
|
(typeof IngestionStatus)[keyof typeof IngestionStatus];
|
|
314
328
|
export interface CreateIngestionResponse {
|
|
315
|
-
Arn?: string;
|
|
316
|
-
IngestionId?: string;
|
|
317
|
-
IngestionStatus?: IngestionStatus;
|
|
318
|
-
RequestId?: string;
|
|
319
|
-
Status?: number;
|
|
329
|
+
Arn?: string | undefined;
|
|
330
|
+
IngestionId?: string | undefined;
|
|
331
|
+
IngestionStatus?: IngestionStatus | undefined;
|
|
332
|
+
RequestId?: string | undefined;
|
|
333
|
+
Status?: number | undefined;
|
|
320
334
|
}
|
|
321
335
|
export declare const IdentityStore: {
|
|
322
336
|
readonly QUICKSIGHT: "QUICKSIGHT";
|
|
@@ -326,7 +340,7 @@ export interface CreateNamespaceRequest {
|
|
|
326
340
|
AwsAccountId: string | undefined;
|
|
327
341
|
Namespace: string | undefined;
|
|
328
342
|
IdentityStore: IdentityStore | undefined;
|
|
329
|
-
Tags?: Tag[];
|
|
343
|
+
Tags?: Tag[] | undefined;
|
|
330
344
|
}
|
|
331
345
|
export declare const NamespaceStatus: {
|
|
332
346
|
readonly CREATED: "CREATED";
|
|
@@ -338,13 +352,13 @@ export declare const NamespaceStatus: {
|
|
|
338
352
|
export type NamespaceStatus =
|
|
339
353
|
(typeof NamespaceStatus)[keyof typeof NamespaceStatus];
|
|
340
354
|
export interface CreateNamespaceResponse {
|
|
341
|
-
Arn?: string;
|
|
342
|
-
Name?: string;
|
|
343
|
-
CapacityRegion?: string;
|
|
344
|
-
CreationStatus?: NamespaceStatus;
|
|
345
|
-
IdentityStore?: IdentityStore;
|
|
346
|
-
RequestId?: string;
|
|
347
|
-
Status?: number;
|
|
355
|
+
Arn?: string | undefined;
|
|
356
|
+
Name?: string | undefined;
|
|
357
|
+
CapacityRegion?: string | undefined;
|
|
358
|
+
CreationStatus?: NamespaceStatus | undefined;
|
|
359
|
+
IdentityStore?: IdentityStore | undefined;
|
|
360
|
+
RequestId?: string | undefined;
|
|
361
|
+
Status?: number | undefined;
|
|
348
362
|
}
|
|
349
363
|
export declare const RefreshInterval: {
|
|
350
364
|
readonly DAILY: "DAILY";
|
|
@@ -367,21 +381,21 @@ export declare const DayOfWeek: {
|
|
|
367
381
|
};
|
|
368
382
|
export type DayOfWeek = (typeof DayOfWeek)[keyof typeof DayOfWeek];
|
|
369
383
|
export interface ScheduleRefreshOnEntity {
|
|
370
|
-
DayOfWeek?: DayOfWeek;
|
|
371
|
-
DayOfMonth?: string;
|
|
384
|
+
DayOfWeek?: DayOfWeek | undefined;
|
|
385
|
+
DayOfMonth?: string | undefined;
|
|
372
386
|
}
|
|
373
387
|
export interface RefreshFrequency {
|
|
374
388
|
Interval: RefreshInterval | undefined;
|
|
375
|
-
RefreshOnDay?: ScheduleRefreshOnEntity;
|
|
376
|
-
Timezone?: string;
|
|
377
|
-
TimeOfTheDay?: string;
|
|
389
|
+
RefreshOnDay?: ScheduleRefreshOnEntity | undefined;
|
|
390
|
+
Timezone?: string | undefined;
|
|
391
|
+
TimeOfTheDay?: string | undefined;
|
|
378
392
|
}
|
|
379
393
|
export interface RefreshSchedule {
|
|
380
394
|
ScheduleId: string | undefined;
|
|
381
395
|
ScheduleFrequency: RefreshFrequency | undefined;
|
|
382
|
-
StartAfterDateTime?: Date;
|
|
396
|
+
StartAfterDateTime?: Date | undefined;
|
|
383
397
|
RefreshType: IngestionType | undefined;
|
|
384
|
-
Arn?: string;
|
|
398
|
+
Arn?: string | undefined;
|
|
385
399
|
}
|
|
386
400
|
export interface CreateRefreshScheduleRequest {
|
|
387
401
|
DataSetId: string | undefined;
|
|
@@ -389,10 +403,10 @@ export interface CreateRefreshScheduleRequest {
|
|
|
389
403
|
Schedule: RefreshSchedule | undefined;
|
|
390
404
|
}
|
|
391
405
|
export interface CreateRefreshScheduleResponse {
|
|
392
|
-
Status?: number;
|
|
393
|
-
RequestId?: string;
|
|
394
|
-
ScheduleId?: string;
|
|
395
|
-
Arn?: string;
|
|
406
|
+
Status?: number | undefined;
|
|
407
|
+
RequestId?: string | undefined;
|
|
408
|
+
ScheduleId?: string | undefined;
|
|
409
|
+
Arn?: string | undefined;
|
|
396
410
|
}
|
|
397
411
|
export declare const Role: {
|
|
398
412
|
readonly ADMIN: "ADMIN";
|
|
@@ -410,27 +424,27 @@ export interface CreateRoleMembershipRequest {
|
|
|
410
424
|
Role: Role | undefined;
|
|
411
425
|
}
|
|
412
426
|
export interface CreateRoleMembershipResponse {
|
|
413
|
-
RequestId?: string;
|
|
414
|
-
Status?: number;
|
|
427
|
+
RequestId?: string | undefined;
|
|
428
|
+
Status?: number | undefined;
|
|
415
429
|
}
|
|
416
430
|
export interface DataSetSchema {
|
|
417
|
-
ColumnSchemaList?: ColumnSchema[];
|
|
431
|
+
ColumnSchemaList?: ColumnSchema[] | undefined;
|
|
418
432
|
}
|
|
419
433
|
export interface DataSetConfiguration {
|
|
420
|
-
Placeholder?: string;
|
|
421
|
-
DataSetSchema?: DataSetSchema;
|
|
422
|
-
ColumnGroupSchemaList?: ColumnGroupSchema[];
|
|
434
|
+
Placeholder?: string | undefined;
|
|
435
|
+
DataSetSchema?: DataSetSchema | undefined;
|
|
436
|
+
ColumnGroupSchemaList?: ColumnGroupSchema[] | undefined;
|
|
423
437
|
}
|
|
424
438
|
export interface TemplateVersionDefinition {
|
|
425
439
|
DataSetConfigurations: DataSetConfiguration[] | undefined;
|
|
426
|
-
Sheets?: SheetDefinition[];
|
|
427
|
-
CalculatedFields?: CalculatedField[];
|
|
428
|
-
ParameterDeclarations?: ParameterDeclaration[];
|
|
429
|
-
FilterGroups?: FilterGroup[];
|
|
430
|
-
ColumnConfigurations?: ColumnConfiguration[];
|
|
431
|
-
AnalysisDefaults?: AnalysisDefaults;
|
|
432
|
-
Options?: AssetOptions;
|
|
433
|
-
QueryExecutionOptions?: QueryExecutionOptions;
|
|
440
|
+
Sheets?: SheetDefinition[] | undefined;
|
|
441
|
+
CalculatedFields?: CalculatedField[] | undefined;
|
|
442
|
+
ParameterDeclarations?: ParameterDeclaration[] | undefined;
|
|
443
|
+
FilterGroups?: FilterGroup[] | undefined;
|
|
444
|
+
ColumnConfigurations?: ColumnConfiguration[] | undefined;
|
|
445
|
+
AnalysisDefaults?: AnalysisDefaults | undefined;
|
|
446
|
+
Options?: AssetOptions | undefined;
|
|
447
|
+
QueryExecutionOptions?: QueryExecutionOptions | undefined;
|
|
434
448
|
}
|
|
435
449
|
export interface TemplateSourceAnalysis {
|
|
436
450
|
Arn: string | undefined;
|
|
@@ -440,27 +454,27 @@ export interface TemplateSourceTemplate {
|
|
|
440
454
|
Arn: string | undefined;
|
|
441
455
|
}
|
|
442
456
|
export interface TemplateSourceEntity {
|
|
443
|
-
SourceAnalysis?: TemplateSourceAnalysis;
|
|
444
|
-
SourceTemplate?: TemplateSourceTemplate;
|
|
457
|
+
SourceAnalysis?: TemplateSourceAnalysis | undefined;
|
|
458
|
+
SourceTemplate?: TemplateSourceTemplate | undefined;
|
|
445
459
|
}
|
|
446
460
|
export interface CreateTemplateRequest {
|
|
447
461
|
AwsAccountId: string | undefined;
|
|
448
462
|
TemplateId: string | undefined;
|
|
449
|
-
Name?: string;
|
|
450
|
-
Permissions?: ResourcePermission[];
|
|
451
|
-
SourceEntity?: TemplateSourceEntity;
|
|
452
|
-
Tags?: Tag[];
|
|
453
|
-
VersionDescription?: string;
|
|
454
|
-
Definition?: TemplateVersionDefinition;
|
|
455
|
-
ValidationStrategy?: ValidationStrategy;
|
|
463
|
+
Name?: string | undefined;
|
|
464
|
+
Permissions?: ResourcePermission[] | undefined;
|
|
465
|
+
SourceEntity?: TemplateSourceEntity | undefined;
|
|
466
|
+
Tags?: Tag[] | undefined;
|
|
467
|
+
VersionDescription?: string | undefined;
|
|
468
|
+
Definition?: TemplateVersionDefinition | undefined;
|
|
469
|
+
ValidationStrategy?: ValidationStrategy | undefined;
|
|
456
470
|
}
|
|
457
471
|
export interface CreateTemplateResponse {
|
|
458
|
-
Arn?: string;
|
|
459
|
-
VersionArn?: string;
|
|
460
|
-
TemplateId?: string;
|
|
461
|
-
CreationStatus?: ResourceStatus;
|
|
462
|
-
Status?: number;
|
|
463
|
-
RequestId?: string;
|
|
472
|
+
Arn?: string | undefined;
|
|
473
|
+
VersionArn?: string | undefined;
|
|
474
|
+
TemplateId?: string | undefined;
|
|
475
|
+
CreationStatus?: ResourceStatus | undefined;
|
|
476
|
+
Status?: number | undefined;
|
|
477
|
+
RequestId?: string | undefined;
|
|
464
478
|
}
|
|
465
479
|
export interface CreateTemplateAliasRequest {
|
|
466
480
|
AwsAccountId: string | undefined;
|
|
@@ -469,84 +483,84 @@ export interface CreateTemplateAliasRequest {
|
|
|
469
483
|
TemplateVersionNumber: number | undefined;
|
|
470
484
|
}
|
|
471
485
|
export interface TemplateAlias {
|
|
472
|
-
AliasName?: string;
|
|
473
|
-
Arn?: string;
|
|
474
|
-
TemplateVersionNumber?: number;
|
|
486
|
+
AliasName?: string | undefined;
|
|
487
|
+
Arn?: string | undefined;
|
|
488
|
+
TemplateVersionNumber?: number | undefined;
|
|
475
489
|
}
|
|
476
490
|
export interface CreateTemplateAliasResponse {
|
|
477
|
-
TemplateAlias?: TemplateAlias;
|
|
478
|
-
Status?: number;
|
|
479
|
-
RequestId?: string;
|
|
491
|
+
TemplateAlias?: TemplateAlias | undefined;
|
|
492
|
+
Status?: number | undefined;
|
|
493
|
+
RequestId?: string | undefined;
|
|
480
494
|
}
|
|
481
495
|
export interface DataColorPalette {
|
|
482
|
-
Colors?: string[];
|
|
483
|
-
MinMaxGradient?: string[];
|
|
484
|
-
EmptyFillColor?: string;
|
|
496
|
+
Colors?: string[] | undefined;
|
|
497
|
+
MinMaxGradient?: string[] | undefined;
|
|
498
|
+
EmptyFillColor?: string | undefined;
|
|
485
499
|
}
|
|
486
500
|
export interface TileStyle {
|
|
487
|
-
Border?: BorderStyle;
|
|
501
|
+
Border?: BorderStyle | undefined;
|
|
488
502
|
}
|
|
489
503
|
export interface GutterStyle {
|
|
490
|
-
Show?: boolean;
|
|
504
|
+
Show?: boolean | undefined;
|
|
491
505
|
}
|
|
492
506
|
export interface MarginStyle {
|
|
493
|
-
Show?: boolean;
|
|
507
|
+
Show?: boolean | undefined;
|
|
494
508
|
}
|
|
495
509
|
export interface TileLayoutStyle {
|
|
496
|
-
Gutter?: GutterStyle;
|
|
497
|
-
Margin?: MarginStyle;
|
|
510
|
+
Gutter?: GutterStyle | undefined;
|
|
511
|
+
Margin?: MarginStyle | undefined;
|
|
498
512
|
}
|
|
499
513
|
export interface SheetStyle {
|
|
500
|
-
Tile?: TileStyle;
|
|
501
|
-
TileLayout?: TileLayoutStyle;
|
|
514
|
+
Tile?: TileStyle | undefined;
|
|
515
|
+
TileLayout?: TileLayoutStyle | undefined;
|
|
502
516
|
}
|
|
503
517
|
export interface Font {
|
|
504
|
-
FontFamily?: string;
|
|
518
|
+
FontFamily?: string | undefined;
|
|
505
519
|
}
|
|
506
520
|
export interface Typography {
|
|
507
|
-
FontFamilies?: Font[];
|
|
521
|
+
FontFamilies?: Font[] | undefined;
|
|
508
522
|
}
|
|
509
523
|
export interface UIColorPalette {
|
|
510
|
-
PrimaryForeground?: string;
|
|
511
|
-
PrimaryBackground?: string;
|
|
512
|
-
SecondaryForeground?: string;
|
|
513
|
-
SecondaryBackground?: string;
|
|
514
|
-
Accent?: string;
|
|
515
|
-
AccentForeground?: string;
|
|
516
|
-
Danger?: string;
|
|
517
|
-
DangerForeground?: string;
|
|
518
|
-
Warning?: string;
|
|
519
|
-
WarningForeground?: string;
|
|
520
|
-
Success?: string;
|
|
521
|
-
SuccessForeground?: string;
|
|
522
|
-
Dimension?: string;
|
|
523
|
-
DimensionForeground?: string;
|
|
524
|
-
Measure?: string;
|
|
525
|
-
MeasureForeground?: string;
|
|
524
|
+
PrimaryForeground?: string | undefined;
|
|
525
|
+
PrimaryBackground?: string | undefined;
|
|
526
|
+
SecondaryForeground?: string | undefined;
|
|
527
|
+
SecondaryBackground?: string | undefined;
|
|
528
|
+
Accent?: string | undefined;
|
|
529
|
+
AccentForeground?: string | undefined;
|
|
530
|
+
Danger?: string | undefined;
|
|
531
|
+
DangerForeground?: string | undefined;
|
|
532
|
+
Warning?: string | undefined;
|
|
533
|
+
WarningForeground?: string | undefined;
|
|
534
|
+
Success?: string | undefined;
|
|
535
|
+
SuccessForeground?: string | undefined;
|
|
536
|
+
Dimension?: string | undefined;
|
|
537
|
+
DimensionForeground?: string | undefined;
|
|
538
|
+
Measure?: string | undefined;
|
|
539
|
+
MeasureForeground?: string | undefined;
|
|
526
540
|
}
|
|
527
541
|
export interface ThemeConfiguration {
|
|
528
|
-
DataColorPalette?: DataColorPalette;
|
|
529
|
-
UIColorPalette?: UIColorPalette;
|
|
530
|
-
Sheet?: SheetStyle;
|
|
531
|
-
Typography?: Typography;
|
|
542
|
+
DataColorPalette?: DataColorPalette | undefined;
|
|
543
|
+
UIColorPalette?: UIColorPalette | undefined;
|
|
544
|
+
Sheet?: SheetStyle | undefined;
|
|
545
|
+
Typography?: Typography | undefined;
|
|
532
546
|
}
|
|
533
547
|
export interface CreateThemeRequest {
|
|
534
548
|
AwsAccountId: string | undefined;
|
|
535
549
|
ThemeId: string | undefined;
|
|
536
550
|
Name: string | undefined;
|
|
537
551
|
BaseThemeId: string | undefined;
|
|
538
|
-
VersionDescription?: string;
|
|
552
|
+
VersionDescription?: string | undefined;
|
|
539
553
|
Configuration: ThemeConfiguration | undefined;
|
|
540
|
-
Permissions?: ResourcePermission[];
|
|
541
|
-
Tags?: Tag[];
|
|
554
|
+
Permissions?: ResourcePermission[] | undefined;
|
|
555
|
+
Tags?: Tag[] | undefined;
|
|
542
556
|
}
|
|
543
557
|
export interface CreateThemeResponse {
|
|
544
|
-
Arn?: string;
|
|
545
|
-
VersionArn?: string;
|
|
546
|
-
ThemeId?: string;
|
|
547
|
-
CreationStatus?: ResourceStatus;
|
|
548
|
-
Status?: number;
|
|
549
|
-
RequestId?: string;
|
|
558
|
+
Arn?: string | undefined;
|
|
559
|
+
VersionArn?: string | undefined;
|
|
560
|
+
ThemeId?: string | undefined;
|
|
561
|
+
CreationStatus?: ResourceStatus | undefined;
|
|
562
|
+
Status?: number | undefined;
|
|
563
|
+
RequestId?: string | undefined;
|
|
550
564
|
}
|
|
551
565
|
export interface CreateThemeAliasRequest {
|
|
552
566
|
AwsAccountId: string | undefined;
|
|
@@ -555,17 +569,17 @@ export interface CreateThemeAliasRequest {
|
|
|
555
569
|
ThemeVersionNumber: number | undefined;
|
|
556
570
|
}
|
|
557
571
|
export interface ThemeAlias {
|
|
558
|
-
Arn?: string;
|
|
559
|
-
AliasName?: string;
|
|
560
|
-
ThemeVersionNumber?: number;
|
|
572
|
+
Arn?: string | undefined;
|
|
573
|
+
AliasName?: string | undefined;
|
|
574
|
+
ThemeVersionNumber?: number | undefined;
|
|
561
575
|
}
|
|
562
576
|
export interface CreateThemeAliasResponse {
|
|
563
|
-
ThemeAlias?: ThemeAlias;
|
|
564
|
-
Status?: number;
|
|
565
|
-
RequestId?: string;
|
|
577
|
+
ThemeAlias?: ThemeAlias | undefined;
|
|
578
|
+
Status?: number | undefined;
|
|
579
|
+
RequestId?: string | undefined;
|
|
566
580
|
}
|
|
567
581
|
export interface TopicConfigOptions {
|
|
568
|
-
QBusinessInsightsEnabled?: boolean;
|
|
582
|
+
QBusinessInsightsEnabled?: boolean | undefined;
|
|
569
583
|
}
|
|
570
584
|
export declare const DefaultAggregation: {
|
|
571
585
|
readonly AVERAGE: "AVERAGE";
|
|
@@ -583,82 +597,82 @@ export declare const DefaultAggregation: {
|
|
|
583
597
|
export type DefaultAggregation =
|
|
584
598
|
(typeof DefaultAggregation)[keyof typeof DefaultAggregation];
|
|
585
599
|
export interface DefaultFormatting {
|
|
586
|
-
DisplayFormat?: DisplayFormat;
|
|
587
|
-
DisplayFormatOptions?: DisplayFormatOptions;
|
|
600
|
+
DisplayFormat?: DisplayFormat | undefined;
|
|
601
|
+
DisplayFormatOptions?: DisplayFormatOptions | undefined;
|
|
588
602
|
}
|
|
589
603
|
export interface SemanticType {
|
|
590
|
-
TypeName?: string;
|
|
591
|
-
SubTypeName?: string;
|
|
592
|
-
TypeParameters?: Record<string, string
|
|
593
|
-
TruthyCellValue?: string;
|
|
594
|
-
TruthyCellValueSynonyms?: string[];
|
|
595
|
-
FalseyCellValue?: string;
|
|
596
|
-
FalseyCellValueSynonyms?: string[];
|
|
604
|
+
TypeName?: string | undefined;
|
|
605
|
+
SubTypeName?: string | undefined;
|
|
606
|
+
TypeParameters?: Record<string, string> | undefined;
|
|
607
|
+
TruthyCellValue?: string | undefined;
|
|
608
|
+
TruthyCellValueSynonyms?: string[] | undefined;
|
|
609
|
+
FalseyCellValue?: string | undefined;
|
|
610
|
+
FalseyCellValueSynonyms?: string[] | undefined;
|
|
597
611
|
}
|
|
598
612
|
export interface TopicCalculatedField {
|
|
599
613
|
CalculatedFieldName: string | undefined;
|
|
600
|
-
CalculatedFieldDescription?: string;
|
|
614
|
+
CalculatedFieldDescription?: string | undefined;
|
|
601
615
|
Expression: string | undefined;
|
|
602
|
-
CalculatedFieldSynonyms?: string[];
|
|
603
|
-
IsIncludedInTopic?: boolean;
|
|
604
|
-
DisableIndexing?: boolean;
|
|
605
|
-
ColumnDataRole?: ColumnDataRole;
|
|
606
|
-
TimeGranularity?: TopicTimeGranularity;
|
|
607
|
-
DefaultFormatting?: DefaultFormatting;
|
|
608
|
-
Aggregation?: DefaultAggregation;
|
|
609
|
-
ComparativeOrder?: ComparativeOrder;
|
|
610
|
-
SemanticType?: SemanticType;
|
|
611
|
-
AllowedAggregations?: AuthorSpecifiedAggregation[];
|
|
612
|
-
NotAllowedAggregations?: AuthorSpecifiedAggregation[];
|
|
613
|
-
NeverAggregateInFilter?: boolean;
|
|
614
|
-
CellValueSynonyms?: CellValueSynonym[];
|
|
615
|
-
NonAdditive?: boolean;
|
|
616
|
+
CalculatedFieldSynonyms?: string[] | undefined;
|
|
617
|
+
IsIncludedInTopic?: boolean | undefined;
|
|
618
|
+
DisableIndexing?: boolean | undefined;
|
|
619
|
+
ColumnDataRole?: ColumnDataRole | undefined;
|
|
620
|
+
TimeGranularity?: TopicTimeGranularity | undefined;
|
|
621
|
+
DefaultFormatting?: DefaultFormatting | undefined;
|
|
622
|
+
Aggregation?: DefaultAggregation | undefined;
|
|
623
|
+
ComparativeOrder?: ComparativeOrder | undefined;
|
|
624
|
+
SemanticType?: SemanticType | undefined;
|
|
625
|
+
AllowedAggregations?: AuthorSpecifiedAggregation[] | undefined;
|
|
626
|
+
NotAllowedAggregations?: AuthorSpecifiedAggregation[] | undefined;
|
|
627
|
+
NeverAggregateInFilter?: boolean | undefined;
|
|
628
|
+
CellValueSynonyms?: CellValueSynonym[] | undefined;
|
|
629
|
+
NonAdditive?: boolean | undefined;
|
|
616
630
|
}
|
|
617
631
|
export interface TopicColumn {
|
|
618
632
|
ColumnName: string | undefined;
|
|
619
|
-
ColumnFriendlyName?: string;
|
|
620
|
-
ColumnDescription?: string;
|
|
621
|
-
ColumnSynonyms?: string[];
|
|
622
|
-
ColumnDataRole?: ColumnDataRole;
|
|
623
|
-
Aggregation?: DefaultAggregation;
|
|
624
|
-
IsIncludedInTopic?: boolean;
|
|
625
|
-
DisableIndexing?: boolean;
|
|
626
|
-
ComparativeOrder?: ComparativeOrder;
|
|
627
|
-
SemanticType?: SemanticType;
|
|
628
|
-
TimeGranularity?: TopicTimeGranularity;
|
|
629
|
-
AllowedAggregations?: AuthorSpecifiedAggregation[];
|
|
630
|
-
NotAllowedAggregations?: AuthorSpecifiedAggregation[];
|
|
631
|
-
DefaultFormatting?: DefaultFormatting;
|
|
632
|
-
NeverAggregateInFilter?: boolean;
|
|
633
|
-
CellValueSynonyms?: CellValueSynonym[];
|
|
634
|
-
NonAdditive?: boolean;
|
|
633
|
+
ColumnFriendlyName?: string | undefined;
|
|
634
|
+
ColumnDescription?: string | undefined;
|
|
635
|
+
ColumnSynonyms?: string[] | undefined;
|
|
636
|
+
ColumnDataRole?: ColumnDataRole | undefined;
|
|
637
|
+
Aggregation?: DefaultAggregation | undefined;
|
|
638
|
+
IsIncludedInTopic?: boolean | undefined;
|
|
639
|
+
DisableIndexing?: boolean | undefined;
|
|
640
|
+
ComparativeOrder?: ComparativeOrder | undefined;
|
|
641
|
+
SemanticType?: SemanticType | undefined;
|
|
642
|
+
TimeGranularity?: TopicTimeGranularity | undefined;
|
|
643
|
+
AllowedAggregations?: AuthorSpecifiedAggregation[] | undefined;
|
|
644
|
+
NotAllowedAggregations?: AuthorSpecifiedAggregation[] | undefined;
|
|
645
|
+
DefaultFormatting?: DefaultFormatting | undefined;
|
|
646
|
+
NeverAggregateInFilter?: boolean | undefined;
|
|
647
|
+
CellValueSynonyms?: CellValueSynonym[] | undefined;
|
|
648
|
+
NonAdditive?: boolean | undefined;
|
|
635
649
|
}
|
|
636
650
|
export interface DataAggregation {
|
|
637
|
-
DatasetRowDateGranularity?: TopicTimeGranularity;
|
|
638
|
-
DefaultDateColumnName?: string;
|
|
651
|
+
DatasetRowDateGranularity?: TopicTimeGranularity | undefined;
|
|
652
|
+
DefaultDateColumnName?: string | undefined;
|
|
639
653
|
}
|
|
640
654
|
export interface TopicCategoryFilterConstant {
|
|
641
|
-
ConstantType?: ConstantType;
|
|
642
|
-
SingularConstant?: string;
|
|
643
|
-
CollectiveConstant?: CollectiveConstant;
|
|
655
|
+
ConstantType?: ConstantType | undefined;
|
|
656
|
+
SingularConstant?: string | undefined;
|
|
657
|
+
CollectiveConstant?: CollectiveConstant | undefined;
|
|
644
658
|
}
|
|
645
659
|
export interface TopicCategoryFilter {
|
|
646
|
-
CategoryFilterFunction?: CategoryFilterFunction;
|
|
647
|
-
CategoryFilterType?: CategoryFilterType;
|
|
648
|
-
Constant?: TopicCategoryFilterConstant;
|
|
649
|
-
Inverse?: boolean;
|
|
660
|
+
CategoryFilterFunction?: CategoryFilterFunction | undefined;
|
|
661
|
+
CategoryFilterType?: CategoryFilterType | undefined;
|
|
662
|
+
Constant?: TopicCategoryFilterConstant | undefined;
|
|
663
|
+
Inverse?: boolean | undefined;
|
|
650
664
|
}
|
|
651
665
|
export interface RangeConstant {
|
|
652
|
-
Minimum?: string;
|
|
653
|
-
Maximum?: string;
|
|
666
|
+
Minimum?: string | undefined;
|
|
667
|
+
Maximum?: string | undefined;
|
|
654
668
|
}
|
|
655
669
|
export interface TopicRangeFilterConstant {
|
|
656
|
-
ConstantType?: ConstantType;
|
|
657
|
-
RangeConstant?: RangeConstant;
|
|
670
|
+
ConstantType?: ConstantType | undefined;
|
|
671
|
+
RangeConstant?: RangeConstant | undefined;
|
|
658
672
|
}
|
|
659
673
|
export interface TopicDateRangeFilter {
|
|
660
|
-
Inclusive?: boolean;
|
|
661
|
-
Constant?: TopicRangeFilterConstant;
|
|
674
|
+
Inclusive?: boolean | undefined;
|
|
675
|
+
Constant?: TopicRangeFilterConstant | undefined;
|
|
662
676
|
}
|
|
663
677
|
export declare const NamedFilterType: {
|
|
664
678
|
readonly CATEGORY_FILTER: "CATEGORY_FILTER";
|
|
@@ -686,17 +700,17 @@ export declare const NamedFilterAggType: {
|
|
|
686
700
|
export type NamedFilterAggType =
|
|
687
701
|
(typeof NamedFilterAggType)[keyof typeof NamedFilterAggType];
|
|
688
702
|
export interface TopicSingularFilterConstant {
|
|
689
|
-
ConstantType?: ConstantType;
|
|
690
|
-
SingularConstant?: string;
|
|
703
|
+
ConstantType?: ConstantType | undefined;
|
|
704
|
+
SingularConstant?: string | undefined;
|
|
691
705
|
}
|
|
692
706
|
export interface TopicNumericEqualityFilter {
|
|
693
|
-
Constant?: TopicSingularFilterConstant;
|
|
694
|
-
Aggregation?: NamedFilterAggType;
|
|
707
|
+
Constant?: TopicSingularFilterConstant | undefined;
|
|
708
|
+
Aggregation?: NamedFilterAggType | undefined;
|
|
695
709
|
}
|
|
696
710
|
export interface TopicNumericRangeFilter {
|
|
697
|
-
Inclusive?: boolean;
|
|
698
|
-
Constant?: TopicRangeFilterConstant;
|
|
699
|
-
Aggregation?: NamedFilterAggType;
|
|
711
|
+
Inclusive?: boolean | undefined;
|
|
712
|
+
Constant?: TopicRangeFilterConstant | undefined;
|
|
713
|
+
Aggregation?: NamedFilterAggType | undefined;
|
|
700
714
|
}
|
|
701
715
|
export declare const TopicRelativeDateFilterFunction: {
|
|
702
716
|
readonly LAST: "LAST";
|
|
@@ -708,22 +722,22 @@ export declare const TopicRelativeDateFilterFunction: {
|
|
|
708
722
|
export type TopicRelativeDateFilterFunction =
|
|
709
723
|
(typeof TopicRelativeDateFilterFunction)[keyof typeof TopicRelativeDateFilterFunction];
|
|
710
724
|
export interface TopicRelativeDateFilter {
|
|
711
|
-
TimeGranularity?: TopicTimeGranularity;
|
|
712
|
-
RelativeDateFilterFunction?: TopicRelativeDateFilterFunction;
|
|
713
|
-
Constant?: TopicSingularFilterConstant;
|
|
725
|
+
TimeGranularity?: TopicTimeGranularity | undefined;
|
|
726
|
+
RelativeDateFilterFunction?: TopicRelativeDateFilterFunction | undefined;
|
|
727
|
+
Constant?: TopicSingularFilterConstant | undefined;
|
|
714
728
|
}
|
|
715
729
|
export interface TopicFilter {
|
|
716
|
-
FilterDescription?: string;
|
|
717
|
-
FilterClass?: FilterClass;
|
|
730
|
+
FilterDescription?: string | undefined;
|
|
731
|
+
FilterClass?: FilterClass | undefined;
|
|
718
732
|
FilterName: string | undefined;
|
|
719
|
-
FilterSynonyms?: string[];
|
|
733
|
+
FilterSynonyms?: string[] | undefined;
|
|
720
734
|
OperandFieldName: string | undefined;
|
|
721
|
-
FilterType?: NamedFilterType;
|
|
722
|
-
CategoryFilter?: TopicCategoryFilter;
|
|
723
|
-
NumericEqualityFilter?: TopicNumericEqualityFilter;
|
|
724
|
-
NumericRangeFilter?: TopicNumericRangeFilter;
|
|
725
|
-
DateRangeFilter?: TopicDateRangeFilter;
|
|
726
|
-
RelativeDateFilter?: TopicRelativeDateFilter;
|
|
735
|
+
FilterType?: NamedFilterType | undefined;
|
|
736
|
+
CategoryFilter?: TopicCategoryFilter | undefined;
|
|
737
|
+
NumericEqualityFilter?: TopicNumericEqualityFilter | undefined;
|
|
738
|
+
NumericRangeFilter?: TopicNumericRangeFilter | undefined;
|
|
739
|
+
DateRangeFilter?: TopicDateRangeFilter | undefined;
|
|
740
|
+
RelativeDateFilter?: TopicRelativeDateFilter | undefined;
|
|
727
741
|
}
|
|
728
742
|
export declare const NamedEntityAggType: {
|
|
729
743
|
readonly AVERAGE: "AVERAGE";
|
|
@@ -743,8 +757,8 @@ export declare const NamedEntityAggType: {
|
|
|
743
757
|
export type NamedEntityAggType =
|
|
744
758
|
(typeof NamedEntityAggType)[keyof typeof NamedEntityAggType];
|
|
745
759
|
export interface NamedEntityDefinitionMetric {
|
|
746
|
-
Aggregation?: NamedEntityAggType;
|
|
747
|
-
AggregationFunctionParameters?: Record<string, string
|
|
760
|
+
Aggregation?: NamedEntityAggType | undefined;
|
|
761
|
+
AggregationFunctionParameters?: Record<string, string> | undefined;
|
|
748
762
|
}
|
|
749
763
|
export declare const PropertyRole: {
|
|
750
764
|
readonly ID: "ID";
|
|
@@ -758,33 +772,33 @@ export declare const PropertyUsage: {
|
|
|
758
772
|
};
|
|
759
773
|
export type PropertyUsage = (typeof PropertyUsage)[keyof typeof PropertyUsage];
|
|
760
774
|
export interface NamedEntityDefinition {
|
|
761
|
-
FieldName?: string;
|
|
762
|
-
PropertyName?: string;
|
|
763
|
-
PropertyRole?: PropertyRole;
|
|
764
|
-
PropertyUsage?: PropertyUsage;
|
|
765
|
-
Metric?: NamedEntityDefinitionMetric;
|
|
775
|
+
FieldName?: string | undefined;
|
|
776
|
+
PropertyName?: string | undefined;
|
|
777
|
+
PropertyRole?: PropertyRole | undefined;
|
|
778
|
+
PropertyUsage?: PropertyUsage | undefined;
|
|
779
|
+
Metric?: NamedEntityDefinitionMetric | undefined;
|
|
766
780
|
}
|
|
767
781
|
export interface SemanticEntityType {
|
|
768
|
-
TypeName?: string;
|
|
769
|
-
SubTypeName?: string;
|
|
770
|
-
TypeParameters?: Record<string, string
|
|
782
|
+
TypeName?: string | undefined;
|
|
783
|
+
SubTypeName?: string | undefined;
|
|
784
|
+
TypeParameters?: Record<string, string> | undefined;
|
|
771
785
|
}
|
|
772
786
|
export interface TopicNamedEntity {
|
|
773
787
|
EntityName: string | undefined;
|
|
774
|
-
EntityDescription?: string;
|
|
775
|
-
EntitySynonyms?: string[];
|
|
776
|
-
SemanticEntityType?: SemanticEntityType;
|
|
777
|
-
Definition?: NamedEntityDefinition[];
|
|
788
|
+
EntityDescription?: string | undefined;
|
|
789
|
+
EntitySynonyms?: string[] | undefined;
|
|
790
|
+
SemanticEntityType?: SemanticEntityType | undefined;
|
|
791
|
+
Definition?: NamedEntityDefinition[] | undefined;
|
|
778
792
|
}
|
|
779
793
|
export interface DatasetMetadata {
|
|
780
794
|
DatasetArn: string | undefined;
|
|
781
|
-
DatasetName?: string;
|
|
782
|
-
DatasetDescription?: string;
|
|
783
|
-
DataAggregation?: DataAggregation;
|
|
784
|
-
Filters?: TopicFilter[];
|
|
785
|
-
Columns?: TopicColumn[];
|
|
786
|
-
CalculatedFields?: TopicCalculatedField[];
|
|
787
|
-
NamedEntities?: TopicNamedEntity[];
|
|
795
|
+
DatasetName?: string | undefined;
|
|
796
|
+
DatasetDescription?: string | undefined;
|
|
797
|
+
DataAggregation?: DataAggregation | undefined;
|
|
798
|
+
Filters?: TopicFilter[] | undefined;
|
|
799
|
+
Columns?: TopicColumn[] | undefined;
|
|
800
|
+
CalculatedFields?: TopicCalculatedField[] | undefined;
|
|
801
|
+
NamedEntities?: TopicNamedEntity[] | undefined;
|
|
788
802
|
}
|
|
789
803
|
export declare const TopicUserExperienceVersion: {
|
|
790
804
|
readonly LEGACY: "LEGACY";
|
|
@@ -793,24 +807,24 @@ export declare const TopicUserExperienceVersion: {
|
|
|
793
807
|
export type TopicUserExperienceVersion =
|
|
794
808
|
(typeof TopicUserExperienceVersion)[keyof typeof TopicUserExperienceVersion];
|
|
795
809
|
export interface TopicDetails {
|
|
796
|
-
Name?: string;
|
|
797
|
-
Description?: string;
|
|
798
|
-
UserExperienceVersion?: TopicUserExperienceVersion;
|
|
799
|
-
DataSets?: DatasetMetadata[];
|
|
800
|
-
ConfigOptions?: TopicConfigOptions;
|
|
810
|
+
Name?: string | undefined;
|
|
811
|
+
Description?: string | undefined;
|
|
812
|
+
UserExperienceVersion?: TopicUserExperienceVersion | undefined;
|
|
813
|
+
DataSets?: DatasetMetadata[] | undefined;
|
|
814
|
+
ConfigOptions?: TopicConfigOptions | undefined;
|
|
801
815
|
}
|
|
802
816
|
export interface CreateTopicRequest {
|
|
803
817
|
AwsAccountId: string | undefined;
|
|
804
818
|
TopicId: string | undefined;
|
|
805
819
|
Topic: TopicDetails | undefined;
|
|
806
|
-
Tags?: Tag[];
|
|
820
|
+
Tags?: Tag[] | undefined;
|
|
807
821
|
}
|
|
808
822
|
export interface CreateTopicResponse {
|
|
809
|
-
Arn?: string;
|
|
810
|
-
TopicId?: string;
|
|
811
|
-
RefreshArn?: string;
|
|
812
|
-
RequestId?: string;
|
|
813
|
-
Status?: number;
|
|
823
|
+
Arn?: string | undefined;
|
|
824
|
+
TopicId?: string | undefined;
|
|
825
|
+
RefreshArn?: string | undefined;
|
|
826
|
+
RequestId?: string | undefined;
|
|
827
|
+
Status?: number | undefined;
|
|
814
828
|
}
|
|
815
829
|
export declare const TopicScheduleType: {
|
|
816
830
|
readonly DAILY: "DAILY";
|
|
@@ -823,24 +837,24 @@ export type TopicScheduleType =
|
|
|
823
837
|
export interface TopicRefreshSchedule {
|
|
824
838
|
IsEnabled: boolean | undefined;
|
|
825
839
|
BasedOnSpiceSchedule: boolean | undefined;
|
|
826
|
-
StartingAt?: Date;
|
|
827
|
-
Timezone?: string;
|
|
828
|
-
RepeatAt?: string;
|
|
829
|
-
TopicScheduleType?: TopicScheduleType;
|
|
840
|
+
StartingAt?: Date | undefined;
|
|
841
|
+
Timezone?: string | undefined;
|
|
842
|
+
RepeatAt?: string | undefined;
|
|
843
|
+
TopicScheduleType?: TopicScheduleType | undefined;
|
|
830
844
|
}
|
|
831
845
|
export interface CreateTopicRefreshScheduleRequest {
|
|
832
846
|
AwsAccountId: string | undefined;
|
|
833
847
|
TopicId: string | undefined;
|
|
834
848
|
DatasetArn: string | undefined;
|
|
835
|
-
DatasetName?: string;
|
|
849
|
+
DatasetName?: string | undefined;
|
|
836
850
|
RefreshSchedule: TopicRefreshSchedule | undefined;
|
|
837
851
|
}
|
|
838
852
|
export interface CreateTopicRefreshScheduleResponse {
|
|
839
|
-
TopicId?: string;
|
|
840
|
-
TopicArn?: string;
|
|
841
|
-
DatasetArn?: string;
|
|
842
|
-
Status?: number;
|
|
843
|
-
RequestId?: string;
|
|
853
|
+
TopicId?: string | undefined;
|
|
854
|
+
TopicArn?: string | undefined;
|
|
855
|
+
DatasetArn?: string | undefined;
|
|
856
|
+
Status?: number | undefined;
|
|
857
|
+
RequestId?: string | undefined;
|
|
844
858
|
}
|
|
845
859
|
export interface CreateVPCConnectionRequest {
|
|
846
860
|
AwsAccountId: string | undefined;
|
|
@@ -848,9 +862,9 @@ export interface CreateVPCConnectionRequest {
|
|
|
848
862
|
Name: string | undefined;
|
|
849
863
|
SubnetIds: string[] | undefined;
|
|
850
864
|
SecurityGroupIds: string[] | undefined;
|
|
851
|
-
DnsResolvers?: string[];
|
|
865
|
+
DnsResolvers?: string[] | undefined;
|
|
852
866
|
RoleArn: string | undefined;
|
|
853
|
-
Tags?: Tag[];
|
|
867
|
+
Tags?: Tag[] | undefined;
|
|
854
868
|
}
|
|
855
869
|
export declare const VPCConnectionAvailabilityStatus: {
|
|
856
870
|
readonly AVAILABLE: "AVAILABLE";
|
|
@@ -873,12 +887,12 @@ export declare const VPCConnectionResourceStatus: {
|
|
|
873
887
|
export type VPCConnectionResourceStatus =
|
|
874
888
|
(typeof VPCConnectionResourceStatus)[keyof typeof VPCConnectionResourceStatus];
|
|
875
889
|
export interface CreateVPCConnectionResponse {
|
|
876
|
-
Arn?: string;
|
|
877
|
-
VPCConnectionId?: string;
|
|
878
|
-
CreationStatus?: VPCConnectionResourceStatus;
|
|
879
|
-
AvailabilityStatus?: VPCConnectionAvailabilityStatus;
|
|
880
|
-
RequestId?: string;
|
|
881
|
-
Status?: number;
|
|
890
|
+
Arn?: string | undefined;
|
|
891
|
+
VPCConnectionId?: string | undefined;
|
|
892
|
+
CreationStatus?: VPCConnectionResourceStatus | undefined;
|
|
893
|
+
AvailabilityStatus?: VPCConnectionAvailabilityStatus | undefined;
|
|
894
|
+
RequestId?: string | undefined;
|
|
895
|
+
Status?: number | undefined;
|
|
882
896
|
}
|
|
883
897
|
export declare const DashboardErrorType: {
|
|
884
898
|
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
@@ -895,31 +909,31 @@ export declare const DashboardErrorType: {
|
|
|
895
909
|
export type DashboardErrorType =
|
|
896
910
|
(typeof DashboardErrorType)[keyof typeof DashboardErrorType];
|
|
897
911
|
export interface DashboardError {
|
|
898
|
-
Type?: DashboardErrorType;
|
|
899
|
-
Message?: string;
|
|
900
|
-
ViolatedEntities?: Entity[];
|
|
912
|
+
Type?: DashboardErrorType | undefined;
|
|
913
|
+
Message?: string | undefined;
|
|
914
|
+
ViolatedEntities?: Entity[] | undefined;
|
|
901
915
|
}
|
|
902
916
|
export interface DashboardVersion {
|
|
903
|
-
CreatedTime?: Date;
|
|
904
|
-
Errors?: DashboardError[];
|
|
905
|
-
VersionNumber?: number;
|
|
906
|
-
Status?: ResourceStatus;
|
|
907
|
-
Arn?: string;
|
|
908
|
-
SourceEntityArn?: string;
|
|
909
|
-
DataSetArns?: string[];
|
|
910
|
-
Description?: string;
|
|
911
|
-
ThemeArn?: string;
|
|
912
|
-
Sheets?: Sheet[];
|
|
917
|
+
CreatedTime?: Date | undefined;
|
|
918
|
+
Errors?: DashboardError[] | undefined;
|
|
919
|
+
VersionNumber?: number | undefined;
|
|
920
|
+
Status?: ResourceStatus | undefined;
|
|
921
|
+
Arn?: string | undefined;
|
|
922
|
+
SourceEntityArn?: string | undefined;
|
|
923
|
+
DataSetArns?: string[] | undefined;
|
|
924
|
+
Description?: string | undefined;
|
|
925
|
+
ThemeArn?: string | undefined;
|
|
926
|
+
Sheets?: Sheet[] | undefined;
|
|
913
927
|
}
|
|
914
928
|
export interface Dashboard {
|
|
915
|
-
DashboardId?: string;
|
|
916
|
-
Arn?: string;
|
|
917
|
-
Name?: string;
|
|
918
|
-
Version?: DashboardVersion;
|
|
919
|
-
CreatedTime?: Date;
|
|
920
|
-
LastPublishedTime?: Date;
|
|
921
|
-
LastUpdatedTime?: Date;
|
|
922
|
-
LinkEntities?: string[];
|
|
929
|
+
DashboardId?: string | undefined;
|
|
930
|
+
Arn?: string | undefined;
|
|
931
|
+
Name?: string | undefined;
|
|
932
|
+
Version?: DashboardVersion | undefined;
|
|
933
|
+
CreatedTime?: Date | undefined;
|
|
934
|
+
LastPublishedTime?: Date | undefined;
|
|
935
|
+
LastUpdatedTime?: Date | undefined;
|
|
936
|
+
LinkEntities?: string[] | undefined;
|
|
923
937
|
}
|
|
924
938
|
export declare const DashboardFilterAttribute: {
|
|
925
939
|
readonly DASHBOARD_NAME: "DASHBOARD_NAME";
|
|
@@ -934,50 +948,52 @@ export type DashboardFilterAttribute =
|
|
|
934
948
|
(typeof DashboardFilterAttribute)[keyof typeof DashboardFilterAttribute];
|
|
935
949
|
export interface DashboardSearchFilter {
|
|
936
950
|
Operator: FilterOperator | undefined;
|
|
937
|
-
Name?: DashboardFilterAttribute;
|
|
938
|
-
Value?: string;
|
|
951
|
+
Name?: DashboardFilterAttribute | undefined;
|
|
952
|
+
Value?: string | undefined;
|
|
939
953
|
}
|
|
940
954
|
export interface DashboardSummary {
|
|
941
|
-
Arn?: string;
|
|
942
|
-
DashboardId?: string;
|
|
943
|
-
Name?: string;
|
|
944
|
-
CreatedTime?: Date;
|
|
945
|
-
LastUpdatedTime?: Date;
|
|
946
|
-
PublishedVersionNumber?: number;
|
|
947
|
-
LastPublishedTime?: Date;
|
|
955
|
+
Arn?: string | undefined;
|
|
956
|
+
DashboardId?: string | undefined;
|
|
957
|
+
Name?: string | undefined;
|
|
958
|
+
CreatedTime?: Date | undefined;
|
|
959
|
+
LastUpdatedTime?: Date | undefined;
|
|
960
|
+
PublishedVersionNumber?: number | undefined;
|
|
961
|
+
LastPublishedTime?: Date | undefined;
|
|
948
962
|
}
|
|
949
963
|
export interface DashboardVersionSummary {
|
|
950
|
-
Arn?: string;
|
|
951
|
-
CreatedTime?: Date;
|
|
952
|
-
VersionNumber?: number;
|
|
953
|
-
Status?: ResourceStatus;
|
|
954
|
-
SourceEntityArn?: string;
|
|
955
|
-
Description?: string;
|
|
964
|
+
Arn?: string | undefined;
|
|
965
|
+
CreatedTime?: Date | undefined;
|
|
966
|
+
VersionNumber?: number | undefined;
|
|
967
|
+
Status?: ResourceStatus | undefined;
|
|
968
|
+
SourceEntityArn?: string | undefined;
|
|
969
|
+
Description?: string | undefined;
|
|
956
970
|
}
|
|
957
971
|
export interface OutputColumn {
|
|
958
|
-
Name?: string;
|
|
959
|
-
Description?: string;
|
|
960
|
-
Type?: ColumnDataType;
|
|
961
|
-
SubType?: ColumnDataSubType;
|
|
972
|
+
Name?: string | undefined;
|
|
973
|
+
Description?: string | undefined;
|
|
974
|
+
Type?: ColumnDataType | undefined;
|
|
975
|
+
SubType?: ColumnDataSubType | undefined;
|
|
962
976
|
}
|
|
963
977
|
export interface DataSet {
|
|
964
|
-
Arn?: string;
|
|
965
|
-
DataSetId?: string;
|
|
966
|
-
Name?: string;
|
|
967
|
-
CreatedTime?: Date;
|
|
968
|
-
LastUpdatedTime?: Date;
|
|
969
|
-
PhysicalTableMap?: Record<string, PhysicalTable
|
|
970
|
-
LogicalTableMap?: Record<string, LogicalTable
|
|
971
|
-
OutputColumns?: OutputColumn[];
|
|
972
|
-
ImportMode?: DataSetImportMode;
|
|
973
|
-
ConsumedSpiceCapacityInBytes?: number;
|
|
974
|
-
ColumnGroups?: ColumnGroup[];
|
|
975
|
-
FieldFolders?: Record<string, FieldFolder
|
|
976
|
-
RowLevelPermissionDataSet?: RowLevelPermissionDataSet;
|
|
977
|
-
RowLevelPermissionTagConfiguration?:
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
978
|
+
Arn?: string | undefined;
|
|
979
|
+
DataSetId?: string | undefined;
|
|
980
|
+
Name?: string | undefined;
|
|
981
|
+
CreatedTime?: Date | undefined;
|
|
982
|
+
LastUpdatedTime?: Date | undefined;
|
|
983
|
+
PhysicalTableMap?: Record<string, PhysicalTable> | undefined;
|
|
984
|
+
LogicalTableMap?: Record<string, LogicalTable> | undefined;
|
|
985
|
+
OutputColumns?: OutputColumn[] | undefined;
|
|
986
|
+
ImportMode?: DataSetImportMode | undefined;
|
|
987
|
+
ConsumedSpiceCapacityInBytes?: number | undefined;
|
|
988
|
+
ColumnGroups?: ColumnGroup[] | undefined;
|
|
989
|
+
FieldFolders?: Record<string, FieldFolder> | undefined;
|
|
990
|
+
RowLevelPermissionDataSet?: RowLevelPermissionDataSet | undefined;
|
|
991
|
+
RowLevelPermissionTagConfiguration?:
|
|
992
|
+
| RowLevelPermissionTagConfiguration
|
|
993
|
+
| undefined;
|
|
994
|
+
ColumnLevelPermissionRules?: ColumnLevelPermissionRule[] | undefined;
|
|
995
|
+
DataSetUsageConfiguration?: DataSetUsageConfiguration | undefined;
|
|
996
|
+
DatasetParameters?: DatasetParameter[] | undefined;
|
|
981
997
|
}
|
|
982
998
|
export declare const DataSetFilterAttribute: {
|
|
983
999
|
readonly DATASET_NAME: "DATASET_NAME";
|
|
@@ -1016,15 +1032,15 @@ export interface DataSetSearchFilter {
|
|
|
1016
1032
|
Value: string | undefined;
|
|
1017
1033
|
}
|
|
1018
1034
|
export interface DataSetSummary {
|
|
1019
|
-
Arn?: string;
|
|
1020
|
-
DataSetId?: string;
|
|
1021
|
-
Name?: string;
|
|
1022
|
-
CreatedTime?: Date;
|
|
1023
|
-
LastUpdatedTime?: Date;
|
|
1024
|
-
ImportMode?: DataSetImportMode;
|
|
1025
|
-
RowLevelPermissionDataSet?: RowLevelPermissionDataSet;
|
|
1026
|
-
RowLevelPermissionTagConfigurationApplied?: boolean;
|
|
1027
|
-
ColumnLevelPermissionRulesApplied?: boolean;
|
|
1035
|
+
Arn?: string | undefined;
|
|
1036
|
+
DataSetId?: string | undefined;
|
|
1037
|
+
Name?: string | undefined;
|
|
1038
|
+
CreatedTime?: Date | undefined;
|
|
1039
|
+
LastUpdatedTime?: Date | undefined;
|
|
1040
|
+
ImportMode?: DataSetImportMode | undefined;
|
|
1041
|
+
RowLevelPermissionDataSet?: RowLevelPermissionDataSet | undefined;
|
|
1042
|
+
RowLevelPermissionTagConfigurationApplied?: boolean | undefined;
|
|
1043
|
+
ColumnLevelPermissionRulesApplied?: boolean | undefined;
|
|
1028
1044
|
}
|
|
1029
1045
|
export declare const DataSourceErrorInfoType: {
|
|
1030
1046
|
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
@@ -1039,23 +1055,23 @@ export declare const DataSourceErrorInfoType: {
|
|
|
1039
1055
|
export type DataSourceErrorInfoType =
|
|
1040
1056
|
(typeof DataSourceErrorInfoType)[keyof typeof DataSourceErrorInfoType];
|
|
1041
1057
|
export interface DataSourceErrorInfo {
|
|
1042
|
-
Type?: DataSourceErrorInfoType;
|
|
1043
|
-
Message?: string;
|
|
1058
|
+
Type?: DataSourceErrorInfoType | undefined;
|
|
1059
|
+
Message?: string | undefined;
|
|
1044
1060
|
}
|
|
1045
1061
|
export interface DataSource {
|
|
1046
|
-
Arn?: string;
|
|
1047
|
-
DataSourceId?: string;
|
|
1048
|
-
Name?: string;
|
|
1049
|
-
Type?: DataSourceType;
|
|
1050
|
-
Status?: ResourceStatus;
|
|
1051
|
-
CreatedTime?: Date;
|
|
1052
|
-
LastUpdatedTime?: Date;
|
|
1053
|
-
DataSourceParameters?: DataSourceParameters;
|
|
1054
|
-
AlternateDataSourceParameters?: DataSourceParameters[];
|
|
1055
|
-
VpcConnectionProperties?: VpcConnectionProperties;
|
|
1056
|
-
SslProperties?: SslProperties;
|
|
1057
|
-
ErrorInfo?: DataSourceErrorInfo;
|
|
1058
|
-
SecretArn?: string;
|
|
1062
|
+
Arn?: string | undefined;
|
|
1063
|
+
DataSourceId?: string | undefined;
|
|
1064
|
+
Name?: string | undefined;
|
|
1065
|
+
Type?: DataSourceType | undefined;
|
|
1066
|
+
Status?: ResourceStatus | undefined;
|
|
1067
|
+
CreatedTime?: Date | undefined;
|
|
1068
|
+
LastUpdatedTime?: Date | undefined;
|
|
1069
|
+
DataSourceParameters?: DataSourceParameters | undefined;
|
|
1070
|
+
AlternateDataSourceParameters?: DataSourceParameters[] | undefined;
|
|
1071
|
+
VpcConnectionProperties?: VpcConnectionProperties | undefined;
|
|
1072
|
+
SslProperties?: SslProperties | undefined;
|
|
1073
|
+
ErrorInfo?: DataSourceErrorInfo | undefined;
|
|
1074
|
+
SecretArn?: string | undefined;
|
|
1059
1075
|
}
|
|
1060
1076
|
export declare const DataSourceFilterAttribute: {
|
|
1061
1077
|
readonly DATASOURCE_NAME: "DATASOURCE_NAME";
|
|
@@ -1071,89 +1087,89 @@ export interface DataSourceSearchFilter {
|
|
|
1071
1087
|
Value: string | undefined;
|
|
1072
1088
|
}
|
|
1073
1089
|
export interface DataSourceSummary {
|
|
1074
|
-
Arn?: string;
|
|
1075
|
-
DataSourceId?: string;
|
|
1076
|
-
Name?: string;
|
|
1077
|
-
Type?: DataSourceType;
|
|
1078
|
-
CreatedTime?: Date;
|
|
1079
|
-
LastUpdatedTime?: Date;
|
|
1090
|
+
Arn?: string | undefined;
|
|
1091
|
+
DataSourceId?: string | undefined;
|
|
1092
|
+
Name?: string | undefined;
|
|
1093
|
+
Type?: DataSourceType | undefined;
|
|
1094
|
+
CreatedTime?: Date | undefined;
|
|
1095
|
+
LastUpdatedTime?: Date | undefined;
|
|
1080
1096
|
}
|
|
1081
1097
|
export interface DeleteAccountCustomizationRequest {
|
|
1082
1098
|
AwsAccountId: string | undefined;
|
|
1083
|
-
Namespace?: string;
|
|
1099
|
+
Namespace?: string | undefined;
|
|
1084
1100
|
}
|
|
1085
1101
|
export interface DeleteAccountCustomizationResponse {
|
|
1086
|
-
RequestId?: string;
|
|
1087
|
-
Status?: number;
|
|
1102
|
+
RequestId?: string | undefined;
|
|
1103
|
+
Status?: number | undefined;
|
|
1088
1104
|
}
|
|
1089
1105
|
export interface DeleteAccountSubscriptionRequest {
|
|
1090
1106
|
AwsAccountId: string | undefined;
|
|
1091
1107
|
}
|
|
1092
1108
|
export interface DeleteAccountSubscriptionResponse {
|
|
1093
|
-
RequestId?: string;
|
|
1094
|
-
Status?: number;
|
|
1109
|
+
RequestId?: string | undefined;
|
|
1110
|
+
Status?: number | undefined;
|
|
1095
1111
|
}
|
|
1096
1112
|
export interface DeleteAnalysisRequest {
|
|
1097
1113
|
AwsAccountId: string | undefined;
|
|
1098
1114
|
AnalysisId: string | undefined;
|
|
1099
|
-
RecoveryWindowInDays?: number;
|
|
1100
|
-
ForceDeleteWithoutRecovery?: boolean;
|
|
1115
|
+
RecoveryWindowInDays?: number | undefined;
|
|
1116
|
+
ForceDeleteWithoutRecovery?: boolean | undefined;
|
|
1101
1117
|
}
|
|
1102
1118
|
export interface DeleteAnalysisResponse {
|
|
1103
|
-
Status?: number;
|
|
1104
|
-
Arn?: string;
|
|
1105
|
-
AnalysisId?: string;
|
|
1106
|
-
DeletionTime?: Date;
|
|
1107
|
-
RequestId?: string;
|
|
1119
|
+
Status?: number | undefined;
|
|
1120
|
+
Arn?: string | undefined;
|
|
1121
|
+
AnalysisId?: string | undefined;
|
|
1122
|
+
DeletionTime?: Date | undefined;
|
|
1123
|
+
RequestId?: string | undefined;
|
|
1108
1124
|
}
|
|
1109
1125
|
export interface DeleteDashboardRequest {
|
|
1110
1126
|
AwsAccountId: string | undefined;
|
|
1111
1127
|
DashboardId: string | undefined;
|
|
1112
|
-
VersionNumber?: number;
|
|
1128
|
+
VersionNumber?: number | undefined;
|
|
1113
1129
|
}
|
|
1114
1130
|
export interface DeleteDashboardResponse {
|
|
1115
|
-
Status?: number;
|
|
1116
|
-
Arn?: string;
|
|
1117
|
-
DashboardId?: string;
|
|
1118
|
-
RequestId?: string;
|
|
1131
|
+
Status?: number | undefined;
|
|
1132
|
+
Arn?: string | undefined;
|
|
1133
|
+
DashboardId?: string | undefined;
|
|
1134
|
+
RequestId?: string | undefined;
|
|
1119
1135
|
}
|
|
1120
1136
|
export interface DeleteDataSetRequest {
|
|
1121
1137
|
AwsAccountId: string | undefined;
|
|
1122
1138
|
DataSetId: string | undefined;
|
|
1123
1139
|
}
|
|
1124
1140
|
export interface DeleteDataSetResponse {
|
|
1125
|
-
Arn?: string;
|
|
1126
|
-
DataSetId?: string;
|
|
1127
|
-
RequestId?: string;
|
|
1128
|
-
Status?: number;
|
|
1141
|
+
Arn?: string | undefined;
|
|
1142
|
+
DataSetId?: string | undefined;
|
|
1143
|
+
RequestId?: string | undefined;
|
|
1144
|
+
Status?: number | undefined;
|
|
1129
1145
|
}
|
|
1130
1146
|
export interface DeleteDataSetRefreshPropertiesRequest {
|
|
1131
1147
|
AwsAccountId: string | undefined;
|
|
1132
1148
|
DataSetId: string | undefined;
|
|
1133
1149
|
}
|
|
1134
1150
|
export interface DeleteDataSetRefreshPropertiesResponse {
|
|
1135
|
-
RequestId?: string;
|
|
1136
|
-
Status?: number;
|
|
1151
|
+
RequestId?: string | undefined;
|
|
1152
|
+
Status?: number | undefined;
|
|
1137
1153
|
}
|
|
1138
1154
|
export interface DeleteDataSourceRequest {
|
|
1139
1155
|
AwsAccountId: string | undefined;
|
|
1140
1156
|
DataSourceId: string | undefined;
|
|
1141
1157
|
}
|
|
1142
1158
|
export interface DeleteDataSourceResponse {
|
|
1143
|
-
Arn?: string;
|
|
1144
|
-
DataSourceId?: string;
|
|
1145
|
-
RequestId?: string;
|
|
1146
|
-
Status?: number;
|
|
1159
|
+
Arn?: string | undefined;
|
|
1160
|
+
DataSourceId?: string | undefined;
|
|
1161
|
+
RequestId?: string | undefined;
|
|
1162
|
+
Status?: number | undefined;
|
|
1147
1163
|
}
|
|
1148
1164
|
export interface DeleteFolderRequest {
|
|
1149
1165
|
AwsAccountId: string | undefined;
|
|
1150
1166
|
FolderId: string | undefined;
|
|
1151
1167
|
}
|
|
1152
1168
|
export interface DeleteFolderResponse {
|
|
1153
|
-
Status?: number;
|
|
1154
|
-
Arn?: string;
|
|
1155
|
-
FolderId?: string;
|
|
1156
|
-
RequestId?: string;
|
|
1169
|
+
Status?: number | undefined;
|
|
1170
|
+
Arn?: string | undefined;
|
|
1171
|
+
FolderId?: string | undefined;
|
|
1172
|
+
RequestId?: string | undefined;
|
|
1157
1173
|
}
|
|
1158
1174
|
export interface DeleteFolderMembershipRequest {
|
|
1159
1175
|
AwsAccountId: string | undefined;
|
|
@@ -1162,8 +1178,8 @@ export interface DeleteFolderMembershipRequest {
|
|
|
1162
1178
|
MemberType: MemberType | undefined;
|
|
1163
1179
|
}
|
|
1164
1180
|
export interface DeleteFolderMembershipResponse {
|
|
1165
|
-
Status?: number;
|
|
1166
|
-
RequestId?: string;
|
|
1181
|
+
Status?: number | undefined;
|
|
1182
|
+
RequestId?: string | undefined;
|
|
1167
1183
|
}
|
|
1168
1184
|
export interface DeleteGroupRequest {
|
|
1169
1185
|
GroupName: string | undefined;
|
|
@@ -1171,8 +1187,8 @@ export interface DeleteGroupRequest {
|
|
|
1171
1187
|
Namespace: string | undefined;
|
|
1172
1188
|
}
|
|
1173
1189
|
export interface DeleteGroupResponse {
|
|
1174
|
-
RequestId?: string;
|
|
1175
|
-
Status?: number;
|
|
1190
|
+
RequestId?: string | undefined;
|
|
1191
|
+
Status?: number | undefined;
|
|
1176
1192
|
}
|
|
1177
1193
|
export interface DeleteGroupMembershipRequest {
|
|
1178
1194
|
MemberName: string | undefined;
|
|
@@ -1181,8 +1197,8 @@ export interface DeleteGroupMembershipRequest {
|
|
|
1181
1197
|
Namespace: string | undefined;
|
|
1182
1198
|
}
|
|
1183
1199
|
export interface DeleteGroupMembershipResponse {
|
|
1184
|
-
RequestId?: string;
|
|
1185
|
-
Status?: number;
|
|
1200
|
+
RequestId?: string | undefined;
|
|
1201
|
+
Status?: number | undefined;
|
|
1186
1202
|
}
|
|
1187
1203
|
export interface DeleteIAMPolicyAssignmentRequest {
|
|
1188
1204
|
AwsAccountId: string | undefined;
|
|
@@ -1190,25 +1206,25 @@ export interface DeleteIAMPolicyAssignmentRequest {
|
|
|
1190
1206
|
Namespace: string | undefined;
|
|
1191
1207
|
}
|
|
1192
1208
|
export interface DeleteIAMPolicyAssignmentResponse {
|
|
1193
|
-
AssignmentName?: string;
|
|
1194
|
-
RequestId?: string;
|
|
1195
|
-
Status?: number;
|
|
1209
|
+
AssignmentName?: string | undefined;
|
|
1210
|
+
RequestId?: string | undefined;
|
|
1211
|
+
Status?: number | undefined;
|
|
1196
1212
|
}
|
|
1197
1213
|
export interface DeleteIdentityPropagationConfigRequest {
|
|
1198
1214
|
AwsAccountId: string | undefined;
|
|
1199
1215
|
Service: ServiceType | undefined;
|
|
1200
1216
|
}
|
|
1201
1217
|
export interface DeleteIdentityPropagationConfigResponse {
|
|
1202
|
-
RequestId?: string;
|
|
1203
|
-
Status?: number;
|
|
1218
|
+
RequestId?: string | undefined;
|
|
1219
|
+
Status?: number | undefined;
|
|
1204
1220
|
}
|
|
1205
1221
|
export interface DeleteNamespaceRequest {
|
|
1206
1222
|
AwsAccountId: string | undefined;
|
|
1207
1223
|
Namespace: string | undefined;
|
|
1208
1224
|
}
|
|
1209
1225
|
export interface DeleteNamespaceResponse {
|
|
1210
|
-
RequestId?: string;
|
|
1211
|
-
Status?: number;
|
|
1226
|
+
RequestId?: string | undefined;
|
|
1227
|
+
Status?: number | undefined;
|
|
1212
1228
|
}
|
|
1213
1229
|
export interface DeleteRefreshScheduleRequest {
|
|
1214
1230
|
DataSetId: string | undefined;
|
|
@@ -1216,10 +1232,10 @@ export interface DeleteRefreshScheduleRequest {
|
|
|
1216
1232
|
ScheduleId: string | undefined;
|
|
1217
1233
|
}
|
|
1218
1234
|
export interface DeleteRefreshScheduleResponse {
|
|
1219
|
-
Status?: number;
|
|
1220
|
-
RequestId?: string;
|
|
1221
|
-
ScheduleId?: string;
|
|
1222
|
-
Arn?: string;
|
|
1235
|
+
Status?: number | undefined;
|
|
1236
|
+
RequestId?: string | undefined;
|
|
1237
|
+
ScheduleId?: string | undefined;
|
|
1238
|
+
Arn?: string | undefined;
|
|
1223
1239
|
}
|
|
1224
1240
|
export interface DeleteRoleCustomPermissionRequest {
|
|
1225
1241
|
Role: Role | undefined;
|
|
@@ -1227,8 +1243,8 @@ export interface DeleteRoleCustomPermissionRequest {
|
|
|
1227
1243
|
Namespace: string | undefined;
|
|
1228
1244
|
}
|
|
1229
1245
|
export interface DeleteRoleCustomPermissionResponse {
|
|
1230
|
-
RequestId?: string;
|
|
1231
|
-
Status?: number;
|
|
1246
|
+
RequestId?: string | undefined;
|
|
1247
|
+
Status?: number | undefined;
|
|
1232
1248
|
}
|
|
1233
1249
|
export interface DeleteRoleMembershipRequest {
|
|
1234
1250
|
MemberName: string | undefined;
|
|
@@ -1237,19 +1253,19 @@ export interface DeleteRoleMembershipRequest {
|
|
|
1237
1253
|
Namespace: string | undefined;
|
|
1238
1254
|
}
|
|
1239
1255
|
export interface DeleteRoleMembershipResponse {
|
|
1240
|
-
RequestId?: string;
|
|
1241
|
-
Status?: number;
|
|
1256
|
+
RequestId?: string | undefined;
|
|
1257
|
+
Status?: number | undefined;
|
|
1242
1258
|
}
|
|
1243
1259
|
export interface DeleteTemplateRequest {
|
|
1244
1260
|
AwsAccountId: string | undefined;
|
|
1245
1261
|
TemplateId: string | undefined;
|
|
1246
|
-
VersionNumber?: number;
|
|
1262
|
+
VersionNumber?: number | undefined;
|
|
1247
1263
|
}
|
|
1248
1264
|
export interface DeleteTemplateResponse {
|
|
1249
|
-
RequestId?: string;
|
|
1250
|
-
Arn?: string;
|
|
1251
|
-
TemplateId?: string;
|
|
1252
|
-
Status?: number;
|
|
1265
|
+
RequestId?: string | undefined;
|
|
1266
|
+
Arn?: string | undefined;
|
|
1267
|
+
TemplateId?: string | undefined;
|
|
1268
|
+
Status?: number | undefined;
|
|
1253
1269
|
}
|
|
1254
1270
|
export interface DeleteTemplateAliasRequest {
|
|
1255
1271
|
AwsAccountId: string | undefined;
|
|
@@ -1257,22 +1273,22 @@ export interface DeleteTemplateAliasRequest {
|
|
|
1257
1273
|
AliasName: string | undefined;
|
|
1258
1274
|
}
|
|
1259
1275
|
export interface DeleteTemplateAliasResponse {
|
|
1260
|
-
Status?: number;
|
|
1261
|
-
TemplateId?: string;
|
|
1262
|
-
AliasName?: string;
|
|
1263
|
-
Arn?: string;
|
|
1264
|
-
RequestId?: string;
|
|
1276
|
+
Status?: number | undefined;
|
|
1277
|
+
TemplateId?: string | undefined;
|
|
1278
|
+
AliasName?: string | undefined;
|
|
1279
|
+
Arn?: string | undefined;
|
|
1280
|
+
RequestId?: string | undefined;
|
|
1265
1281
|
}
|
|
1266
1282
|
export interface DeleteThemeRequest {
|
|
1267
1283
|
AwsAccountId: string | undefined;
|
|
1268
1284
|
ThemeId: string | undefined;
|
|
1269
|
-
VersionNumber?: number;
|
|
1285
|
+
VersionNumber?: number | undefined;
|
|
1270
1286
|
}
|
|
1271
1287
|
export interface DeleteThemeResponse {
|
|
1272
|
-
Arn?: string;
|
|
1273
|
-
RequestId?: string;
|
|
1274
|
-
Status?: number;
|
|
1275
|
-
ThemeId?: string;
|
|
1288
|
+
Arn?: string | undefined;
|
|
1289
|
+
RequestId?: string | undefined;
|
|
1290
|
+
Status?: number | undefined;
|
|
1291
|
+
ThemeId?: string | undefined;
|
|
1276
1292
|
}
|
|
1277
1293
|
export interface DeleteThemeAliasRequest {
|
|
1278
1294
|
AwsAccountId: string | undefined;
|
|
@@ -1280,21 +1296,21 @@ export interface DeleteThemeAliasRequest {
|
|
|
1280
1296
|
AliasName: string | undefined;
|
|
1281
1297
|
}
|
|
1282
1298
|
export interface DeleteThemeAliasResponse {
|
|
1283
|
-
AliasName?: string;
|
|
1284
|
-
Arn?: string;
|
|
1285
|
-
RequestId?: string;
|
|
1286
|
-
Status?: number;
|
|
1287
|
-
ThemeId?: string;
|
|
1299
|
+
AliasName?: string | undefined;
|
|
1300
|
+
Arn?: string | undefined;
|
|
1301
|
+
RequestId?: string | undefined;
|
|
1302
|
+
Status?: number | undefined;
|
|
1303
|
+
ThemeId?: string | undefined;
|
|
1288
1304
|
}
|
|
1289
1305
|
export interface DeleteTopicRequest {
|
|
1290
1306
|
AwsAccountId: string | undefined;
|
|
1291
1307
|
TopicId: string | undefined;
|
|
1292
1308
|
}
|
|
1293
1309
|
export interface DeleteTopicResponse {
|
|
1294
|
-
Arn?: string;
|
|
1295
|
-
TopicId?: string;
|
|
1296
|
-
RequestId?: string;
|
|
1297
|
-
Status?: number;
|
|
1310
|
+
Arn?: string | undefined;
|
|
1311
|
+
TopicId?: string | undefined;
|
|
1312
|
+
RequestId?: string | undefined;
|
|
1313
|
+
Status?: number | undefined;
|
|
1298
1314
|
}
|
|
1299
1315
|
export interface DeleteTopicRefreshScheduleRequest {
|
|
1300
1316
|
AwsAccountId: string | undefined;
|
|
@@ -1302,11 +1318,11 @@ export interface DeleteTopicRefreshScheduleRequest {
|
|
|
1302
1318
|
DatasetId: string | undefined;
|
|
1303
1319
|
}
|
|
1304
1320
|
export interface DeleteTopicRefreshScheduleResponse {
|
|
1305
|
-
TopicId?: string;
|
|
1306
|
-
TopicArn?: string;
|
|
1307
|
-
DatasetArn?: string;
|
|
1308
|
-
Status?: number;
|
|
1309
|
-
RequestId?: string;
|
|
1321
|
+
TopicId?: string | undefined;
|
|
1322
|
+
TopicArn?: string | undefined;
|
|
1323
|
+
DatasetArn?: string | undefined;
|
|
1324
|
+
Status?: number | undefined;
|
|
1325
|
+
RequestId?: string | undefined;
|
|
1310
1326
|
}
|
|
1311
1327
|
export interface DeleteUserRequest {
|
|
1312
1328
|
UserName: string | undefined;
|
|
@@ -1314,8 +1330,8 @@ export interface DeleteUserRequest {
|
|
|
1314
1330
|
Namespace: string | undefined;
|
|
1315
1331
|
}
|
|
1316
1332
|
export interface DeleteUserResponse {
|
|
1317
|
-
RequestId?: string;
|
|
1318
|
-
Status?: number;
|
|
1333
|
+
RequestId?: string | undefined;
|
|
1334
|
+
Status?: number | undefined;
|
|
1319
1335
|
}
|
|
1320
1336
|
export interface DeleteUserByPrincipalIdRequest {
|
|
1321
1337
|
PrincipalId: string | undefined;
|
|
@@ -1323,83 +1339,83 @@ export interface DeleteUserByPrincipalIdRequest {
|
|
|
1323
1339
|
Namespace: string | undefined;
|
|
1324
1340
|
}
|
|
1325
1341
|
export interface DeleteUserByPrincipalIdResponse {
|
|
1326
|
-
RequestId?: string;
|
|
1327
|
-
Status?: number;
|
|
1342
|
+
RequestId?: string | undefined;
|
|
1343
|
+
Status?: number | undefined;
|
|
1328
1344
|
}
|
|
1329
1345
|
export interface DeleteVPCConnectionRequest {
|
|
1330
1346
|
AwsAccountId: string | undefined;
|
|
1331
1347
|
VPCConnectionId: string | undefined;
|
|
1332
1348
|
}
|
|
1333
1349
|
export interface DeleteVPCConnectionResponse {
|
|
1334
|
-
Arn?: string;
|
|
1335
|
-
VPCConnectionId?: string;
|
|
1336
|
-
DeletionStatus?: VPCConnectionResourceStatus;
|
|
1337
|
-
AvailabilityStatus?: VPCConnectionAvailabilityStatus;
|
|
1338
|
-
RequestId?: string;
|
|
1339
|
-
Status?: number;
|
|
1350
|
+
Arn?: string | undefined;
|
|
1351
|
+
VPCConnectionId?: string | undefined;
|
|
1352
|
+
DeletionStatus?: VPCConnectionResourceStatus | undefined;
|
|
1353
|
+
AvailabilityStatus?: VPCConnectionAvailabilityStatus | undefined;
|
|
1354
|
+
RequestId?: string | undefined;
|
|
1355
|
+
Status?: number | undefined;
|
|
1340
1356
|
}
|
|
1341
1357
|
export interface DescribeAccountCustomizationRequest {
|
|
1342
1358
|
AwsAccountId: string | undefined;
|
|
1343
|
-
Namespace?: string;
|
|
1344
|
-
Resolved?: boolean;
|
|
1359
|
+
Namespace?: string | undefined;
|
|
1360
|
+
Resolved?: boolean | undefined;
|
|
1345
1361
|
}
|
|
1346
1362
|
export interface DescribeAccountCustomizationResponse {
|
|
1347
|
-
Arn?: string;
|
|
1348
|
-
AwsAccountId?: string;
|
|
1349
|
-
Namespace?: string;
|
|
1350
|
-
AccountCustomization?: AccountCustomization;
|
|
1351
|
-
RequestId?: string;
|
|
1352
|
-
Status?: number;
|
|
1363
|
+
Arn?: string | undefined;
|
|
1364
|
+
AwsAccountId?: string | undefined;
|
|
1365
|
+
Namespace?: string | undefined;
|
|
1366
|
+
AccountCustomization?: AccountCustomization | undefined;
|
|
1367
|
+
RequestId?: string | undefined;
|
|
1368
|
+
Status?: number | undefined;
|
|
1353
1369
|
}
|
|
1354
1370
|
export interface DescribeAccountSettingsRequest {
|
|
1355
1371
|
AwsAccountId: string | undefined;
|
|
1356
1372
|
}
|
|
1357
1373
|
export interface DescribeAccountSettingsResponse {
|
|
1358
|
-
AccountSettings?: AccountSettings;
|
|
1359
|
-
RequestId?: string;
|
|
1360
|
-
Status?: number;
|
|
1374
|
+
AccountSettings?: AccountSettings | undefined;
|
|
1375
|
+
RequestId?: string | undefined;
|
|
1376
|
+
Status?: number | undefined;
|
|
1361
1377
|
}
|
|
1362
1378
|
export interface DescribeAccountSubscriptionRequest {
|
|
1363
1379
|
AwsAccountId: string | undefined;
|
|
1364
1380
|
}
|
|
1365
1381
|
export interface DescribeAccountSubscriptionResponse {
|
|
1366
|
-
AccountInfo?: AccountInfo;
|
|
1367
|
-
Status?: number;
|
|
1368
|
-
RequestId?: string;
|
|
1382
|
+
AccountInfo?: AccountInfo | undefined;
|
|
1383
|
+
Status?: number | undefined;
|
|
1384
|
+
RequestId?: string | undefined;
|
|
1369
1385
|
}
|
|
1370
1386
|
export interface DescribeAnalysisRequest {
|
|
1371
1387
|
AwsAccountId: string | undefined;
|
|
1372
1388
|
AnalysisId: string | undefined;
|
|
1373
1389
|
}
|
|
1374
1390
|
export interface DescribeAnalysisResponse {
|
|
1375
|
-
Analysis?: Analysis;
|
|
1376
|
-
Status?: number;
|
|
1377
|
-
RequestId?: string;
|
|
1391
|
+
Analysis?: Analysis | undefined;
|
|
1392
|
+
Status?: number | undefined;
|
|
1393
|
+
RequestId?: string | undefined;
|
|
1378
1394
|
}
|
|
1379
1395
|
export interface DescribeAnalysisDefinitionRequest {
|
|
1380
1396
|
AwsAccountId: string | undefined;
|
|
1381
1397
|
AnalysisId: string | undefined;
|
|
1382
1398
|
}
|
|
1383
1399
|
export interface DescribeAnalysisDefinitionResponse {
|
|
1384
|
-
AnalysisId?: string;
|
|
1385
|
-
Name?: string;
|
|
1386
|
-
Errors?: AnalysisError[];
|
|
1387
|
-
ResourceStatus?: ResourceStatus;
|
|
1388
|
-
ThemeArn?: string;
|
|
1389
|
-
Definition?: AnalysisDefinition;
|
|
1390
|
-
Status?: number;
|
|
1391
|
-
RequestId?: string;
|
|
1400
|
+
AnalysisId?: string | undefined;
|
|
1401
|
+
Name?: string | undefined;
|
|
1402
|
+
Errors?: AnalysisError[] | undefined;
|
|
1403
|
+
ResourceStatus?: ResourceStatus | undefined;
|
|
1404
|
+
ThemeArn?: string | undefined;
|
|
1405
|
+
Definition?: AnalysisDefinition | undefined;
|
|
1406
|
+
Status?: number | undefined;
|
|
1407
|
+
RequestId?: string | undefined;
|
|
1392
1408
|
}
|
|
1393
1409
|
export interface DescribeAnalysisPermissionsRequest {
|
|
1394
1410
|
AwsAccountId: string | undefined;
|
|
1395
1411
|
AnalysisId: string | undefined;
|
|
1396
1412
|
}
|
|
1397
1413
|
export interface DescribeAnalysisPermissionsResponse {
|
|
1398
|
-
AnalysisId?: string;
|
|
1399
|
-
AnalysisArn?: string;
|
|
1400
|
-
Permissions?: ResourcePermission[];
|
|
1401
|
-
Status?: number;
|
|
1402
|
-
RequestId?: string;
|
|
1414
|
+
AnalysisId?: string | undefined;
|
|
1415
|
+
AnalysisArn?: string | undefined;
|
|
1416
|
+
Permissions?: ResourcePermission[] | undefined;
|
|
1417
|
+
Status?: number | undefined;
|
|
1418
|
+
RequestId?: string | undefined;
|
|
1403
1419
|
}
|
|
1404
1420
|
export interface DescribeAssetBundleExportJobRequest {
|
|
1405
1421
|
AwsAccountId: string | undefined;
|
|
@@ -1413,87 +1429,91 @@ export declare const IncludeFolderMembers: {
|
|
|
1413
1429
|
export type IncludeFolderMembers =
|
|
1414
1430
|
(typeof IncludeFolderMembers)[keyof typeof IncludeFolderMembers];
|
|
1415
1431
|
export interface DescribeAssetBundleExportJobResponse {
|
|
1416
|
-
JobStatus?: AssetBundleExportJobStatus;
|
|
1417
|
-
DownloadUrl?: string;
|
|
1418
|
-
Errors?: AssetBundleExportJobError[];
|
|
1419
|
-
Arn?: string;
|
|
1420
|
-
CreatedTime?: Date;
|
|
1421
|
-
AssetBundleExportJobId?: string;
|
|
1422
|
-
AwsAccountId?: string;
|
|
1423
|
-
ResourceArns?: string[];
|
|
1424
|
-
IncludeAllDependencies?: boolean;
|
|
1425
|
-
ExportFormat?: AssetBundleExportFormat;
|
|
1426
|
-
CloudFormationOverridePropertyConfiguration?:
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1432
|
+
JobStatus?: AssetBundleExportJobStatus | undefined;
|
|
1433
|
+
DownloadUrl?: string | undefined;
|
|
1434
|
+
Errors?: AssetBundleExportJobError[] | undefined;
|
|
1435
|
+
Arn?: string | undefined;
|
|
1436
|
+
CreatedTime?: Date | undefined;
|
|
1437
|
+
AssetBundleExportJobId?: string | undefined;
|
|
1438
|
+
AwsAccountId?: string | undefined;
|
|
1439
|
+
ResourceArns?: string[] | undefined;
|
|
1440
|
+
IncludeAllDependencies?: boolean | undefined;
|
|
1441
|
+
ExportFormat?: AssetBundleExportFormat | undefined;
|
|
1442
|
+
CloudFormationOverridePropertyConfiguration?:
|
|
1443
|
+
| AssetBundleCloudFormationOverridePropertyConfiguration
|
|
1444
|
+
| undefined;
|
|
1445
|
+
RequestId?: string | undefined;
|
|
1446
|
+
Status?: number | undefined;
|
|
1447
|
+
IncludePermissions?: boolean | undefined;
|
|
1448
|
+
IncludeTags?: boolean | undefined;
|
|
1449
|
+
ValidationStrategy?: AssetBundleExportJobValidationStrategy | undefined;
|
|
1450
|
+
Warnings?: AssetBundleExportJobWarning[] | undefined;
|
|
1451
|
+
IncludeFolderMemberships?: boolean | undefined;
|
|
1452
|
+
IncludeFolderMembers?: IncludeFolderMembers | undefined;
|
|
1435
1453
|
}
|
|
1436
1454
|
export interface DescribeAssetBundleImportJobRequest {
|
|
1437
1455
|
AwsAccountId: string | undefined;
|
|
1438
1456
|
AssetBundleImportJobId: string | undefined;
|
|
1439
1457
|
}
|
|
1440
1458
|
export interface DescribeAssetBundleImportJobResponse {
|
|
1441
|
-
JobStatus?: AssetBundleImportJobStatus;
|
|
1442
|
-
Errors?: AssetBundleImportJobError[];
|
|
1443
|
-
RollbackErrors?: AssetBundleImportJobError[];
|
|
1444
|
-
Arn?: string;
|
|
1445
|
-
CreatedTime?: Date;
|
|
1446
|
-
AssetBundleImportJobId?: string;
|
|
1447
|
-
AwsAccountId?: string;
|
|
1448
|
-
AssetBundleImportSource?: AssetBundleImportSourceDescription;
|
|
1449
|
-
OverrideParameters?: AssetBundleImportJobOverrideParameters;
|
|
1450
|
-
FailureAction?: AssetBundleImportFailureAction;
|
|
1451
|
-
RequestId?: string;
|
|
1452
|
-
Status?: number;
|
|
1453
|
-
OverridePermissions?: AssetBundleImportJobOverridePermissions;
|
|
1454
|
-
OverrideTags?: AssetBundleImportJobOverrideTags;
|
|
1455
|
-
OverrideValidationStrategy?:
|
|
1456
|
-
|
|
1459
|
+
JobStatus?: AssetBundleImportJobStatus | undefined;
|
|
1460
|
+
Errors?: AssetBundleImportJobError[] | undefined;
|
|
1461
|
+
RollbackErrors?: AssetBundleImportJobError[] | undefined;
|
|
1462
|
+
Arn?: string | undefined;
|
|
1463
|
+
CreatedTime?: Date | undefined;
|
|
1464
|
+
AssetBundleImportJobId?: string | undefined;
|
|
1465
|
+
AwsAccountId?: string | undefined;
|
|
1466
|
+
AssetBundleImportSource?: AssetBundleImportSourceDescription | undefined;
|
|
1467
|
+
OverrideParameters?: AssetBundleImportJobOverrideParameters | undefined;
|
|
1468
|
+
FailureAction?: AssetBundleImportFailureAction | undefined;
|
|
1469
|
+
RequestId?: string | undefined;
|
|
1470
|
+
Status?: number | undefined;
|
|
1471
|
+
OverridePermissions?: AssetBundleImportJobOverridePermissions | undefined;
|
|
1472
|
+
OverrideTags?: AssetBundleImportJobOverrideTags | undefined;
|
|
1473
|
+
OverrideValidationStrategy?:
|
|
1474
|
+
| AssetBundleImportJobOverrideValidationStrategy
|
|
1475
|
+
| undefined;
|
|
1476
|
+
Warnings?: AssetBundleImportJobWarning[] | undefined;
|
|
1457
1477
|
}
|
|
1458
1478
|
export interface DescribeDashboardRequest {
|
|
1459
1479
|
AwsAccountId: string | undefined;
|
|
1460
1480
|
DashboardId: string | undefined;
|
|
1461
|
-
VersionNumber?: number;
|
|
1462
|
-
AliasName?: string;
|
|
1481
|
+
VersionNumber?: number | undefined;
|
|
1482
|
+
AliasName?: string | undefined;
|
|
1463
1483
|
}
|
|
1464
1484
|
export interface DescribeDashboardResponse {
|
|
1465
|
-
Dashboard?: Dashboard;
|
|
1466
|
-
Status?: number;
|
|
1467
|
-
RequestId?: string;
|
|
1485
|
+
Dashboard?: Dashboard | undefined;
|
|
1486
|
+
Status?: number | undefined;
|
|
1487
|
+
RequestId?: string | undefined;
|
|
1468
1488
|
}
|
|
1469
1489
|
export interface DescribeDashboardDefinitionRequest {
|
|
1470
1490
|
AwsAccountId: string | undefined;
|
|
1471
1491
|
DashboardId: string | undefined;
|
|
1472
|
-
VersionNumber?: number;
|
|
1473
|
-
AliasName?: string;
|
|
1492
|
+
VersionNumber?: number | undefined;
|
|
1493
|
+
AliasName?: string | undefined;
|
|
1474
1494
|
}
|
|
1475
1495
|
export interface DescribeDashboardDefinitionResponse {
|
|
1476
|
-
DashboardId?: string;
|
|
1477
|
-
Errors?: DashboardError[];
|
|
1478
|
-
Name?: string;
|
|
1479
|
-
ResourceStatus?: ResourceStatus;
|
|
1480
|
-
ThemeArn?: string;
|
|
1481
|
-
Definition?: DashboardVersionDefinition;
|
|
1482
|
-
Status?: number;
|
|
1483
|
-
RequestId?: string;
|
|
1484
|
-
DashboardPublishOptions?: DashboardPublishOptions;
|
|
1496
|
+
DashboardId?: string | undefined;
|
|
1497
|
+
Errors?: DashboardError[] | undefined;
|
|
1498
|
+
Name?: string | undefined;
|
|
1499
|
+
ResourceStatus?: ResourceStatus | undefined;
|
|
1500
|
+
ThemeArn?: string | undefined;
|
|
1501
|
+
Definition?: DashboardVersionDefinition | undefined;
|
|
1502
|
+
Status?: number | undefined;
|
|
1503
|
+
RequestId?: string | undefined;
|
|
1504
|
+
DashboardPublishOptions?: DashboardPublishOptions | undefined;
|
|
1485
1505
|
}
|
|
1486
1506
|
export interface DescribeDashboardPermissionsRequest {
|
|
1487
1507
|
AwsAccountId: string | undefined;
|
|
1488
1508
|
DashboardId: string | undefined;
|
|
1489
1509
|
}
|
|
1490
1510
|
export interface DescribeDashboardPermissionsResponse {
|
|
1491
|
-
DashboardId?: string;
|
|
1492
|
-
DashboardArn?: string;
|
|
1493
|
-
Permissions?: ResourcePermission[];
|
|
1494
|
-
Status?: number;
|
|
1495
|
-
RequestId?: string;
|
|
1496
|
-
LinkSharingConfiguration?: LinkSharingConfiguration;
|
|
1511
|
+
DashboardId?: string | undefined;
|
|
1512
|
+
DashboardArn?: string | undefined;
|
|
1513
|
+
Permissions?: ResourcePermission[] | undefined;
|
|
1514
|
+
Status?: number | undefined;
|
|
1515
|
+
RequestId?: string | undefined;
|
|
1516
|
+
LinkSharingConfiguration?: LinkSharingConfiguration | undefined;
|
|
1497
1517
|
}
|
|
1498
1518
|
export interface DescribeDashboardSnapshotJobRequest {
|
|
1499
1519
|
AwsAccountId: string | undefined;
|
|
@@ -1509,34 +1529,34 @@ export declare const SnapshotJobStatus: {
|
|
|
1509
1529
|
export type SnapshotJobStatus =
|
|
1510
1530
|
(typeof SnapshotJobStatus)[keyof typeof SnapshotJobStatus];
|
|
1511
1531
|
export interface SnapshotDestinationConfiguration {
|
|
1512
|
-
S3Destinations?: SnapshotS3DestinationConfiguration[];
|
|
1532
|
+
S3Destinations?: SnapshotS3DestinationConfiguration[] | undefined;
|
|
1513
1533
|
}
|
|
1514
1534
|
export interface SnapshotFileGroup {
|
|
1515
|
-
Files?: SnapshotFile[];
|
|
1535
|
+
Files?: SnapshotFile[] | undefined;
|
|
1516
1536
|
}
|
|
1517
1537
|
export interface SnapshotConfiguration {
|
|
1518
1538
|
FileGroups: SnapshotFileGroup[] | undefined;
|
|
1519
|
-
DestinationConfiguration?: SnapshotDestinationConfiguration;
|
|
1520
|
-
Parameters?: _Parameters;
|
|
1539
|
+
DestinationConfiguration?: SnapshotDestinationConfiguration | undefined;
|
|
1540
|
+
Parameters?: _Parameters | undefined;
|
|
1521
1541
|
}
|
|
1522
1542
|
export interface SnapshotAnonymousUserRedacted {
|
|
1523
|
-
RowLevelPermissionTagKeys?: string[];
|
|
1543
|
+
RowLevelPermissionTagKeys?: string[] | undefined;
|
|
1524
1544
|
}
|
|
1525
1545
|
export interface SnapshotUserConfigurationRedacted {
|
|
1526
|
-
AnonymousUsers?: SnapshotAnonymousUserRedacted[];
|
|
1546
|
+
AnonymousUsers?: SnapshotAnonymousUserRedacted[] | undefined;
|
|
1527
1547
|
}
|
|
1528
1548
|
export interface DescribeDashboardSnapshotJobResponse {
|
|
1529
|
-
AwsAccountId?: string;
|
|
1530
|
-
DashboardId?: string;
|
|
1531
|
-
SnapshotJobId?: string;
|
|
1532
|
-
UserConfiguration?: SnapshotUserConfigurationRedacted;
|
|
1533
|
-
SnapshotConfiguration?: SnapshotConfiguration;
|
|
1534
|
-
Arn?: string;
|
|
1535
|
-
JobStatus?: SnapshotJobStatus;
|
|
1536
|
-
CreatedTime?: Date;
|
|
1537
|
-
LastUpdatedTime?: Date;
|
|
1538
|
-
RequestId?: string;
|
|
1539
|
-
Status?: number;
|
|
1549
|
+
AwsAccountId?: string | undefined;
|
|
1550
|
+
DashboardId?: string | undefined;
|
|
1551
|
+
SnapshotJobId?: string | undefined;
|
|
1552
|
+
UserConfiguration?: SnapshotUserConfigurationRedacted | undefined;
|
|
1553
|
+
SnapshotConfiguration?: SnapshotConfiguration | undefined;
|
|
1554
|
+
Arn?: string | undefined;
|
|
1555
|
+
JobStatus?: SnapshotJobStatus | undefined;
|
|
1556
|
+
CreatedTime?: Date | undefined;
|
|
1557
|
+
LastUpdatedTime?: Date | undefined;
|
|
1558
|
+
RequestId?: string | undefined;
|
|
1559
|
+
Status?: number | undefined;
|
|
1540
1560
|
}
|
|
1541
1561
|
export interface DescribeDashboardSnapshotJobResultRequest {
|
|
1542
1562
|
AwsAccountId: string | undefined;
|
|
@@ -1544,110 +1564,110 @@ export interface DescribeDashboardSnapshotJobResultRequest {
|
|
|
1544
1564
|
SnapshotJobId: string | undefined;
|
|
1545
1565
|
}
|
|
1546
1566
|
export interface SnapshotJobErrorInfo {
|
|
1547
|
-
ErrorMessage?: string;
|
|
1548
|
-
ErrorType?: string;
|
|
1567
|
+
ErrorMessage?: string | undefined;
|
|
1568
|
+
ErrorType?: string | undefined;
|
|
1549
1569
|
}
|
|
1550
1570
|
export interface SnapshotJobResult {
|
|
1551
|
-
AnonymousUsers?: AnonymousUserSnapshotJobResult[];
|
|
1571
|
+
AnonymousUsers?: AnonymousUserSnapshotJobResult[] | undefined;
|
|
1552
1572
|
}
|
|
1553
1573
|
export interface DescribeDashboardSnapshotJobResultResponse {
|
|
1554
|
-
Arn?: string;
|
|
1555
|
-
JobStatus?: SnapshotJobStatus;
|
|
1556
|
-
CreatedTime?: Date;
|
|
1557
|
-
LastUpdatedTime?: Date;
|
|
1558
|
-
Result?: SnapshotJobResult;
|
|
1559
|
-
ErrorInfo?: SnapshotJobErrorInfo;
|
|
1560
|
-
RequestId?: string;
|
|
1561
|
-
Status?: number;
|
|
1574
|
+
Arn?: string | undefined;
|
|
1575
|
+
JobStatus?: SnapshotJobStatus | undefined;
|
|
1576
|
+
CreatedTime?: Date | undefined;
|
|
1577
|
+
LastUpdatedTime?: Date | undefined;
|
|
1578
|
+
Result?: SnapshotJobResult | undefined;
|
|
1579
|
+
ErrorInfo?: SnapshotJobErrorInfo | undefined;
|
|
1580
|
+
RequestId?: string | undefined;
|
|
1581
|
+
Status?: number | undefined;
|
|
1562
1582
|
}
|
|
1563
1583
|
export interface DescribeDataSetRequest {
|
|
1564
1584
|
AwsAccountId: string | undefined;
|
|
1565
1585
|
DataSetId: string | undefined;
|
|
1566
1586
|
}
|
|
1567
1587
|
export interface DescribeDataSetResponse {
|
|
1568
|
-
DataSet?: DataSet;
|
|
1569
|
-
RequestId?: string;
|
|
1570
|
-
Status?: number;
|
|
1588
|
+
DataSet?: DataSet | undefined;
|
|
1589
|
+
RequestId?: string | undefined;
|
|
1590
|
+
Status?: number | undefined;
|
|
1571
1591
|
}
|
|
1572
1592
|
export interface DescribeDataSetPermissionsRequest {
|
|
1573
1593
|
AwsAccountId: string | undefined;
|
|
1574
1594
|
DataSetId: string | undefined;
|
|
1575
1595
|
}
|
|
1576
1596
|
export interface DescribeDataSetPermissionsResponse {
|
|
1577
|
-
DataSetArn?: string;
|
|
1578
|
-
DataSetId?: string;
|
|
1579
|
-
Permissions?: ResourcePermission[];
|
|
1580
|
-
RequestId?: string;
|
|
1581
|
-
Status?: number;
|
|
1597
|
+
DataSetArn?: string | undefined;
|
|
1598
|
+
DataSetId?: string | undefined;
|
|
1599
|
+
Permissions?: ResourcePermission[] | undefined;
|
|
1600
|
+
RequestId?: string | undefined;
|
|
1601
|
+
Status?: number | undefined;
|
|
1582
1602
|
}
|
|
1583
1603
|
export interface DescribeDataSetRefreshPropertiesRequest {
|
|
1584
1604
|
AwsAccountId: string | undefined;
|
|
1585
1605
|
DataSetId: string | undefined;
|
|
1586
1606
|
}
|
|
1587
1607
|
export interface DescribeDataSetRefreshPropertiesResponse {
|
|
1588
|
-
RequestId?: string;
|
|
1589
|
-
Status?: number;
|
|
1590
|
-
DataSetRefreshProperties?: DataSetRefreshProperties;
|
|
1608
|
+
RequestId?: string | undefined;
|
|
1609
|
+
Status?: number | undefined;
|
|
1610
|
+
DataSetRefreshProperties?: DataSetRefreshProperties | undefined;
|
|
1591
1611
|
}
|
|
1592
1612
|
export interface DescribeDataSourceRequest {
|
|
1593
1613
|
AwsAccountId: string | undefined;
|
|
1594
1614
|
DataSourceId: string | undefined;
|
|
1595
1615
|
}
|
|
1596
1616
|
export interface DescribeDataSourceResponse {
|
|
1597
|
-
DataSource?: DataSource;
|
|
1598
|
-
RequestId?: string;
|
|
1599
|
-
Status?: number;
|
|
1617
|
+
DataSource?: DataSource | undefined;
|
|
1618
|
+
RequestId?: string | undefined;
|
|
1619
|
+
Status?: number | undefined;
|
|
1600
1620
|
}
|
|
1601
1621
|
export interface DescribeDataSourcePermissionsRequest {
|
|
1602
1622
|
AwsAccountId: string | undefined;
|
|
1603
1623
|
DataSourceId: string | undefined;
|
|
1604
1624
|
}
|
|
1605
1625
|
export interface DescribeDataSourcePermissionsResponse {
|
|
1606
|
-
DataSourceArn?: string;
|
|
1607
|
-
DataSourceId?: string;
|
|
1608
|
-
Permissions?: ResourcePermission[];
|
|
1609
|
-
RequestId?: string;
|
|
1610
|
-
Status?: number;
|
|
1626
|
+
DataSourceArn?: string | undefined;
|
|
1627
|
+
DataSourceId?: string | undefined;
|
|
1628
|
+
Permissions?: ResourcePermission[] | undefined;
|
|
1629
|
+
RequestId?: string | undefined;
|
|
1630
|
+
Status?: number | undefined;
|
|
1611
1631
|
}
|
|
1612
1632
|
export interface DescribeFolderRequest {
|
|
1613
1633
|
AwsAccountId: string | undefined;
|
|
1614
1634
|
FolderId: string | undefined;
|
|
1615
1635
|
}
|
|
1616
1636
|
export interface Folder {
|
|
1617
|
-
FolderId?: string;
|
|
1618
|
-
Arn?: string;
|
|
1619
|
-
Name?: string;
|
|
1620
|
-
FolderType?: FolderType;
|
|
1621
|
-
FolderPath?: string[];
|
|
1622
|
-
CreatedTime?: Date;
|
|
1623
|
-
LastUpdatedTime?: Date;
|
|
1624
|
-
SharingModel?: SharingModel;
|
|
1637
|
+
FolderId?: string | undefined;
|
|
1638
|
+
Arn?: string | undefined;
|
|
1639
|
+
Name?: string | undefined;
|
|
1640
|
+
FolderType?: FolderType | undefined;
|
|
1641
|
+
FolderPath?: string[] | undefined;
|
|
1642
|
+
CreatedTime?: Date | undefined;
|
|
1643
|
+
LastUpdatedTime?: Date | undefined;
|
|
1644
|
+
SharingModel?: SharingModel | undefined;
|
|
1625
1645
|
}
|
|
1626
1646
|
export interface DescribeFolderResponse {
|
|
1627
|
-
Status?: number;
|
|
1628
|
-
Folder?: Folder;
|
|
1629
|
-
RequestId?: string;
|
|
1647
|
+
Status?: number | undefined;
|
|
1648
|
+
Folder?: Folder | undefined;
|
|
1649
|
+
RequestId?: string | undefined;
|
|
1630
1650
|
}
|
|
1631
1651
|
export interface DescribeFolderPermissionsRequest {
|
|
1632
1652
|
AwsAccountId: string | undefined;
|
|
1633
1653
|
FolderId: string | undefined;
|
|
1634
|
-
Namespace?: string;
|
|
1635
|
-
MaxResults?: number;
|
|
1636
|
-
NextToken?: string;
|
|
1654
|
+
Namespace?: string | undefined;
|
|
1655
|
+
MaxResults?: number | undefined;
|
|
1656
|
+
NextToken?: string | undefined;
|
|
1637
1657
|
}
|
|
1638
1658
|
export interface DescribeFolderPermissionsResponse {
|
|
1639
|
-
Status?: number;
|
|
1640
|
-
FolderId?: string;
|
|
1641
|
-
Arn?: string;
|
|
1642
|
-
Permissions?: ResourcePermission[];
|
|
1643
|
-
RequestId?: string;
|
|
1644
|
-
NextToken?: string;
|
|
1659
|
+
Status?: number | undefined;
|
|
1660
|
+
FolderId?: string | undefined;
|
|
1661
|
+
Arn?: string | undefined;
|
|
1662
|
+
Permissions?: ResourcePermission[] | undefined;
|
|
1663
|
+
RequestId?: string | undefined;
|
|
1664
|
+
NextToken?: string | undefined;
|
|
1645
1665
|
}
|
|
1646
1666
|
export declare class InvalidNextTokenException extends __BaseException {
|
|
1647
1667
|
readonly name: "InvalidNextTokenException";
|
|
1648
1668
|
readonly $fault: "client";
|
|
1649
|
-
Message?: string;
|
|
1650
|
-
RequestId?: string;
|
|
1669
|
+
Message?: string | undefined;
|
|
1670
|
+
RequestId?: string | undefined;
|
|
1651
1671
|
constructor(
|
|
1652
1672
|
opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
|
|
1653
1673
|
);
|
|
@@ -1655,17 +1675,17 @@ export declare class InvalidNextTokenException extends __BaseException {
|
|
|
1655
1675
|
export interface DescribeFolderResolvedPermissionsRequest {
|
|
1656
1676
|
AwsAccountId: string | undefined;
|
|
1657
1677
|
FolderId: string | undefined;
|
|
1658
|
-
Namespace?: string;
|
|
1659
|
-
MaxResults?: number;
|
|
1660
|
-
NextToken?: string;
|
|
1678
|
+
Namespace?: string | undefined;
|
|
1679
|
+
MaxResults?: number | undefined;
|
|
1680
|
+
NextToken?: string | undefined;
|
|
1661
1681
|
}
|
|
1662
1682
|
export interface DescribeFolderResolvedPermissionsResponse {
|
|
1663
|
-
Status?: number;
|
|
1664
|
-
FolderId?: string;
|
|
1665
|
-
Arn?: string;
|
|
1666
|
-
Permissions?: ResourcePermission[];
|
|
1667
|
-
RequestId?: string;
|
|
1668
|
-
NextToken?: string;
|
|
1683
|
+
Status?: number | undefined;
|
|
1684
|
+
FolderId?: string | undefined;
|
|
1685
|
+
Arn?: string | undefined;
|
|
1686
|
+
Permissions?: ResourcePermission[] | undefined;
|
|
1687
|
+
RequestId?: string | undefined;
|
|
1688
|
+
NextToken?: string | undefined;
|
|
1669
1689
|
}
|
|
1670
1690
|
export interface DescribeGroupRequest {
|
|
1671
1691
|
GroupName: string | undefined;
|
|
@@ -1673,9 +1693,9 @@ export interface DescribeGroupRequest {
|
|
|
1673
1693
|
Namespace: string | undefined;
|
|
1674
1694
|
}
|
|
1675
1695
|
export interface DescribeGroupResponse {
|
|
1676
|
-
Group?: Group;
|
|
1677
|
-
RequestId?: string;
|
|
1678
|
-
Status?: number;
|
|
1696
|
+
Group?: Group | undefined;
|
|
1697
|
+
RequestId?: string | undefined;
|
|
1698
|
+
Status?: number | undefined;
|
|
1679
1699
|
}
|
|
1680
1700
|
export interface DescribeGroupMembershipRequest {
|
|
1681
1701
|
MemberName: string | undefined;
|
|
@@ -1684,9 +1704,9 @@ export interface DescribeGroupMembershipRequest {
|
|
|
1684
1704
|
Namespace: string | undefined;
|
|
1685
1705
|
}
|
|
1686
1706
|
export interface DescribeGroupMembershipResponse {
|
|
1687
|
-
GroupMember?: GroupMember;
|
|
1688
|
-
RequestId?: string;
|
|
1689
|
-
Status?: number;
|
|
1707
|
+
GroupMember?: GroupMember | undefined;
|
|
1708
|
+
RequestId?: string | undefined;
|
|
1709
|
+
Status?: number | undefined;
|
|
1690
1710
|
}
|
|
1691
1711
|
export interface DescribeIAMPolicyAssignmentRequest {
|
|
1692
1712
|
AwsAccountId: string | undefined;
|
|
@@ -1694,17 +1714,17 @@ export interface DescribeIAMPolicyAssignmentRequest {
|
|
|
1694
1714
|
Namespace: string | undefined;
|
|
1695
1715
|
}
|
|
1696
1716
|
export interface IAMPolicyAssignment {
|
|
1697
|
-
AwsAccountId?: string;
|
|
1698
|
-
AssignmentId?: string;
|
|
1699
|
-
AssignmentName?: string;
|
|
1700
|
-
PolicyArn?: string;
|
|
1701
|
-
Identities?: Record<string, string[]
|
|
1702
|
-
AssignmentStatus?: AssignmentStatus;
|
|
1717
|
+
AwsAccountId?: string | undefined;
|
|
1718
|
+
AssignmentId?: string | undefined;
|
|
1719
|
+
AssignmentName?: string | undefined;
|
|
1720
|
+
PolicyArn?: string | undefined;
|
|
1721
|
+
Identities?: Record<string, string[]> | undefined;
|
|
1722
|
+
AssignmentStatus?: AssignmentStatus | undefined;
|
|
1703
1723
|
}
|
|
1704
1724
|
export interface DescribeIAMPolicyAssignmentResponse {
|
|
1705
|
-
IAMPolicyAssignment?: IAMPolicyAssignment;
|
|
1706
|
-
RequestId?: string;
|
|
1707
|
-
Status?: number;
|
|
1725
|
+
IAMPolicyAssignment?: IAMPolicyAssignment | undefined;
|
|
1726
|
+
RequestId?: string | undefined;
|
|
1727
|
+
Status?: number | undefined;
|
|
1708
1728
|
}
|
|
1709
1729
|
export interface DescribeIngestionRequest {
|
|
1710
1730
|
AwsAccountId: string | undefined;
|
|
@@ -1761,8 +1781,8 @@ export declare const IngestionErrorType: {
|
|
|
1761
1781
|
export type IngestionErrorType =
|
|
1762
1782
|
(typeof IngestionErrorType)[keyof typeof IngestionErrorType];
|
|
1763
1783
|
export interface ErrorInfo {
|
|
1764
|
-
Type?: IngestionErrorType;
|
|
1765
|
-
Message?: string;
|
|
1784
|
+
Type?: IngestionErrorType | undefined;
|
|
1785
|
+
Message?: string | undefined;
|
|
1766
1786
|
}
|
|
1767
1787
|
export interface QueueInfo {
|
|
1768
1788
|
WaitingOnIngestion: string | undefined;
|
|
@@ -1783,53 +1803,53 @@ export declare const IngestionRequestType: {
|
|
|
1783
1803
|
export type IngestionRequestType =
|
|
1784
1804
|
(typeof IngestionRequestType)[keyof typeof IngestionRequestType];
|
|
1785
1805
|
export interface RowInfo {
|
|
1786
|
-
RowsIngested?: number;
|
|
1787
|
-
RowsDropped?: number;
|
|
1788
|
-
TotalRowsInDataset?: number;
|
|
1806
|
+
RowsIngested?: number | undefined;
|
|
1807
|
+
RowsDropped?: number | undefined;
|
|
1808
|
+
TotalRowsInDataset?: number | undefined;
|
|
1789
1809
|
}
|
|
1790
1810
|
export interface Ingestion {
|
|
1791
1811
|
Arn: string | undefined;
|
|
1792
|
-
IngestionId?: string;
|
|
1812
|
+
IngestionId?: string | undefined;
|
|
1793
1813
|
IngestionStatus: IngestionStatus | undefined;
|
|
1794
|
-
ErrorInfo?: ErrorInfo;
|
|
1795
|
-
RowInfo?: RowInfo;
|
|
1796
|
-
QueueInfo?: QueueInfo;
|
|
1814
|
+
ErrorInfo?: ErrorInfo | undefined;
|
|
1815
|
+
RowInfo?: RowInfo | undefined;
|
|
1816
|
+
QueueInfo?: QueueInfo | undefined;
|
|
1797
1817
|
CreatedTime: Date | undefined;
|
|
1798
|
-
IngestionTimeInSeconds?: number;
|
|
1799
|
-
IngestionSizeInBytes?: number;
|
|
1800
|
-
RequestSource?: IngestionRequestSource;
|
|
1801
|
-
RequestType?: IngestionRequestType;
|
|
1818
|
+
IngestionTimeInSeconds?: number | undefined;
|
|
1819
|
+
IngestionSizeInBytes?: number | undefined;
|
|
1820
|
+
RequestSource?: IngestionRequestSource | undefined;
|
|
1821
|
+
RequestType?: IngestionRequestType | undefined;
|
|
1802
1822
|
}
|
|
1803
1823
|
export interface DescribeIngestionResponse {
|
|
1804
|
-
Ingestion?: Ingestion;
|
|
1805
|
-
RequestId?: string;
|
|
1806
|
-
Status?: number;
|
|
1824
|
+
Ingestion?: Ingestion | undefined;
|
|
1825
|
+
RequestId?: string | undefined;
|
|
1826
|
+
Status?: number | undefined;
|
|
1807
1827
|
}
|
|
1808
1828
|
export interface DescribeIpRestrictionRequest {
|
|
1809
1829
|
AwsAccountId: string | undefined;
|
|
1810
1830
|
}
|
|
1811
1831
|
export interface DescribeIpRestrictionResponse {
|
|
1812
|
-
AwsAccountId?: string;
|
|
1813
|
-
IpRestrictionRuleMap?: Record<string, string
|
|
1814
|
-
VpcIdRestrictionRuleMap?: Record<string, string
|
|
1815
|
-
VpcEndpointIdRestrictionRuleMap?: Record<string, string
|
|
1816
|
-
Enabled?: boolean;
|
|
1817
|
-
RequestId?: string;
|
|
1818
|
-
Status?: number;
|
|
1832
|
+
AwsAccountId?: string | undefined;
|
|
1833
|
+
IpRestrictionRuleMap?: Record<string, string> | undefined;
|
|
1834
|
+
VpcIdRestrictionRuleMap?: Record<string, string> | undefined;
|
|
1835
|
+
VpcEndpointIdRestrictionRuleMap?: Record<string, string> | undefined;
|
|
1836
|
+
Enabled?: boolean | undefined;
|
|
1837
|
+
RequestId?: string | undefined;
|
|
1838
|
+
Status?: number | undefined;
|
|
1819
1839
|
}
|
|
1820
1840
|
export interface DescribeKeyRegistrationRequest {
|
|
1821
1841
|
AwsAccountId: string | undefined;
|
|
1822
|
-
DefaultKeyOnly?: boolean;
|
|
1842
|
+
DefaultKeyOnly?: boolean | undefined;
|
|
1823
1843
|
}
|
|
1824
1844
|
export interface RegisteredCustomerManagedKey {
|
|
1825
|
-
KeyArn?: string;
|
|
1826
|
-
DefaultKey?: boolean;
|
|
1845
|
+
KeyArn?: string | undefined;
|
|
1846
|
+
DefaultKey?: boolean | undefined;
|
|
1827
1847
|
}
|
|
1828
1848
|
export interface DescribeKeyRegistrationResponse {
|
|
1829
|
-
AwsAccountId?: string;
|
|
1830
|
-
KeyRegistration?: RegisteredCustomerManagedKey[];
|
|
1831
|
-
RequestId?: string;
|
|
1832
|
-
Status?: number;
|
|
1849
|
+
AwsAccountId?: string | undefined;
|
|
1850
|
+
KeyRegistration?: RegisteredCustomerManagedKey[] | undefined;
|
|
1851
|
+
RequestId?: string | undefined;
|
|
1852
|
+
Status?: number | undefined;
|
|
1833
1853
|
}
|
|
1834
1854
|
export interface DescribeNamespaceRequest {
|
|
1835
1855
|
AwsAccountId: string | undefined;
|
|
@@ -1842,21 +1862,21 @@ export declare const NamespaceErrorType: {
|
|
|
1842
1862
|
export type NamespaceErrorType =
|
|
1843
1863
|
(typeof NamespaceErrorType)[keyof typeof NamespaceErrorType];
|
|
1844
1864
|
export interface NamespaceError {
|
|
1845
|
-
Type?: NamespaceErrorType;
|
|
1846
|
-
Message?: string;
|
|
1865
|
+
Type?: NamespaceErrorType | undefined;
|
|
1866
|
+
Message?: string | undefined;
|
|
1847
1867
|
}
|
|
1848
1868
|
export interface NamespaceInfoV2 {
|
|
1849
|
-
Name?: string;
|
|
1850
|
-
Arn?: string;
|
|
1851
|
-
CapacityRegion?: string;
|
|
1852
|
-
CreationStatus?: NamespaceStatus;
|
|
1853
|
-
IdentityStore?: IdentityStore;
|
|
1854
|
-
NamespaceError?: NamespaceError;
|
|
1869
|
+
Name?: string | undefined;
|
|
1870
|
+
Arn?: string | undefined;
|
|
1871
|
+
CapacityRegion?: string | undefined;
|
|
1872
|
+
CreationStatus?: NamespaceStatus | undefined;
|
|
1873
|
+
IdentityStore?: IdentityStore | undefined;
|
|
1874
|
+
NamespaceError?: NamespaceError | undefined;
|
|
1855
1875
|
}
|
|
1856
1876
|
export interface DescribeNamespaceResponse {
|
|
1857
|
-
Namespace?: NamespaceInfoV2;
|
|
1858
|
-
RequestId?: string;
|
|
1859
|
-
Status?: number;
|
|
1877
|
+
Namespace?: NamespaceInfoV2 | undefined;
|
|
1878
|
+
RequestId?: string | undefined;
|
|
1879
|
+
Status?: number | undefined;
|
|
1860
1880
|
}
|
|
1861
1881
|
export interface DescribeQPersonalizationConfigurationRequest {
|
|
1862
1882
|
AwsAccountId: string | undefined;
|
|
@@ -1868,9 +1888,9 @@ export declare const PersonalizationMode: {
|
|
|
1868
1888
|
export type PersonalizationMode =
|
|
1869
1889
|
(typeof PersonalizationMode)[keyof typeof PersonalizationMode];
|
|
1870
1890
|
export interface DescribeQPersonalizationConfigurationResponse {
|
|
1871
|
-
PersonalizationMode?: PersonalizationMode;
|
|
1872
|
-
RequestId?: string;
|
|
1873
|
-
Status?: number;
|
|
1891
|
+
PersonalizationMode?: PersonalizationMode | undefined;
|
|
1892
|
+
RequestId?: string | undefined;
|
|
1893
|
+
Status?: number | undefined;
|
|
1874
1894
|
}
|
|
1875
1895
|
export interface DescribeRefreshScheduleRequest {
|
|
1876
1896
|
AwsAccountId: string | undefined;
|
|
@@ -1878,10 +1898,10 @@ export interface DescribeRefreshScheduleRequest {
|
|
|
1878
1898
|
ScheduleId: string | undefined;
|
|
1879
1899
|
}
|
|
1880
1900
|
export interface DescribeRefreshScheduleResponse {
|
|
1881
|
-
RefreshSchedule?: RefreshSchedule;
|
|
1882
|
-
Status?: number;
|
|
1883
|
-
RequestId?: string;
|
|
1884
|
-
Arn?: string;
|
|
1901
|
+
RefreshSchedule?: RefreshSchedule | undefined;
|
|
1902
|
+
Status?: number | undefined;
|
|
1903
|
+
RequestId?: string | undefined;
|
|
1904
|
+
Arn?: string | undefined;
|
|
1885
1905
|
}
|
|
1886
1906
|
export interface DescribeRoleCustomPermissionRequest {
|
|
1887
1907
|
Role: Role | undefined;
|
|
@@ -1889,15 +1909,15 @@ export interface DescribeRoleCustomPermissionRequest {
|
|
|
1889
1909
|
Namespace: string | undefined;
|
|
1890
1910
|
}
|
|
1891
1911
|
export interface DescribeRoleCustomPermissionResponse {
|
|
1892
|
-
CustomPermissionsName?: string;
|
|
1893
|
-
RequestId?: string;
|
|
1894
|
-
Status?: number;
|
|
1912
|
+
CustomPermissionsName?: string | undefined;
|
|
1913
|
+
RequestId?: string | undefined;
|
|
1914
|
+
Status?: number | undefined;
|
|
1895
1915
|
}
|
|
1896
1916
|
export interface DescribeTemplateRequest {
|
|
1897
1917
|
AwsAccountId: string | undefined;
|
|
1898
1918
|
TemplateId: string | undefined;
|
|
1899
|
-
VersionNumber?: number;
|
|
1900
|
-
AliasName?: string;
|
|
1919
|
+
VersionNumber?: number | undefined;
|
|
1920
|
+
AliasName?: string | undefined;
|
|
1901
1921
|
}
|
|
1902
1922
|
export declare const TemplateErrorType: {
|
|
1903
1923
|
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
@@ -1908,33 +1928,33 @@ export declare const TemplateErrorType: {
|
|
|
1908
1928
|
export type TemplateErrorType =
|
|
1909
1929
|
(typeof TemplateErrorType)[keyof typeof TemplateErrorType];
|
|
1910
1930
|
export interface TemplateError {
|
|
1911
|
-
Type?: TemplateErrorType;
|
|
1912
|
-
Message?: string;
|
|
1913
|
-
ViolatedEntities?: Entity[];
|
|
1931
|
+
Type?: TemplateErrorType | undefined;
|
|
1932
|
+
Message?: string | undefined;
|
|
1933
|
+
ViolatedEntities?: Entity[] | undefined;
|
|
1914
1934
|
}
|
|
1915
1935
|
export interface TemplateVersion {
|
|
1916
|
-
CreatedTime?: Date;
|
|
1917
|
-
Errors?: TemplateError[];
|
|
1918
|
-
VersionNumber?: number;
|
|
1919
|
-
Status?: ResourceStatus;
|
|
1920
|
-
DataSetConfigurations?: DataSetConfiguration[];
|
|
1921
|
-
Description?: string;
|
|
1922
|
-
SourceEntityArn?: string;
|
|
1923
|
-
ThemeArn?: string;
|
|
1924
|
-
Sheets?: Sheet[];
|
|
1936
|
+
CreatedTime?: Date | undefined;
|
|
1937
|
+
Errors?: TemplateError[] | undefined;
|
|
1938
|
+
VersionNumber?: number | undefined;
|
|
1939
|
+
Status?: ResourceStatus | undefined;
|
|
1940
|
+
DataSetConfigurations?: DataSetConfiguration[] | undefined;
|
|
1941
|
+
Description?: string | undefined;
|
|
1942
|
+
SourceEntityArn?: string | undefined;
|
|
1943
|
+
ThemeArn?: string | undefined;
|
|
1944
|
+
Sheets?: Sheet[] | undefined;
|
|
1925
1945
|
}
|
|
1926
1946
|
export interface Template {
|
|
1927
|
-
Arn?: string;
|
|
1928
|
-
Name?: string;
|
|
1929
|
-
Version?: TemplateVersion;
|
|
1930
|
-
TemplateId?: string;
|
|
1931
|
-
LastUpdatedTime?: Date;
|
|
1932
|
-
CreatedTime?: Date;
|
|
1947
|
+
Arn?: string | undefined;
|
|
1948
|
+
Name?: string | undefined;
|
|
1949
|
+
Version?: TemplateVersion | undefined;
|
|
1950
|
+
TemplateId?: string | undefined;
|
|
1951
|
+
LastUpdatedTime?: Date | undefined;
|
|
1952
|
+
CreatedTime?: Date | undefined;
|
|
1933
1953
|
}
|
|
1934
1954
|
export interface DescribeTemplateResponse {
|
|
1935
|
-
Template?: Template;
|
|
1936
|
-
Status?: number;
|
|
1937
|
-
RequestId?: string;
|
|
1955
|
+
Template?: Template | undefined;
|
|
1956
|
+
Status?: number | undefined;
|
|
1957
|
+
RequestId?: string | undefined;
|
|
1938
1958
|
}
|
|
1939
1959
|
export interface DescribeTemplateAliasRequest {
|
|
1940
1960
|
AwsAccountId: string | undefined;
|
|
@@ -1942,42 +1962,42 @@ export interface DescribeTemplateAliasRequest {
|
|
|
1942
1962
|
AliasName: string | undefined;
|
|
1943
1963
|
}
|
|
1944
1964
|
export interface DescribeTemplateAliasResponse {
|
|
1945
|
-
TemplateAlias?: TemplateAlias;
|
|
1946
|
-
Status?: number;
|
|
1947
|
-
RequestId?: string;
|
|
1965
|
+
TemplateAlias?: TemplateAlias | undefined;
|
|
1966
|
+
Status?: number | undefined;
|
|
1967
|
+
RequestId?: string | undefined;
|
|
1948
1968
|
}
|
|
1949
1969
|
export interface DescribeTemplateDefinitionRequest {
|
|
1950
1970
|
AwsAccountId: string | undefined;
|
|
1951
1971
|
TemplateId: string | undefined;
|
|
1952
|
-
VersionNumber?: number;
|
|
1953
|
-
AliasName?: string;
|
|
1972
|
+
VersionNumber?: number | undefined;
|
|
1973
|
+
AliasName?: string | undefined;
|
|
1954
1974
|
}
|
|
1955
1975
|
export interface DescribeTemplateDefinitionResponse {
|
|
1956
|
-
Name?: string;
|
|
1957
|
-
TemplateId?: string;
|
|
1958
|
-
Errors?: TemplateError[];
|
|
1959
|
-
ResourceStatus?: ResourceStatus;
|
|
1960
|
-
ThemeArn?: string;
|
|
1961
|
-
Definition?: TemplateVersionDefinition;
|
|
1962
|
-
Status?: number;
|
|
1963
|
-
RequestId?: string;
|
|
1976
|
+
Name?: string | undefined;
|
|
1977
|
+
TemplateId?: string | undefined;
|
|
1978
|
+
Errors?: TemplateError[] | undefined;
|
|
1979
|
+
ResourceStatus?: ResourceStatus | undefined;
|
|
1980
|
+
ThemeArn?: string | undefined;
|
|
1981
|
+
Definition?: TemplateVersionDefinition | undefined;
|
|
1982
|
+
Status?: number | undefined;
|
|
1983
|
+
RequestId?: string | undefined;
|
|
1964
1984
|
}
|
|
1965
1985
|
export interface DescribeTemplatePermissionsRequest {
|
|
1966
1986
|
AwsAccountId: string | undefined;
|
|
1967
1987
|
TemplateId: string | undefined;
|
|
1968
1988
|
}
|
|
1969
1989
|
export interface DescribeTemplatePermissionsResponse {
|
|
1970
|
-
TemplateId?: string;
|
|
1971
|
-
TemplateArn?: string;
|
|
1972
|
-
Permissions?: ResourcePermission[];
|
|
1973
|
-
RequestId?: string;
|
|
1974
|
-
Status?: number;
|
|
1990
|
+
TemplateId?: string | undefined;
|
|
1991
|
+
TemplateArn?: string | undefined;
|
|
1992
|
+
Permissions?: ResourcePermission[] | undefined;
|
|
1993
|
+
RequestId?: string | undefined;
|
|
1994
|
+
Status?: number | undefined;
|
|
1975
1995
|
}
|
|
1976
1996
|
export interface DescribeThemeRequest {
|
|
1977
1997
|
AwsAccountId: string | undefined;
|
|
1978
1998
|
ThemeId: string | undefined;
|
|
1979
|
-
VersionNumber?: number;
|
|
1980
|
-
AliasName?: string;
|
|
1999
|
+
VersionNumber?: number | undefined;
|
|
2000
|
+
AliasName?: string | undefined;
|
|
1981
2001
|
}
|
|
1982
2002
|
export declare const ThemeType: {
|
|
1983
2003
|
readonly ALL: "ALL";
|
|
@@ -1991,32 +2011,32 @@ export declare const ThemeErrorType: {
|
|
|
1991
2011
|
export type ThemeErrorType =
|
|
1992
2012
|
(typeof ThemeErrorType)[keyof typeof ThemeErrorType];
|
|
1993
2013
|
export interface ThemeError {
|
|
1994
|
-
Type?: ThemeErrorType;
|
|
1995
|
-
Message?: string;
|
|
2014
|
+
Type?: ThemeErrorType | undefined;
|
|
2015
|
+
Message?: string | undefined;
|
|
1996
2016
|
}
|
|
1997
2017
|
export interface ThemeVersion {
|
|
1998
|
-
VersionNumber?: number;
|
|
1999
|
-
Arn?: string;
|
|
2000
|
-
Description?: string;
|
|
2001
|
-
BaseThemeId?: string;
|
|
2002
|
-
CreatedTime?: Date;
|
|
2003
|
-
Configuration?: ThemeConfiguration;
|
|
2004
|
-
Errors?: ThemeError[];
|
|
2005
|
-
Status?: ResourceStatus;
|
|
2018
|
+
VersionNumber?: number | undefined;
|
|
2019
|
+
Arn?: string | undefined;
|
|
2020
|
+
Description?: string | undefined;
|
|
2021
|
+
BaseThemeId?: string | undefined;
|
|
2022
|
+
CreatedTime?: Date | undefined;
|
|
2023
|
+
Configuration?: ThemeConfiguration | undefined;
|
|
2024
|
+
Errors?: ThemeError[] | undefined;
|
|
2025
|
+
Status?: ResourceStatus | undefined;
|
|
2006
2026
|
}
|
|
2007
2027
|
export interface Theme {
|
|
2008
|
-
Arn?: string;
|
|
2009
|
-
Name?: string;
|
|
2010
|
-
ThemeId?: string;
|
|
2011
|
-
Version?: ThemeVersion;
|
|
2012
|
-
CreatedTime?: Date;
|
|
2013
|
-
LastUpdatedTime?: Date;
|
|
2014
|
-
Type?: ThemeType;
|
|
2028
|
+
Arn?: string | undefined;
|
|
2029
|
+
Name?: string | undefined;
|
|
2030
|
+
ThemeId?: string | undefined;
|
|
2031
|
+
Version?: ThemeVersion | undefined;
|
|
2032
|
+
CreatedTime?: Date | undefined;
|
|
2033
|
+
LastUpdatedTime?: Date | undefined;
|
|
2034
|
+
Type?: ThemeType | undefined;
|
|
2015
2035
|
}
|
|
2016
2036
|
export interface DescribeThemeResponse {
|
|
2017
|
-
Theme?: Theme;
|
|
2018
|
-
Status?: number;
|
|
2019
|
-
RequestId?: string;
|
|
2037
|
+
Theme?: Theme | undefined;
|
|
2038
|
+
Status?: number | undefined;
|
|
2039
|
+
RequestId?: string | undefined;
|
|
2020
2040
|
}
|
|
2021
2041
|
export interface DescribeThemeAliasRequest {
|
|
2022
2042
|
AwsAccountId: string | undefined;
|
|
@@ -2024,48 +2044,36 @@ export interface DescribeThemeAliasRequest {
|
|
|
2024
2044
|
AliasName: string | undefined;
|
|
2025
2045
|
}
|
|
2026
2046
|
export interface DescribeThemeAliasResponse {
|
|
2027
|
-
ThemeAlias?: ThemeAlias;
|
|
2028
|
-
Status?: number;
|
|
2029
|
-
RequestId?: string;
|
|
2047
|
+
ThemeAlias?: ThemeAlias | undefined;
|
|
2048
|
+
Status?: number | undefined;
|
|
2049
|
+
RequestId?: string | undefined;
|
|
2030
2050
|
}
|
|
2031
2051
|
export interface DescribeThemePermissionsRequest {
|
|
2032
2052
|
AwsAccountId: string | undefined;
|
|
2033
2053
|
ThemeId: string | undefined;
|
|
2034
2054
|
}
|
|
2035
2055
|
export interface DescribeThemePermissionsResponse {
|
|
2036
|
-
ThemeId?: string;
|
|
2037
|
-
ThemeArn?: string;
|
|
2038
|
-
Permissions?: ResourcePermission[];
|
|
2039
|
-
RequestId?: string;
|
|
2040
|
-
Status?: number;
|
|
2056
|
+
ThemeId?: string | undefined;
|
|
2057
|
+
ThemeArn?: string | undefined;
|
|
2058
|
+
Permissions?: ResourcePermission[] | undefined;
|
|
2059
|
+
RequestId?: string | undefined;
|
|
2060
|
+
Status?: number | undefined;
|
|
2041
2061
|
}
|
|
2042
2062
|
export interface DescribeTopicRequest {
|
|
2043
2063
|
AwsAccountId: string | undefined;
|
|
2044
2064
|
TopicId: string | undefined;
|
|
2045
2065
|
}
|
|
2046
2066
|
export interface DescribeTopicResponse {
|
|
2047
|
-
Arn?: string;
|
|
2048
|
-
TopicId?: string;
|
|
2049
|
-
Topic?: TopicDetails;
|
|
2050
|
-
RequestId?: string;
|
|
2051
|
-
Status?: number;
|
|
2067
|
+
Arn?: string | undefined;
|
|
2068
|
+
TopicId?: string | undefined;
|
|
2069
|
+
Topic?: TopicDetails | undefined;
|
|
2070
|
+
RequestId?: string | undefined;
|
|
2071
|
+
Status?: number | undefined;
|
|
2052
2072
|
}
|
|
2053
2073
|
export interface DescribeTopicPermissionsRequest {
|
|
2054
2074
|
AwsAccountId: string | undefined;
|
|
2055
2075
|
TopicId: string | undefined;
|
|
2056
2076
|
}
|
|
2057
|
-
export interface DescribeTopicPermissionsResponse {
|
|
2058
|
-
TopicId?: string;
|
|
2059
|
-
TopicArn?: string;
|
|
2060
|
-
Permissions?: ResourcePermission[];
|
|
2061
|
-
Status?: number;
|
|
2062
|
-
RequestId?: string;
|
|
2063
|
-
}
|
|
2064
|
-
export interface DescribeTopicRefreshRequest {
|
|
2065
|
-
AwsAccountId: string | undefined;
|
|
2066
|
-
TopicId: string | undefined;
|
|
2067
|
-
RefreshId: string | undefined;
|
|
2068
|
-
}
|
|
2069
2077
|
export declare const RowLevelPermissionTagRuleFilterSensitiveLog: (
|
|
2070
2078
|
obj: RowLevelPermissionTagRule
|
|
2071
2079
|
) => any;
|