@aws-sdk/client-neptune-graph 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.
@@ -54,7 +54,7 @@ export type ValidationExceptionReason =
54
54
  export declare class ValidationException extends __BaseException {
55
55
  readonly name: "ValidationException";
56
56
  readonly $fault: "client";
57
- reason?: ValidationExceptionReason;
57
+ reason?: ValidationExceptionReason | undefined;
58
58
  constructor(
59
59
  opts: __ExceptionOptionType<ValidationException, __BaseException>
60
60
  );
@@ -67,7 +67,7 @@ export type ConflictExceptionReason =
67
67
  export declare class ConflictException extends __BaseException {
68
68
  readonly name: "ConflictException";
69
69
  readonly $fault: "client";
70
- reason?: ConflictExceptionReason;
70
+ reason?: ConflictExceptionReason | undefined;
71
71
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
72
72
  }
73
73
  export declare const ExplainMode: {
@@ -89,10 +89,10 @@ export interface ExecuteQueryInput {
89
89
  graphIdentifier: string | undefined;
90
90
  queryString: string | undefined;
91
91
  language: QueryLanguage | undefined;
92
- parameters?: Record<string, __DocumentType>;
93
- planCache?: PlanCacheType;
94
- explainMode?: ExplainMode;
95
- queryTimeoutMilliseconds?: number;
92
+ parameters?: Record<string, __DocumentType> | undefined;
93
+ planCache?: PlanCacheType | undefined;
94
+ explainMode?: ExplainMode | undefined;
95
+ queryTimeoutMilliseconds?: number | undefined;
96
96
  }
97
97
  export interface ExecuteQueryOutput {
98
98
  payload: StreamingBlobTypes | undefined;
@@ -122,37 +122,37 @@ export type GraphSummaryMode =
122
122
  (typeof GraphSummaryMode)[keyof typeof GraphSummaryMode];
123
123
  export interface GetGraphSummaryInput {
124
124
  graphIdentifier: string | undefined;
125
- mode?: GraphSummaryMode;
125
+ mode?: GraphSummaryMode | undefined;
126
126
  }
127
127
  export interface EdgeStructure {
128
- count?: number;
129
- edgeProperties?: string[];
128
+ count?: number | undefined;
129
+ edgeProperties?: string[] | undefined;
130
130
  }
131
131
  export interface NodeStructure {
132
- count?: number;
133
- nodeProperties?: string[];
134
- distinctOutgoingEdgeLabels?: string[];
132
+ count?: number | undefined;
133
+ nodeProperties?: string[] | undefined;
134
+ distinctOutgoingEdgeLabels?: string[] | undefined;
135
135
  }
136
136
  export interface GraphDataSummary {
137
- numNodes?: number;
138
- numEdges?: number;
139
- numNodeLabels?: number;
140
- numEdgeLabels?: number;
141
- nodeLabels?: string[];
142
- edgeLabels?: string[];
143
- numNodeProperties?: number;
144
- numEdgeProperties?: number;
145
- nodeProperties?: Record<string, number>[];
146
- edgeProperties?: Record<string, number>[];
147
- totalNodePropertyValues?: number;
148
- totalEdgePropertyValues?: number;
149
- nodeStructures?: NodeStructure[];
150
- edgeStructures?: EdgeStructure[];
137
+ numNodes?: number | undefined;
138
+ numEdges?: number | undefined;
139
+ numNodeLabels?: number | undefined;
140
+ numEdgeLabels?: number | undefined;
141
+ nodeLabels?: string[] | undefined;
142
+ edgeLabels?: string[] | undefined;
143
+ numNodeProperties?: number | undefined;
144
+ numEdgeProperties?: number | undefined;
145
+ nodeProperties?: Record<string, number>[] | undefined;
146
+ edgeProperties?: Record<string, number>[] | undefined;
147
+ totalNodePropertyValues?: number | undefined;
148
+ totalEdgePropertyValues?: number | undefined;
149
+ nodeStructures?: NodeStructure[] | undefined;
150
+ edgeStructures?: EdgeStructure[] | undefined;
151
151
  }
152
152
  export interface GetGraphSummaryOutput {
153
- version?: string;
154
- lastStatisticsComputationTime?: Date;
155
- graphSummary?: GraphDataSummary;
153
+ version?: string | undefined;
154
+ lastStatisticsComputationTime?: Date | undefined;
155
+ graphSummary?: GraphDataSummary | undefined;
156
156
  }
157
157
  export interface GetQueryInput {
158
158
  graphIdentifier: string | undefined;
@@ -165,23 +165,23 @@ export declare const QueryState: {
165
165
  };
166
166
  export type QueryState = (typeof QueryState)[keyof typeof QueryState];
167
167
  export interface GetQueryOutput {
168
- id?: string;
169
- queryString?: string;
170
- waited?: number;
171
- elapsed?: number;
172
- state?: QueryState;
168
+ id?: string | undefined;
169
+ queryString?: string | undefined;
170
+ waited?: number | undefined;
171
+ elapsed?: number | undefined;
172
+ state?: QueryState | undefined;
173
173
  }
174
174
  export interface VectorSearchConfiguration {
175
175
  dimension: number | undefined;
176
176
  }
177
177
  export interface CreateGraphInput {
178
178
  graphName: string | undefined;
179
- tags?: Record<string, string>;
180
- publicConnectivity?: boolean;
181
- kmsKeyIdentifier?: string;
182
- vectorSearchConfiguration?: VectorSearchConfiguration;
183
- replicaCount?: number;
184
- deletionProtection?: boolean;
179
+ tags?: Record<string, string> | undefined;
180
+ publicConnectivity?: boolean | undefined;
181
+ kmsKeyIdentifier?: string | undefined;
182
+ vectorSearchConfiguration?: VectorSearchConfiguration | undefined;
183
+ replicaCount?: number | undefined;
184
+ deletionProtection?: boolean | undefined;
185
185
  provisionedMemory: number | undefined;
186
186
  }
187
187
  export declare const GraphStatus: {
@@ -199,26 +199,26 @@ export interface CreateGraphOutput {
199
199
  id: string | undefined;
200
200
  name: string | undefined;
201
201
  arn: string | undefined;
202
- status?: GraphStatus;
203
- statusReason?: string;
204
- createTime?: Date;
205
- provisionedMemory?: number;
206
- endpoint?: string;
207
- publicConnectivity?: boolean;
208
- vectorSearchConfiguration?: VectorSearchConfiguration;
209
- replicaCount?: number;
210
- kmsKeyIdentifier?: string;
211
- sourceSnapshotId?: string;
212
- deletionProtection?: boolean;
213
- buildNumber?: string;
202
+ status?: GraphStatus | undefined;
203
+ statusReason?: string | undefined;
204
+ createTime?: Date | undefined;
205
+ provisionedMemory?: number | undefined;
206
+ endpoint?: string | undefined;
207
+ publicConnectivity?: boolean | undefined;
208
+ vectorSearchConfiguration?: VectorSearchConfiguration | undefined;
209
+ replicaCount?: number | undefined;
210
+ kmsKeyIdentifier?: string | undefined;
211
+ sourceSnapshotId?: string | undefined;
212
+ deletionProtection?: boolean | undefined;
213
+ buildNumber?: string | undefined;
214
214
  }
215
215
  export declare class ServiceQuotaExceededException extends __BaseException {
216
216
  readonly name: "ServiceQuotaExceededException";
217
217
  readonly $fault: "client";
218
- resourceId?: string;
219
- resourceType?: string;
220
- serviceCode?: string;
221
- quotaCode?: string;
218
+ resourceId?: string | undefined;
219
+ resourceType?: string | undefined;
220
+ serviceCode?: string | undefined;
221
+ quotaCode?: string | undefined;
222
222
  constructor(
223
223
  opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
224
224
  );
@@ -231,18 +231,18 @@ export interface DeleteGraphOutput {
231
231
  id: string | undefined;
232
232
  name: string | undefined;
233
233
  arn: string | undefined;
234
- status?: GraphStatus;
235
- statusReason?: string;
236
- createTime?: Date;
237
- provisionedMemory?: number;
238
- endpoint?: string;
239
- publicConnectivity?: boolean;
240
- vectorSearchConfiguration?: VectorSearchConfiguration;
241
- replicaCount?: number;
242
- kmsKeyIdentifier?: string;
243
- sourceSnapshotId?: string;
244
- deletionProtection?: boolean;
245
- buildNumber?: string;
234
+ status?: GraphStatus | undefined;
235
+ statusReason?: string | undefined;
236
+ createTime?: Date | undefined;
237
+ provisionedMemory?: number | undefined;
238
+ endpoint?: string | undefined;
239
+ publicConnectivity?: boolean | undefined;
240
+ vectorSearchConfiguration?: VectorSearchConfiguration | undefined;
241
+ replicaCount?: number | undefined;
242
+ kmsKeyIdentifier?: string | undefined;
243
+ sourceSnapshotId?: string | undefined;
244
+ deletionProtection?: boolean | undefined;
245
+ buildNumber?: string | undefined;
246
246
  }
247
247
  export interface GetGraphInput {
248
248
  graphIdentifier: string | undefined;
@@ -251,38 +251,38 @@ export interface GetGraphOutput {
251
251
  id: string | undefined;
252
252
  name: string | undefined;
253
253
  arn: string | undefined;
254
- status?: GraphStatus;
255
- statusReason?: string;
256
- createTime?: Date;
257
- provisionedMemory?: number;
258
- endpoint?: string;
259
- publicConnectivity?: boolean;
260
- vectorSearchConfiguration?: VectorSearchConfiguration;
261
- replicaCount?: number;
262
- kmsKeyIdentifier?: string;
263
- sourceSnapshotId?: string;
264
- deletionProtection?: boolean;
265
- buildNumber?: string;
254
+ status?: GraphStatus | undefined;
255
+ statusReason?: string | undefined;
256
+ createTime?: Date | undefined;
257
+ provisionedMemory?: number | undefined;
258
+ endpoint?: string | undefined;
259
+ publicConnectivity?: boolean | undefined;
260
+ vectorSearchConfiguration?: VectorSearchConfiguration | undefined;
261
+ replicaCount?: number | undefined;
262
+ kmsKeyIdentifier?: string | undefined;
263
+ sourceSnapshotId?: string | undefined;
264
+ deletionProtection?: boolean | undefined;
265
+ buildNumber?: string | undefined;
266
266
  }
267
267
  export interface ListGraphsInput {
268
- nextToken?: string;
269
- maxResults?: number;
268
+ nextToken?: string | undefined;
269
+ maxResults?: number | undefined;
270
270
  }
271
271
  export interface GraphSummary {
272
272
  id: string | undefined;
273
273
  name: string | undefined;
274
274
  arn: string | undefined;
275
- status?: GraphStatus;
276
- provisionedMemory?: number;
277
- publicConnectivity?: boolean;
278
- endpoint?: string;
279
- replicaCount?: number;
280
- kmsKeyIdentifier?: string;
281
- deletionProtection?: boolean;
275
+ status?: GraphStatus | undefined;
276
+ provisionedMemory?: number | undefined;
277
+ publicConnectivity?: boolean | undefined;
278
+ endpoint?: string | undefined;
279
+ replicaCount?: number | undefined;
280
+ kmsKeyIdentifier?: string | undefined;
281
+ deletionProtection?: boolean | undefined;
282
282
  }
283
283
  export interface ListGraphsOutput {
284
284
  graphs: GraphSummary[] | undefined;
285
- nextToken?: string;
285
+ nextToken?: string | undefined;
286
286
  }
287
287
  export interface ResetGraphInput {
288
288
  graphIdentifier: string | undefined;
@@ -292,67 +292,67 @@ export interface ResetGraphOutput {
292
292
  id: string | undefined;
293
293
  name: string | undefined;
294
294
  arn: string | undefined;
295
- status?: GraphStatus;
296
- statusReason?: string;
297
- createTime?: Date;
298
- provisionedMemory?: number;
299
- endpoint?: string;
300
- publicConnectivity?: boolean;
301
- vectorSearchConfiguration?: VectorSearchConfiguration;
302
- replicaCount?: number;
303
- kmsKeyIdentifier?: string;
304
- sourceSnapshotId?: string;
305
- deletionProtection?: boolean;
306
- buildNumber?: string;
295
+ status?: GraphStatus | undefined;
296
+ statusReason?: string | undefined;
297
+ createTime?: Date | undefined;
298
+ provisionedMemory?: number | undefined;
299
+ endpoint?: string | undefined;
300
+ publicConnectivity?: boolean | undefined;
301
+ vectorSearchConfiguration?: VectorSearchConfiguration | undefined;
302
+ replicaCount?: number | undefined;
303
+ kmsKeyIdentifier?: string | undefined;
304
+ sourceSnapshotId?: string | undefined;
305
+ deletionProtection?: boolean | undefined;
306
+ buildNumber?: string | undefined;
307
307
  }
308
308
  export interface RestoreGraphFromSnapshotInput {
309
309
  snapshotIdentifier: string | undefined;
310
310
  graphName: string | undefined;
311
- provisionedMemory?: number;
312
- deletionProtection?: boolean;
313
- tags?: Record<string, string>;
314
- replicaCount?: number;
315
- publicConnectivity?: boolean;
311
+ provisionedMemory?: number | undefined;
312
+ deletionProtection?: boolean | undefined;
313
+ tags?: Record<string, string> | undefined;
314
+ replicaCount?: number | undefined;
315
+ publicConnectivity?: boolean | undefined;
316
316
  }
317
317
  export interface RestoreGraphFromSnapshotOutput {
318
318
  id: string | undefined;
319
319
  name: string | undefined;
320
320
  arn: string | undefined;
321
- status?: GraphStatus;
322
- statusReason?: string;
323
- createTime?: Date;
324
- provisionedMemory?: number;
325
- endpoint?: string;
326
- publicConnectivity?: boolean;
327
- vectorSearchConfiguration?: VectorSearchConfiguration;
328
- replicaCount?: number;
329
- kmsKeyIdentifier?: string;
330
- sourceSnapshotId?: string;
331
- deletionProtection?: boolean;
332
- buildNumber?: string;
321
+ status?: GraphStatus | undefined;
322
+ statusReason?: string | undefined;
323
+ createTime?: Date | undefined;
324
+ provisionedMemory?: number | undefined;
325
+ endpoint?: string | undefined;
326
+ publicConnectivity?: boolean | undefined;
327
+ vectorSearchConfiguration?: VectorSearchConfiguration | undefined;
328
+ replicaCount?: number | undefined;
329
+ kmsKeyIdentifier?: string | undefined;
330
+ sourceSnapshotId?: string | undefined;
331
+ deletionProtection?: boolean | undefined;
332
+ buildNumber?: string | undefined;
333
333
  }
334
334
  export interface UpdateGraphInput {
335
335
  graphIdentifier: string | undefined;
336
- publicConnectivity?: boolean;
337
- provisionedMemory?: number;
338
- deletionProtection?: boolean;
336
+ publicConnectivity?: boolean | undefined;
337
+ provisionedMemory?: number | undefined;
338
+ deletionProtection?: boolean | undefined;
339
339
  }
340
340
  export interface UpdateGraphOutput {
341
341
  id: string | undefined;
342
342
  name: string | undefined;
343
343
  arn: string | undefined;
344
- status?: GraphStatus;
345
- statusReason?: string;
346
- createTime?: Date;
347
- provisionedMemory?: number;
348
- endpoint?: string;
349
- publicConnectivity?: boolean;
350
- vectorSearchConfiguration?: VectorSearchConfiguration;
351
- replicaCount?: number;
352
- kmsKeyIdentifier?: string;
353
- sourceSnapshotId?: string;
354
- deletionProtection?: boolean;
355
- buildNumber?: string;
344
+ status?: GraphStatus | undefined;
345
+ statusReason?: string | undefined;
346
+ createTime?: Date | undefined;
347
+ provisionedMemory?: number | undefined;
348
+ endpoint?: string | undefined;
349
+ publicConnectivity?: boolean | undefined;
350
+ vectorSearchConfiguration?: VectorSearchConfiguration | undefined;
351
+ replicaCount?: number | undefined;
352
+ kmsKeyIdentifier?: string | undefined;
353
+ sourceSnapshotId?: string | undefined;
354
+ deletionProtection?: boolean | undefined;
355
+ buildNumber?: string | undefined;
356
356
  }
357
357
  export declare const QueryStateInput: {
358
358
  readonly ALL: "ALL";
@@ -365,14 +365,14 @@ export type QueryStateInput =
365
365
  export interface ListQueriesInput {
366
366
  graphIdentifier: string | undefined;
367
367
  maxResults: number | undefined;
368
- state?: QueryStateInput;
368
+ state?: QueryStateInput | undefined;
369
369
  }
370
370
  export interface QuerySummary {
371
- id?: string;
372
- queryString?: string;
373
- waited?: number;
374
- elapsed?: number;
375
- state?: QueryState;
371
+ id?: string | undefined;
372
+ queryString?: string | undefined;
373
+ waited?: number | undefined;
374
+ elapsed?: number | undefined;
375
+ state?: QueryState | undefined;
376
376
  }
377
377
  export interface ListQueriesOutput {
378
378
  queries: QuerySummary[] | undefined;
@@ -381,13 +381,13 @@ export interface ListTagsForResourceInput {
381
381
  resourceArn: string | undefined;
382
382
  }
383
383
  export interface ListTagsForResourceOutput {
384
- tags?: Record<string, string>;
384
+ tags?: Record<string, string> | undefined;
385
385
  }
386
386
  export interface CreatePrivateGraphEndpointInput {
387
387
  graphIdentifier: string | undefined;
388
- vpcId?: string;
389
- subnetIds?: string[];
390
- vpcSecurityGroupIds?: string[];
388
+ vpcId?: string | undefined;
389
+ subnetIds?: string[] | undefined;
390
+ vpcSecurityGroupIds?: string[] | undefined;
391
391
  }
392
392
  export declare const PrivateGraphEndpointStatus: {
393
393
  readonly AVAILABLE: "AVAILABLE";
@@ -401,7 +401,7 @@ export interface CreatePrivateGraphEndpointOutput {
401
401
  vpcId: string | undefined;
402
402
  subnetIds: string[] | undefined;
403
403
  status: PrivateGraphEndpointStatus | undefined;
404
- vpcEndpointId?: string;
404
+ vpcEndpointId?: string | undefined;
405
405
  }
406
406
  export interface DeletePrivateGraphEndpointInput {
407
407
  graphIdentifier: string | undefined;
@@ -411,7 +411,7 @@ export interface DeletePrivateGraphEndpointOutput {
411
411
  vpcId: string | undefined;
412
412
  subnetIds: string[] | undefined;
413
413
  status: PrivateGraphEndpointStatus | undefined;
414
- vpcEndpointId?: string;
414
+ vpcEndpointId?: string | undefined;
415
415
  }
416
416
  export interface GetPrivateGraphEndpointInput {
417
417
  graphIdentifier: string | undefined;
@@ -421,27 +421,27 @@ export interface GetPrivateGraphEndpointOutput {
421
421
  vpcId: string | undefined;
422
422
  subnetIds: string[] | undefined;
423
423
  status: PrivateGraphEndpointStatus | undefined;
424
- vpcEndpointId?: string;
424
+ vpcEndpointId?: string | undefined;
425
425
  }
426
426
  export interface ListPrivateGraphEndpointsInput {
427
427
  graphIdentifier: string | undefined;
428
- nextToken?: string;
429
- maxResults?: number;
428
+ nextToken?: string | undefined;
429
+ maxResults?: number | undefined;
430
430
  }
431
431
  export interface PrivateGraphEndpointSummary {
432
432
  vpcId: string | undefined;
433
433
  subnetIds: string[] | undefined;
434
434
  status: PrivateGraphEndpointStatus | undefined;
435
- vpcEndpointId?: string;
435
+ vpcEndpointId?: string | undefined;
436
436
  }
437
437
  export interface ListPrivateGraphEndpointsOutput {
438
438
  privateGraphEndpoints: PrivateGraphEndpointSummary[] | undefined;
439
- nextToken?: string;
439
+ nextToken?: string | undefined;
440
440
  }
441
441
  export interface CreateGraphSnapshotInput {
442
442
  graphIdentifier: string | undefined;
443
443
  snapshotName: string | undefined;
444
- tags?: Record<string, string>;
444
+ tags?: Record<string, string> | undefined;
445
445
  }
446
446
  export declare const SnapshotStatus: {
447
447
  readonly AVAILABLE: "AVAILABLE";
@@ -455,10 +455,10 @@ export interface CreateGraphSnapshotOutput {
455
455
  id: string | undefined;
456
456
  name: string | undefined;
457
457
  arn: string | undefined;
458
- sourceGraphId?: string;
459
- snapshotCreateTime?: Date;
460
- status?: SnapshotStatus;
461
- kmsKeyIdentifier?: string;
458
+ sourceGraphId?: string | undefined;
459
+ snapshotCreateTime?: Date | undefined;
460
+ status?: SnapshotStatus | undefined;
461
+ kmsKeyIdentifier?: string | undefined;
462
462
  }
463
463
  export interface DeleteGraphSnapshotInput {
464
464
  snapshotIdentifier: string | undefined;
@@ -467,10 +467,10 @@ export interface DeleteGraphSnapshotOutput {
467
467
  id: string | undefined;
468
468
  name: string | undefined;
469
469
  arn: string | undefined;
470
- sourceGraphId?: string;
471
- snapshotCreateTime?: Date;
472
- status?: SnapshotStatus;
473
- kmsKeyIdentifier?: string;
470
+ sourceGraphId?: string | undefined;
471
+ snapshotCreateTime?: Date | undefined;
472
+ status?: SnapshotStatus | undefined;
473
+ kmsKeyIdentifier?: string | undefined;
474
474
  }
475
475
  export interface GetGraphSnapshotInput {
476
476
  snapshotIdentifier: string | undefined;
@@ -479,28 +479,28 @@ export interface GetGraphSnapshotOutput {
479
479
  id: string | undefined;
480
480
  name: string | undefined;
481
481
  arn: string | undefined;
482
- sourceGraphId?: string;
483
- snapshotCreateTime?: Date;
484
- status?: SnapshotStatus;
485
- kmsKeyIdentifier?: string;
482
+ sourceGraphId?: string | undefined;
483
+ snapshotCreateTime?: Date | undefined;
484
+ status?: SnapshotStatus | undefined;
485
+ kmsKeyIdentifier?: string | undefined;
486
486
  }
487
487
  export interface ListGraphSnapshotsInput {
488
- graphIdentifier?: string;
489
- nextToken?: string;
490
- maxResults?: number;
488
+ graphIdentifier?: string | undefined;
489
+ nextToken?: string | undefined;
490
+ maxResults?: number | undefined;
491
491
  }
492
492
  export interface GraphSnapshotSummary {
493
493
  id: string | undefined;
494
494
  name: string | undefined;
495
495
  arn: string | undefined;
496
- sourceGraphId?: string;
497
- snapshotCreateTime?: Date;
498
- status?: SnapshotStatus;
499
- kmsKeyIdentifier?: string;
496
+ sourceGraphId?: string | undefined;
497
+ snapshotCreateTime?: Date | undefined;
498
+ status?: SnapshotStatus | undefined;
499
+ kmsKeyIdentifier?: string | undefined;
500
500
  }
501
501
  export interface ListGraphSnapshotsOutput {
502
502
  graphSnapshots: GraphSnapshotSummary[] | undefined;
503
- nextToken?: string;
503
+ nextToken?: string | undefined;
504
504
  }
505
505
  export interface TagResourceInput {
506
506
  resourceArn: string | undefined;
@@ -531,10 +531,10 @@ export declare const ImportTaskStatus: {
531
531
  export type ImportTaskStatus =
532
532
  (typeof ImportTaskStatus)[keyof typeof ImportTaskStatus];
533
533
  export interface CancelImportTaskOutput {
534
- graphId?: string;
534
+ graphId?: string | undefined;
535
535
  taskId: string | undefined;
536
536
  source: string | undefined;
537
- format?: Format;
537
+ format?: Format | undefined;
538
538
  roleArn: string | undefined;
539
539
  status: ImportTaskStatus | undefined;
540
540
  }
@@ -546,8 +546,8 @@ export type BlankNodeHandling =
546
546
  export interface NeptuneImportOptions {
547
547
  s3ExportPath: string | undefined;
548
548
  s3ExportKmsKeyId: string | undefined;
549
- preserveDefaultVertexLabels?: boolean;
550
- preserveEdgeIds?: boolean;
549
+ preserveDefaultVertexLabels?: boolean | undefined;
550
+ preserveEdgeIds?: boolean | undefined;
551
551
  }
552
552
  export type ImportOptions =
553
553
  | ImportOptions.NeptuneMember
@@ -569,29 +569,29 @@ export declare namespace ImportOptions {
569
569
  }
570
570
  export interface CreateGraphUsingImportTaskInput {
571
571
  graphName: string | undefined;
572
- tags?: Record<string, string>;
573
- publicConnectivity?: boolean;
574
- kmsKeyIdentifier?: string;
575
- vectorSearchConfiguration?: VectorSearchConfiguration;
576
- replicaCount?: number;
577
- deletionProtection?: boolean;
578
- importOptions?: ImportOptions;
579
- maxProvisionedMemory?: number;
580
- minProvisionedMemory?: number;
581
- failOnError?: boolean;
572
+ tags?: Record<string, string> | undefined;
573
+ publicConnectivity?: boolean | undefined;
574
+ kmsKeyIdentifier?: string | undefined;
575
+ vectorSearchConfiguration?: VectorSearchConfiguration | undefined;
576
+ replicaCount?: number | undefined;
577
+ deletionProtection?: boolean | undefined;
578
+ importOptions?: ImportOptions | undefined;
579
+ maxProvisionedMemory?: number | undefined;
580
+ minProvisionedMemory?: number | undefined;
581
+ failOnError?: boolean | undefined;
582
582
  source: string | undefined;
583
- format?: Format;
584
- blankNodeHandling?: BlankNodeHandling;
583
+ format?: Format | undefined;
584
+ blankNodeHandling?: BlankNodeHandling | undefined;
585
585
  roleArn: string | undefined;
586
586
  }
587
587
  export interface CreateGraphUsingImportTaskOutput {
588
- graphId?: string;
588
+ graphId?: string | undefined;
589
589
  taskId: string | undefined;
590
590
  source: string | undefined;
591
- format?: Format;
591
+ format?: Format | undefined;
592
592
  roleArn: string | undefined;
593
593
  status: ImportTaskStatus | undefined;
594
- importOptions?: ImportOptions;
594
+ importOptions?: ImportOptions | undefined;
595
595
  }
596
596
  export interface GetImportTaskInput {
597
597
  taskIdentifier: string | undefined;
@@ -602,55 +602,55 @@ export interface ImportTaskDetails {
602
602
  timeElapsedSeconds: number | undefined;
603
603
  progressPercentage: number | undefined;
604
604
  errorCount: number | undefined;
605
- errorDetails?: string;
605
+ errorDetails?: string | undefined;
606
606
  statementCount: number | undefined;
607
607
  dictionaryEntryCount: number | undefined;
608
608
  }
609
609
  export interface GetImportTaskOutput {
610
- graphId?: string;
610
+ graphId?: string | undefined;
611
611
  taskId: string | undefined;
612
612
  source: string | undefined;
613
- format?: Format;
613
+ format?: Format | undefined;
614
614
  roleArn: string | undefined;
615
615
  status: ImportTaskStatus | undefined;
616
- importOptions?: ImportOptions;
617
- importTaskDetails?: ImportTaskDetails;
618
- attemptNumber?: number;
619
- statusReason?: string;
616
+ importOptions?: ImportOptions | undefined;
617
+ importTaskDetails?: ImportTaskDetails | undefined;
618
+ attemptNumber?: number | undefined;
619
+ statusReason?: string | undefined;
620
620
  }
621
621
  export interface ListImportTasksInput {
622
- nextToken?: string;
623
- maxResults?: number;
622
+ nextToken?: string | undefined;
623
+ maxResults?: number | undefined;
624
624
  }
625
625
  export interface ImportTaskSummary {
626
- graphId?: string;
626
+ graphId?: string | undefined;
627
627
  taskId: string | undefined;
628
628
  source: string | undefined;
629
- format?: Format;
629
+ format?: Format | undefined;
630
630
  roleArn: string | undefined;
631
631
  status: ImportTaskStatus | undefined;
632
632
  }
633
633
  export interface ListImportTasksOutput {
634
634
  tasks: ImportTaskSummary[] | undefined;
635
- nextToken?: string;
635
+ nextToken?: string | undefined;
636
636
  }
637
637
  export interface StartImportTaskInput {
638
- importOptions?: ImportOptions;
639
- failOnError?: boolean;
638
+ importOptions?: ImportOptions | undefined;
639
+ failOnError?: boolean | undefined;
640
640
  source: string | undefined;
641
- format?: Format;
642
- blankNodeHandling?: BlankNodeHandling;
641
+ format?: Format | undefined;
642
+ blankNodeHandling?: BlankNodeHandling | undefined;
643
643
  graphIdentifier: string | undefined;
644
644
  roleArn: string | undefined;
645
645
  }
646
646
  export interface StartImportTaskOutput {
647
- graphId?: string;
647
+ graphId?: string | undefined;
648
648
  taskId: string | undefined;
649
649
  source: string | undefined;
650
- format?: Format;
650
+ format?: Format | undefined;
651
651
  roleArn: string | undefined;
652
652
  status: ImportTaskStatus | undefined;
653
- importOptions?: ImportOptions;
653
+ importOptions?: ImportOptions | undefined;
654
654
  }
655
655
  export interface UntagResourceInput {
656
656
  resourceArn: string | undefined;