@aws-sdk/client-neptunedata 3.687.0 → 3.691.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -30,7 +30,7 @@ export interface CancelGremlinQueryInput {
30
30
  queryId: string | undefined;
31
31
  }
32
32
  export interface CancelGremlinQueryOutput {
33
- status?: string;
33
+ status?: string | undefined;
34
34
  }
35
35
  export declare class ClientTimeoutException extends __BaseException {
36
36
  readonly name: "ClientTimeoutException";
@@ -184,7 +184,7 @@ export interface CancelLoaderJobInput {
184
184
  loadId: string | undefined;
185
185
  }
186
186
  export interface CancelLoaderJobOutput {
187
- status?: string;
187
+ status?: string | undefined;
188
188
  }
189
189
  export declare class InternalFailureException extends __BaseException {
190
190
  readonly name: "InternalFailureException";
@@ -208,11 +208,11 @@ export declare class LoadUrlAccessDeniedException extends __BaseException {
208
208
  }
209
209
  export interface CancelMLDataProcessingJobInput {
210
210
  id: string | undefined;
211
- neptuneIamRoleArn?: string;
212
- clean?: boolean;
211
+ neptuneIamRoleArn?: string | undefined;
212
+ clean?: boolean | undefined;
213
213
  }
214
214
  export interface CancelMLDataProcessingJobOutput {
215
- status?: string;
215
+ status?: string | undefined;
216
216
  }
217
217
  export declare class MLResourceNotFoundException extends __BaseException {
218
218
  readonly name: "MLResourceNotFoundException";
@@ -226,27 +226,27 @@ export declare class MLResourceNotFoundException extends __BaseException {
226
226
  }
227
227
  export interface CancelMLModelTrainingJobInput {
228
228
  id: string | undefined;
229
- neptuneIamRoleArn?: string;
230
- clean?: boolean;
229
+ neptuneIamRoleArn?: string | undefined;
230
+ clean?: boolean | undefined;
231
231
  }
232
232
  export interface CancelMLModelTrainingJobOutput {
233
- status?: string;
233
+ status?: string | undefined;
234
234
  }
235
235
  export interface CancelMLModelTransformJobInput {
236
236
  id: string | undefined;
237
- neptuneIamRoleArn?: string;
238
- clean?: boolean;
237
+ neptuneIamRoleArn?: string | undefined;
238
+ clean?: boolean | undefined;
239
239
  }
240
240
  export interface CancelMLModelTransformJobOutput {
241
- status?: string;
241
+ status?: string | undefined;
242
242
  }
243
243
  export interface CancelOpenCypherQueryInput {
244
244
  queryId: string | undefined;
245
- silent?: boolean;
245
+ silent?: boolean | undefined;
246
246
  }
247
247
  export interface CancelOpenCypherQueryOutput {
248
- status?: string;
249
- payload?: boolean;
248
+ status?: string | undefined;
249
+ payload?: boolean | undefined;
250
250
  }
251
251
  export declare class InvalidNumericDataException extends __BaseException {
252
252
  readonly name: "InvalidNumericDataException";
@@ -259,37 +259,37 @@ export declare class InvalidNumericDataException extends __BaseException {
259
259
  );
260
260
  }
261
261
  export interface CreateMLEndpointInput {
262
- id?: string;
263
- mlModelTrainingJobId?: string;
264
- mlModelTransformJobId?: string;
265
- update?: boolean;
266
- neptuneIamRoleArn?: string;
267
- modelName?: string;
268
- instanceType?: string;
269
- instanceCount?: number;
270
- volumeEncryptionKMSKey?: string;
262
+ id?: string | undefined;
263
+ mlModelTrainingJobId?: string | undefined;
264
+ mlModelTransformJobId?: string | undefined;
265
+ update?: boolean | undefined;
266
+ neptuneIamRoleArn?: string | undefined;
267
+ modelName?: string | undefined;
268
+ instanceType?: string | undefined;
269
+ instanceCount?: number | undefined;
270
+ volumeEncryptionKMSKey?: string | undefined;
271
271
  }
272
272
  export interface CreateMLEndpointOutput {
273
- id?: string;
274
- arn?: string;
275
- creationTimeInMillis?: number;
273
+ id?: string | undefined;
274
+ arn?: string | undefined;
275
+ creationTimeInMillis?: number | undefined;
276
276
  }
277
277
  export interface DeleteMLEndpointInput {
278
278
  id: string | undefined;
279
- neptuneIamRoleArn?: string;
280
- clean?: boolean;
279
+ neptuneIamRoleArn?: string | undefined;
280
+ clean?: boolean | undefined;
281
281
  }
282
282
  export interface DeleteMLEndpointOutput {
283
- status?: string;
283
+ status?: string | undefined;
284
284
  }
285
285
  export interface DeleteStatisticsValueMap {
286
- active?: boolean;
287
- statisticsId?: string;
286
+ active?: boolean | undefined;
287
+ statisticsId?: string | undefined;
288
288
  }
289
289
  export interface DeletePropertygraphStatisticsOutput {
290
- statusCode?: number;
291
- status?: string;
292
- payload?: DeleteStatisticsValueMap;
290
+ statusCode?: number | undefined;
291
+ status?: string | undefined;
292
+ payload?: DeleteStatisticsValueMap | undefined;
293
293
  }
294
294
  export declare class ReadOnlyViolationException extends __BaseException {
295
295
  readonly name: "ReadOnlyViolationException";
@@ -315,20 +315,20 @@ export declare class StatisticsNotAvailableException extends __BaseException {
315
315
  );
316
316
  }
317
317
  export interface DeleteSparqlStatisticsOutput {
318
- statusCode?: number;
319
- status?: string;
320
- payload?: DeleteStatisticsValueMap;
318
+ statusCode?: number | undefined;
319
+ status?: string | undefined;
320
+ payload?: DeleteStatisticsValueMap | undefined;
321
321
  }
322
322
  export interface ExecuteFastResetInput {
323
323
  action: Action | undefined;
324
- token?: string;
324
+ token?: string | undefined;
325
325
  }
326
326
  export interface FastResetToken {
327
- token?: string;
327
+ token?: string | undefined;
328
328
  }
329
329
  export interface ExecuteFastResetOutput {
330
330
  status: string | undefined;
331
- payload?: FastResetToken;
331
+ payload?: FastResetToken | undefined;
332
332
  }
333
333
  export declare class MethodNotAllowedException extends __BaseException {
334
334
  readonly name: "MethodNotAllowedException";
@@ -364,7 +364,7 @@ export interface ExecuteGremlinExplainQueryInput {
364
364
  gremlinQuery: string | undefined;
365
365
  }
366
366
  export interface ExecuteGremlinExplainQueryOutput {
367
- output?: Uint8Array;
367
+ output?: Uint8Array | undefined;
368
368
  }
369
369
  export declare class MalformedQueryException extends __BaseException {
370
370
  readonly name: "MalformedQueryException";
@@ -420,28 +420,28 @@ export declare class QueryTooLargeException extends __BaseException {
420
420
  }
421
421
  export interface ExecuteGremlinProfileQueryInput {
422
422
  gremlinQuery: string | undefined;
423
- results?: boolean;
424
- chop?: number;
425
- serializer?: string;
426
- indexOps?: boolean;
423
+ results?: boolean | undefined;
424
+ chop?: number | undefined;
425
+ serializer?: string | undefined;
426
+ indexOps?: boolean | undefined;
427
427
  }
428
428
  export interface ExecuteGremlinProfileQueryOutput {
429
- output?: Uint8Array;
429
+ output?: Uint8Array | undefined;
430
430
  }
431
431
  export interface ExecuteGremlinQueryInput {
432
432
  gremlinQuery: string | undefined;
433
- serializer?: string;
433
+ serializer?: string | undefined;
434
434
  }
435
435
  export interface GremlinQueryStatusAttributes {
436
- message?: string;
437
- code?: number;
438
- attributes?: __DocumentType;
436
+ message?: string | undefined;
437
+ code?: number | undefined;
438
+ attributes?: __DocumentType | undefined;
439
439
  }
440
440
  export interface ExecuteGremlinQueryOutput {
441
- requestId?: string;
442
- status?: GremlinQueryStatusAttributes;
443
- result?: __DocumentType;
444
- meta?: __DocumentType;
441
+ requestId?: string | undefined;
442
+ status?: GremlinQueryStatusAttributes | undefined;
443
+ result?: __DocumentType | undefined;
444
+ meta?: __DocumentType | undefined;
445
445
  }
446
446
  export declare const OpenCypherExplainMode: {
447
447
  readonly DETAILS: "details";
@@ -452,7 +452,7 @@ export type OpenCypherExplainMode =
452
452
  (typeof OpenCypherExplainMode)[keyof typeof OpenCypherExplainMode];
453
453
  export interface ExecuteOpenCypherExplainQueryInput {
454
454
  openCypherQuery: string | undefined;
455
- parameters?: string;
455
+ parameters?: string | undefined;
456
456
  explainMode: OpenCypherExplainMode | undefined;
457
457
  }
458
458
  export interface ExecuteOpenCypherExplainQueryOutput {
@@ -460,7 +460,7 @@ export interface ExecuteOpenCypherExplainQueryOutput {
460
460
  }
461
461
  export interface ExecuteOpenCypherQueryInput {
462
462
  openCypherQuery: string | undefined;
463
- parameters?: string;
463
+ parameters?: string | undefined;
464
464
  }
465
465
  export interface ExecuteOpenCypherQueryOutput {
466
466
  results: __DocumentType | undefined;
@@ -469,40 +469,40 @@ export interface QueryLanguageVersion {
469
469
  version: string | undefined;
470
470
  }
471
471
  export interface GetEngineStatusOutput {
472
- status?: string;
473
- startTime?: string;
474
- dbEngineVersion?: string;
475
- role?: string;
476
- dfeQueryEngine?: string;
477
- gremlin?: QueryLanguageVersion;
478
- sparql?: QueryLanguageVersion;
479
- opencypher?: QueryLanguageVersion;
480
- labMode?: Record<string, string>;
481
- rollingBackTrxCount?: number;
482
- rollingBackTrxEarliestStartTime?: string;
483
- features?: Record<string, __DocumentType>;
484
- settings?: Record<string, string>;
472
+ status?: string | undefined;
473
+ startTime?: string | undefined;
474
+ dbEngineVersion?: string | undefined;
475
+ role?: string | undefined;
476
+ dfeQueryEngine?: string | undefined;
477
+ gremlin?: QueryLanguageVersion | undefined;
478
+ sparql?: QueryLanguageVersion | undefined;
479
+ opencypher?: QueryLanguageVersion | undefined;
480
+ labMode?: Record<string, string> | undefined;
481
+ rollingBackTrxCount?: number | undefined;
482
+ rollingBackTrxEarliestStartTime?: string | undefined;
483
+ features?: Record<string, __DocumentType> | undefined;
484
+ settings?: Record<string, string> | undefined;
485
485
  }
486
486
  export interface GetGremlinQueryStatusInput {
487
487
  queryId: string | undefined;
488
488
  }
489
489
  export interface QueryEvalStats {
490
- waited?: number;
491
- elapsed?: number;
492
- cancelled?: boolean;
493
- subqueries?: __DocumentType;
490
+ waited?: number | undefined;
491
+ elapsed?: number | undefined;
492
+ cancelled?: boolean | undefined;
493
+ subqueries?: __DocumentType | undefined;
494
494
  }
495
495
  export interface GetGremlinQueryStatusOutput {
496
- queryId?: string;
497
- queryString?: string;
498
- queryEvalStats?: QueryEvalStats;
496
+ queryId?: string | undefined;
497
+ queryString?: string | undefined;
498
+ queryEvalStats?: QueryEvalStats | undefined;
499
499
  }
500
500
  export interface GetLoaderJobStatusInput {
501
501
  loadId: string | undefined;
502
- details?: boolean;
503
- errors?: boolean;
504
- page?: number;
505
- errorsPerPage?: number;
502
+ details?: boolean | undefined;
503
+ errors?: boolean | undefined;
504
+ page?: number | undefined;
505
+ errorsPerPage?: number | undefined;
506
506
  }
507
507
  export interface GetLoaderJobStatusOutput {
508
508
  status: string | undefined;
@@ -510,78 +510,78 @@ export interface GetLoaderJobStatusOutput {
510
510
  }
511
511
  export interface GetMLDataProcessingJobInput {
512
512
  id: string | undefined;
513
- neptuneIamRoleArn?: string;
513
+ neptuneIamRoleArn?: string | undefined;
514
514
  }
515
515
  export interface MlResourceDefinition {
516
- name?: string;
517
- arn?: string;
518
- status?: string;
519
- outputLocation?: string;
520
- failureReason?: string;
521
- cloudwatchLogUrl?: string;
516
+ name?: string | undefined;
517
+ arn?: string | undefined;
518
+ status?: string | undefined;
519
+ outputLocation?: string | undefined;
520
+ failureReason?: string | undefined;
521
+ cloudwatchLogUrl?: string | undefined;
522
522
  }
523
523
  export interface GetMLDataProcessingJobOutput {
524
- status?: string;
525
- id?: string;
526
- processingJob?: MlResourceDefinition;
524
+ status?: string | undefined;
525
+ id?: string | undefined;
526
+ processingJob?: MlResourceDefinition | undefined;
527
527
  }
528
528
  export interface GetMLEndpointInput {
529
529
  id: string | undefined;
530
- neptuneIamRoleArn?: string;
530
+ neptuneIamRoleArn?: string | undefined;
531
531
  }
532
532
  export interface MlConfigDefinition {
533
- name?: string;
534
- arn?: string;
533
+ name?: string | undefined;
534
+ arn?: string | undefined;
535
535
  }
536
536
  export interface GetMLEndpointOutput {
537
- status?: string;
538
- id?: string;
539
- endpoint?: MlResourceDefinition;
540
- endpointConfig?: MlConfigDefinition;
537
+ status?: string | undefined;
538
+ id?: string | undefined;
539
+ endpoint?: MlResourceDefinition | undefined;
540
+ endpointConfig?: MlConfigDefinition | undefined;
541
541
  }
542
542
  export interface GetMLModelTrainingJobInput {
543
543
  id: string | undefined;
544
- neptuneIamRoleArn?: string;
544
+ neptuneIamRoleArn?: string | undefined;
545
545
  }
546
546
  export interface GetMLModelTrainingJobOutput {
547
- status?: string;
548
- id?: string;
549
- processingJob?: MlResourceDefinition;
550
- hpoJob?: MlResourceDefinition;
551
- modelTransformJob?: MlResourceDefinition;
552
- mlModels?: MlConfigDefinition[];
547
+ status?: string | undefined;
548
+ id?: string | undefined;
549
+ processingJob?: MlResourceDefinition | undefined;
550
+ hpoJob?: MlResourceDefinition | undefined;
551
+ modelTransformJob?: MlResourceDefinition | undefined;
552
+ mlModels?: MlConfigDefinition[] | undefined;
553
553
  }
554
554
  export interface GetMLModelTransformJobInput {
555
555
  id: string | undefined;
556
- neptuneIamRoleArn?: string;
556
+ neptuneIamRoleArn?: string | undefined;
557
557
  }
558
558
  export interface GetMLModelTransformJobOutput {
559
- status?: string;
560
- id?: string;
561
- baseProcessingJob?: MlResourceDefinition;
562
- remoteModelTransformJob?: MlResourceDefinition;
563
- models?: MlConfigDefinition[];
559
+ status?: string | undefined;
560
+ id?: string | undefined;
561
+ baseProcessingJob?: MlResourceDefinition | undefined;
562
+ remoteModelTransformJob?: MlResourceDefinition | undefined;
563
+ models?: MlConfigDefinition[] | undefined;
564
564
  }
565
565
  export interface GetOpenCypherQueryStatusInput {
566
566
  queryId: string | undefined;
567
567
  }
568
568
  export interface GetOpenCypherQueryStatusOutput {
569
- queryId?: string;
570
- queryString?: string;
571
- queryEvalStats?: QueryEvalStats;
569
+ queryId?: string | undefined;
570
+ queryString?: string | undefined;
571
+ queryEvalStats?: QueryEvalStats | undefined;
572
572
  }
573
573
  export interface StatisticsSummary {
574
- signatureCount?: number;
575
- instanceCount?: number;
576
- predicateCount?: number;
574
+ signatureCount?: number | undefined;
575
+ instanceCount?: number | undefined;
576
+ predicateCount?: number | undefined;
577
577
  }
578
578
  export interface Statistics {
579
- autoCompute?: boolean;
580
- active?: boolean;
581
- statisticsId?: string;
582
- date?: Date;
583
- note?: string;
584
- signatureInfo?: StatisticsSummary;
579
+ autoCompute?: boolean | undefined;
580
+ active?: boolean | undefined;
581
+ statisticsId?: string | undefined;
582
+ date?: Date | undefined;
583
+ note?: string | undefined;
584
+ signatureInfo?: StatisticsSummary | undefined;
585
585
  }
586
586
  export interface GetPropertygraphStatisticsOutput {
587
587
  status: string | undefined;
@@ -609,26 +609,26 @@ export declare const IteratorType: {
609
609
  };
610
610
  export type IteratorType = (typeof IteratorType)[keyof typeof IteratorType];
611
611
  export interface GetPropertygraphStreamInput {
612
- limit?: number;
613
- iteratorType?: IteratorType;
614
- commitNum?: number;
615
- opNum?: number;
616
- encoding?: Encoding;
612
+ limit?: number | undefined;
613
+ iteratorType?: IteratorType | undefined;
614
+ commitNum?: number | undefined;
615
+ opNum?: number | undefined;
616
+ encoding?: Encoding | undefined;
617
617
  }
618
618
  export interface PropertygraphData {
619
619
  id: string | undefined;
620
620
  type: string | undefined;
621
621
  key: string | undefined;
622
622
  value: __DocumentType | undefined;
623
- from?: string;
624
- to?: string;
623
+ from?: string | undefined;
624
+ to?: string | undefined;
625
625
  }
626
626
  export interface PropertygraphRecord {
627
627
  commitTimestampInMillis: number | undefined;
628
628
  eventId: Record<string, string> | undefined;
629
629
  data: PropertygraphData | undefined;
630
630
  op: string | undefined;
631
- isLastOp?: boolean;
631
+ isLastOp?: boolean | undefined;
632
632
  }
633
633
  export interface GetPropertygraphStreamOutput {
634
634
  lastEventId: Record<string, string> | undefined;
@@ -665,77 +665,77 @@ export declare const GraphSummaryType: {
665
665
  export type GraphSummaryType =
666
666
  (typeof GraphSummaryType)[keyof typeof GraphSummaryType];
667
667
  export interface GetPropertygraphSummaryInput {
668
- mode?: GraphSummaryType;
668
+ mode?: GraphSummaryType | undefined;
669
669
  }
670
670
  export interface EdgeStructure {
671
- count?: number;
672
- edgeProperties?: string[];
671
+ count?: number | undefined;
672
+ edgeProperties?: string[] | undefined;
673
673
  }
674
674
  export interface NodeStructure {
675
- count?: number;
676
- nodeProperties?: string[];
677
- distinctOutgoingEdgeLabels?: string[];
675
+ count?: number | undefined;
676
+ nodeProperties?: string[] | undefined;
677
+ distinctOutgoingEdgeLabels?: string[] | undefined;
678
678
  }
679
679
  export interface PropertygraphSummary {
680
- numNodes?: number;
681
- numEdges?: number;
682
- numNodeLabels?: number;
683
- numEdgeLabels?: number;
684
- nodeLabels?: string[];
685
- edgeLabels?: string[];
686
- numNodeProperties?: number;
687
- numEdgeProperties?: number;
688
- nodeProperties?: Record<string, number>[];
689
- edgeProperties?: Record<string, number>[];
690
- totalNodePropertyValues?: number;
691
- totalEdgePropertyValues?: number;
692
- nodeStructures?: NodeStructure[];
693
- edgeStructures?: EdgeStructure[];
680
+ numNodes?: number | undefined;
681
+ numEdges?: number | undefined;
682
+ numNodeLabels?: number | undefined;
683
+ numEdgeLabels?: number | undefined;
684
+ nodeLabels?: string[] | undefined;
685
+ edgeLabels?: string[] | undefined;
686
+ numNodeProperties?: number | undefined;
687
+ numEdgeProperties?: number | undefined;
688
+ nodeProperties?: Record<string, number>[] | undefined;
689
+ edgeProperties?: Record<string, number>[] | undefined;
690
+ totalNodePropertyValues?: number | undefined;
691
+ totalEdgePropertyValues?: number | undefined;
692
+ nodeStructures?: NodeStructure[] | undefined;
693
+ edgeStructures?: EdgeStructure[] | undefined;
694
694
  }
695
695
  export interface PropertygraphSummaryValueMap {
696
- version?: string;
697
- lastStatisticsComputationTime?: Date;
698
- graphSummary?: PropertygraphSummary;
696
+ version?: string | undefined;
697
+ lastStatisticsComputationTime?: Date | undefined;
698
+ graphSummary?: PropertygraphSummary | undefined;
699
699
  }
700
700
  export interface GetPropertygraphSummaryOutput {
701
- statusCode?: number;
702
- payload?: PropertygraphSummaryValueMap;
701
+ statusCode?: number | undefined;
702
+ payload?: PropertygraphSummaryValueMap | undefined;
703
703
  }
704
704
  export interface GetRDFGraphSummaryInput {
705
- mode?: GraphSummaryType;
705
+ mode?: GraphSummaryType | undefined;
706
706
  }
707
707
  export interface SubjectStructure {
708
- count?: number;
709
- predicates?: string[];
708
+ count?: number | undefined;
709
+ predicates?: string[] | undefined;
710
710
  }
711
711
  export interface RDFGraphSummary {
712
- numDistinctSubjects?: number;
713
- numDistinctPredicates?: number;
714
- numQuads?: number;
715
- numClasses?: number;
716
- classes?: string[];
717
- predicates?: Record<string, number>[];
718
- subjectStructures?: SubjectStructure[];
712
+ numDistinctSubjects?: number | undefined;
713
+ numDistinctPredicates?: number | undefined;
714
+ numQuads?: number | undefined;
715
+ numClasses?: number | undefined;
716
+ classes?: string[] | undefined;
717
+ predicates?: Record<string, number>[] | undefined;
718
+ subjectStructures?: SubjectStructure[] | undefined;
719
719
  }
720
720
  export interface RDFGraphSummaryValueMap {
721
- version?: string;
722
- lastStatisticsComputationTime?: Date;
723
- graphSummary?: RDFGraphSummary;
721
+ version?: string | undefined;
722
+ lastStatisticsComputationTime?: Date | undefined;
723
+ graphSummary?: RDFGraphSummary | undefined;
724
724
  }
725
725
  export interface GetRDFGraphSummaryOutput {
726
- statusCode?: number;
727
- payload?: RDFGraphSummaryValueMap;
726
+ statusCode?: number | undefined;
727
+ payload?: RDFGraphSummaryValueMap | undefined;
728
728
  }
729
729
  export interface GetSparqlStatisticsOutput {
730
730
  status: string | undefined;
731
731
  payload: Statistics | undefined;
732
732
  }
733
733
  export interface GetSparqlStreamInput {
734
- limit?: number;
735
- iteratorType?: IteratorType;
736
- commitNum?: number;
737
- opNum?: number;
738
- encoding?: Encoding;
734
+ limit?: number | undefined;
735
+ iteratorType?: IteratorType | undefined;
736
+ commitNum?: number | undefined;
737
+ opNum?: number | undefined;
738
+ encoding?: Encoding | undefined;
739
739
  }
740
740
  export interface SparqlData {
741
741
  stmt: string | undefined;
@@ -745,7 +745,7 @@ export interface SparqlRecord {
745
745
  eventId: Record<string, string> | undefined;
746
746
  data: SparqlData | undefined;
747
747
  op: string | undefined;
748
- isLastOp?: boolean;
748
+ isLastOp?: boolean | undefined;
749
749
  }
750
750
  export interface GetSparqlStreamOutput {
751
751
  lastEventId: Record<string, string> | undefined;
@@ -755,64 +755,64 @@ export interface GetSparqlStreamOutput {
755
755
  totalRecords: number | undefined;
756
756
  }
757
757
  export interface ListGremlinQueriesInput {
758
- includeWaiting?: boolean;
758
+ includeWaiting?: boolean | undefined;
759
759
  }
760
760
  export interface GremlinQueryStatus {
761
- queryId?: string;
762
- queryString?: string;
763
- queryEvalStats?: QueryEvalStats;
761
+ queryId?: string | undefined;
762
+ queryString?: string | undefined;
763
+ queryEvalStats?: QueryEvalStats | undefined;
764
764
  }
765
765
  export interface ListGremlinQueriesOutput {
766
- acceptedQueryCount?: number;
767
- runningQueryCount?: number;
768
- queries?: GremlinQueryStatus[];
766
+ acceptedQueryCount?: number | undefined;
767
+ runningQueryCount?: number | undefined;
768
+ queries?: GremlinQueryStatus[] | undefined;
769
769
  }
770
770
  export interface ListLoaderJobsInput {
771
- limit?: number;
772
- includeQueuedLoads?: boolean;
771
+ limit?: number | undefined;
772
+ includeQueuedLoads?: boolean | undefined;
773
773
  }
774
774
  export interface LoaderIdResult {
775
- loadIds?: string[];
775
+ loadIds?: string[] | undefined;
776
776
  }
777
777
  export interface ListLoaderJobsOutput {
778
778
  status: string | undefined;
779
779
  payload: LoaderIdResult | undefined;
780
780
  }
781
781
  export interface ListMLDataProcessingJobsInput {
782
- maxItems?: number;
783
- neptuneIamRoleArn?: string;
782
+ maxItems?: number | undefined;
783
+ neptuneIamRoleArn?: string | undefined;
784
784
  }
785
785
  export interface ListMLDataProcessingJobsOutput {
786
- ids?: string[];
786
+ ids?: string[] | undefined;
787
787
  }
788
788
  export interface ListMLEndpointsInput {
789
- maxItems?: number;
790
- neptuneIamRoleArn?: string;
789
+ maxItems?: number | undefined;
790
+ neptuneIamRoleArn?: string | undefined;
791
791
  }
792
792
  export interface ListMLEndpointsOutput {
793
- ids?: string[];
793
+ ids?: string[] | undefined;
794
794
  }
795
795
  export interface ListMLModelTrainingJobsInput {
796
- maxItems?: number;
797
- neptuneIamRoleArn?: string;
796
+ maxItems?: number | undefined;
797
+ neptuneIamRoleArn?: string | undefined;
798
798
  }
799
799
  export interface ListMLModelTrainingJobsOutput {
800
- ids?: string[];
800
+ ids?: string[] | undefined;
801
801
  }
802
802
  export interface ListMLModelTransformJobsInput {
803
- maxItems?: number;
804
- neptuneIamRoleArn?: string;
803
+ maxItems?: number | undefined;
804
+ neptuneIamRoleArn?: string | undefined;
805
805
  }
806
806
  export interface ListMLModelTransformJobsOutput {
807
- ids?: string[];
807
+ ids?: string[] | undefined;
808
808
  }
809
809
  export interface ListOpenCypherQueriesInput {
810
- includeWaiting?: boolean;
810
+ includeWaiting?: boolean | undefined;
811
811
  }
812
812
  export interface ListOpenCypherQueriesOutput {
813
- acceptedQueryCount?: number;
814
- runningQueryCount?: number;
815
- queries?: GremlinQueryStatus[];
813
+ acceptedQueryCount?: number | undefined;
814
+ runningQueryCount?: number | undefined;
815
+ queries?: GremlinQueryStatus[] | undefined;
816
816
  }
817
817
  export declare const StatisticsAutoGenerationMode: {
818
818
  readonly DISABLE_AUTOCOMPUTE: "disableAutoCompute";
@@ -822,21 +822,21 @@ export declare const StatisticsAutoGenerationMode: {
822
822
  export type StatisticsAutoGenerationMode =
823
823
  (typeof StatisticsAutoGenerationMode)[keyof typeof StatisticsAutoGenerationMode];
824
824
  export interface ManagePropertygraphStatisticsInput {
825
- mode?: StatisticsAutoGenerationMode;
825
+ mode?: StatisticsAutoGenerationMode | undefined;
826
826
  }
827
827
  export interface RefreshStatisticsIdMap {
828
- statisticsId?: string;
828
+ statisticsId?: string | undefined;
829
829
  }
830
830
  export interface ManagePropertygraphStatisticsOutput {
831
831
  status: string | undefined;
832
- payload?: RefreshStatisticsIdMap;
832
+ payload?: RefreshStatisticsIdMap | undefined;
833
833
  }
834
834
  export interface ManageSparqlStatisticsInput {
835
- mode?: StatisticsAutoGenerationMode;
835
+ mode?: StatisticsAutoGenerationMode | undefined;
836
836
  }
837
837
  export interface ManageSparqlStatisticsOutput {
838
838
  status: string | undefined;
839
- payload?: RefreshStatisticsIdMap;
839
+ payload?: RefreshStatisticsIdMap | undefined;
840
840
  }
841
841
  export declare class S3Exception extends __BaseException {
842
842
  readonly name: "S3Exception";
@@ -901,93 +901,93 @@ export interface StartLoaderJobInput {
901
901
  format: Format | undefined;
902
902
  s3BucketRegion: S3BucketRegion | undefined;
903
903
  iamRoleArn: string | undefined;
904
- mode?: Mode;
905
- failOnError?: boolean;
906
- parallelism?: Parallelism;
907
- parserConfiguration?: Record<string, string>;
908
- updateSingleCardinalityProperties?: boolean;
909
- queueRequest?: boolean;
910
- dependencies?: string[];
911
- userProvidedEdgeIds?: boolean;
904
+ mode?: Mode | undefined;
905
+ failOnError?: boolean | undefined;
906
+ parallelism?: Parallelism | undefined;
907
+ parserConfiguration?: Record<string, string> | undefined;
908
+ updateSingleCardinalityProperties?: boolean | undefined;
909
+ queueRequest?: boolean | undefined;
910
+ dependencies?: string[] | undefined;
911
+ userProvidedEdgeIds?: boolean | undefined;
912
912
  }
913
913
  export interface StartLoaderJobOutput {
914
914
  status: string | undefined;
915
915
  payload: Record<string, string> | undefined;
916
916
  }
917
917
  export interface StartMLDataProcessingJobInput {
918
- id?: string;
919
- previousDataProcessingJobId?: string;
918
+ id?: string | undefined;
919
+ previousDataProcessingJobId?: string | undefined;
920
920
  inputDataS3Location: string | undefined;
921
921
  processedDataS3Location: string | undefined;
922
- sagemakerIamRoleArn?: string;
923
- neptuneIamRoleArn?: string;
924
- processingInstanceType?: string;
925
- processingInstanceVolumeSizeInGB?: number;
926
- processingTimeOutInSeconds?: number;
927
- modelType?: string;
928
- configFileName?: string;
929
- subnets?: string[];
930
- securityGroupIds?: string[];
931
- volumeEncryptionKMSKey?: string;
932
- s3OutputEncryptionKMSKey?: string;
922
+ sagemakerIamRoleArn?: string | undefined;
923
+ neptuneIamRoleArn?: string | undefined;
924
+ processingInstanceType?: string | undefined;
925
+ processingInstanceVolumeSizeInGB?: number | undefined;
926
+ processingTimeOutInSeconds?: number | undefined;
927
+ modelType?: string | undefined;
928
+ configFileName?: string | undefined;
929
+ subnets?: string[] | undefined;
930
+ securityGroupIds?: string[] | undefined;
931
+ volumeEncryptionKMSKey?: string | undefined;
932
+ s3OutputEncryptionKMSKey?: string | undefined;
933
933
  }
934
934
  export interface StartMLDataProcessingJobOutput {
935
- id?: string;
936
- arn?: string;
937
- creationTimeInMillis?: number;
935
+ id?: string | undefined;
936
+ arn?: string | undefined;
937
+ creationTimeInMillis?: number | undefined;
938
938
  }
939
939
  export interface CustomModelTrainingParameters {
940
940
  sourceS3DirectoryPath: string | undefined;
941
- trainingEntryPointScript?: string;
942
- transformEntryPointScript?: string;
941
+ trainingEntryPointScript?: string | undefined;
942
+ transformEntryPointScript?: string | undefined;
943
943
  }
944
944
  export interface StartMLModelTrainingJobInput {
945
- id?: string;
946
- previousModelTrainingJobId?: string;
945
+ id?: string | undefined;
946
+ previousModelTrainingJobId?: string | undefined;
947
947
  dataProcessingJobId: string | undefined;
948
948
  trainModelS3Location: string | undefined;
949
- sagemakerIamRoleArn?: string;
950
- neptuneIamRoleArn?: string;
951
- baseProcessingInstanceType?: string;
952
- trainingInstanceType?: string;
953
- trainingInstanceVolumeSizeInGB?: number;
954
- trainingTimeOutInSeconds?: number;
955
- maxHPONumberOfTrainingJobs?: number;
956
- maxHPOParallelTrainingJobs?: number;
957
- subnets?: string[];
958
- securityGroupIds?: string[];
959
- volumeEncryptionKMSKey?: string;
960
- s3OutputEncryptionKMSKey?: string;
961
- enableManagedSpotTraining?: boolean;
962
- customModelTrainingParameters?: CustomModelTrainingParameters;
949
+ sagemakerIamRoleArn?: string | undefined;
950
+ neptuneIamRoleArn?: string | undefined;
951
+ baseProcessingInstanceType?: string | undefined;
952
+ trainingInstanceType?: string | undefined;
953
+ trainingInstanceVolumeSizeInGB?: number | undefined;
954
+ trainingTimeOutInSeconds?: number | undefined;
955
+ maxHPONumberOfTrainingJobs?: number | undefined;
956
+ maxHPOParallelTrainingJobs?: number | undefined;
957
+ subnets?: string[] | undefined;
958
+ securityGroupIds?: string[] | undefined;
959
+ volumeEncryptionKMSKey?: string | undefined;
960
+ s3OutputEncryptionKMSKey?: string | undefined;
961
+ enableManagedSpotTraining?: boolean | undefined;
962
+ customModelTrainingParameters?: CustomModelTrainingParameters | undefined;
963
963
  }
964
964
  export interface StartMLModelTrainingJobOutput {
965
- id?: string;
966
- arn?: string;
967
- creationTimeInMillis?: number;
965
+ id?: string | undefined;
966
+ arn?: string | undefined;
967
+ creationTimeInMillis?: number | undefined;
968
968
  }
969
969
  export interface CustomModelTransformParameters {
970
970
  sourceS3DirectoryPath: string | undefined;
971
- transformEntryPointScript?: string;
971
+ transformEntryPointScript?: string | undefined;
972
972
  }
973
973
  export interface StartMLModelTransformJobInput {
974
- id?: string;
975
- dataProcessingJobId?: string;
976
- mlModelTrainingJobId?: string;
977
- trainingJobName?: string;
974
+ id?: string | undefined;
975
+ dataProcessingJobId?: string | undefined;
976
+ mlModelTrainingJobId?: string | undefined;
977
+ trainingJobName?: string | undefined;
978
978
  modelTransformOutputS3Location: string | undefined;
979
- sagemakerIamRoleArn?: string;
980
- neptuneIamRoleArn?: string;
981
- customModelTransformParameters?: CustomModelTransformParameters;
982
- baseProcessingInstanceType?: string;
983
- baseProcessingInstanceVolumeSizeInGB?: number;
984
- subnets?: string[];
985
- securityGroupIds?: string[];
986
- volumeEncryptionKMSKey?: string;
987
- s3OutputEncryptionKMSKey?: string;
979
+ sagemakerIamRoleArn?: string | undefined;
980
+ neptuneIamRoleArn?: string | undefined;
981
+ customModelTransformParameters?: CustomModelTransformParameters | undefined;
982
+ baseProcessingInstanceType?: string | undefined;
983
+ baseProcessingInstanceVolumeSizeInGB?: number | undefined;
984
+ subnets?: string[] | undefined;
985
+ securityGroupIds?: string[] | undefined;
986
+ volumeEncryptionKMSKey?: string | undefined;
987
+ s3OutputEncryptionKMSKey?: string | undefined;
988
988
  }
989
989
  export interface StartMLModelTransformJobOutput {
990
- id?: string;
991
- arn?: string;
992
- creationTimeInMillis?: number;
990
+ id?: string | undefined;
991
+ arn?: string | undefined;
992
+ creationTimeInMillis?: number | undefined;
993
993
  }