@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.
- package/dist-types/models/models_0.d.ts +210 -210
- package/dist-types/ts3.4/models/models_0.d.ts +210 -210
- package/package.json +7 -7
|
@@ -96,7 +96,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
96
96
|
* <p>The reason that the resource could not be validated.</p>
|
|
97
97
|
* @public
|
|
98
98
|
*/
|
|
99
|
-
reason?: ValidationExceptionReason;
|
|
99
|
+
reason?: ValidationExceptionReason | undefined;
|
|
100
100
|
/**
|
|
101
101
|
* @internal
|
|
102
102
|
*/
|
|
@@ -124,7 +124,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
124
124
|
* <p>The reason for the conflict exception.</p>
|
|
125
125
|
* @public
|
|
126
126
|
*/
|
|
127
|
-
reason?: ConflictExceptionReason;
|
|
127
|
+
reason?: ConflictExceptionReason | undefined;
|
|
128
128
|
/**
|
|
129
129
|
* @internal
|
|
130
130
|
*/
|
|
@@ -189,26 +189,26 @@ export interface ExecuteQueryInput {
|
|
|
189
189
|
* <p>The data parameters the query can use in JSON format. For example: \{"name": "john", "age": 20\}. (optional) </p>
|
|
190
190
|
* @public
|
|
191
191
|
*/
|
|
192
|
-
parameters?: Record<string, __DocumentType
|
|
192
|
+
parameters?: Record<string, __DocumentType> | undefined;
|
|
193
193
|
/**
|
|
194
194
|
* <p>Query plan cache is a feature that saves the query plan and reuses it on successive executions of the same query.
|
|
195
195
|
* This reduces query latency, and works for both <code>READ</code> and <code>UPDATE</code> queries. The plan cache is an
|
|
196
196
|
* LRU cache with a 5 minute TTL and a capacity of 1000.</p>
|
|
197
197
|
* @public
|
|
198
198
|
*/
|
|
199
|
-
planCache?: PlanCacheType;
|
|
199
|
+
planCache?: PlanCacheType | undefined;
|
|
200
200
|
/**
|
|
201
201
|
* <p>The explain mode parameter returns a query explain instead of the actual query results. A query explain can
|
|
202
202
|
* be used to gather insights about the query execution such as planning decisions, time spent on each operator, solutions
|
|
203
203
|
* flowing etc.</p>
|
|
204
204
|
* @public
|
|
205
205
|
*/
|
|
206
|
-
explainMode?: ExplainMode;
|
|
206
|
+
explainMode?: ExplainMode | undefined;
|
|
207
207
|
/**
|
|
208
208
|
* <p>Specifies the query timeout duration, in milliseconds. (optional)</p>
|
|
209
209
|
* @public
|
|
210
210
|
*/
|
|
211
|
-
queryTimeoutMilliseconds?: number;
|
|
211
|
+
queryTimeoutMilliseconds?: number | undefined;
|
|
212
212
|
}
|
|
213
213
|
/**
|
|
214
214
|
* @public
|
|
@@ -278,7 +278,7 @@ export interface GetGraphSummaryInput {
|
|
|
278
278
|
* <code>detailed</code>.</p>
|
|
279
279
|
* @public
|
|
280
280
|
*/
|
|
281
|
-
mode?: GraphSummaryMode;
|
|
281
|
+
mode?: GraphSummaryMode | undefined;
|
|
282
282
|
}
|
|
283
283
|
/**
|
|
284
284
|
* <p>Contains information about an edge in a Neptune Analytics graph.</p>
|
|
@@ -289,12 +289,12 @@ export interface EdgeStructure {
|
|
|
289
289
|
* <p>The number of instances of the edge in the graph.</p>
|
|
290
290
|
* @public
|
|
291
291
|
*/
|
|
292
|
-
count?: number;
|
|
292
|
+
count?: number | undefined;
|
|
293
293
|
/**
|
|
294
294
|
* <p>A list of the properties associated with the edge.</p>
|
|
295
295
|
* @public
|
|
296
296
|
*/
|
|
297
|
-
edgeProperties?: string[];
|
|
297
|
+
edgeProperties?: string[] | undefined;
|
|
298
298
|
}
|
|
299
299
|
/**
|
|
300
300
|
* <p>Information about a node.</p>
|
|
@@ -305,17 +305,17 @@ export interface NodeStructure {
|
|
|
305
305
|
* <p>The number of instances of this node.</p>
|
|
306
306
|
* @public
|
|
307
307
|
*/
|
|
308
|
-
count?: number;
|
|
308
|
+
count?: number | undefined;
|
|
309
309
|
/**
|
|
310
310
|
* <p>Properties associated with this node.</p>
|
|
311
311
|
* @public
|
|
312
312
|
*/
|
|
313
|
-
nodeProperties?: string[];
|
|
313
|
+
nodeProperties?: string[] | undefined;
|
|
314
314
|
/**
|
|
315
315
|
* <p>The outgoing edge labels associated with this node.</p>
|
|
316
316
|
* @public
|
|
317
317
|
*/
|
|
318
|
-
distinctOutgoingEdgeLabels?: string[];
|
|
318
|
+
distinctOutgoingEdgeLabels?: string[] | undefined;
|
|
319
319
|
}
|
|
320
320
|
/**
|
|
321
321
|
* <p>Summary information about the graph.</p>
|
|
@@ -326,73 +326,73 @@ export interface GraphDataSummary {
|
|
|
326
326
|
* <p>The number of nodes in the graph.</p>
|
|
327
327
|
* @public
|
|
328
328
|
*/
|
|
329
|
-
numNodes?: number;
|
|
329
|
+
numNodes?: number | undefined;
|
|
330
330
|
/**
|
|
331
331
|
* <p>The number of edges in the graph.</p>
|
|
332
332
|
* @public
|
|
333
333
|
*/
|
|
334
|
-
numEdges?: number;
|
|
334
|
+
numEdges?: number | undefined;
|
|
335
335
|
/**
|
|
336
336
|
* <p>The number of distinct node labels in the graph.</p>
|
|
337
337
|
* @public
|
|
338
338
|
*/
|
|
339
|
-
numNodeLabels?: number;
|
|
339
|
+
numNodeLabels?: number | undefined;
|
|
340
340
|
/**
|
|
341
341
|
* <p>The number of unique edge labels in the graph.</p>
|
|
342
342
|
* @public
|
|
343
343
|
*/
|
|
344
|
-
numEdgeLabels?: number;
|
|
344
|
+
numEdgeLabels?: number | undefined;
|
|
345
345
|
/**
|
|
346
346
|
* <p>A list of distinct node labels in the graph.</p>
|
|
347
347
|
* @public
|
|
348
348
|
*/
|
|
349
|
-
nodeLabels?: string[];
|
|
349
|
+
nodeLabels?: string[] | undefined;
|
|
350
350
|
/**
|
|
351
351
|
* <p>A list of the edge labels in the graph.</p>
|
|
352
352
|
* @public
|
|
353
353
|
*/
|
|
354
|
-
edgeLabels?: string[];
|
|
354
|
+
edgeLabels?: string[] | undefined;
|
|
355
355
|
/**
|
|
356
356
|
* <p>The number of distinct node properties in the graph.</p>
|
|
357
357
|
* @public
|
|
358
358
|
*/
|
|
359
|
-
numNodeProperties?: number;
|
|
359
|
+
numNodeProperties?: number | undefined;
|
|
360
360
|
/**
|
|
361
361
|
* <p>The number of edge properties in the graph.</p>
|
|
362
362
|
* @public
|
|
363
363
|
*/
|
|
364
|
-
numEdgeProperties?: number;
|
|
364
|
+
numEdgeProperties?: number | undefined;
|
|
365
365
|
/**
|
|
366
366
|
* <p>A list of the distinct node properties in the graph, along with the count of nodes where each property is used.</p>
|
|
367
367
|
* @public
|
|
368
368
|
*/
|
|
369
|
-
nodeProperties?: Record<string, number>[];
|
|
369
|
+
nodeProperties?: Record<string, number>[] | undefined;
|
|
370
370
|
/**
|
|
371
371
|
* <p>A list of the distinct edge properties in the graph, along with the count of edges
|
|
372
372
|
* where each property is used.</p>
|
|
373
373
|
* @public
|
|
374
374
|
*/
|
|
375
|
-
edgeProperties?: Record<string, number>[];
|
|
375
|
+
edgeProperties?: Record<string, number>[] | undefined;
|
|
376
376
|
/**
|
|
377
377
|
* <p>The total number of usages of all node properties.</p>
|
|
378
378
|
* @public
|
|
379
379
|
*/
|
|
380
|
-
totalNodePropertyValues?: number;
|
|
380
|
+
totalNodePropertyValues?: number | undefined;
|
|
381
381
|
/**
|
|
382
382
|
* <p>The total number of usages of all edge properties.</p>
|
|
383
383
|
* @public
|
|
384
384
|
*/
|
|
385
|
-
totalEdgePropertyValues?: number;
|
|
385
|
+
totalEdgePropertyValues?: number | undefined;
|
|
386
386
|
/**
|
|
387
387
|
* <p>This field is only present when the requested mode is DETAILED. It contains a list of node structures.</p>
|
|
388
388
|
* @public
|
|
389
389
|
*/
|
|
390
|
-
nodeStructures?: NodeStructure[];
|
|
390
|
+
nodeStructures?: NodeStructure[] | undefined;
|
|
391
391
|
/**
|
|
392
392
|
* <p>This field is only present when the requested mode is DETAILED. It contains a list of edge structures.</p>
|
|
393
393
|
* @public
|
|
394
394
|
*/
|
|
395
|
-
edgeStructures?: EdgeStructure[];
|
|
395
|
+
edgeStructures?: EdgeStructure[] | undefined;
|
|
396
396
|
}
|
|
397
397
|
/**
|
|
398
398
|
* @public
|
|
@@ -402,17 +402,17 @@ export interface GetGraphSummaryOutput {
|
|
|
402
402
|
* <p>Display the version of this tool.</p>
|
|
403
403
|
* @public
|
|
404
404
|
*/
|
|
405
|
-
version?: string;
|
|
405
|
+
version?: string | undefined;
|
|
406
406
|
/**
|
|
407
407
|
* <p>The timestamp, in ISO 8601 format, of the time at which Neptune Analytics last computed statistics.</p>
|
|
408
408
|
* @public
|
|
409
409
|
*/
|
|
410
|
-
lastStatisticsComputationTime?: Date;
|
|
410
|
+
lastStatisticsComputationTime?: Date | undefined;
|
|
411
411
|
/**
|
|
412
412
|
* <p>The graph summary.</p>
|
|
413
413
|
* @public
|
|
414
414
|
*/
|
|
415
|
-
graphSummary?: GraphDataSummary;
|
|
415
|
+
graphSummary?: GraphDataSummary | undefined;
|
|
416
416
|
}
|
|
417
417
|
/**
|
|
418
418
|
* @public
|
|
@@ -450,27 +450,27 @@ export interface GetQueryOutput {
|
|
|
450
450
|
* <p>The ID of the query in question.</p>
|
|
451
451
|
* @public
|
|
452
452
|
*/
|
|
453
|
-
id?: string;
|
|
453
|
+
id?: string | undefined;
|
|
454
454
|
/**
|
|
455
455
|
* <p>The query in question.</p>
|
|
456
456
|
* @public
|
|
457
457
|
*/
|
|
458
|
-
queryString?: string;
|
|
458
|
+
queryString?: string | undefined;
|
|
459
459
|
/**
|
|
460
460
|
* <p>Indicates how long the query waited, in milliseconds.</p>
|
|
461
461
|
* @public
|
|
462
462
|
*/
|
|
463
|
-
waited?: number;
|
|
463
|
+
waited?: number | undefined;
|
|
464
464
|
/**
|
|
465
465
|
* <p>The number of milliseconds the query has been running.</p>
|
|
466
466
|
* @public
|
|
467
467
|
*/
|
|
468
|
-
elapsed?: number;
|
|
468
|
+
elapsed?: number | undefined;
|
|
469
469
|
/**
|
|
470
470
|
* <p>State of the query.</p>
|
|
471
471
|
* @public
|
|
472
472
|
*/
|
|
473
|
-
state?: QueryState;
|
|
473
|
+
state?: QueryState | undefined;
|
|
474
474
|
}
|
|
475
475
|
/**
|
|
476
476
|
* <p>Specifies the number of dimensions for vector embeddings loaded into the graph. Max = 65535</p>
|
|
@@ -500,24 +500,24 @@ export interface CreateGraphInput {
|
|
|
500
500
|
* These tags can also be used with cost allocation reporting, or used in a Condition statement in an IAM policy.</p>
|
|
501
501
|
* @public
|
|
502
502
|
*/
|
|
503
|
-
tags?: Record<string, string
|
|
503
|
+
tags?: Record<string, string> | undefined;
|
|
504
504
|
/**
|
|
505
505
|
* <p>Specifies whether or not the graph can be reachable over the internet. All access to graphs is IAM authenticated.
|
|
506
506
|
* (<code>true</code> to enable, or <code>false</code> to disable.</p>
|
|
507
507
|
* @public
|
|
508
508
|
*/
|
|
509
|
-
publicConnectivity?: boolean;
|
|
509
|
+
publicConnectivity?: boolean | undefined;
|
|
510
510
|
/**
|
|
511
511
|
* <p>Specifies a KMS key to use to encrypt data in the new graph.</p>
|
|
512
512
|
* @public
|
|
513
513
|
*/
|
|
514
|
-
kmsKeyIdentifier?: string;
|
|
514
|
+
kmsKeyIdentifier?: string | undefined;
|
|
515
515
|
/**
|
|
516
516
|
* <p>Specifies the number of dimensions for vector embeddings that will be loaded into the graph.
|
|
517
517
|
* The value is specified as <code>dimension=</code>value. Max = 65,535</p>
|
|
518
518
|
* @public
|
|
519
519
|
*/
|
|
520
|
-
vectorSearchConfiguration?: VectorSearchConfiguration;
|
|
520
|
+
vectorSearchConfiguration?: VectorSearchConfiguration | undefined;
|
|
521
521
|
/**
|
|
522
522
|
* <p>The number of replicas in other AZs. Min =0, Max = 2, Default = 1.</p>
|
|
523
523
|
* <important>
|
|
@@ -527,13 +527,13 @@ export interface CreateGraphInput {
|
|
|
527
527
|
* </important>
|
|
528
528
|
* @public
|
|
529
529
|
*/
|
|
530
|
-
replicaCount?: number;
|
|
530
|
+
replicaCount?: number | undefined;
|
|
531
531
|
/**
|
|
532
532
|
* <p>Indicates whether or not to enable deletion protection on the graph. The graph can’t be deleted when deletion protection is enabled.
|
|
533
533
|
* (<code>true</code> or <code>false</code>).</p>
|
|
534
534
|
* @public
|
|
535
535
|
*/
|
|
536
|
-
deletionProtection?: boolean;
|
|
536
|
+
deletionProtection?: boolean | undefined;
|
|
537
537
|
/**
|
|
538
538
|
* <p>The provisioned memory-optimized Neptune Capacity Units (m-NCUs) to use for the graph. Min = 128</p>
|
|
539
539
|
* @public
|
|
@@ -584,28 +584,28 @@ export interface CreateGraphOutput {
|
|
|
584
584
|
* <p>The current status of the graph.</p>
|
|
585
585
|
* @public
|
|
586
586
|
*/
|
|
587
|
-
status?: GraphStatus;
|
|
587
|
+
status?: GraphStatus | undefined;
|
|
588
588
|
/**
|
|
589
589
|
* <p>The reason the status was given.</p>
|
|
590
590
|
* @public
|
|
591
591
|
*/
|
|
592
|
-
statusReason?: string;
|
|
592
|
+
statusReason?: string | undefined;
|
|
593
593
|
/**
|
|
594
594
|
* <p>The time when the graph was created.</p>
|
|
595
595
|
* @public
|
|
596
596
|
*/
|
|
597
|
-
createTime?: Date;
|
|
597
|
+
createTime?: Date | undefined;
|
|
598
598
|
/**
|
|
599
599
|
* <p>The provisioned memory-optimized Neptune Capacity Units (m-NCUs) to use for the graph.</p>
|
|
600
600
|
* <p>Min = 128</p>
|
|
601
601
|
* @public
|
|
602
602
|
*/
|
|
603
|
-
provisionedMemory?: number;
|
|
603
|
+
provisionedMemory?: number | undefined;
|
|
604
604
|
/**
|
|
605
605
|
* <p>The graph endpoint.</p>
|
|
606
606
|
* @public
|
|
607
607
|
*/
|
|
608
|
-
endpoint?: string;
|
|
608
|
+
endpoint?: string | undefined;
|
|
609
609
|
/**
|
|
610
610
|
* <p>Specifies whether or not the graph can be reachable over the internet. All access to graphs is IAM authenticated.</p>
|
|
611
611
|
* <note>
|
|
@@ -613,40 +613,40 @@ export interface CreateGraphOutput {
|
|
|
613
613
|
* </note>
|
|
614
614
|
* @public
|
|
615
615
|
*/
|
|
616
|
-
publicConnectivity?: boolean;
|
|
616
|
+
publicConnectivity?: boolean | undefined;
|
|
617
617
|
/**
|
|
618
618
|
* <p>The vector-search configuration for the graph, which specifies the vector dimension
|
|
619
619
|
* to use in the vector index, if any.</p>
|
|
620
620
|
* @public
|
|
621
621
|
*/
|
|
622
|
-
vectorSearchConfiguration?: VectorSearchConfiguration;
|
|
622
|
+
vectorSearchConfiguration?: VectorSearchConfiguration | undefined;
|
|
623
623
|
/**
|
|
624
624
|
* <p>The number of replicas in other AZs.</p>
|
|
625
625
|
* <p>Default: If not specified, the default value is 1.</p>
|
|
626
626
|
* @public
|
|
627
627
|
*/
|
|
628
|
-
replicaCount?: number;
|
|
628
|
+
replicaCount?: number | undefined;
|
|
629
629
|
/**
|
|
630
630
|
* <p>Specifies the KMS key used to encrypt data in the new graph.</p>
|
|
631
631
|
* @public
|
|
632
632
|
*/
|
|
633
|
-
kmsKeyIdentifier?: string;
|
|
633
|
+
kmsKeyIdentifier?: string | undefined;
|
|
634
634
|
/**
|
|
635
635
|
* <p>The ID of the source graph.</p>
|
|
636
636
|
* @public
|
|
637
637
|
*/
|
|
638
|
-
sourceSnapshotId?: string;
|
|
638
|
+
sourceSnapshotId?: string | undefined;
|
|
639
639
|
/**
|
|
640
640
|
* <p>A value that indicates whether the graph has deletion protection enabled.
|
|
641
641
|
* The graph can't be deleted when deletion protection is enabled.</p>
|
|
642
642
|
* @public
|
|
643
643
|
*/
|
|
644
|
-
deletionProtection?: boolean;
|
|
644
|
+
deletionProtection?: boolean | undefined;
|
|
645
645
|
/**
|
|
646
646
|
* <p>The build number of the graph software.</p>
|
|
647
647
|
* @public
|
|
648
648
|
*/
|
|
649
|
-
buildNumber?: string;
|
|
649
|
+
buildNumber?: string | undefined;
|
|
650
650
|
}
|
|
651
651
|
/**
|
|
652
652
|
* <p>A service quota was exceeded.</p>
|
|
@@ -659,22 +659,22 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
659
659
|
* <p>The identifier of the resource that exceeded quota.</p>
|
|
660
660
|
* @public
|
|
661
661
|
*/
|
|
662
|
-
resourceId?: string;
|
|
662
|
+
resourceId?: string | undefined;
|
|
663
663
|
/**
|
|
664
664
|
* <p>The type of the resource that exceeded quota. Ex: Graph, Snapshot</p>
|
|
665
665
|
* @public
|
|
666
666
|
*/
|
|
667
|
-
resourceType?: string;
|
|
667
|
+
resourceType?: string | undefined;
|
|
668
668
|
/**
|
|
669
669
|
* <p>The service code that exceeded quota.</p>
|
|
670
670
|
* @public
|
|
671
671
|
*/
|
|
672
|
-
serviceCode?: string;
|
|
672
|
+
serviceCode?: string | undefined;
|
|
673
673
|
/**
|
|
674
674
|
* <p>Service quota code of the resource for which quota was exceeded.</p>
|
|
675
675
|
* @public
|
|
676
676
|
*/
|
|
677
|
-
quotaCode?: string;
|
|
677
|
+
quotaCode?: string | undefined;
|
|
678
678
|
/**
|
|
679
679
|
* @internal
|
|
680
680
|
*/
|
|
@@ -720,62 +720,62 @@ export interface DeleteGraphOutput {
|
|
|
720
720
|
* <p>The status of the graph.</p>
|
|
721
721
|
* @public
|
|
722
722
|
*/
|
|
723
|
-
status?: GraphStatus;
|
|
723
|
+
status?: GraphStatus | undefined;
|
|
724
724
|
/**
|
|
725
725
|
* <p>The reason for the status of the graph.</p>
|
|
726
726
|
* @public
|
|
727
727
|
*/
|
|
728
|
-
statusReason?: string;
|
|
728
|
+
statusReason?: string | undefined;
|
|
729
729
|
/**
|
|
730
730
|
* <p>The time at which the graph was created.</p>
|
|
731
731
|
* @public
|
|
732
732
|
*/
|
|
733
|
-
createTime?: Date;
|
|
733
|
+
createTime?: Date | undefined;
|
|
734
734
|
/**
|
|
735
735
|
* <p>The number of memory-optimized Neptune Capacity Units (m-NCUs) allocated to the graph.</p>
|
|
736
736
|
* @public
|
|
737
737
|
*/
|
|
738
|
-
provisionedMemory?: number;
|
|
738
|
+
provisionedMemory?: number | undefined;
|
|
739
739
|
/**
|
|
740
740
|
* <p>The graph endpoint.</p>
|
|
741
741
|
* @public
|
|
742
742
|
*/
|
|
743
|
-
endpoint?: string;
|
|
743
|
+
endpoint?: string | undefined;
|
|
744
744
|
/**
|
|
745
745
|
* <p>If <code>true</code>, the graph has a public endpoint, otherwise not.</p>
|
|
746
746
|
* @public
|
|
747
747
|
*/
|
|
748
|
-
publicConnectivity?: boolean;
|
|
748
|
+
publicConnectivity?: boolean | undefined;
|
|
749
749
|
/**
|
|
750
750
|
* <p>Specifies the number of dimensions for vector embeddings loaded into the graph. Max = 65535</p>
|
|
751
751
|
* @public
|
|
752
752
|
*/
|
|
753
|
-
vectorSearchConfiguration?: VectorSearchConfiguration;
|
|
753
|
+
vectorSearchConfiguration?: VectorSearchConfiguration | undefined;
|
|
754
754
|
/**
|
|
755
755
|
* <p>The number of replicas for the graph.</p>
|
|
756
756
|
* @public
|
|
757
757
|
*/
|
|
758
|
-
replicaCount?: number;
|
|
758
|
+
replicaCount?: number | undefined;
|
|
759
759
|
/**
|
|
760
760
|
* <p>The ID of the KMS key used to encrypt and decrypt graph data.</p>
|
|
761
761
|
* @public
|
|
762
762
|
*/
|
|
763
|
-
kmsKeyIdentifier?: string;
|
|
763
|
+
kmsKeyIdentifier?: string | undefined;
|
|
764
764
|
/**
|
|
765
765
|
* <p>The ID of the snapshot from which the graph was created, if the graph was recovered from a snapshot.</p>
|
|
766
766
|
* @public
|
|
767
767
|
*/
|
|
768
|
-
sourceSnapshotId?: string;
|
|
768
|
+
sourceSnapshotId?: string | undefined;
|
|
769
769
|
/**
|
|
770
770
|
* <p>If <code>true</code>, deletion protection was enabled for the graph.</p>
|
|
771
771
|
* @public
|
|
772
772
|
*/
|
|
773
|
-
deletionProtection?: boolean;
|
|
773
|
+
deletionProtection?: boolean | undefined;
|
|
774
774
|
/**
|
|
775
775
|
* <p>The build number associated with the graph.</p>
|
|
776
776
|
* @public
|
|
777
777
|
*/
|
|
778
|
-
buildNumber?: string;
|
|
778
|
+
buildNumber?: string | undefined;
|
|
779
779
|
}
|
|
780
780
|
/**
|
|
781
781
|
* @public
|
|
@@ -810,62 +810,62 @@ export interface GetGraphOutput {
|
|
|
810
810
|
* <p>The status of the graph.</p>
|
|
811
811
|
* @public
|
|
812
812
|
*/
|
|
813
|
-
status?: GraphStatus;
|
|
813
|
+
status?: GraphStatus | undefined;
|
|
814
814
|
/**
|
|
815
815
|
* <p>The reason that the graph has this status.</p>
|
|
816
816
|
* @public
|
|
817
817
|
*/
|
|
818
|
-
statusReason?: string;
|
|
818
|
+
statusReason?: string | undefined;
|
|
819
819
|
/**
|
|
820
820
|
* <p>The time at which the graph was created.</p>
|
|
821
821
|
* @public
|
|
822
822
|
*/
|
|
823
|
-
createTime?: Date;
|
|
823
|
+
createTime?: Date | undefined;
|
|
824
824
|
/**
|
|
825
825
|
* <p>The number of memory-optimized Neptune Capacity Units (m-NCUs) allocated to the graph.</p>
|
|
826
826
|
* @public
|
|
827
827
|
*/
|
|
828
|
-
provisionedMemory?: number;
|
|
828
|
+
provisionedMemory?: number | undefined;
|
|
829
829
|
/**
|
|
830
830
|
* <p>The graph endpoint.</p>
|
|
831
831
|
* @public
|
|
832
832
|
*/
|
|
833
|
-
endpoint?: string;
|
|
833
|
+
endpoint?: string | undefined;
|
|
834
834
|
/**
|
|
835
835
|
* <p>If <code>true</code>, the graph has a public endpoint, otherwise not.</p>
|
|
836
836
|
* @public
|
|
837
837
|
*/
|
|
838
|
-
publicConnectivity?: boolean;
|
|
838
|
+
publicConnectivity?: boolean | undefined;
|
|
839
839
|
/**
|
|
840
840
|
* <p>Specifies the number of dimensions for vector embeddings loaded into the graph. Max = 65535</p>
|
|
841
841
|
* @public
|
|
842
842
|
*/
|
|
843
|
-
vectorSearchConfiguration?: VectorSearchConfiguration;
|
|
843
|
+
vectorSearchConfiguration?: VectorSearchConfiguration | undefined;
|
|
844
844
|
/**
|
|
845
845
|
* <p>The number of replicas for the graph.</p>
|
|
846
846
|
* @public
|
|
847
847
|
*/
|
|
848
|
-
replicaCount?: number;
|
|
848
|
+
replicaCount?: number | undefined;
|
|
849
849
|
/**
|
|
850
850
|
* <p>The ID of the KMS key used to encrypt and decrypt graph data.</p>
|
|
851
851
|
* @public
|
|
852
852
|
*/
|
|
853
|
-
kmsKeyIdentifier?: string;
|
|
853
|
+
kmsKeyIdentifier?: string | undefined;
|
|
854
854
|
/**
|
|
855
855
|
* <p>The ID of the snapshot from which the graph was created, if it was created from a snapshot.</p>
|
|
856
856
|
* @public
|
|
857
857
|
*/
|
|
858
|
-
sourceSnapshotId?: string;
|
|
858
|
+
sourceSnapshotId?: string | undefined;
|
|
859
859
|
/**
|
|
860
860
|
* <p>If <code>true</code>, deletion protection is enabled for the graph.</p>
|
|
861
861
|
* @public
|
|
862
862
|
*/
|
|
863
|
-
deletionProtection?: boolean;
|
|
863
|
+
deletionProtection?: boolean | undefined;
|
|
864
864
|
/**
|
|
865
865
|
* <p>The build number of the graph.</p>
|
|
866
866
|
* @public
|
|
867
867
|
*/
|
|
868
|
-
buildNumber?: string;
|
|
868
|
+
buildNumber?: string | undefined;
|
|
869
869
|
}
|
|
870
870
|
/**
|
|
871
871
|
* @public
|
|
@@ -878,7 +878,7 @@ export interface ListGraphsInput {
|
|
|
878
878
|
* that there are more results to retrieve.</p>
|
|
879
879
|
* @public
|
|
880
880
|
*/
|
|
881
|
-
nextToken?: string;
|
|
881
|
+
nextToken?: string | undefined;
|
|
882
882
|
/**
|
|
883
883
|
* <p>The total number of records to return in the command's output.</p>
|
|
884
884
|
* <p>If the total number of records available is more than the value specified,
|
|
@@ -888,7 +888,7 @@ export interface ListGraphsInput {
|
|
|
888
888
|
* outside of the Amazon CLI.</p>
|
|
889
889
|
* @public
|
|
890
890
|
*/
|
|
891
|
-
maxResults?: number;
|
|
891
|
+
maxResults?: number | undefined;
|
|
892
892
|
}
|
|
893
893
|
/**
|
|
894
894
|
* <p>Summary details about a graph.</p>
|
|
@@ -914,37 +914,37 @@ export interface GraphSummary {
|
|
|
914
914
|
* <p>The status of the graph.</p>
|
|
915
915
|
* @public
|
|
916
916
|
*/
|
|
917
|
-
status?: GraphStatus;
|
|
917
|
+
status?: GraphStatus | undefined;
|
|
918
918
|
/**
|
|
919
919
|
* <p>The number of memory-optimized Neptune Capacity Units (m-NCUs) allocated to the graph.</p>
|
|
920
920
|
* @public
|
|
921
921
|
*/
|
|
922
|
-
provisionedMemory?: number;
|
|
922
|
+
provisionedMemory?: number | undefined;
|
|
923
923
|
/**
|
|
924
924
|
* <p>If <code>true</code>, the graph has a public endpoint, otherwise not.</p>
|
|
925
925
|
* @public
|
|
926
926
|
*/
|
|
927
|
-
publicConnectivity?: boolean;
|
|
927
|
+
publicConnectivity?: boolean | undefined;
|
|
928
928
|
/**
|
|
929
929
|
* <p>The graph endpoint.</p>
|
|
930
930
|
* @public
|
|
931
931
|
*/
|
|
932
|
-
endpoint?: string;
|
|
932
|
+
endpoint?: string | undefined;
|
|
933
933
|
/**
|
|
934
934
|
* <p>The number of replicas for the graph.</p>
|
|
935
935
|
* @public
|
|
936
936
|
*/
|
|
937
|
-
replicaCount?: number;
|
|
937
|
+
replicaCount?: number | undefined;
|
|
938
938
|
/**
|
|
939
939
|
* <p>The ID of the KMS key used to encrypt and decrypt graph data.</p>
|
|
940
940
|
* @public
|
|
941
941
|
*/
|
|
942
|
-
kmsKeyIdentifier?: string;
|
|
942
|
+
kmsKeyIdentifier?: string | undefined;
|
|
943
943
|
/**
|
|
944
944
|
* <p>If <code>true</code>, deletion protection is enabled for the graph.</p>
|
|
945
945
|
* @public
|
|
946
946
|
*/
|
|
947
|
-
deletionProtection?: boolean;
|
|
947
|
+
deletionProtection?: boolean | undefined;
|
|
948
948
|
}
|
|
949
949
|
/**
|
|
950
950
|
* @public
|
|
@@ -962,7 +962,7 @@ export interface ListGraphsOutput {
|
|
|
962
962
|
* that there are more results to retrieve.</p>
|
|
963
963
|
* @public
|
|
964
964
|
*/
|
|
965
|
-
nextToken?: string;
|
|
965
|
+
nextToken?: string | undefined;
|
|
966
966
|
}
|
|
967
967
|
/**
|
|
968
968
|
* @public
|
|
@@ -1004,62 +1004,62 @@ export interface ResetGraphOutput {
|
|
|
1004
1004
|
* <p>The status of the graph.</p>
|
|
1005
1005
|
* @public
|
|
1006
1006
|
*/
|
|
1007
|
-
status?: GraphStatus;
|
|
1007
|
+
status?: GraphStatus | undefined;
|
|
1008
1008
|
/**
|
|
1009
1009
|
* <p>The reason that the graph has this status.</p>
|
|
1010
1010
|
* @public
|
|
1011
1011
|
*/
|
|
1012
|
-
statusReason?: string;
|
|
1012
|
+
statusReason?: string | undefined;
|
|
1013
1013
|
/**
|
|
1014
1014
|
* <p>The time at which the graph was created.</p>
|
|
1015
1015
|
* @public
|
|
1016
1016
|
*/
|
|
1017
|
-
createTime?: Date;
|
|
1017
|
+
createTime?: Date | undefined;
|
|
1018
1018
|
/**
|
|
1019
1019
|
* <p>The number of memory-optimized Neptune Capacity Units (m-NCUs) allocated to the graph.</p>
|
|
1020
1020
|
* @public
|
|
1021
1021
|
*/
|
|
1022
|
-
provisionedMemory?: number;
|
|
1022
|
+
provisionedMemory?: number | undefined;
|
|
1023
1023
|
/**
|
|
1024
1024
|
* <p>The graph endpoint.</p>
|
|
1025
1025
|
* @public
|
|
1026
1026
|
*/
|
|
1027
|
-
endpoint?: string;
|
|
1027
|
+
endpoint?: string | undefined;
|
|
1028
1028
|
/**
|
|
1029
1029
|
* <p>If <code>true</code>, the graph has a public endpoint, otherwise not.</p>
|
|
1030
1030
|
* @public
|
|
1031
1031
|
*/
|
|
1032
|
-
publicConnectivity?: boolean;
|
|
1032
|
+
publicConnectivity?: boolean | undefined;
|
|
1033
1033
|
/**
|
|
1034
1034
|
* <p>Specifies the number of dimensions for vector embeddings loaded into the graph. Max = 65535</p>
|
|
1035
1035
|
* @public
|
|
1036
1036
|
*/
|
|
1037
|
-
vectorSearchConfiguration?: VectorSearchConfiguration;
|
|
1037
|
+
vectorSearchConfiguration?: VectorSearchConfiguration | undefined;
|
|
1038
1038
|
/**
|
|
1039
1039
|
* <p>The number of replicas for the graph.</p>
|
|
1040
1040
|
* @public
|
|
1041
1041
|
*/
|
|
1042
|
-
replicaCount?: number;
|
|
1042
|
+
replicaCount?: number | undefined;
|
|
1043
1043
|
/**
|
|
1044
1044
|
* <p>The ID of the KMS key used to encrypt and decrypt graph data.</p>
|
|
1045
1045
|
* @public
|
|
1046
1046
|
*/
|
|
1047
|
-
kmsKeyIdentifier?: string;
|
|
1047
|
+
kmsKeyIdentifier?: string | undefined;
|
|
1048
1048
|
/**
|
|
1049
1049
|
* <p>The ID of the snapshot from which the graph was created, if any.</p>
|
|
1050
1050
|
* @public
|
|
1051
1051
|
*/
|
|
1052
|
-
sourceSnapshotId?: string;
|
|
1052
|
+
sourceSnapshotId?: string | undefined;
|
|
1053
1053
|
/**
|
|
1054
1054
|
* <p>If <code>true</code>, deletion protection is enabled for the graph.</p>
|
|
1055
1055
|
* @public
|
|
1056
1056
|
*/
|
|
1057
|
-
deletionProtection?: boolean;
|
|
1057
|
+
deletionProtection?: boolean | undefined;
|
|
1058
1058
|
/**
|
|
1059
1059
|
* <p>The build number of the graph.</p>
|
|
1060
1060
|
* @public
|
|
1061
1061
|
*/
|
|
1062
|
-
buildNumber?: string;
|
|
1062
|
+
buildNumber?: string | undefined;
|
|
1063
1063
|
}
|
|
1064
1064
|
/**
|
|
1065
1065
|
* @public
|
|
@@ -1083,19 +1083,19 @@ export interface RestoreGraphFromSnapshotInput {
|
|
|
1083
1083
|
* <p>Min = 128</p>
|
|
1084
1084
|
* @public
|
|
1085
1085
|
*/
|
|
1086
|
-
provisionedMemory?: number;
|
|
1086
|
+
provisionedMemory?: number | undefined;
|
|
1087
1087
|
/**
|
|
1088
1088
|
* <p>A value that indicates whether the graph has deletion protection enabled.
|
|
1089
1089
|
* The graph can't be deleted when deletion protection is enabled.</p>
|
|
1090
1090
|
* @public
|
|
1091
1091
|
*/
|
|
1092
|
-
deletionProtection?: boolean;
|
|
1092
|
+
deletionProtection?: boolean | undefined;
|
|
1093
1093
|
/**
|
|
1094
1094
|
* <p>Adds metadata tags to the snapshot.
|
|
1095
1095
|
* These tags can also be used with cost allocation reporting, or used in a Condition statement in an IAM policy.</p>
|
|
1096
1096
|
* @public
|
|
1097
1097
|
*/
|
|
1098
|
-
tags?: Record<string, string
|
|
1098
|
+
tags?: Record<string, string> | undefined;
|
|
1099
1099
|
/**
|
|
1100
1100
|
* <p>The number of replicas in other AZs. Min =0, Max = 2, Default =1</p>
|
|
1101
1101
|
* <important>
|
|
@@ -1105,13 +1105,13 @@ export interface RestoreGraphFromSnapshotInput {
|
|
|
1105
1105
|
* </important>
|
|
1106
1106
|
* @public
|
|
1107
1107
|
*/
|
|
1108
|
-
replicaCount?: number;
|
|
1108
|
+
replicaCount?: number | undefined;
|
|
1109
1109
|
/**
|
|
1110
1110
|
* <p>Specifies whether or not the graph can be reachable over the internet. All access to graphs is IAM authenticated.
|
|
1111
1111
|
* (<code>true</code> to enable, or <code>false</code> to disable).</p>
|
|
1112
1112
|
* @public
|
|
1113
1113
|
*/
|
|
1114
|
-
publicConnectivity?: boolean;
|
|
1114
|
+
publicConnectivity?: boolean | undefined;
|
|
1115
1115
|
}
|
|
1116
1116
|
/**
|
|
1117
1117
|
* @public
|
|
@@ -1136,62 +1136,62 @@ export interface RestoreGraphFromSnapshotOutput {
|
|
|
1136
1136
|
* <p>The status of the graph.</p>
|
|
1137
1137
|
* @public
|
|
1138
1138
|
*/
|
|
1139
|
-
status?: GraphStatus;
|
|
1139
|
+
status?: GraphStatus | undefined;
|
|
1140
1140
|
/**
|
|
1141
1141
|
* <p>The reason that the graph has this status.</p>
|
|
1142
1142
|
* @public
|
|
1143
1143
|
*/
|
|
1144
|
-
statusReason?: string;
|
|
1144
|
+
statusReason?: string | undefined;
|
|
1145
1145
|
/**
|
|
1146
1146
|
* <p>The time at which the graph was created.</p>
|
|
1147
1147
|
* @public
|
|
1148
1148
|
*/
|
|
1149
|
-
createTime?: Date;
|
|
1149
|
+
createTime?: Date | undefined;
|
|
1150
1150
|
/**
|
|
1151
1151
|
* <p>The number of memory-optimized Neptune Capacity Units (m-NCUs) allocated to the graph.</p>
|
|
1152
1152
|
* @public
|
|
1153
1153
|
*/
|
|
1154
|
-
provisionedMemory?: number;
|
|
1154
|
+
provisionedMemory?: number | undefined;
|
|
1155
1155
|
/**
|
|
1156
1156
|
* <p>The graph endpoint.</p>
|
|
1157
1157
|
* @public
|
|
1158
1158
|
*/
|
|
1159
|
-
endpoint?: string;
|
|
1159
|
+
endpoint?: string | undefined;
|
|
1160
1160
|
/**
|
|
1161
1161
|
* <p>If <code>true</code>, the graph has a public endpoint, otherwise not.</p>
|
|
1162
1162
|
* @public
|
|
1163
1163
|
*/
|
|
1164
|
-
publicConnectivity?: boolean;
|
|
1164
|
+
publicConnectivity?: boolean | undefined;
|
|
1165
1165
|
/**
|
|
1166
1166
|
* <p>Specifies the number of dimensions for vector embeddings loaded into the graph. Max = 65535</p>
|
|
1167
1167
|
* @public
|
|
1168
1168
|
*/
|
|
1169
|
-
vectorSearchConfiguration?: VectorSearchConfiguration;
|
|
1169
|
+
vectorSearchConfiguration?: VectorSearchConfiguration | undefined;
|
|
1170
1170
|
/**
|
|
1171
1171
|
* <p>The number of replicas for the graph.</p>
|
|
1172
1172
|
* @public
|
|
1173
1173
|
*/
|
|
1174
|
-
replicaCount?: number;
|
|
1174
|
+
replicaCount?: number | undefined;
|
|
1175
1175
|
/**
|
|
1176
1176
|
* <p>The ID of the KMS key used to encrypt and decrypt graph data.</p>
|
|
1177
1177
|
* @public
|
|
1178
1178
|
*/
|
|
1179
|
-
kmsKeyIdentifier?: string;
|
|
1179
|
+
kmsKeyIdentifier?: string | undefined;
|
|
1180
1180
|
/**
|
|
1181
1181
|
* <p>The ID of the snapshot from which the graph was created, if any.</p>
|
|
1182
1182
|
* @public
|
|
1183
1183
|
*/
|
|
1184
|
-
sourceSnapshotId?: string;
|
|
1184
|
+
sourceSnapshotId?: string | undefined;
|
|
1185
1185
|
/**
|
|
1186
1186
|
* <p>If <code>true</code>, deletion protection is enabled for the graph.</p>
|
|
1187
1187
|
* @public
|
|
1188
1188
|
*/
|
|
1189
|
-
deletionProtection?: boolean;
|
|
1189
|
+
deletionProtection?: boolean | undefined;
|
|
1190
1190
|
/**
|
|
1191
1191
|
* <p>The build number of the graph.</p>
|
|
1192
1192
|
* @public
|
|
1193
1193
|
*/
|
|
1194
|
-
buildNumber?: string;
|
|
1194
|
+
buildNumber?: string | undefined;
|
|
1195
1195
|
}
|
|
1196
1196
|
/**
|
|
1197
1197
|
* @public
|
|
@@ -1207,19 +1207,19 @@ export interface UpdateGraphInput {
|
|
|
1207
1207
|
* (<code>true</code> to enable, or <code>false</code> to disable.</p>
|
|
1208
1208
|
* @public
|
|
1209
1209
|
*/
|
|
1210
|
-
publicConnectivity?: boolean;
|
|
1210
|
+
publicConnectivity?: boolean | undefined;
|
|
1211
1211
|
/**
|
|
1212
1212
|
* <p>The provisioned memory-optimized Neptune Capacity Units (m-NCUs) to use for the graph.</p>
|
|
1213
1213
|
* <p>Min = 128</p>
|
|
1214
1214
|
* @public
|
|
1215
1215
|
*/
|
|
1216
|
-
provisionedMemory?: number;
|
|
1216
|
+
provisionedMemory?: number | undefined;
|
|
1217
1217
|
/**
|
|
1218
1218
|
* <p>A value that indicates whether the graph has deletion protection enabled.
|
|
1219
1219
|
* The graph can't be deleted when deletion protection is enabled.</p>
|
|
1220
1220
|
* @public
|
|
1221
1221
|
*/
|
|
1222
|
-
deletionProtection?: boolean;
|
|
1222
|
+
deletionProtection?: boolean | undefined;
|
|
1223
1223
|
}
|
|
1224
1224
|
/**
|
|
1225
1225
|
* @public
|
|
@@ -1244,62 +1244,62 @@ export interface UpdateGraphOutput {
|
|
|
1244
1244
|
* <p>The status of the graph.</p>
|
|
1245
1245
|
* @public
|
|
1246
1246
|
*/
|
|
1247
|
-
status?: GraphStatus;
|
|
1247
|
+
status?: GraphStatus | undefined;
|
|
1248
1248
|
/**
|
|
1249
1249
|
* <p>The reason that the graph has this status.</p>
|
|
1250
1250
|
* @public
|
|
1251
1251
|
*/
|
|
1252
|
-
statusReason?: string;
|
|
1252
|
+
statusReason?: string | undefined;
|
|
1253
1253
|
/**
|
|
1254
1254
|
* <p>The time at which the graph was created.</p>
|
|
1255
1255
|
* @public
|
|
1256
1256
|
*/
|
|
1257
|
-
createTime?: Date;
|
|
1257
|
+
createTime?: Date | undefined;
|
|
1258
1258
|
/**
|
|
1259
1259
|
* <p>The number of memory-optimized Neptune Capacity Units (m-NCUs) allocated to the graph.</p>
|
|
1260
1260
|
* @public
|
|
1261
1261
|
*/
|
|
1262
|
-
provisionedMemory?: number;
|
|
1262
|
+
provisionedMemory?: number | undefined;
|
|
1263
1263
|
/**
|
|
1264
1264
|
* <p>The graph endpoint.</p>
|
|
1265
1265
|
* @public
|
|
1266
1266
|
*/
|
|
1267
|
-
endpoint?: string;
|
|
1267
|
+
endpoint?: string | undefined;
|
|
1268
1268
|
/**
|
|
1269
1269
|
* <p>If <code>true</code>, the graph has a public endpoint, otherwise not.</p>
|
|
1270
1270
|
* @public
|
|
1271
1271
|
*/
|
|
1272
|
-
publicConnectivity?: boolean;
|
|
1272
|
+
publicConnectivity?: boolean | undefined;
|
|
1273
1273
|
/**
|
|
1274
1274
|
* <p>Specifies the number of dimensions for vector embeddings loaded into the graph. Max = 65535</p>
|
|
1275
1275
|
* @public
|
|
1276
1276
|
*/
|
|
1277
|
-
vectorSearchConfiguration?: VectorSearchConfiguration;
|
|
1277
|
+
vectorSearchConfiguration?: VectorSearchConfiguration | undefined;
|
|
1278
1278
|
/**
|
|
1279
1279
|
* <p>The number of replicas for the graph.</p>
|
|
1280
1280
|
* @public
|
|
1281
1281
|
*/
|
|
1282
|
-
replicaCount?: number;
|
|
1282
|
+
replicaCount?: number | undefined;
|
|
1283
1283
|
/**
|
|
1284
1284
|
* <p>The ID of the KMS key used to encrypt and decrypt graph data.</p>
|
|
1285
1285
|
* @public
|
|
1286
1286
|
*/
|
|
1287
|
-
kmsKeyIdentifier?: string;
|
|
1287
|
+
kmsKeyIdentifier?: string | undefined;
|
|
1288
1288
|
/**
|
|
1289
1289
|
* <p>The ID of the snapshot from which the graph was created, if any.</p>
|
|
1290
1290
|
* @public
|
|
1291
1291
|
*/
|
|
1292
|
-
sourceSnapshotId?: string;
|
|
1292
|
+
sourceSnapshotId?: string | undefined;
|
|
1293
1293
|
/**
|
|
1294
1294
|
* <p>If <code>true</code>, deletion protection is enabled for the graph.</p>
|
|
1295
1295
|
* @public
|
|
1296
1296
|
*/
|
|
1297
|
-
deletionProtection?: boolean;
|
|
1297
|
+
deletionProtection?: boolean | undefined;
|
|
1298
1298
|
/**
|
|
1299
1299
|
* <p>The build number of the graph.</p>
|
|
1300
1300
|
* @public
|
|
1301
1301
|
*/
|
|
1302
|
-
buildNumber?: string;
|
|
1302
|
+
buildNumber?: string | undefined;
|
|
1303
1303
|
}
|
|
1304
1304
|
/**
|
|
1305
1305
|
* @public
|
|
@@ -1333,7 +1333,7 @@ export interface ListQueriesInput {
|
|
|
1333
1333
|
* <p>Filtered list of queries based on state.</p>
|
|
1334
1334
|
* @public
|
|
1335
1335
|
*/
|
|
1336
|
-
state?: QueryStateInput;
|
|
1336
|
+
state?: QueryStateInput | undefined;
|
|
1337
1337
|
}
|
|
1338
1338
|
/**
|
|
1339
1339
|
* <p>Details of the query listed.</p>
|
|
@@ -1344,27 +1344,27 @@ export interface QuerySummary {
|
|
|
1344
1344
|
* <p>A string representation of the id of the query.</p>
|
|
1345
1345
|
* @public
|
|
1346
1346
|
*/
|
|
1347
|
-
id?: string;
|
|
1347
|
+
id?: string | undefined;
|
|
1348
1348
|
/**
|
|
1349
1349
|
* <p>The actual query text. The <code>queryString</code> may be truncated if the actual query string is too long.</p>
|
|
1350
1350
|
* @public
|
|
1351
1351
|
*/
|
|
1352
|
-
queryString?: string;
|
|
1352
|
+
queryString?: string | undefined;
|
|
1353
1353
|
/**
|
|
1354
1354
|
* <p>The amount of time, in milliseconds, the query has waited in the queue before being picked up by a worker thread.</p>
|
|
1355
1355
|
* @public
|
|
1356
1356
|
*/
|
|
1357
|
-
waited?: number;
|
|
1357
|
+
waited?: number | undefined;
|
|
1358
1358
|
/**
|
|
1359
1359
|
* <p>The running time of the query, in milliseconds.</p>
|
|
1360
1360
|
* @public
|
|
1361
1361
|
*/
|
|
1362
|
-
elapsed?: number;
|
|
1362
|
+
elapsed?: number | undefined;
|
|
1363
1363
|
/**
|
|
1364
1364
|
* <p>State of the query.</p>
|
|
1365
1365
|
* @public
|
|
1366
1366
|
*/
|
|
1367
|
-
state?: QueryState;
|
|
1367
|
+
state?: QueryState | undefined;
|
|
1368
1368
|
}
|
|
1369
1369
|
/**
|
|
1370
1370
|
* @public
|
|
@@ -1394,7 +1394,7 @@ export interface ListTagsForResourceOutput {
|
|
|
1394
1394
|
* <p>The list of metadata tags associated with the resource.</p>
|
|
1395
1395
|
* @public
|
|
1396
1396
|
*/
|
|
1397
|
-
tags?: Record<string, string
|
|
1397
|
+
tags?: Record<string, string> | undefined;
|
|
1398
1398
|
}
|
|
1399
1399
|
/**
|
|
1400
1400
|
* @public
|
|
@@ -1409,17 +1409,17 @@ export interface CreatePrivateGraphEndpointInput {
|
|
|
1409
1409
|
* <p> The VPC in which the private graph endpoint needs to be created.</p>
|
|
1410
1410
|
* @public
|
|
1411
1411
|
*/
|
|
1412
|
-
vpcId?: string;
|
|
1412
|
+
vpcId?: string | undefined;
|
|
1413
1413
|
/**
|
|
1414
1414
|
* <p>Subnets in which private graph endpoint ENIs are created.</p>
|
|
1415
1415
|
* @public
|
|
1416
1416
|
*/
|
|
1417
|
-
subnetIds?: string[];
|
|
1417
|
+
subnetIds?: string[] | undefined;
|
|
1418
1418
|
/**
|
|
1419
1419
|
* <p>Security groups to be attached to the private graph endpoint..</p>
|
|
1420
1420
|
* @public
|
|
1421
1421
|
*/
|
|
1422
|
-
vpcSecurityGroupIds?: string[];
|
|
1422
|
+
vpcSecurityGroupIds?: string[] | undefined;
|
|
1423
1423
|
}
|
|
1424
1424
|
/**
|
|
1425
1425
|
* @public
|
|
@@ -1458,7 +1458,7 @@ export interface CreatePrivateGraphEndpointOutput {
|
|
|
1458
1458
|
* <p>Endpoint ID of the prviate grpah endpoint.</p>
|
|
1459
1459
|
* @public
|
|
1460
1460
|
*/
|
|
1461
|
-
vpcEndpointId?: string;
|
|
1461
|
+
vpcEndpointId?: string | undefined;
|
|
1462
1462
|
}
|
|
1463
1463
|
/**
|
|
1464
1464
|
* @public
|
|
@@ -1498,7 +1498,7 @@ export interface DeletePrivateGraphEndpointOutput {
|
|
|
1498
1498
|
* <p>The ID of the VPC endpoint that was deleted.</p>
|
|
1499
1499
|
* @public
|
|
1500
1500
|
*/
|
|
1501
|
-
vpcEndpointId?: string;
|
|
1501
|
+
vpcEndpointId?: string | undefined;
|
|
1502
1502
|
}
|
|
1503
1503
|
/**
|
|
1504
1504
|
* @public
|
|
@@ -1538,7 +1538,7 @@ export interface GetPrivateGraphEndpointOutput {
|
|
|
1538
1538
|
* <p>The ID of the private endpoint.</p>
|
|
1539
1539
|
* @public
|
|
1540
1540
|
*/
|
|
1541
|
-
vpcEndpointId?: string;
|
|
1541
|
+
vpcEndpointId?: string | undefined;
|
|
1542
1542
|
}
|
|
1543
1543
|
/**
|
|
1544
1544
|
* @public
|
|
@@ -1556,7 +1556,7 @@ export interface ListPrivateGraphEndpointsInput {
|
|
|
1556
1556
|
* that there are more results to retrieve.</p>
|
|
1557
1557
|
* @public
|
|
1558
1558
|
*/
|
|
1559
|
-
nextToken?: string;
|
|
1559
|
+
nextToken?: string | undefined;
|
|
1560
1560
|
/**
|
|
1561
1561
|
* <p>The total number of records to return in the command's output.</p>
|
|
1562
1562
|
* <p>If the total number of records available is more than the value specified,
|
|
@@ -1566,7 +1566,7 @@ export interface ListPrivateGraphEndpointsInput {
|
|
|
1566
1566
|
* outside of the Amazon CLI.</p>
|
|
1567
1567
|
* @public
|
|
1568
1568
|
*/
|
|
1569
|
-
maxResults?: number;
|
|
1569
|
+
maxResults?: number | undefined;
|
|
1570
1570
|
}
|
|
1571
1571
|
/**
|
|
1572
1572
|
* <p>Details about a private graph endpoint.</p>
|
|
@@ -1592,7 +1592,7 @@ export interface PrivateGraphEndpointSummary {
|
|
|
1592
1592
|
* <p>The ID of the VPC endpoint.</p>
|
|
1593
1593
|
* @public
|
|
1594
1594
|
*/
|
|
1595
|
-
vpcEndpointId?: string;
|
|
1595
|
+
vpcEndpointId?: string | undefined;
|
|
1596
1596
|
}
|
|
1597
1597
|
/**
|
|
1598
1598
|
* @public
|
|
@@ -1610,7 +1610,7 @@ export interface ListPrivateGraphEndpointsOutput {
|
|
|
1610
1610
|
* that there are more results to retrieve.</p>
|
|
1611
1611
|
* @public
|
|
1612
1612
|
*/
|
|
1613
|
-
nextToken?: string;
|
|
1613
|
+
nextToken?: string | undefined;
|
|
1614
1614
|
}
|
|
1615
1615
|
/**
|
|
1616
1616
|
* @public
|
|
@@ -1634,7 +1634,7 @@ export interface CreateGraphSnapshotInput {
|
|
|
1634
1634
|
* These tags can also be used with cost allocation reporting, or used in a Condition statement in an IAM policy.</p>
|
|
1635
1635
|
* @public
|
|
1636
1636
|
*/
|
|
1637
|
-
tags?: Record<string, string
|
|
1637
|
+
tags?: Record<string, string> | undefined;
|
|
1638
1638
|
}
|
|
1639
1639
|
/**
|
|
1640
1640
|
* @public
|
|
@@ -1673,22 +1673,22 @@ export interface CreateGraphSnapshotOutput {
|
|
|
1673
1673
|
* <p>The Id of the Neptune Analytics graph from which the snapshot is created.</p>
|
|
1674
1674
|
* @public
|
|
1675
1675
|
*/
|
|
1676
|
-
sourceGraphId?: string;
|
|
1676
|
+
sourceGraphId?: string | undefined;
|
|
1677
1677
|
/**
|
|
1678
1678
|
* <p>The snapshot creation time</p>
|
|
1679
1679
|
* @public
|
|
1680
1680
|
*/
|
|
1681
|
-
snapshotCreateTime?: Date;
|
|
1681
|
+
snapshotCreateTime?: Date | undefined;
|
|
1682
1682
|
/**
|
|
1683
1683
|
* <p>The current state of the snapshot.</p>
|
|
1684
1684
|
* @public
|
|
1685
1685
|
*/
|
|
1686
|
-
status?: SnapshotStatus;
|
|
1686
|
+
status?: SnapshotStatus | undefined;
|
|
1687
1687
|
/**
|
|
1688
1688
|
* <p>The ID of the KMS key used to encrypt and decrypt graph data.</p>
|
|
1689
1689
|
* @public
|
|
1690
1690
|
*/
|
|
1691
|
-
kmsKeyIdentifier?: string;
|
|
1691
|
+
kmsKeyIdentifier?: string | undefined;
|
|
1692
1692
|
}
|
|
1693
1693
|
/**
|
|
1694
1694
|
* @public
|
|
@@ -1726,22 +1726,22 @@ export interface DeleteGraphSnapshotOutput {
|
|
|
1726
1726
|
* <p>The graph identifier for the graph from which the snapshot was created.</p>
|
|
1727
1727
|
* @public
|
|
1728
1728
|
*/
|
|
1729
|
-
sourceGraphId?: string;
|
|
1729
|
+
sourceGraphId?: string | undefined;
|
|
1730
1730
|
/**
|
|
1731
1731
|
* <p>The time when the snapshot was created.</p>
|
|
1732
1732
|
* @public
|
|
1733
1733
|
*/
|
|
1734
|
-
snapshotCreateTime?: Date;
|
|
1734
|
+
snapshotCreateTime?: Date | undefined;
|
|
1735
1735
|
/**
|
|
1736
1736
|
* <p>The status of the graph snapshot.</p>
|
|
1737
1737
|
* @public
|
|
1738
1738
|
*/
|
|
1739
|
-
status?: SnapshotStatus;
|
|
1739
|
+
status?: SnapshotStatus | undefined;
|
|
1740
1740
|
/**
|
|
1741
1741
|
* <p>The ID of the KMS key used to encrypt and decrypt the snapshot.</p>
|
|
1742
1742
|
* @public
|
|
1743
1743
|
*/
|
|
1744
|
-
kmsKeyIdentifier?: string;
|
|
1744
|
+
kmsKeyIdentifier?: string | undefined;
|
|
1745
1745
|
}
|
|
1746
1746
|
/**
|
|
1747
1747
|
* @public
|
|
@@ -1779,22 +1779,22 @@ export interface GetGraphSnapshotOutput {
|
|
|
1779
1779
|
* <p>The graph identifier for the graph for which a snapshot is to be created.</p>
|
|
1780
1780
|
* @public
|
|
1781
1781
|
*/
|
|
1782
|
-
sourceGraphId?: string;
|
|
1782
|
+
sourceGraphId?: string | undefined;
|
|
1783
1783
|
/**
|
|
1784
1784
|
* <p>The time when the snapshot was created.</p>
|
|
1785
1785
|
* @public
|
|
1786
1786
|
*/
|
|
1787
|
-
snapshotCreateTime?: Date;
|
|
1787
|
+
snapshotCreateTime?: Date | undefined;
|
|
1788
1788
|
/**
|
|
1789
1789
|
* <p>The status of the graph snapshot.</p>
|
|
1790
1790
|
* @public
|
|
1791
1791
|
*/
|
|
1792
|
-
status?: SnapshotStatus;
|
|
1792
|
+
status?: SnapshotStatus | undefined;
|
|
1793
1793
|
/**
|
|
1794
1794
|
* <p>The ID of the KMS key used to encrypt and decrypt the snapshot.</p>
|
|
1795
1795
|
* @public
|
|
1796
1796
|
*/
|
|
1797
|
-
kmsKeyIdentifier?: string;
|
|
1797
|
+
kmsKeyIdentifier?: string | undefined;
|
|
1798
1798
|
}
|
|
1799
1799
|
/**
|
|
1800
1800
|
* @public
|
|
@@ -1804,7 +1804,7 @@ export interface ListGraphSnapshotsInput {
|
|
|
1804
1804
|
* <p>The unique identifier of the Neptune Analytics graph.</p>
|
|
1805
1805
|
* @public
|
|
1806
1806
|
*/
|
|
1807
|
-
graphIdentifier?: string;
|
|
1807
|
+
graphIdentifier?: string | undefined;
|
|
1808
1808
|
/**
|
|
1809
1809
|
* <p>Pagination token used to paginate output.</p>
|
|
1810
1810
|
* <p>When this value is provided as input, the service returns results from where
|
|
@@ -1812,7 +1812,7 @@ export interface ListGraphSnapshotsInput {
|
|
|
1812
1812
|
* that there are more results to retrieve.</p>
|
|
1813
1813
|
* @public
|
|
1814
1814
|
*/
|
|
1815
|
-
nextToken?: string;
|
|
1815
|
+
nextToken?: string | undefined;
|
|
1816
1816
|
/**
|
|
1817
1817
|
* <p>The total number of records to return in the command's output.</p>
|
|
1818
1818
|
* <p>If the total number of records available is more than the value specified,
|
|
@@ -1822,7 +1822,7 @@ export interface ListGraphSnapshotsInput {
|
|
|
1822
1822
|
* outside of the Amazon CLI.</p>
|
|
1823
1823
|
* @public
|
|
1824
1824
|
*/
|
|
1825
|
-
maxResults?: number;
|
|
1825
|
+
maxResults?: number | undefined;
|
|
1826
1826
|
}
|
|
1827
1827
|
/**
|
|
1828
1828
|
* <p>Details about a graph snapshot.</p>
|
|
@@ -1851,22 +1851,22 @@ export interface GraphSnapshotSummary {
|
|
|
1851
1851
|
* <p>The graph identifier for the graph for which a snapshot is to be created.</p>
|
|
1852
1852
|
* @public
|
|
1853
1853
|
*/
|
|
1854
|
-
sourceGraphId?: string;
|
|
1854
|
+
sourceGraphId?: string | undefined;
|
|
1855
1855
|
/**
|
|
1856
1856
|
* <p>The time when the snapshot was created.</p>
|
|
1857
1857
|
* @public
|
|
1858
1858
|
*/
|
|
1859
|
-
snapshotCreateTime?: Date;
|
|
1859
|
+
snapshotCreateTime?: Date | undefined;
|
|
1860
1860
|
/**
|
|
1861
1861
|
* <p>The status of the graph snapshot.</p>
|
|
1862
1862
|
* @public
|
|
1863
1863
|
*/
|
|
1864
|
-
status?: SnapshotStatus;
|
|
1864
|
+
status?: SnapshotStatus | undefined;
|
|
1865
1865
|
/**
|
|
1866
1866
|
* <p>The ID of the KMS key used to encrypt and decrypt the snapshot.</p>
|
|
1867
1867
|
* @public
|
|
1868
1868
|
*/
|
|
1869
|
-
kmsKeyIdentifier?: string;
|
|
1869
|
+
kmsKeyIdentifier?: string | undefined;
|
|
1870
1870
|
}
|
|
1871
1871
|
/**
|
|
1872
1872
|
* @public
|
|
@@ -1884,7 +1884,7 @@ export interface ListGraphSnapshotsOutput {
|
|
|
1884
1884
|
* that there are more results to retrieve.</p>
|
|
1885
1885
|
* @public
|
|
1886
1886
|
*/
|
|
1887
|
-
nextToken?: string;
|
|
1887
|
+
nextToken?: string | undefined;
|
|
1888
1888
|
}
|
|
1889
1889
|
/**
|
|
1890
1890
|
* @public
|
|
@@ -1972,7 +1972,7 @@ export interface CancelImportTaskOutput {
|
|
|
1972
1972
|
* <p>The unique identifier of the Neptune Analytics graph.</p>
|
|
1973
1973
|
* @public
|
|
1974
1974
|
*/
|
|
1975
|
-
graphId?: string;
|
|
1975
|
+
graphId?: string | undefined;
|
|
1976
1976
|
/**
|
|
1977
1977
|
* <p>The unique identifier of the import task.</p>
|
|
1978
1978
|
* @public
|
|
@@ -1991,7 +1991,7 @@ export interface CancelImportTaskOutput {
|
|
|
1991
1991
|
* load format</a>.</p>
|
|
1992
1992
|
* @public
|
|
1993
1993
|
*/
|
|
1994
|
-
format?: Format;
|
|
1994
|
+
format?: Format | undefined;
|
|
1995
1995
|
/**
|
|
1996
1996
|
* <p>The ARN of the IAM role that will allow access to the data that is to be imported.</p>
|
|
1997
1997
|
* @public
|
|
@@ -2038,14 +2038,14 @@ export interface NeptuneImportOptions {
|
|
|
2038
2038
|
* imported into Neptune Analytics when preserveDefaultVertexLabels is set to false.</p>
|
|
2039
2039
|
* @public
|
|
2040
2040
|
*/
|
|
2041
|
-
preserveDefaultVertexLabels?: boolean;
|
|
2041
|
+
preserveDefaultVertexLabels?: boolean | undefined;
|
|
2042
2042
|
/**
|
|
2043
2043
|
* <p>Neptune Analytics currently does not support user defined edge ids. The edge ids are not imported by
|
|
2044
2044
|
* default. They are imported if <i>preserveEdgeIds</i> is set to true, and ids are stored as
|
|
2045
2045
|
* properties on the relationships with the property name <i>neptuneEdgeId</i>.</p>
|
|
2046
2046
|
* @public
|
|
2047
2047
|
*/
|
|
2048
|
-
preserveEdgeIds?: boolean;
|
|
2048
|
+
preserveEdgeIds?: boolean | undefined;
|
|
2049
2049
|
}
|
|
2050
2050
|
/**
|
|
2051
2051
|
* <p>Options for how to perform an import.</p>
|
|
@@ -2094,24 +2094,24 @@ export interface CreateGraphUsingImportTaskInput {
|
|
|
2094
2094
|
* reporting, or used in a Condition statement in an IAM policy.</p>
|
|
2095
2095
|
* @public
|
|
2096
2096
|
*/
|
|
2097
|
-
tags?: Record<string, string
|
|
2097
|
+
tags?: Record<string, string> | undefined;
|
|
2098
2098
|
/**
|
|
2099
2099
|
* <p>Specifies whether or not the graph can be reachable over the internet. All access to graphs is IAM authenticated.
|
|
2100
2100
|
* (<code>true</code> to enable, or <code>false</code> to disable).</p>
|
|
2101
2101
|
* @public
|
|
2102
2102
|
*/
|
|
2103
|
-
publicConnectivity?: boolean;
|
|
2103
|
+
publicConnectivity?: boolean | undefined;
|
|
2104
2104
|
/**
|
|
2105
2105
|
* <p>Specifies a KMS key to use to encrypt data imported into the new graph.</p>
|
|
2106
2106
|
* @public
|
|
2107
2107
|
*/
|
|
2108
|
-
kmsKeyIdentifier?: string;
|
|
2108
|
+
kmsKeyIdentifier?: string | undefined;
|
|
2109
2109
|
/**
|
|
2110
2110
|
* <p>Specifies the number of dimensions for vector embeddings that will be loaded into the graph.
|
|
2111
2111
|
* The value is specified as <code>dimension=</code>value. Max = 65,535 </p>
|
|
2112
2112
|
* @public
|
|
2113
2113
|
*/
|
|
2114
|
-
vectorSearchConfiguration?: VectorSearchConfiguration;
|
|
2114
|
+
vectorSearchConfiguration?: VectorSearchConfiguration | undefined;
|
|
2115
2115
|
/**
|
|
2116
2116
|
* <p>The number of replicas in other AZs to provision on the new graph after import. Default = 0, Min = 0, Max = 2.</p>
|
|
2117
2117
|
* <important>
|
|
@@ -2121,13 +2121,13 @@ export interface CreateGraphUsingImportTaskInput {
|
|
|
2121
2121
|
* </important>
|
|
2122
2122
|
* @public
|
|
2123
2123
|
*/
|
|
2124
|
-
replicaCount?: number;
|
|
2124
|
+
replicaCount?: number | undefined;
|
|
2125
2125
|
/**
|
|
2126
2126
|
* <p>Indicates whether or not to enable deletion protection on the graph. The graph can’t be deleted when deletion protection is enabled.
|
|
2127
2127
|
* (<code>true</code> or <code>false</code>).</p>
|
|
2128
2128
|
* @public
|
|
2129
2129
|
*/
|
|
2130
|
-
deletionProtection?: boolean;
|
|
2130
|
+
deletionProtection?: boolean | undefined;
|
|
2131
2131
|
/**
|
|
2132
2132
|
* <p>Contains options for controlling the import process. For example, if the <code>failOnError</code> key
|
|
2133
2133
|
* is set to <code>false</code>, the import skips problem data and attempts to continue (whereas if set to
|
|
@@ -2135,7 +2135,7 @@ export interface CreateGraphUsingImportTaskInput {
|
|
|
2135
2135
|
* encountered.</p>
|
|
2136
2136
|
* @public
|
|
2137
2137
|
*/
|
|
2138
|
-
importOptions?: ImportOptions;
|
|
2138
|
+
importOptions?: ImportOptions | undefined;
|
|
2139
2139
|
/**
|
|
2140
2140
|
* <p>The maximum provisioned memory-optimized Neptune Capacity Units (m-NCUs) to use for the graph. Default: 1024,
|
|
2141
2141
|
* or the approved upper limit for your account.</p>
|
|
@@ -2144,18 +2144,18 @@ export interface CreateGraphUsingImportTaskInput {
|
|
|
2144
2144
|
* used to create the graph. If neither value is specified 128 m-NCUs are used.</p>
|
|
2145
2145
|
* @public
|
|
2146
2146
|
*/
|
|
2147
|
-
maxProvisionedMemory?: number;
|
|
2147
|
+
maxProvisionedMemory?: number | undefined;
|
|
2148
2148
|
/**
|
|
2149
2149
|
* <p>The minimum provisioned memory-optimized Neptune Capacity Units (m-NCUs) to use for the graph. Default: 128</p>
|
|
2150
2150
|
* @public
|
|
2151
2151
|
*/
|
|
2152
|
-
minProvisionedMemory?: number;
|
|
2152
|
+
minProvisionedMemory?: number | undefined;
|
|
2153
2153
|
/**
|
|
2154
2154
|
* <p>If set to <code>true</code>, the task halts when an import error is encountered. If set to <code>false</code>,
|
|
2155
2155
|
* the task skips the data that caused the error and continues if possible.</p>
|
|
2156
2156
|
* @public
|
|
2157
2157
|
*/
|
|
2158
|
-
failOnError?: boolean;
|
|
2158
|
+
failOnError?: boolean | undefined;
|
|
2159
2159
|
/**
|
|
2160
2160
|
* <p>A URL identifying to the location of the data to be imported. This can be an Amazon S3 path,
|
|
2161
2161
|
* or can point to a Neptune database endpoint or snapshot.</p>
|
|
@@ -2170,14 +2170,14 @@ export interface CreateGraphUsingImportTaskInput {
|
|
|
2170
2170
|
* <a href="https://docs.aws.amazon.com/neptune-analytics/latest/userguide/using-rdf-data.html">RDF n-triples</a> format.</p>
|
|
2171
2171
|
* @public
|
|
2172
2172
|
*/
|
|
2173
|
-
format?: Format;
|
|
2173
|
+
format?: Format | undefined;
|
|
2174
2174
|
/**
|
|
2175
2175
|
* <p>The method to handle blank nodes in the dataset. Currently, only <code>convertToIri</code> is supported,
|
|
2176
2176
|
* meaning blank nodes are converted to unique IRIs at load time. Must be provided when format is <code>ntriples</code>.
|
|
2177
2177
|
* For more information, see <a href="https://docs.aws.amazon.com/neptune-analytics/latest/userguide/using-rdf-data.html#rdf-handling">Handling RDF values</a>.</p>
|
|
2178
2178
|
* @public
|
|
2179
2179
|
*/
|
|
2180
|
-
blankNodeHandling?: BlankNodeHandling;
|
|
2180
|
+
blankNodeHandling?: BlankNodeHandling | undefined;
|
|
2181
2181
|
/**
|
|
2182
2182
|
* <p>The ARN of the IAM role that will allow access to the data that is to be imported.</p>
|
|
2183
2183
|
* @public
|
|
@@ -2192,7 +2192,7 @@ export interface CreateGraphUsingImportTaskOutput {
|
|
|
2192
2192
|
* <p>The unique identifier of the Neptune Analytics graph.</p>
|
|
2193
2193
|
* @public
|
|
2194
2194
|
*/
|
|
2195
|
-
graphId?: string;
|
|
2195
|
+
graphId?: string | undefined;
|
|
2196
2196
|
/**
|
|
2197
2197
|
* <p>The unique identifier of the import task.</p>
|
|
2198
2198
|
* @public
|
|
@@ -2212,7 +2212,7 @@ export interface CreateGraphUsingImportTaskOutput {
|
|
|
2212
2212
|
* <a href="https://docs.aws.amazon.com/neptune-analytics/latest/userguide/using-rdf-data.html">RDF n-triples</a> format.</p>
|
|
2213
2213
|
* @public
|
|
2214
2214
|
*/
|
|
2215
|
-
format?: Format;
|
|
2215
|
+
format?: Format | undefined;
|
|
2216
2216
|
/**
|
|
2217
2217
|
* <p>The ARN of the IAM role that will allow access to the data that is to be imported.</p>
|
|
2218
2218
|
* @public
|
|
@@ -2230,7 +2230,7 @@ export interface CreateGraphUsingImportTaskOutput {
|
|
|
2230
2230
|
* encountered.</p>
|
|
2231
2231
|
* @public
|
|
2232
2232
|
*/
|
|
2233
|
-
importOptions?: ImportOptions;
|
|
2233
|
+
importOptions?: ImportOptions | undefined;
|
|
2234
2234
|
}
|
|
2235
2235
|
/**
|
|
2236
2236
|
* @public
|
|
@@ -2276,7 +2276,7 @@ export interface ImportTaskDetails {
|
|
|
2276
2276
|
* <p>Details about the errors that have been encountered.</p>
|
|
2277
2277
|
* @public
|
|
2278
2278
|
*/
|
|
2279
|
-
errorDetails?: string;
|
|
2279
|
+
errorDetails?: string | undefined;
|
|
2280
2280
|
/**
|
|
2281
2281
|
* <p>The number of statements in the import task.</p>
|
|
2282
2282
|
* @public
|
|
@@ -2296,7 +2296,7 @@ export interface GetImportTaskOutput {
|
|
|
2296
2296
|
* <p>The unique identifier of the Neptune Analytics graph.</p>
|
|
2297
2297
|
* @public
|
|
2298
2298
|
*/
|
|
2299
|
-
graphId?: string;
|
|
2299
|
+
graphId?: string | undefined;
|
|
2300
2300
|
/**
|
|
2301
2301
|
* <p>The unique identifier of the import task.</p>
|
|
2302
2302
|
* @public
|
|
@@ -2315,7 +2315,7 @@ export interface GetImportTaskOutput {
|
|
|
2315
2315
|
* load format</a>.</p>
|
|
2316
2316
|
* @public
|
|
2317
2317
|
*/
|
|
2318
|
-
format?: Format;
|
|
2318
|
+
format?: Format | undefined;
|
|
2319
2319
|
/**
|
|
2320
2320
|
* <p>The ARN of the IAM role that will allow access to the data that is to be imported.</p>
|
|
2321
2321
|
* @public
|
|
@@ -2390,22 +2390,22 @@ export interface GetImportTaskOutput {
|
|
|
2390
2390
|
* encountered.</p>
|
|
2391
2391
|
* @public
|
|
2392
2392
|
*/
|
|
2393
|
-
importOptions?: ImportOptions;
|
|
2393
|
+
importOptions?: ImportOptions | undefined;
|
|
2394
2394
|
/**
|
|
2395
2395
|
* <p>Contains details about the specified import task.</p>
|
|
2396
2396
|
* @public
|
|
2397
2397
|
*/
|
|
2398
|
-
importTaskDetails?: ImportTaskDetails;
|
|
2398
|
+
importTaskDetails?: ImportTaskDetails | undefined;
|
|
2399
2399
|
/**
|
|
2400
2400
|
* <p>The number of the current attempt to execute the import task.</p>
|
|
2401
2401
|
* @public
|
|
2402
2402
|
*/
|
|
2403
|
-
attemptNumber?: number;
|
|
2403
|
+
attemptNumber?: number | undefined;
|
|
2404
2404
|
/**
|
|
2405
2405
|
* <p>The reason that the import task has this status value.</p>
|
|
2406
2406
|
* @public
|
|
2407
2407
|
*/
|
|
2408
|
-
statusReason?: string;
|
|
2408
|
+
statusReason?: string | undefined;
|
|
2409
2409
|
}
|
|
2410
2410
|
/**
|
|
2411
2411
|
* @public
|
|
@@ -2418,7 +2418,7 @@ export interface ListImportTasksInput {
|
|
|
2418
2418
|
* that there are more results to retrieve.</p>
|
|
2419
2419
|
* @public
|
|
2420
2420
|
*/
|
|
2421
|
-
nextToken?: string;
|
|
2421
|
+
nextToken?: string | undefined;
|
|
2422
2422
|
/**
|
|
2423
2423
|
* <p>The total number of records to return in the command's output.</p>
|
|
2424
2424
|
* <p>If the total number of records available is more than the value specified,
|
|
@@ -2428,7 +2428,7 @@ export interface ListImportTasksInput {
|
|
|
2428
2428
|
* outside of the Amazon CLI.</p>
|
|
2429
2429
|
* @public
|
|
2430
2430
|
*/
|
|
2431
|
-
maxResults?: number;
|
|
2431
|
+
maxResults?: number | undefined;
|
|
2432
2432
|
}
|
|
2433
2433
|
/**
|
|
2434
2434
|
* <p>Details about an import task.</p>
|
|
@@ -2439,7 +2439,7 @@ export interface ImportTaskSummary {
|
|
|
2439
2439
|
* <p>The unique identifier of the Neptune Analytics graph.</p>
|
|
2440
2440
|
* @public
|
|
2441
2441
|
*/
|
|
2442
|
-
graphId?: string;
|
|
2442
|
+
graphId?: string | undefined;
|
|
2443
2443
|
/**
|
|
2444
2444
|
* <p>The unique identifier of the import task.</p>
|
|
2445
2445
|
* @public
|
|
@@ -2458,7 +2458,7 @@ export interface ImportTaskSummary {
|
|
|
2458
2458
|
* load format</a>.</p>
|
|
2459
2459
|
* @public
|
|
2460
2460
|
*/
|
|
2461
|
-
format?: Format;
|
|
2461
|
+
format?: Format | undefined;
|
|
2462
2462
|
/**
|
|
2463
2463
|
* <p>The ARN of the IAM role that will allow access to the data that is to be imported.</p>
|
|
2464
2464
|
* @public
|
|
@@ -2486,7 +2486,7 @@ export interface ListImportTasksOutput {
|
|
|
2486
2486
|
* that there are more results to retrieve.</p>
|
|
2487
2487
|
* @public
|
|
2488
2488
|
*/
|
|
2489
|
-
nextToken?: string;
|
|
2489
|
+
nextToken?: string | undefined;
|
|
2490
2490
|
}
|
|
2491
2491
|
/**
|
|
2492
2492
|
* @public
|
|
@@ -2496,13 +2496,13 @@ export interface StartImportTaskInput {
|
|
|
2496
2496
|
* <p>Options for how to perform an import.</p>
|
|
2497
2497
|
* @public
|
|
2498
2498
|
*/
|
|
2499
|
-
importOptions?: ImportOptions;
|
|
2499
|
+
importOptions?: ImportOptions | undefined;
|
|
2500
2500
|
/**
|
|
2501
2501
|
* <p>If set to true, the task halts when an import error is encountered. If set to false, the task skips the data that
|
|
2502
2502
|
* caused the error and continues if possible.</p>
|
|
2503
2503
|
* @public
|
|
2504
2504
|
*/
|
|
2505
|
-
failOnError?: boolean;
|
|
2505
|
+
failOnError?: boolean | undefined;
|
|
2506
2506
|
/**
|
|
2507
2507
|
* <p>A URL identifying the location of the data to be imported. This can be an Amazon S3 path, or can point to a
|
|
2508
2508
|
* Neptune database endpoint or snapshot.</p>
|
|
@@ -2514,14 +2514,14 @@ export interface StartImportTaskInput {
|
|
|
2514
2514
|
* OPENCYPHER, which identies the openCypher load format.</p>
|
|
2515
2515
|
* @public
|
|
2516
2516
|
*/
|
|
2517
|
-
format?: Format;
|
|
2517
|
+
format?: Format | undefined;
|
|
2518
2518
|
/**
|
|
2519
2519
|
* <p>The method to handle blank nodes in the dataset. Currently, only <code>convertToIri</code> is supported,
|
|
2520
2520
|
* meaning blank nodes are converted to unique IRIs at load time. Must be provided when format is <code>ntriples</code>.
|
|
2521
2521
|
* For more information, see <a href="https://docs.aws.amazon.com/neptune-analytics/latest/userguide/using-rdf-data.html#rdf-handling">Handling RDF values</a>.</p>
|
|
2522
2522
|
* @public
|
|
2523
2523
|
*/
|
|
2524
|
-
blankNodeHandling?: BlankNodeHandling;
|
|
2524
|
+
blankNodeHandling?: BlankNodeHandling | undefined;
|
|
2525
2525
|
/**
|
|
2526
2526
|
* <p>The unique identifier of the Neptune Analytics graph.</p>
|
|
2527
2527
|
* @public
|
|
@@ -2541,7 +2541,7 @@ export interface StartImportTaskOutput {
|
|
|
2541
2541
|
* <p>The unique identifier of the Neptune Analytics graph.</p>
|
|
2542
2542
|
* @public
|
|
2543
2543
|
*/
|
|
2544
|
-
graphId?: string;
|
|
2544
|
+
graphId?: string | undefined;
|
|
2545
2545
|
/**
|
|
2546
2546
|
* <p>The unique identifier of the import task.</p>
|
|
2547
2547
|
* @public
|
|
@@ -2558,7 +2558,7 @@ export interface StartImportTaskOutput {
|
|
|
2558
2558
|
* OPENCYPHER, which identies the openCypher load format.</p>
|
|
2559
2559
|
* @public
|
|
2560
2560
|
*/
|
|
2561
|
-
format?: Format;
|
|
2561
|
+
format?: Format | undefined;
|
|
2562
2562
|
/**
|
|
2563
2563
|
* <p>The ARN of the IAM role that will allow access to the data that is to be imported.</p>
|
|
2564
2564
|
* @public
|
|
@@ -2573,7 +2573,7 @@ export interface StartImportTaskOutput {
|
|
|
2573
2573
|
* <p>Options for how to perform an import.</p>
|
|
2574
2574
|
* @public
|
|
2575
2575
|
*/
|
|
2576
|
-
importOptions?: ImportOptions;
|
|
2576
|
+
importOptions?: ImportOptions | undefined;
|
|
2577
2577
|
}
|
|
2578
2578
|
/**
|
|
2579
2579
|
* @public
|