@aws-sdk/client-entityresolution 3.687.0 → 3.691.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/models/models_0.d.ts +167 -167
- package/dist-types/ts3.4/models/models_0.d.ts +183 -167
- package/package.json +7 -7
|
@@ -70,7 +70,7 @@ export interface AddPolicyStatementInput {
|
|
|
70
70
|
* <p>A set of condition keys that you can use in key policies.</p>
|
|
71
71
|
* @public
|
|
72
72
|
*/
|
|
73
|
-
condition?: string;
|
|
73
|
+
condition?: string | undefined;
|
|
74
74
|
}
|
|
75
75
|
/**
|
|
76
76
|
* @public
|
|
@@ -91,7 +91,7 @@ export interface AddPolicyStatementOutput {
|
|
|
91
91
|
* <p>The resource-based policy.</p>
|
|
92
92
|
* @public
|
|
93
93
|
*/
|
|
94
|
-
policy?: string;
|
|
94
|
+
policy?: string | undefined;
|
|
95
95
|
}
|
|
96
96
|
/**
|
|
97
97
|
* <p>The request could not be processed because of conflict in the current state of the
|
|
@@ -185,7 +185,7 @@ export interface BatchDeleteUniqueIdInput {
|
|
|
185
185
|
* <p>The input source for the batch delete unique ID operation.</p>
|
|
186
186
|
* @public
|
|
187
187
|
*/
|
|
188
|
-
inputSource?: string;
|
|
188
|
+
inputSource?: string | undefined;
|
|
189
189
|
/**
|
|
190
190
|
* <p>The unique IDs to delete.</p>
|
|
191
191
|
* @public
|
|
@@ -310,13 +310,13 @@ export interface ProviderProperties {
|
|
|
310
310
|
* <p>The required configuration fields to use with the provider service.</p>
|
|
311
311
|
* @public
|
|
312
312
|
*/
|
|
313
|
-
providerConfiguration?: __DocumentType;
|
|
313
|
+
providerConfiguration?: __DocumentType | undefined;
|
|
314
314
|
/**
|
|
315
315
|
* <p>The Amazon S3 location that temporarily stores your data while it processes.
|
|
316
316
|
* Your information won't be saved permanently.</p>
|
|
317
317
|
* @public
|
|
318
318
|
*/
|
|
319
|
-
intermediateSourceConfiguration?: IntermediateSourceConfiguration;
|
|
319
|
+
intermediateSourceConfiguration?: IntermediateSourceConfiguration | undefined;
|
|
320
320
|
}
|
|
321
321
|
/**
|
|
322
322
|
* @public
|
|
@@ -370,7 +370,7 @@ export interface IdMappingRuleBasedProperties {
|
|
|
370
370
|
* <p> The rules that can be used for ID mapping.</p>
|
|
371
371
|
* @public
|
|
372
372
|
*/
|
|
373
|
-
rules?: Rule[];
|
|
373
|
+
rules?: Rule[] | undefined;
|
|
374
374
|
/**
|
|
375
375
|
* <p> The set of rules you can use in an ID mapping workflow. The limitations specified for
|
|
376
376
|
* the source or target to define the match rules must be compatible.</p>
|
|
@@ -417,13 +417,13 @@ export interface IdMappingTechniques {
|
|
|
417
417
|
* matching.</p>
|
|
418
418
|
* @public
|
|
419
419
|
*/
|
|
420
|
-
ruleBasedProperties?: IdMappingRuleBasedProperties;
|
|
420
|
+
ruleBasedProperties?: IdMappingRuleBasedProperties | undefined;
|
|
421
421
|
/**
|
|
422
422
|
* <p>An object which defines any additional configurations required by the provider
|
|
423
423
|
* service.</p>
|
|
424
424
|
* @public
|
|
425
425
|
*/
|
|
426
|
-
providerProperties?: ProviderProperties;
|
|
426
|
+
providerProperties?: ProviderProperties | undefined;
|
|
427
427
|
}
|
|
428
428
|
/**
|
|
429
429
|
* @public
|
|
@@ -453,7 +453,7 @@ export interface IdMappingWorkflowInputSource {
|
|
|
453
453
|
* <p>The name of the schema to be retrieved.</p>
|
|
454
454
|
* @public
|
|
455
455
|
*/
|
|
456
|
-
schemaName?: string;
|
|
456
|
+
schemaName?: string | undefined;
|
|
457
457
|
/**
|
|
458
458
|
* <p>The type of ID namespace. There are two types: <code>SOURCE</code> and
|
|
459
459
|
* <code>TARGET</code>. </p>
|
|
@@ -463,7 +463,7 @@ export interface IdMappingWorkflowInputSource {
|
|
|
463
463
|
* <code>sourceIds</code> will resolve to.</p>
|
|
464
464
|
* @public
|
|
465
465
|
*/
|
|
466
|
-
type?: IdNamespaceType;
|
|
466
|
+
type?: IdNamespaceType | undefined;
|
|
467
467
|
}
|
|
468
468
|
/**
|
|
469
469
|
* <p>The output source for the ID mapping workflow.</p>
|
|
@@ -480,7 +480,7 @@ export interface IdMappingWorkflowOutputSource {
|
|
|
480
480
|
* an Entity Resolution managed KMS key.</p>
|
|
481
481
|
* @public
|
|
482
482
|
*/
|
|
483
|
-
KMSArn?: string;
|
|
483
|
+
KMSArn?: string | undefined;
|
|
484
484
|
}
|
|
485
485
|
/**
|
|
486
486
|
* @public
|
|
@@ -496,7 +496,7 @@ export interface CreateIdMappingWorkflowInput {
|
|
|
496
496
|
* <p>A description of the workflow.</p>
|
|
497
497
|
* @public
|
|
498
498
|
*/
|
|
499
|
-
description?: string;
|
|
499
|
+
description?: string | undefined;
|
|
500
500
|
/**
|
|
501
501
|
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
502
502
|
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
@@ -508,7 +508,7 @@ export interface CreateIdMappingWorkflowInput {
|
|
|
508
508
|
* fields <code>OutputS3Path</code> and <code>Output</code>.</p>
|
|
509
509
|
* @public
|
|
510
510
|
*/
|
|
511
|
-
outputSourceConfig?: IdMappingWorkflowOutputSource[];
|
|
511
|
+
outputSourceConfig?: IdMappingWorkflowOutputSource[] | undefined;
|
|
512
512
|
/**
|
|
513
513
|
* <p>An object which defines the ID mapping technique and any additional
|
|
514
514
|
* configurations.</p>
|
|
@@ -520,12 +520,12 @@ export interface CreateIdMappingWorkflowInput {
|
|
|
520
520
|
* this role to create resources on your behalf as part of workflow execution.</p>
|
|
521
521
|
* @public
|
|
522
522
|
*/
|
|
523
|
-
roleArn?: string;
|
|
523
|
+
roleArn?: string | undefined;
|
|
524
524
|
/**
|
|
525
525
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
526
526
|
* @public
|
|
527
527
|
*/
|
|
528
|
-
tags?: Record<string, string
|
|
528
|
+
tags?: Record<string, string> | undefined;
|
|
529
529
|
}
|
|
530
530
|
/**
|
|
531
531
|
* @public
|
|
@@ -546,7 +546,7 @@ export interface CreateIdMappingWorkflowOutput {
|
|
|
546
546
|
* <p>A description of the workflow.</p>
|
|
547
547
|
* @public
|
|
548
548
|
*/
|
|
549
|
-
description?: string;
|
|
549
|
+
description?: string | undefined;
|
|
550
550
|
/**
|
|
551
551
|
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
552
552
|
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
@@ -558,7 +558,7 @@ export interface CreateIdMappingWorkflowOutput {
|
|
|
558
558
|
* fields <code>OutputS3Path</code> and <code>Output</code>.</p>
|
|
559
559
|
* @public
|
|
560
560
|
*/
|
|
561
|
-
outputSourceConfig?: IdMappingWorkflowOutputSource[];
|
|
561
|
+
outputSourceConfig?: IdMappingWorkflowOutputSource[] | undefined;
|
|
562
562
|
/**
|
|
563
563
|
* <p>An object which defines the ID mapping technique and any additional
|
|
564
564
|
* configurations.</p>
|
|
@@ -570,7 +570,7 @@ export interface CreateIdMappingWorkflowOutput {
|
|
|
570
570
|
* this role to create resources on your behalf as part of workflow execution.</p>
|
|
571
571
|
* @public
|
|
572
572
|
*/
|
|
573
|
-
roleArn?: string;
|
|
573
|
+
roleArn?: string | undefined;
|
|
574
574
|
}
|
|
575
575
|
/**
|
|
576
576
|
* <p>The request was rejected because it attempted to create resources beyond the current
|
|
@@ -585,12 +585,12 @@ export declare class ExceedsLimitException extends __BaseException {
|
|
|
585
585
|
* <p>The name of the quota that has been breached.</p>
|
|
586
586
|
* @public
|
|
587
587
|
*/
|
|
588
|
-
quotaName?: string;
|
|
588
|
+
quotaName?: string | undefined;
|
|
589
589
|
/**
|
|
590
590
|
* <p>The current quota value for the customers.</p>
|
|
591
591
|
* @public
|
|
592
592
|
*/
|
|
593
|
-
quotaValue?: number;
|
|
593
|
+
quotaValue?: number | undefined;
|
|
594
594
|
/**
|
|
595
595
|
* @internal
|
|
596
596
|
*/
|
|
@@ -612,7 +612,7 @@ export interface NamespaceProviderProperties {
|
|
|
612
612
|
* service.</p>
|
|
613
613
|
* @public
|
|
614
614
|
*/
|
|
615
|
-
providerConfiguration?: __DocumentType;
|
|
615
|
+
providerConfiguration?: __DocumentType | undefined;
|
|
616
616
|
}
|
|
617
617
|
/**
|
|
618
618
|
* <p> The rule-based properties of an ID namespace. These properties define how the ID
|
|
@@ -624,13 +624,13 @@ export interface NamespaceRuleBasedProperties {
|
|
|
624
624
|
* <p> The rules for the ID namespace.</p>
|
|
625
625
|
* @public
|
|
626
626
|
*/
|
|
627
|
-
rules?: Rule[];
|
|
627
|
+
rules?: Rule[] | undefined;
|
|
628
628
|
/**
|
|
629
629
|
* <p> The sets of rules you can use in an ID mapping workflow. The limitations specified for
|
|
630
630
|
* the source and target must be compatible.</p>
|
|
631
631
|
* @public
|
|
632
632
|
*/
|
|
633
|
-
ruleDefinitionTypes?: IdMappingWorkflowRuleDefinitionType[];
|
|
633
|
+
ruleDefinitionTypes?: IdMappingWorkflowRuleDefinitionType[] | undefined;
|
|
634
634
|
/**
|
|
635
635
|
* <p>The comparison type. You can either choose <code>ONE_TO_ONE</code> or
|
|
636
636
|
* <code>MANY_TO_MANY</code> as the <code>attributeMatchingModel</code>. </p>
|
|
@@ -644,7 +644,7 @@ export interface NamespaceRuleBasedProperties {
|
|
|
644
644
|
* Profile A matches the value of the <code>Email</code> field of Profile B.</p>
|
|
645
645
|
* @public
|
|
646
646
|
*/
|
|
647
|
-
attributeMatchingModel?: AttributeMatchingModel;
|
|
647
|
+
attributeMatchingModel?: AttributeMatchingModel | undefined;
|
|
648
648
|
/**
|
|
649
649
|
* <p> The type of matching record that is allowed to be used in an ID mapping workflow. </p>
|
|
650
650
|
* <p>If the value is set to <code>ONE_SOURCE_TO_ONE_TARGET</code>, only one record in the
|
|
@@ -653,7 +653,7 @@ export interface NamespaceRuleBasedProperties {
|
|
|
653
653
|
* the source are matched to one record in the target.</p>
|
|
654
654
|
* @public
|
|
655
655
|
*/
|
|
656
|
-
recordMatchingModels?: RecordMatchingModel[];
|
|
656
|
+
recordMatchingModels?: RecordMatchingModel[] | undefined;
|
|
657
657
|
}
|
|
658
658
|
/**
|
|
659
659
|
* <p>An object containing <code>IdMappingType</code>, <code>ProviderProperties</code>, and
|
|
@@ -671,13 +671,13 @@ export interface IdNamespaceIdMappingWorkflowProperties {
|
|
|
671
671
|
* matching.</p>
|
|
672
672
|
* @public
|
|
673
673
|
*/
|
|
674
|
-
ruleBasedProperties?: NamespaceRuleBasedProperties;
|
|
674
|
+
ruleBasedProperties?: NamespaceRuleBasedProperties | undefined;
|
|
675
675
|
/**
|
|
676
676
|
* <p>An object which defines any additional configurations required by the provider
|
|
677
677
|
* service.</p>
|
|
678
678
|
* @public
|
|
679
679
|
*/
|
|
680
|
-
providerProperties?: NamespaceProviderProperties;
|
|
680
|
+
providerProperties?: NamespaceProviderProperties | undefined;
|
|
681
681
|
}
|
|
682
682
|
/**
|
|
683
683
|
* <p>An object containing <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
@@ -694,7 +694,7 @@ export interface IdNamespaceInputSource {
|
|
|
694
694
|
* <p>The name of the schema.</p>
|
|
695
695
|
* @public
|
|
696
696
|
*/
|
|
697
|
-
schemaName?: string;
|
|
697
|
+
schemaName?: string | undefined;
|
|
698
698
|
}
|
|
699
699
|
/**
|
|
700
700
|
* @public
|
|
@@ -709,20 +709,20 @@ export interface CreateIdNamespaceInput {
|
|
|
709
709
|
* <p>The description of the ID namespace.</p>
|
|
710
710
|
* @public
|
|
711
711
|
*/
|
|
712
|
-
description?: string;
|
|
712
|
+
description?: string | undefined;
|
|
713
713
|
/**
|
|
714
714
|
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
715
715
|
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
716
716
|
* @public
|
|
717
717
|
*/
|
|
718
|
-
inputSourceConfig?: IdNamespaceInputSource[];
|
|
718
|
+
inputSourceConfig?: IdNamespaceInputSource[] | undefined;
|
|
719
719
|
/**
|
|
720
720
|
* <p>Determines the properties of <code>IdMappingWorflow</code> where this
|
|
721
721
|
* <code>IdNamespace</code> can be used as a <code>Source</code> or a
|
|
722
722
|
* <code>Target</code>.</p>
|
|
723
723
|
* @public
|
|
724
724
|
*/
|
|
725
|
-
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[];
|
|
725
|
+
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[] | undefined;
|
|
726
726
|
/**
|
|
727
727
|
* <p>The type of ID namespace. There are two types: <code>SOURCE</code> and
|
|
728
728
|
* <code>TARGET</code>. </p>
|
|
@@ -739,12 +739,12 @@ export interface CreateIdNamespaceInput {
|
|
|
739
739
|
* as part of the workflow run.</p>
|
|
740
740
|
* @public
|
|
741
741
|
*/
|
|
742
|
-
roleArn?: string;
|
|
742
|
+
roleArn?: string | undefined;
|
|
743
743
|
/**
|
|
744
744
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
745
745
|
* @public
|
|
746
746
|
*/
|
|
747
|
-
tags?: Record<string, string
|
|
747
|
+
tags?: Record<string, string> | undefined;
|
|
748
748
|
}
|
|
749
749
|
/**
|
|
750
750
|
* @public
|
|
@@ -764,20 +764,20 @@ export interface CreateIdNamespaceOutput {
|
|
|
764
764
|
* <p>The description of the ID namespace.</p>
|
|
765
765
|
* @public
|
|
766
766
|
*/
|
|
767
|
-
description?: string;
|
|
767
|
+
description?: string | undefined;
|
|
768
768
|
/**
|
|
769
769
|
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
770
770
|
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
771
771
|
* @public
|
|
772
772
|
*/
|
|
773
|
-
inputSourceConfig?: IdNamespaceInputSource[];
|
|
773
|
+
inputSourceConfig?: IdNamespaceInputSource[] | undefined;
|
|
774
774
|
/**
|
|
775
775
|
* <p>Determines the properties of <code>IdMappingWorkflow</code> where this
|
|
776
776
|
* <code>IdNamespace</code> can be used as a <code>Source</code> or a
|
|
777
777
|
* <code>Target</code>.</p>
|
|
778
778
|
* @public
|
|
779
779
|
*/
|
|
780
|
-
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[];
|
|
780
|
+
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[] | undefined;
|
|
781
781
|
/**
|
|
782
782
|
* <p>The type of ID namespace. There are two types: <code>SOURCE</code> and
|
|
783
783
|
* <code>TARGET</code>.</p>
|
|
@@ -794,7 +794,7 @@ export interface CreateIdNamespaceOutput {
|
|
|
794
794
|
* as part of the workflow run.</p>
|
|
795
795
|
* @public
|
|
796
796
|
*/
|
|
797
|
-
roleArn?: string;
|
|
797
|
+
roleArn?: string | undefined;
|
|
798
798
|
/**
|
|
799
799
|
* <p>The timestamp of when the ID namespace was created.</p>
|
|
800
800
|
* @public
|
|
@@ -809,7 +809,7 @@ export interface CreateIdNamespaceOutput {
|
|
|
809
809
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
810
810
|
* @public
|
|
811
811
|
*/
|
|
812
|
-
tags?: Record<string, string
|
|
812
|
+
tags?: Record<string, string> | undefined;
|
|
813
813
|
}
|
|
814
814
|
/**
|
|
815
815
|
* @public
|
|
@@ -832,7 +832,7 @@ export interface IncrementalRunConfig {
|
|
|
832
832
|
* <p>The type of incremental run. It takes only one value: <code>IMMEDIATE</code>.</p>
|
|
833
833
|
* @public
|
|
834
834
|
*/
|
|
835
|
-
incrementalRunType?: IncrementalRunType;
|
|
835
|
+
incrementalRunType?: IncrementalRunType | undefined;
|
|
836
836
|
}
|
|
837
837
|
/**
|
|
838
838
|
* <p>An object containing <code>InputSourceARN</code>, <code>SchemaName</code>, and
|
|
@@ -858,7 +858,7 @@ export interface InputSource {
|
|
|
858
858
|
* in the output to (123)-456-7890.</p>
|
|
859
859
|
* @public
|
|
860
860
|
*/
|
|
861
|
-
applyNormalization?: boolean;
|
|
861
|
+
applyNormalization?: boolean | undefined;
|
|
862
862
|
}
|
|
863
863
|
/**
|
|
864
864
|
* <p>A list of <code>OutputAttribute</code> objects, each of which have the fields
|
|
@@ -877,7 +877,7 @@ export interface OutputAttribute {
|
|
|
877
877
|
* <p>Enables the ability to hash the column values in the output.</p>
|
|
878
878
|
* @public
|
|
879
879
|
*/
|
|
880
|
-
hashed?: boolean;
|
|
880
|
+
hashed?: boolean | undefined;
|
|
881
881
|
}
|
|
882
882
|
/**
|
|
883
883
|
* <p>A list of <code>OutputAttribute</code> objects, each of which have the fields
|
|
@@ -895,7 +895,7 @@ export interface OutputSource {
|
|
|
895
895
|
* <p>Customer KMS ARN for encryption at rest. If not provided, system will use an Entity Resolution managed KMS key.</p>
|
|
896
896
|
* @public
|
|
897
897
|
*/
|
|
898
|
-
KMSArn?: string;
|
|
898
|
+
KMSArn?: string | undefined;
|
|
899
899
|
/**
|
|
900
900
|
* <p>A list of <code>OutputAttribute</code> objects, each of which have the fields
|
|
901
901
|
* <code>Name</code> and <code>Hashed</code>. Each of these objects selects a column to be
|
|
@@ -910,7 +910,7 @@ export interface OutputSource {
|
|
|
910
910
|
* in the output to (123)-456-7890.</p>
|
|
911
911
|
* @public
|
|
912
912
|
*/
|
|
913
|
-
applyNormalization?: boolean;
|
|
913
|
+
applyNormalization?: boolean | undefined;
|
|
914
914
|
}
|
|
915
915
|
/**
|
|
916
916
|
* @public
|
|
@@ -972,7 +972,7 @@ export interface RuleBasedProperties {
|
|
|
972
972
|
* IDs.</p>
|
|
973
973
|
* @public
|
|
974
974
|
*/
|
|
975
|
-
matchPurpose?: MatchPurpose;
|
|
975
|
+
matchPurpose?: MatchPurpose | undefined;
|
|
976
976
|
}
|
|
977
977
|
/**
|
|
978
978
|
* <p>An object which defines the <code>resolutionType</code> and the
|
|
@@ -991,12 +991,12 @@ export interface ResolutionTechniques {
|
|
|
991
991
|
* <code>Rules</code>, which is a list of rule objects.</p>
|
|
992
992
|
* @public
|
|
993
993
|
*/
|
|
994
|
-
ruleBasedProperties?: RuleBasedProperties;
|
|
994
|
+
ruleBasedProperties?: RuleBasedProperties | undefined;
|
|
995
995
|
/**
|
|
996
996
|
* <p>The properties of the provider service.</p>
|
|
997
997
|
* @public
|
|
998
998
|
*/
|
|
999
|
-
providerProperties?: ProviderProperties;
|
|
999
|
+
providerProperties?: ProviderProperties | undefined;
|
|
1000
1000
|
}
|
|
1001
1001
|
/**
|
|
1002
1002
|
* @public
|
|
@@ -1012,7 +1012,7 @@ export interface CreateMatchingWorkflowInput {
|
|
|
1012
1012
|
* <p>A description of the workflow.</p>
|
|
1013
1013
|
* @public
|
|
1014
1014
|
*/
|
|
1015
|
-
description?: string;
|
|
1015
|
+
description?: string | undefined;
|
|
1016
1016
|
/**
|
|
1017
1017
|
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
1018
1018
|
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
@@ -1037,7 +1037,7 @@ export interface CreateMatchingWorkflowInput {
|
|
|
1037
1037
|
* <code>incrementalRunType</code> as a field.</p>
|
|
1038
1038
|
* @public
|
|
1039
1039
|
*/
|
|
1040
|
-
incrementalRunConfig?: IncrementalRunConfig;
|
|
1040
|
+
incrementalRunConfig?: IncrementalRunConfig | undefined;
|
|
1041
1041
|
/**
|
|
1042
1042
|
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
1043
1043
|
* this role to create resources on your behalf as part of workflow execution.</p>
|
|
@@ -1048,7 +1048,7 @@ export interface CreateMatchingWorkflowInput {
|
|
|
1048
1048
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
1049
1049
|
* @public
|
|
1050
1050
|
*/
|
|
1051
|
-
tags?: Record<string, string
|
|
1051
|
+
tags?: Record<string, string> | undefined;
|
|
1052
1052
|
}
|
|
1053
1053
|
/**
|
|
1054
1054
|
* @public
|
|
@@ -1069,7 +1069,7 @@ export interface CreateMatchingWorkflowOutput {
|
|
|
1069
1069
|
* <p>A description of the workflow.</p>
|
|
1070
1070
|
* @public
|
|
1071
1071
|
*/
|
|
1072
|
-
description?: string;
|
|
1072
|
+
description?: string | undefined;
|
|
1073
1073
|
/**
|
|
1074
1074
|
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
1075
1075
|
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
@@ -1094,7 +1094,7 @@ export interface CreateMatchingWorkflowOutput {
|
|
|
1094
1094
|
* <code>incrementalRunType</code> as a field.</p>
|
|
1095
1095
|
* @public
|
|
1096
1096
|
*/
|
|
1097
|
-
incrementalRunConfig?: IncrementalRunConfig;
|
|
1097
|
+
incrementalRunConfig?: IncrementalRunConfig | undefined;
|
|
1098
1098
|
/**
|
|
1099
1099
|
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
1100
1100
|
* this role to create resources on your behalf as part of workflow execution.</p>
|
|
@@ -1157,7 +1157,7 @@ export interface SchemaInputAttribute {
|
|
|
1157
1157
|
* value.</p>
|
|
1158
1158
|
* @public
|
|
1159
1159
|
*/
|
|
1160
|
-
groupName?: string;
|
|
1160
|
+
groupName?: string | undefined;
|
|
1161
1161
|
/**
|
|
1162
1162
|
* <p>A key that allows grouping of multiple input attributes into a unified matching group. </p>
|
|
1163
1163
|
* <p>For example, consider a scenario where the source table contains various addresses, such
|
|
@@ -1168,19 +1168,19 @@ export interface SchemaInputAttribute {
|
|
|
1168
1168
|
* purposes but will still be included in the output table.</p>
|
|
1169
1169
|
* @public
|
|
1170
1170
|
*/
|
|
1171
|
-
matchKey?: string;
|
|
1171
|
+
matchKey?: string | undefined;
|
|
1172
1172
|
/**
|
|
1173
1173
|
* <p>The subtype of the attribute, selected from a list of values.</p>
|
|
1174
1174
|
* @public
|
|
1175
1175
|
*/
|
|
1176
|
-
subType?: string;
|
|
1176
|
+
subType?: string | undefined;
|
|
1177
1177
|
/**
|
|
1178
1178
|
* <p> Indicates if the column values are hashed in the schema input. If the value is set to
|
|
1179
1179
|
* <code>TRUE</code>, the column values are hashed. If the value is set to
|
|
1180
1180
|
* <code>FALSE</code>, the column values are cleartext.</p>
|
|
1181
1181
|
* @public
|
|
1182
1182
|
*/
|
|
1183
|
-
hashed?: boolean;
|
|
1183
|
+
hashed?: boolean | undefined;
|
|
1184
1184
|
}
|
|
1185
1185
|
/**
|
|
1186
1186
|
* @public
|
|
@@ -1196,7 +1196,7 @@ export interface CreateSchemaMappingInput {
|
|
|
1196
1196
|
* <p>A description of the schema.</p>
|
|
1197
1197
|
* @public
|
|
1198
1198
|
*/
|
|
1199
|
-
description?: string;
|
|
1199
|
+
description?: string | undefined;
|
|
1200
1200
|
/**
|
|
1201
1201
|
* <p>A list of <code>MappedInputFields</code>. Each <code>MappedInputField</code> corresponds
|
|
1202
1202
|
* to a column the source data table, and contains column name plus additional information
|
|
@@ -1208,7 +1208,7 @@ export interface CreateSchemaMappingInput {
|
|
|
1208
1208
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
1209
1209
|
* @public
|
|
1210
1210
|
*/
|
|
1211
|
-
tags?: Record<string, string
|
|
1211
|
+
tags?: Record<string, string> | undefined;
|
|
1212
1212
|
}
|
|
1213
1213
|
/**
|
|
1214
1214
|
* @public
|
|
@@ -1332,7 +1332,7 @@ export interface DeletePolicyStatementOutput {
|
|
|
1332
1332
|
* <p>The resource-based policy.</p>
|
|
1333
1333
|
* @public
|
|
1334
1334
|
*/
|
|
1335
|
-
policy?: string;
|
|
1335
|
+
policy?: string | undefined;
|
|
1336
1336
|
}
|
|
1337
1337
|
/**
|
|
1338
1338
|
* @public
|
|
@@ -1378,7 +1378,7 @@ export interface ErrorDetails {
|
|
|
1378
1378
|
* <p>The error message from the job, if there is one.</p>
|
|
1379
1379
|
* @public
|
|
1380
1380
|
*/
|
|
1381
|
-
errorMessage?: string;
|
|
1381
|
+
errorMessage?: string | undefined;
|
|
1382
1382
|
}
|
|
1383
1383
|
/**
|
|
1384
1384
|
* <p>An object containing <code>InputRecords</code>, <code>RecordsNotProcessed</code>,
|
|
@@ -1391,32 +1391,32 @@ export interface IdMappingJobMetrics {
|
|
|
1391
1391
|
* <p>The total number of records that were input for processing.</p>
|
|
1392
1392
|
* @public
|
|
1393
1393
|
*/
|
|
1394
|
-
inputRecords?: number;
|
|
1394
|
+
inputRecords?: number | undefined;
|
|
1395
1395
|
/**
|
|
1396
1396
|
* <p>The total number of records that were processed.</p>
|
|
1397
1397
|
* @public
|
|
1398
1398
|
*/
|
|
1399
|
-
totalRecordsProcessed?: number;
|
|
1399
|
+
totalRecordsProcessed?: number | undefined;
|
|
1400
1400
|
/**
|
|
1401
1401
|
* <p>The total number of records that did not get processed.</p>
|
|
1402
1402
|
* @public
|
|
1403
1403
|
*/
|
|
1404
|
-
recordsNotProcessed?: number;
|
|
1404
|
+
recordsNotProcessed?: number | undefined;
|
|
1405
1405
|
/**
|
|
1406
1406
|
* <p> The total number of records that were mapped.</p>
|
|
1407
1407
|
* @public
|
|
1408
1408
|
*/
|
|
1409
|
-
totalMappedRecords?: number;
|
|
1409
|
+
totalMappedRecords?: number | undefined;
|
|
1410
1410
|
/**
|
|
1411
1411
|
* <p> The total number of mapped source records.</p>
|
|
1412
1412
|
* @public
|
|
1413
1413
|
*/
|
|
1414
|
-
totalMappedSourceRecords?: number;
|
|
1414
|
+
totalMappedSourceRecords?: number | undefined;
|
|
1415
1415
|
/**
|
|
1416
1416
|
* <p> The total number of distinct mapped target records.</p>
|
|
1417
1417
|
* @public
|
|
1418
1418
|
*/
|
|
1419
|
-
totalMappedTargetRecords?: number;
|
|
1419
|
+
totalMappedTargetRecords?: number | undefined;
|
|
1420
1420
|
}
|
|
1421
1421
|
/**
|
|
1422
1422
|
* <p>An object containing <code>KMSArn</code>, <code>OutputS3Path</code>, and
|
|
@@ -1441,7 +1441,7 @@ export interface IdMappingJobOutputSource {
|
|
|
1441
1441
|
* an Entity Resolution managed KMS key.</p>
|
|
1442
1442
|
* @public
|
|
1443
1443
|
*/
|
|
1444
|
-
KMSArn?: string;
|
|
1444
|
+
KMSArn?: string | undefined;
|
|
1445
1445
|
}
|
|
1446
1446
|
/**
|
|
1447
1447
|
* @public
|
|
@@ -1480,23 +1480,23 @@ export interface GetIdMappingJobOutput {
|
|
|
1480
1480
|
* <p>The time at which the job has finished.</p>
|
|
1481
1481
|
* @public
|
|
1482
1482
|
*/
|
|
1483
|
-
endTime?: Date;
|
|
1483
|
+
endTime?: Date | undefined;
|
|
1484
1484
|
/**
|
|
1485
1485
|
* <p>Metrics associated with the execution, specifically total records processed, unique IDs
|
|
1486
1486
|
* generated, and records the execution skipped.</p>
|
|
1487
1487
|
* @public
|
|
1488
1488
|
*/
|
|
1489
|
-
metrics?: IdMappingJobMetrics;
|
|
1489
|
+
metrics?: IdMappingJobMetrics | undefined;
|
|
1490
1490
|
/**
|
|
1491
1491
|
* <p>An object containing an error message, if there was an error.</p>
|
|
1492
1492
|
* @public
|
|
1493
1493
|
*/
|
|
1494
|
-
errorDetails?: ErrorDetails;
|
|
1494
|
+
errorDetails?: ErrorDetails | undefined;
|
|
1495
1495
|
/**
|
|
1496
1496
|
* <p>A list of <code>OutputSource</code> objects.</p>
|
|
1497
1497
|
* @public
|
|
1498
1498
|
*/
|
|
1499
|
-
outputSourceConfig?: IdMappingJobOutputSource[];
|
|
1499
|
+
outputSourceConfig?: IdMappingJobOutputSource[] | undefined;
|
|
1500
1500
|
}
|
|
1501
1501
|
/**
|
|
1502
1502
|
* @public
|
|
@@ -1527,7 +1527,7 @@ export interface GetIdMappingWorkflowOutput {
|
|
|
1527
1527
|
* <p>A description of the workflow.</p>
|
|
1528
1528
|
* @public
|
|
1529
1529
|
*/
|
|
1530
|
-
description?: string;
|
|
1530
|
+
description?: string | undefined;
|
|
1531
1531
|
/**
|
|
1532
1532
|
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
1533
1533
|
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
@@ -1539,7 +1539,7 @@ export interface GetIdMappingWorkflowOutput {
|
|
|
1539
1539
|
* <code>OutputS3Path</code> and <code>KMSArn</code>.</p>
|
|
1540
1540
|
* @public
|
|
1541
1541
|
*/
|
|
1542
|
-
outputSourceConfig?: IdMappingWorkflowOutputSource[];
|
|
1542
|
+
outputSourceConfig?: IdMappingWorkflowOutputSource[] | undefined;
|
|
1543
1543
|
/**
|
|
1544
1544
|
* <p>An object which defines the ID mapping technique and any additional
|
|
1545
1545
|
* configurations.</p>
|
|
@@ -1561,12 +1561,12 @@ export interface GetIdMappingWorkflowOutput {
|
|
|
1561
1561
|
* this role to access Amazon Web Services resources on your behalf.</p>
|
|
1562
1562
|
* @public
|
|
1563
1563
|
*/
|
|
1564
|
-
roleArn?: string;
|
|
1564
|
+
roleArn?: string | undefined;
|
|
1565
1565
|
/**
|
|
1566
1566
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
1567
1567
|
* @public
|
|
1568
1568
|
*/
|
|
1569
|
-
tags?: Record<string, string
|
|
1569
|
+
tags?: Record<string, string> | undefined;
|
|
1570
1570
|
}
|
|
1571
1571
|
/**
|
|
1572
1572
|
* @public
|
|
@@ -1596,20 +1596,20 @@ export interface GetIdNamespaceOutput {
|
|
|
1596
1596
|
* <p>The description of the ID namespace.</p>
|
|
1597
1597
|
* @public
|
|
1598
1598
|
*/
|
|
1599
|
-
description?: string;
|
|
1599
|
+
description?: string | undefined;
|
|
1600
1600
|
/**
|
|
1601
1601
|
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
1602
1602
|
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
1603
1603
|
* @public
|
|
1604
1604
|
*/
|
|
1605
|
-
inputSourceConfig?: IdNamespaceInputSource[];
|
|
1605
|
+
inputSourceConfig?: IdNamespaceInputSource[] | undefined;
|
|
1606
1606
|
/**
|
|
1607
1607
|
* <p>Determines the properties of <code>IdMappingWorkflow</code> where this
|
|
1608
1608
|
* <code>IdNamespace</code> can be used as a <code>Source</code> or a
|
|
1609
1609
|
* <code>Target</code>.</p>
|
|
1610
1610
|
* @public
|
|
1611
1611
|
*/
|
|
1612
|
-
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[];
|
|
1612
|
+
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[] | undefined;
|
|
1613
1613
|
/**
|
|
1614
1614
|
* <p>The type of ID namespace. There are two types: <code>SOURCE</code> and
|
|
1615
1615
|
* <code>TARGET</code>.</p>
|
|
@@ -1626,7 +1626,7 @@ export interface GetIdNamespaceOutput {
|
|
|
1626
1626
|
* as part of a workflow run.</p>
|
|
1627
1627
|
* @public
|
|
1628
1628
|
*/
|
|
1629
|
-
roleArn?: string;
|
|
1629
|
+
roleArn?: string | undefined;
|
|
1630
1630
|
/**
|
|
1631
1631
|
* <p>The timestamp of when the ID namespace was created.</p>
|
|
1632
1632
|
* @public
|
|
@@ -1641,7 +1641,7 @@ export interface GetIdNamespaceOutput {
|
|
|
1641
1641
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
1642
1642
|
* @public
|
|
1643
1643
|
*/
|
|
1644
|
-
tags?: Record<string, string
|
|
1644
|
+
tags?: Record<string, string> | undefined;
|
|
1645
1645
|
}
|
|
1646
1646
|
/**
|
|
1647
1647
|
* @public
|
|
@@ -1664,7 +1664,7 @@ export interface GetMatchIdInput {
|
|
|
1664
1664
|
* in the output to (123)-456-7890.</p>
|
|
1665
1665
|
* @public
|
|
1666
1666
|
*/
|
|
1667
|
-
applyNormalization?: boolean;
|
|
1667
|
+
applyNormalization?: boolean | undefined;
|
|
1668
1668
|
}
|
|
1669
1669
|
/**
|
|
1670
1670
|
* @public
|
|
@@ -1674,12 +1674,12 @@ export interface GetMatchIdOutput {
|
|
|
1674
1674
|
* <p>The unique identifiers for this group of match records.</p>
|
|
1675
1675
|
* @public
|
|
1676
1676
|
*/
|
|
1677
|
-
matchId?: string;
|
|
1677
|
+
matchId?: string | undefined;
|
|
1678
1678
|
/**
|
|
1679
1679
|
* <p>The rule the record matched on.</p>
|
|
1680
1680
|
* @public
|
|
1681
1681
|
*/
|
|
1682
|
-
matchRule?: string;
|
|
1682
|
+
matchRule?: string | undefined;
|
|
1683
1683
|
}
|
|
1684
1684
|
/**
|
|
1685
1685
|
* @public
|
|
@@ -1706,22 +1706,22 @@ export interface JobMetrics {
|
|
|
1706
1706
|
* <p>The total number of input records.</p>
|
|
1707
1707
|
* @public
|
|
1708
1708
|
*/
|
|
1709
|
-
inputRecords?: number;
|
|
1709
|
+
inputRecords?: number | undefined;
|
|
1710
1710
|
/**
|
|
1711
1711
|
* <p>The total number of records processed.</p>
|
|
1712
1712
|
* @public
|
|
1713
1713
|
*/
|
|
1714
|
-
totalRecordsProcessed?: number;
|
|
1714
|
+
totalRecordsProcessed?: number | undefined;
|
|
1715
1715
|
/**
|
|
1716
1716
|
* <p>The total number of records that did not get processed.</p>
|
|
1717
1717
|
* @public
|
|
1718
1718
|
*/
|
|
1719
|
-
recordsNotProcessed?: number;
|
|
1719
|
+
recordsNotProcessed?: number | undefined;
|
|
1720
1720
|
/**
|
|
1721
1721
|
* <p>The total number of <code>matchID</code>s generated.</p>
|
|
1722
1722
|
* @public
|
|
1723
1723
|
*/
|
|
1724
|
-
matchIDs?: number;
|
|
1724
|
+
matchIDs?: number | undefined;
|
|
1725
1725
|
}
|
|
1726
1726
|
/**
|
|
1727
1727
|
* <p>An object containing <code>KMSArn</code>, <code>OutputS3Path</code>, and
|
|
@@ -1746,7 +1746,7 @@ export interface JobOutputSource {
|
|
|
1746
1746
|
* an Entity Resolution managed KMS key.</p>
|
|
1747
1747
|
* @public
|
|
1748
1748
|
*/
|
|
1749
|
-
KMSArn?: string;
|
|
1749
|
+
KMSArn?: string | undefined;
|
|
1750
1750
|
}
|
|
1751
1751
|
/**
|
|
1752
1752
|
* @public
|
|
@@ -1771,23 +1771,23 @@ export interface GetMatchingJobOutput {
|
|
|
1771
1771
|
* <p>The time at which the job has finished.</p>
|
|
1772
1772
|
* @public
|
|
1773
1773
|
*/
|
|
1774
|
-
endTime?: Date;
|
|
1774
|
+
endTime?: Date | undefined;
|
|
1775
1775
|
/**
|
|
1776
1776
|
* <p>Metrics associated with the execution, specifically total records processed, unique IDs
|
|
1777
1777
|
* generated, and records the execution skipped.</p>
|
|
1778
1778
|
* @public
|
|
1779
1779
|
*/
|
|
1780
|
-
metrics?: JobMetrics;
|
|
1780
|
+
metrics?: JobMetrics | undefined;
|
|
1781
1781
|
/**
|
|
1782
1782
|
* <p>An object containing an error message, if there was an error.</p>
|
|
1783
1783
|
* @public
|
|
1784
1784
|
*/
|
|
1785
|
-
errorDetails?: ErrorDetails;
|
|
1785
|
+
errorDetails?: ErrorDetails | undefined;
|
|
1786
1786
|
/**
|
|
1787
1787
|
* <p>A list of <code>OutputSource</code> objects.</p>
|
|
1788
1788
|
* @public
|
|
1789
1789
|
*/
|
|
1790
|
-
outputSourceConfig?: JobOutputSource[];
|
|
1790
|
+
outputSourceConfig?: JobOutputSource[] | undefined;
|
|
1791
1791
|
}
|
|
1792
1792
|
/**
|
|
1793
1793
|
* @public
|
|
@@ -1818,7 +1818,7 @@ export interface GetMatchingWorkflowOutput {
|
|
|
1818
1818
|
* <p>A description of the workflow.</p>
|
|
1819
1819
|
* @public
|
|
1820
1820
|
*/
|
|
1821
|
-
description?: string;
|
|
1821
|
+
description?: string | undefined;
|
|
1822
1822
|
/**
|
|
1823
1823
|
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
1824
1824
|
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
@@ -1853,7 +1853,7 @@ export interface GetMatchingWorkflowOutput {
|
|
|
1853
1853
|
* <code>incrementalRunType</code> as a field.</p>
|
|
1854
1854
|
* @public
|
|
1855
1855
|
*/
|
|
1856
|
-
incrementalRunConfig?: IncrementalRunConfig;
|
|
1856
|
+
incrementalRunConfig?: IncrementalRunConfig | undefined;
|
|
1857
1857
|
/**
|
|
1858
1858
|
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
1859
1859
|
* this role to access Amazon Web Services resources on your behalf.</p>
|
|
@@ -1864,7 +1864,7 @@ export interface GetMatchingWorkflowOutput {
|
|
|
1864
1864
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
1865
1865
|
* @public
|
|
1866
1866
|
*/
|
|
1867
|
-
tags?: Record<string, string
|
|
1867
|
+
tags?: Record<string, string> | undefined;
|
|
1868
1868
|
}
|
|
1869
1869
|
/**
|
|
1870
1870
|
* @public
|
|
@@ -1895,7 +1895,7 @@ export interface GetPolicyOutput {
|
|
|
1895
1895
|
* <p>The resource-based policy.</p>
|
|
1896
1896
|
* @public
|
|
1897
1897
|
*/
|
|
1898
|
-
policy?: string;
|
|
1898
|
+
policy?: string | undefined;
|
|
1899
1899
|
}
|
|
1900
1900
|
/**
|
|
1901
1901
|
* @public
|
|
@@ -1931,12 +1931,12 @@ export interface ProviderSchemaAttribute {
|
|
|
1931
1931
|
* <p>The sub type of the provider schema attribute.</p>
|
|
1932
1932
|
* @public
|
|
1933
1933
|
*/
|
|
1934
|
-
subType?: string;
|
|
1934
|
+
subType?: string | undefined;
|
|
1935
1935
|
/**
|
|
1936
1936
|
* <p>The hashing attribute of the provider schema.</p>
|
|
1937
1937
|
* @public
|
|
1938
1938
|
*/
|
|
1939
|
-
hashing?: boolean;
|
|
1939
|
+
hashing?: boolean | undefined;
|
|
1940
1940
|
}
|
|
1941
1941
|
/**
|
|
1942
1942
|
* <p>The input schema supported by provider service.</p>
|
|
@@ -1947,12 +1947,12 @@ export interface ProviderComponentSchema {
|
|
|
1947
1947
|
* <p>Input schema for the provider service.</p>
|
|
1948
1948
|
* @public
|
|
1949
1949
|
*/
|
|
1950
|
-
schemas?: string[][];
|
|
1950
|
+
schemas?: string[][] | undefined;
|
|
1951
1951
|
/**
|
|
1952
1952
|
* <p>The provider schema attributes.</p>
|
|
1953
1953
|
* @public
|
|
1954
1954
|
*/
|
|
1955
|
-
providerSchemaAttributes?: ProviderSchemaAttribute[];
|
|
1955
|
+
providerSchemaAttributes?: ProviderSchemaAttribute[] | undefined;
|
|
1956
1956
|
}
|
|
1957
1957
|
/**
|
|
1958
1958
|
* <p>The identifiers of the provider service, from Data Exchange.</p>
|
|
@@ -2019,17 +2019,17 @@ export interface ProviderIdNameSpaceConfiguration {
|
|
|
2019
2019
|
* <p>The description of the ID namespace.</p>
|
|
2020
2020
|
* @public
|
|
2021
2021
|
*/
|
|
2022
|
-
description?: string;
|
|
2022
|
+
description?: string | undefined;
|
|
2023
2023
|
/**
|
|
2024
2024
|
* <p>Configurations required for the target ID namespace.</p>
|
|
2025
2025
|
* @public
|
|
2026
2026
|
*/
|
|
2027
|
-
providerTargetConfigurationDefinition?: __DocumentType;
|
|
2027
|
+
providerTargetConfigurationDefinition?: __DocumentType | undefined;
|
|
2028
2028
|
/**
|
|
2029
2029
|
* <p>Configurations required for the source ID namespace.</p>
|
|
2030
2030
|
* @public
|
|
2031
2031
|
*/
|
|
2032
|
-
providerSourceConfigurationDefinition?: __DocumentType;
|
|
2032
|
+
providerSourceConfigurationDefinition?: __DocumentType | undefined;
|
|
2033
2033
|
}
|
|
2034
2034
|
/**
|
|
2035
2035
|
* <p>The required configuration fields to give intermediate access to a provider
|
|
@@ -2042,12 +2042,12 @@ export interface ProviderIntermediateDataAccessConfiguration {
|
|
|
2042
2042
|
* customer's intermediate S3 bucket.</p>
|
|
2043
2043
|
* @public
|
|
2044
2044
|
*/
|
|
2045
|
-
awsAccountIds?: string[];
|
|
2045
|
+
awsAccountIds?: string[] | undefined;
|
|
2046
2046
|
/**
|
|
2047
2047
|
* <p>The S3 bucket actions that the provider requires permission for.</p>
|
|
2048
2048
|
* @public
|
|
2049
2049
|
*/
|
|
2050
|
-
requiredBucketActions?: string[];
|
|
2050
|
+
requiredBucketActions?: string[] | undefined;
|
|
2051
2051
|
}
|
|
2052
2052
|
/**
|
|
2053
2053
|
* @public
|
|
@@ -2095,17 +2095,17 @@ export interface GetProviderServiceOutput {
|
|
|
2095
2095
|
* <p>The definition of the provider configuration.</p>
|
|
2096
2096
|
* @public
|
|
2097
2097
|
*/
|
|
2098
|
-
providerConfigurationDefinition?: __DocumentType;
|
|
2098
|
+
providerConfigurationDefinition?: __DocumentType | undefined;
|
|
2099
2099
|
/**
|
|
2100
2100
|
* <p>The provider configuration required for different ID namespace types.</p>
|
|
2101
2101
|
* @public
|
|
2102
2102
|
*/
|
|
2103
|
-
providerIdNameSpaceConfiguration?: ProviderIdNameSpaceConfiguration;
|
|
2103
|
+
providerIdNameSpaceConfiguration?: ProviderIdNameSpaceConfiguration | undefined;
|
|
2104
2104
|
/**
|
|
2105
2105
|
* <p>Provider service job configurations.</p>
|
|
2106
2106
|
* @public
|
|
2107
2107
|
*/
|
|
2108
|
-
providerJobConfiguration?: __DocumentType;
|
|
2108
|
+
providerJobConfiguration?: __DocumentType | undefined;
|
|
2109
2109
|
/**
|
|
2110
2110
|
* <p>The required configuration fields to use with the provider service.</p>
|
|
2111
2111
|
* @public
|
|
@@ -2130,12 +2130,12 @@ export interface GetProviderServiceOutput {
|
|
|
2130
2130
|
* providers to create an S3 bucket for intermediate data storage.</p>
|
|
2131
2131
|
* @public
|
|
2132
2132
|
*/
|
|
2133
|
-
providerIntermediateDataAccessConfiguration?: ProviderIntermediateDataAccessConfiguration;
|
|
2133
|
+
providerIntermediateDataAccessConfiguration?: ProviderIntermediateDataAccessConfiguration | undefined;
|
|
2134
2134
|
/**
|
|
2135
2135
|
* <p>Input schema for the provider service.</p>
|
|
2136
2136
|
* @public
|
|
2137
2137
|
*/
|
|
2138
|
-
providerComponentSchema?: ProviderComponentSchema;
|
|
2138
|
+
providerComponentSchema?: ProviderComponentSchema | undefined;
|
|
2139
2139
|
}
|
|
2140
2140
|
/**
|
|
2141
2141
|
* @public
|
|
@@ -2166,7 +2166,7 @@ export interface GetSchemaMappingOutput {
|
|
|
2166
2166
|
* <p>A description of the schema.</p>
|
|
2167
2167
|
* @public
|
|
2168
2168
|
*/
|
|
2169
|
-
description?: string;
|
|
2169
|
+
description?: string | undefined;
|
|
2170
2170
|
/**
|
|
2171
2171
|
* <p>A list of <code>MappedInputFields</code>. Each <code>MappedInputField</code> corresponds
|
|
2172
2172
|
* to a column the source data table, and contains column name plus additional information
|
|
@@ -2188,7 +2188,7 @@ export interface GetSchemaMappingOutput {
|
|
|
2188
2188
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
2189
2189
|
* @public
|
|
2190
2190
|
*/
|
|
2191
|
-
tags?: Record<string, string
|
|
2191
|
+
tags?: Record<string, string> | undefined;
|
|
2192
2192
|
/**
|
|
2193
2193
|
* <p>Specifies whether the schema mapping has been applied to a workflow.</p>
|
|
2194
2194
|
* @public
|
|
@@ -2208,12 +2208,12 @@ export interface ListIdMappingJobsInput {
|
|
|
2208
2208
|
* <p>The pagination token from the previous API call.</p>
|
|
2209
2209
|
* @public
|
|
2210
2210
|
*/
|
|
2211
|
-
nextToken?: string;
|
|
2211
|
+
nextToken?: string | undefined;
|
|
2212
2212
|
/**
|
|
2213
2213
|
* <p>The maximum number of objects returned per page.</p>
|
|
2214
2214
|
* @public
|
|
2215
2215
|
*/
|
|
2216
|
-
maxResults?: number;
|
|
2216
|
+
maxResults?: number | undefined;
|
|
2217
2217
|
}
|
|
2218
2218
|
/**
|
|
2219
2219
|
* <p>An object containing the <code>JobId</code>, <code>Status</code>,
|
|
@@ -2240,7 +2240,7 @@ export interface JobSummary {
|
|
|
2240
2240
|
* <p>The time at which the job has finished.</p>
|
|
2241
2241
|
* @public
|
|
2242
2242
|
*/
|
|
2243
|
-
endTime?: Date;
|
|
2243
|
+
endTime?: Date | undefined;
|
|
2244
2244
|
}
|
|
2245
2245
|
/**
|
|
2246
2246
|
* @public
|
|
@@ -2250,12 +2250,12 @@ export interface ListIdMappingJobsOutput {
|
|
|
2250
2250
|
* <p>A list of <code>JobSummary</code> objects.</p>
|
|
2251
2251
|
* @public
|
|
2252
2252
|
*/
|
|
2253
|
-
jobs?: JobSummary[];
|
|
2253
|
+
jobs?: JobSummary[] | undefined;
|
|
2254
2254
|
/**
|
|
2255
2255
|
* <p>The pagination token from the previous API call.</p>
|
|
2256
2256
|
* @public
|
|
2257
2257
|
*/
|
|
2258
|
-
nextToken?: string;
|
|
2258
|
+
nextToken?: string | undefined;
|
|
2259
2259
|
}
|
|
2260
2260
|
/**
|
|
2261
2261
|
* @public
|
|
@@ -2265,12 +2265,12 @@ export interface ListIdMappingWorkflowsInput {
|
|
|
2265
2265
|
* <p>The pagination token from the previous API call.</p>
|
|
2266
2266
|
* @public
|
|
2267
2267
|
*/
|
|
2268
|
-
nextToken?: string;
|
|
2268
|
+
nextToken?: string | undefined;
|
|
2269
2269
|
/**
|
|
2270
2270
|
* <p>The maximum number of objects returned per page.</p>
|
|
2271
2271
|
* @public
|
|
2272
2272
|
*/
|
|
2273
|
-
maxResults?: number;
|
|
2273
|
+
maxResults?: number | undefined;
|
|
2274
2274
|
}
|
|
2275
2275
|
/**
|
|
2276
2276
|
* <p>A list of <code>IdMappingWorkflowSummary</code> objects, each of which contain the
|
|
@@ -2309,12 +2309,12 @@ export interface ListIdMappingWorkflowsOutput {
|
|
|
2309
2309
|
* <p>A list of <code>IdMappingWorkflowSummary</code> objects.</p>
|
|
2310
2310
|
* @public
|
|
2311
2311
|
*/
|
|
2312
|
-
workflowSummaries?: IdMappingWorkflowSummary[];
|
|
2312
|
+
workflowSummaries?: IdMappingWorkflowSummary[] | undefined;
|
|
2313
2313
|
/**
|
|
2314
2314
|
* <p>The pagination token from the previous API call.</p>
|
|
2315
2315
|
* @public
|
|
2316
2316
|
*/
|
|
2317
|
-
nextToken?: string;
|
|
2317
|
+
nextToken?: string | undefined;
|
|
2318
2318
|
}
|
|
2319
2319
|
/**
|
|
2320
2320
|
* @public
|
|
@@ -2324,12 +2324,12 @@ export interface ListIdNamespacesInput {
|
|
|
2324
2324
|
* <p>The pagination token from the previous API call.</p>
|
|
2325
2325
|
* @public
|
|
2326
2326
|
*/
|
|
2327
|
-
nextToken?: string;
|
|
2327
|
+
nextToken?: string | undefined;
|
|
2328
2328
|
/**
|
|
2329
2329
|
* <p>The maximum number of <code>IdNamespace</code> objects returned per page.</p>
|
|
2330
2330
|
* @public
|
|
2331
2331
|
*/
|
|
2332
|
-
maxResults?: number;
|
|
2332
|
+
maxResults?: number | undefined;
|
|
2333
2333
|
}
|
|
2334
2334
|
/**
|
|
2335
2335
|
* <p>The settings for the ID namespace for the ID mapping workflow job.</p>
|
|
@@ -2361,13 +2361,13 @@ export interface IdNamespaceSummary {
|
|
|
2361
2361
|
* <p>The description of the ID namespace.</p>
|
|
2362
2362
|
* @public
|
|
2363
2363
|
*/
|
|
2364
|
-
description?: string;
|
|
2364
|
+
description?: string | undefined;
|
|
2365
2365
|
/**
|
|
2366
2366
|
* <p>An object which defines any additional configurations required by the ID mapping
|
|
2367
2367
|
* workflow.</p>
|
|
2368
2368
|
* @public
|
|
2369
2369
|
*/
|
|
2370
|
-
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowMetadata[];
|
|
2370
|
+
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowMetadata[] | undefined;
|
|
2371
2371
|
/**
|
|
2372
2372
|
* <p>The type of ID namespace. There are two types: <code>SOURCE</code> and
|
|
2373
2373
|
* <code>TARGET</code>.</p>
|
|
@@ -2397,12 +2397,12 @@ export interface ListIdNamespacesOutput {
|
|
|
2397
2397
|
* <p>A list of <code>IdNamespaceSummaries</code> objects.</p>
|
|
2398
2398
|
* @public
|
|
2399
2399
|
*/
|
|
2400
|
-
idNamespaceSummaries?: IdNamespaceSummary[];
|
|
2400
|
+
idNamespaceSummaries?: IdNamespaceSummary[] | undefined;
|
|
2401
2401
|
/**
|
|
2402
2402
|
* <p>The pagination token from the previous API call.</p>
|
|
2403
2403
|
* @public
|
|
2404
2404
|
*/
|
|
2405
|
-
nextToken?: string;
|
|
2405
|
+
nextToken?: string | undefined;
|
|
2406
2406
|
}
|
|
2407
2407
|
/**
|
|
2408
2408
|
* @public
|
|
@@ -2417,12 +2417,12 @@ export interface ListMatchingJobsInput {
|
|
|
2417
2417
|
* <p>The pagination token from the previous API call.</p>
|
|
2418
2418
|
* @public
|
|
2419
2419
|
*/
|
|
2420
|
-
nextToken?: string;
|
|
2420
|
+
nextToken?: string | undefined;
|
|
2421
2421
|
/**
|
|
2422
2422
|
* <p>The maximum number of objects returned per page.</p>
|
|
2423
2423
|
* @public
|
|
2424
2424
|
*/
|
|
2425
|
-
maxResults?: number;
|
|
2425
|
+
maxResults?: number | undefined;
|
|
2426
2426
|
}
|
|
2427
2427
|
/**
|
|
2428
2428
|
* @public
|
|
@@ -2433,12 +2433,12 @@ export interface ListMatchingJobsOutput {
|
|
|
2433
2433
|
* time, and end time of a job.</p>
|
|
2434
2434
|
* @public
|
|
2435
2435
|
*/
|
|
2436
|
-
jobs?: JobSummary[];
|
|
2436
|
+
jobs?: JobSummary[] | undefined;
|
|
2437
2437
|
/**
|
|
2438
2438
|
* <p>The pagination token from the previous API call.</p>
|
|
2439
2439
|
* @public
|
|
2440
2440
|
*/
|
|
2441
|
-
nextToken?: string;
|
|
2441
|
+
nextToken?: string | undefined;
|
|
2442
2442
|
}
|
|
2443
2443
|
/**
|
|
2444
2444
|
* @public
|
|
@@ -2448,12 +2448,12 @@ export interface ListMatchingWorkflowsInput {
|
|
|
2448
2448
|
* <p>The pagination token from the previous API call.</p>
|
|
2449
2449
|
* @public
|
|
2450
2450
|
*/
|
|
2451
|
-
nextToken?: string;
|
|
2451
|
+
nextToken?: string | undefined;
|
|
2452
2452
|
/**
|
|
2453
2453
|
* <p>The maximum number of objects returned per page.</p>
|
|
2454
2454
|
* @public
|
|
2455
2455
|
*/
|
|
2456
|
-
maxResults?: number;
|
|
2456
|
+
maxResults?: number | undefined;
|
|
2457
2457
|
}
|
|
2458
2458
|
/**
|
|
2459
2459
|
* <p>A list of <code>MatchingWorkflowSummary</code> objects, each of which contain the fields
|
|
@@ -2500,12 +2500,12 @@ export interface ListMatchingWorkflowsOutput {
|
|
|
2500
2500
|
* <code>UpdatedAt</code>.</p>
|
|
2501
2501
|
* @public
|
|
2502
2502
|
*/
|
|
2503
|
-
workflowSummaries?: MatchingWorkflowSummary[];
|
|
2503
|
+
workflowSummaries?: MatchingWorkflowSummary[] | undefined;
|
|
2504
2504
|
/**
|
|
2505
2505
|
* <p>The pagination token from the previous API call.</p>
|
|
2506
2506
|
* @public
|
|
2507
2507
|
*/
|
|
2508
|
-
nextToken?: string;
|
|
2508
|
+
nextToken?: string | undefined;
|
|
2509
2509
|
}
|
|
2510
2510
|
/**
|
|
2511
2511
|
* @public
|
|
@@ -2515,17 +2515,17 @@ export interface ListProviderServicesInput {
|
|
|
2515
2515
|
* <p>The pagination token from the previous API call.</p>
|
|
2516
2516
|
* @public
|
|
2517
2517
|
*/
|
|
2518
|
-
nextToken?: string;
|
|
2518
|
+
nextToken?: string | undefined;
|
|
2519
2519
|
/**
|
|
2520
2520
|
* <p>The maximum number of objects returned per page.</p>
|
|
2521
2521
|
* @public
|
|
2522
2522
|
*/
|
|
2523
|
-
maxResults?: number;
|
|
2523
|
+
maxResults?: number | undefined;
|
|
2524
2524
|
/**
|
|
2525
2525
|
* <p>The name of the provider. This name is typically the company name.</p>
|
|
2526
2526
|
* @public
|
|
2527
2527
|
*/
|
|
2528
|
-
providerName?: string;
|
|
2528
|
+
providerName?: string | undefined;
|
|
2529
2529
|
}
|
|
2530
2530
|
/**
|
|
2531
2531
|
* <p>A list of <code>ProviderService</code> objects, each of which contain the fields
|
|
@@ -2569,12 +2569,12 @@ export interface ListProviderServicesOutput {
|
|
|
2569
2569
|
* <p>A list of <code>ProviderServices</code> objects.</p>
|
|
2570
2570
|
* @public
|
|
2571
2571
|
*/
|
|
2572
|
-
providerServiceSummaries?: ProviderServiceSummary[];
|
|
2572
|
+
providerServiceSummaries?: ProviderServiceSummary[] | undefined;
|
|
2573
2573
|
/**
|
|
2574
2574
|
* <p>The pagination token from the previous API call.</p>
|
|
2575
2575
|
* @public
|
|
2576
2576
|
*/
|
|
2577
|
-
nextToken?: string;
|
|
2577
|
+
nextToken?: string | undefined;
|
|
2578
2578
|
}
|
|
2579
2579
|
/**
|
|
2580
2580
|
* @public
|
|
@@ -2584,12 +2584,12 @@ export interface ListSchemaMappingsInput {
|
|
|
2584
2584
|
* <p>The pagination token from the previous API call.</p>
|
|
2585
2585
|
* @public
|
|
2586
2586
|
*/
|
|
2587
|
-
nextToken?: string;
|
|
2587
|
+
nextToken?: string | undefined;
|
|
2588
2588
|
/**
|
|
2589
2589
|
* <p>The maximum number of objects returned per page.</p>
|
|
2590
2590
|
* @public
|
|
2591
2591
|
*/
|
|
2592
|
-
maxResults?: number;
|
|
2592
|
+
maxResults?: number | undefined;
|
|
2593
2593
|
}
|
|
2594
2594
|
/**
|
|
2595
2595
|
* <p>An object containing <code>SchemaName</code>, <code>SchemaArn</code>,
|
|
@@ -2634,12 +2634,12 @@ export interface ListSchemaMappingsOutput {
|
|
|
2634
2634
|
* <code>UpdatedAt</code>.</p>
|
|
2635
2635
|
* @public
|
|
2636
2636
|
*/
|
|
2637
|
-
schemaList?: SchemaMappingSummary[];
|
|
2637
|
+
schemaList?: SchemaMappingSummary[] | undefined;
|
|
2638
2638
|
/**
|
|
2639
2639
|
* <p>The pagination token from the previous API call.</p>
|
|
2640
2640
|
* @public
|
|
2641
2641
|
*/
|
|
2642
|
-
nextToken?: string;
|
|
2642
|
+
nextToken?: string | undefined;
|
|
2643
2643
|
}
|
|
2644
2644
|
/**
|
|
2645
2645
|
* @public
|
|
@@ -2675,7 +2675,7 @@ export interface PutPolicyInput {
|
|
|
2675
2675
|
* <p>A unique identifier for the current revision of the policy.</p>
|
|
2676
2676
|
* @public
|
|
2677
2677
|
*/
|
|
2678
|
-
token?: string;
|
|
2678
|
+
token?: string | undefined;
|
|
2679
2679
|
/**
|
|
2680
2680
|
* <p>The resource-based policy.</p>
|
|
2681
2681
|
* <important>
|
|
@@ -2706,7 +2706,7 @@ export interface PutPolicyOutput {
|
|
|
2706
2706
|
* <p>The resource-based policy.</p>
|
|
2707
2707
|
* @public
|
|
2708
2708
|
*/
|
|
2709
|
-
policy?: string;
|
|
2709
|
+
policy?: string | undefined;
|
|
2710
2710
|
}
|
|
2711
2711
|
/**
|
|
2712
2712
|
* @public
|
|
@@ -2721,7 +2721,7 @@ export interface StartIdMappingJobInput {
|
|
|
2721
2721
|
* <p>A list of <code>OutputSource</code> objects.</p>
|
|
2722
2722
|
* @public
|
|
2723
2723
|
*/
|
|
2724
|
-
outputSourceConfig?: IdMappingJobOutputSource[];
|
|
2724
|
+
outputSourceConfig?: IdMappingJobOutputSource[] | undefined;
|
|
2725
2725
|
}
|
|
2726
2726
|
/**
|
|
2727
2727
|
* @public
|
|
@@ -2736,7 +2736,7 @@ export interface StartIdMappingJobOutput {
|
|
|
2736
2736
|
* <p>A list of <code>OutputSource</code> objects.</p>
|
|
2737
2737
|
* @public
|
|
2738
2738
|
*/
|
|
2739
|
-
outputSourceConfig?: IdMappingJobOutputSource[];
|
|
2739
|
+
outputSourceConfig?: IdMappingJobOutputSource[] | undefined;
|
|
2740
2740
|
}
|
|
2741
2741
|
/**
|
|
2742
2742
|
* @public
|
|
@@ -2811,7 +2811,7 @@ export interface UpdateIdMappingWorkflowInput {
|
|
|
2811
2811
|
* <p>A description of the workflow.</p>
|
|
2812
2812
|
* @public
|
|
2813
2813
|
*/
|
|
2814
|
-
description?: string;
|
|
2814
|
+
description?: string | undefined;
|
|
2815
2815
|
/**
|
|
2816
2816
|
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
2817
2817
|
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
@@ -2823,7 +2823,7 @@ export interface UpdateIdMappingWorkflowInput {
|
|
|
2823
2823
|
* <code>OutputS3Path</code> and <code>KMSArn</code>.</p>
|
|
2824
2824
|
* @public
|
|
2825
2825
|
*/
|
|
2826
|
-
outputSourceConfig?: IdMappingWorkflowOutputSource[];
|
|
2826
|
+
outputSourceConfig?: IdMappingWorkflowOutputSource[] | undefined;
|
|
2827
2827
|
/**
|
|
2828
2828
|
* <p>An object which defines the ID mapping technique and any additional
|
|
2829
2829
|
* configurations.</p>
|
|
@@ -2835,7 +2835,7 @@ export interface UpdateIdMappingWorkflowInput {
|
|
|
2835
2835
|
* this role to access Amazon Web Services resources on your behalf.</p>
|
|
2836
2836
|
* @public
|
|
2837
2837
|
*/
|
|
2838
|
-
roleArn?: string;
|
|
2838
|
+
roleArn?: string | undefined;
|
|
2839
2839
|
}
|
|
2840
2840
|
/**
|
|
2841
2841
|
* @public
|
|
@@ -2856,7 +2856,7 @@ export interface UpdateIdMappingWorkflowOutput {
|
|
|
2856
2856
|
* <p>A description of the workflow.</p>
|
|
2857
2857
|
* @public
|
|
2858
2858
|
*/
|
|
2859
|
-
description?: string;
|
|
2859
|
+
description?: string | undefined;
|
|
2860
2860
|
/**
|
|
2861
2861
|
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
2862
2862
|
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
@@ -2868,7 +2868,7 @@ export interface UpdateIdMappingWorkflowOutput {
|
|
|
2868
2868
|
* <code>OutputS3Path</code> and <code>KMSArn</code>.</p>
|
|
2869
2869
|
* @public
|
|
2870
2870
|
*/
|
|
2871
|
-
outputSourceConfig?: IdMappingWorkflowOutputSource[];
|
|
2871
|
+
outputSourceConfig?: IdMappingWorkflowOutputSource[] | undefined;
|
|
2872
2872
|
/**
|
|
2873
2873
|
* <p>An object which defines the ID mapping technique and any additional
|
|
2874
2874
|
* configurations.</p>
|
|
@@ -2880,7 +2880,7 @@ export interface UpdateIdMappingWorkflowOutput {
|
|
|
2880
2880
|
* this role to access Amazon Web Services resources on your behalf.</p>
|
|
2881
2881
|
* @public
|
|
2882
2882
|
*/
|
|
2883
|
-
roleArn?: string;
|
|
2883
|
+
roleArn?: string | undefined;
|
|
2884
2884
|
}
|
|
2885
2885
|
/**
|
|
2886
2886
|
* @public
|
|
@@ -2895,27 +2895,27 @@ export interface UpdateIdNamespaceInput {
|
|
|
2895
2895
|
* <p>The description of the ID namespace.</p>
|
|
2896
2896
|
* @public
|
|
2897
2897
|
*/
|
|
2898
|
-
description?: string;
|
|
2898
|
+
description?: string | undefined;
|
|
2899
2899
|
/**
|
|
2900
2900
|
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
2901
2901
|
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
2902
2902
|
* @public
|
|
2903
2903
|
*/
|
|
2904
|
-
inputSourceConfig?: IdNamespaceInputSource[];
|
|
2904
|
+
inputSourceConfig?: IdNamespaceInputSource[] | undefined;
|
|
2905
2905
|
/**
|
|
2906
2906
|
* <p>Determines the properties of <code>IdMappingWorkflow</code> where this
|
|
2907
2907
|
* <code>IdNamespace</code> can be used as a <code>Source</code> or a
|
|
2908
2908
|
* <code>Target</code>.</p>
|
|
2909
2909
|
* @public
|
|
2910
2910
|
*/
|
|
2911
|
-
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[];
|
|
2911
|
+
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[] | undefined;
|
|
2912
2912
|
/**
|
|
2913
2913
|
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
2914
2914
|
* this role to access the resources defined in this <code>IdNamespace</code> on your behalf
|
|
2915
2915
|
* as part of a workflow run.</p>
|
|
2916
2916
|
* @public
|
|
2917
2917
|
*/
|
|
2918
|
-
roleArn?: string;
|
|
2918
|
+
roleArn?: string | undefined;
|
|
2919
2919
|
}
|
|
2920
2920
|
/**
|
|
2921
2921
|
* @public
|
|
@@ -2935,20 +2935,20 @@ export interface UpdateIdNamespaceOutput {
|
|
|
2935
2935
|
* <p>The description of the ID namespace.</p>
|
|
2936
2936
|
* @public
|
|
2937
2937
|
*/
|
|
2938
|
-
description?: string;
|
|
2938
|
+
description?: string | undefined;
|
|
2939
2939
|
/**
|
|
2940
2940
|
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
2941
2941
|
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
2942
2942
|
* @public
|
|
2943
2943
|
*/
|
|
2944
|
-
inputSourceConfig?: IdNamespaceInputSource[];
|
|
2944
|
+
inputSourceConfig?: IdNamespaceInputSource[] | undefined;
|
|
2945
2945
|
/**
|
|
2946
2946
|
* <p>Determines the properties of <code>IdMappingWorkflow</code> where this
|
|
2947
2947
|
* <code>IdNamespace</code> can be used as a <code>Source</code> or a
|
|
2948
2948
|
* <code>Target</code>.</p>
|
|
2949
2949
|
* @public
|
|
2950
2950
|
*/
|
|
2951
|
-
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[];
|
|
2951
|
+
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[] | undefined;
|
|
2952
2952
|
/**
|
|
2953
2953
|
* <p>The type of ID namespace. There are two types: <code>SOURCE</code> and
|
|
2954
2954
|
* <code>TARGET</code>.</p>
|
|
@@ -2965,7 +2965,7 @@ export interface UpdateIdNamespaceOutput {
|
|
|
2965
2965
|
* as part of a workflow run.</p>
|
|
2966
2966
|
* @public
|
|
2967
2967
|
*/
|
|
2968
|
-
roleArn?: string;
|
|
2968
|
+
roleArn?: string | undefined;
|
|
2969
2969
|
/**
|
|
2970
2970
|
* <p>The timestamp of when the ID namespace was created.</p>
|
|
2971
2971
|
* @public
|
|
@@ -2990,7 +2990,7 @@ export interface UpdateMatchingWorkflowInput {
|
|
|
2990
2990
|
* <p>A description of the workflow.</p>
|
|
2991
2991
|
* @public
|
|
2992
2992
|
*/
|
|
2993
|
-
description?: string;
|
|
2993
|
+
description?: string | undefined;
|
|
2994
2994
|
/**
|
|
2995
2995
|
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
2996
2996
|
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
@@ -3015,7 +3015,7 @@ export interface UpdateMatchingWorkflowInput {
|
|
|
3015
3015
|
* <code>incrementalRunType</code> as a field.</p>
|
|
3016
3016
|
* @public
|
|
3017
3017
|
*/
|
|
3018
|
-
incrementalRunConfig?: IncrementalRunConfig;
|
|
3018
|
+
incrementalRunConfig?: IncrementalRunConfig | undefined;
|
|
3019
3019
|
/**
|
|
3020
3020
|
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to
|
|
3021
3021
|
* create resources on your behalf as part of workflow execution.</p>
|
|
@@ -3036,7 +3036,7 @@ export interface UpdateMatchingWorkflowOutput {
|
|
|
3036
3036
|
* <p>A description of the workflow.</p>
|
|
3037
3037
|
* @public
|
|
3038
3038
|
*/
|
|
3039
|
-
description?: string;
|
|
3039
|
+
description?: string | undefined;
|
|
3040
3040
|
/**
|
|
3041
3041
|
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
3042
3042
|
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
@@ -3062,7 +3062,7 @@ export interface UpdateMatchingWorkflowOutput {
|
|
|
3062
3062
|
* <code>incrementalRunType</code> as a field.</p>
|
|
3063
3063
|
* @public
|
|
3064
3064
|
*/
|
|
3065
|
-
incrementalRunConfig?: IncrementalRunConfig;
|
|
3065
|
+
incrementalRunConfig?: IncrementalRunConfig | undefined;
|
|
3066
3066
|
/**
|
|
3067
3067
|
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
3068
3068
|
* this role to create resources on your behalf as part of workflow execution.</p>
|
|
@@ -3084,7 +3084,7 @@ export interface UpdateSchemaMappingInput {
|
|
|
3084
3084
|
* <p>A description of the schema.</p>
|
|
3085
3085
|
* @public
|
|
3086
3086
|
*/
|
|
3087
|
-
description?: string;
|
|
3087
|
+
description?: string | undefined;
|
|
3088
3088
|
/**
|
|
3089
3089
|
* <p>A list of <code>MappedInputFields</code>. Each <code>MappedInputField</code> corresponds
|
|
3090
3090
|
* to a column the source data table, and contains column name plus additional information
|
|
@@ -3112,7 +3112,7 @@ export interface UpdateSchemaMappingOutput {
|
|
|
3112
3112
|
* <p>A description of the schema.</p>
|
|
3113
3113
|
* @public
|
|
3114
3114
|
*/
|
|
3115
|
-
description?: string;
|
|
3115
|
+
description?: string | undefined;
|
|
3116
3116
|
/**
|
|
3117
3117
|
* <p>A list of <code>MappedInputFields</code>. Each <code>MappedInputField</code> corresponds
|
|
3118
3118
|
* to a column the source data table, and contains column name plus additional information
|