aws-sdk-entityresolution 1.26.0 → 1.27.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.
@@ -473,18 +473,13 @@ module Aws::EntityResolution
473
473
  # Adds a policy statement object. To retrieve a list of existing policy
474
474
  # statements, use the `GetPolicy` API.
475
475
  #
476
- # @option params [required, Array<String>] :action
477
- # The action that the principal can use on the resource.
478
- #
479
- # For example, `entityresolution:GetIdMappingJob`,
480
- # `entityresolution:GetMatchingJob`.
481
- #
482
476
  # @option params [required, String] :arn
483
477
  # The Amazon Resource Name (ARN) of the resource that will be accessed
484
478
  # by the principal.
485
479
  #
486
- # @option params [String] :condition
487
- # A set of condition keys that you can use in key policies.
480
+ # @option params [required, String] :statement_id
481
+ # A statement identifier that differentiates the statement from others
482
+ # in the same policy.
488
483
  #
489
484
  # @option params [required, String] :effect
490
485
  # Determines whether the permissions specified in the policy are to be
@@ -495,36 +490,41 @@ module Aws::EntityResolution
495
490
  # `effect` parameter in the `policy` to `Deny` for the `PutPolicy`
496
491
  # operation.
497
492
  #
493
+ # @option params [required, Array<String>] :action
494
+ # The action that the principal can use on the resource.
495
+ #
496
+ # For example, `entityresolution:GetIdMappingJob`,
497
+ # `entityresolution:GetMatchingJob`.
498
+ #
498
499
  # @option params [required, Array<String>] :principal
499
500
  # The Amazon Web Services service or Amazon Web Services account that
500
501
  # can access the resource defined as ARN.
501
502
  #
502
- # @option params [required, String] :statement_id
503
- # A statement identifier that differentiates the statement from others
504
- # in the same policy.
503
+ # @option params [String] :condition
504
+ # A set of condition keys that you can use in key policies.
505
505
  #
506
506
  # @return [Types::AddPolicyStatementOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
507
507
  #
508
508
  # * {Types::AddPolicyStatementOutput#arn #arn} => String
509
- # * {Types::AddPolicyStatementOutput#policy #policy} => String
510
509
  # * {Types::AddPolicyStatementOutput#token #token} => String
510
+ # * {Types::AddPolicyStatementOutput#policy #policy} => String
511
511
  #
512
512
  # @example Request syntax with placeholder values
513
513
  #
514
514
  # resp = client.add_policy_statement({
515
- # action: ["StatementAction"], # required
516
515
  # arn: "VeniceGlobalArn", # required
517
- # condition: "StatementCondition",
516
+ # statement_id: "StatementId", # required
518
517
  # effect: "Allow", # required, accepts Allow, Deny
518
+ # action: ["StatementAction"], # required
519
519
  # principal: ["StatementPrincipal"], # required
520
- # statement_id: "StatementId", # required
520
+ # condition: "StatementCondition",
521
521
  # })
522
522
  #
523
523
  # @example Response structure
524
524
  #
525
525
  # resp.arn #=> String
526
- # resp.policy #=> String
527
526
  # resp.token #=> String
527
+ # resp.policy #=> String
528
528
  #
529
529
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/AddPolicyStatement AWS API Documentation
530
530
  #
@@ -537,40 +537,40 @@ module Aws::EntityResolution
537
537
 
538
538
  # Deletes multiple unique IDs in a matching workflow.
539
539
  #
540
+ # @option params [required, String] :workflow_name
541
+ # The name of the workflow.
542
+ #
540
543
  # @option params [String] :input_source
541
544
  # The input source for the batch delete unique ID operation.
542
545
  #
543
546
  # @option params [required, Array<String>] :unique_ids
544
547
  # The unique IDs to delete.
545
548
  #
546
- # @option params [required, String] :workflow_name
547
- # The name of the workflow.
548
- #
549
549
  # @return [Types::BatchDeleteUniqueIdOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
550
550
  #
551
+ # * {Types::BatchDeleteUniqueIdOutput#status #status} => String
552
+ # * {Types::BatchDeleteUniqueIdOutput#errors #errors} => Array&lt;Types::DeleteUniqueIdError&gt;
551
553
  # * {Types::BatchDeleteUniqueIdOutput#deleted #deleted} => Array&lt;Types::DeletedUniqueId&gt;
552
554
  # * {Types::BatchDeleteUniqueIdOutput#disconnected_unique_ids #disconnected_unique_ids} => Array&lt;String&gt;
553
- # * {Types::BatchDeleteUniqueIdOutput#errors #errors} => Array&lt;Types::DeleteUniqueIdError&gt;
554
- # * {Types::BatchDeleteUniqueIdOutput#status #status} => String
555
555
  #
556
556
  # @example Request syntax with placeholder values
557
557
  #
558
558
  # resp = client.batch_delete_unique_id({
559
- # input_source: "BatchDeleteUniqueIdInputInputSourceString",
560
- # unique_ids: ["UniqueId"], # required
561
559
  # workflow_name: "EntityName", # required
560
+ # input_source: "BatchDeleteUniqueIdInputInputSourceString",
561
+ # unique_ids: ["HeaderSafeUniqueId"], # required
562
562
  # })
563
563
  #
564
564
  # @example Response structure
565
565
  #
566
+ # resp.status #=> String, one of "COMPLETED", "ACCEPTED"
567
+ # resp.errors #=> Array
568
+ # resp.errors[0].unique_id #=> String
569
+ # resp.errors[0].error_type #=> String, one of "SERVICE_ERROR", "VALIDATION_ERROR"
566
570
  # resp.deleted #=> Array
567
571
  # resp.deleted[0].unique_id #=> String
568
572
  # resp.disconnected_unique_ids #=> Array
569
573
  # resp.disconnected_unique_ids[0] #=> String
570
- # resp.errors #=> Array
571
- # resp.errors[0].error_type #=> String, one of "SERVICE_ERROR", "VALIDATION_ERROR"
572
- # resp.errors[0].unique_id #=> String
573
- # resp.status #=> String, one of "COMPLETED", "ACCEPTED"
574
574
  #
575
575
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/BatchDeleteUniqueId AWS API Documentation
576
576
  #
@@ -586,13 +586,13 @@ module Aws::EntityResolution
586
586
  # have a unique workflow name. To modify an existing workflow, use the
587
587
  # `UpdateIdMappingWorkflow` API.
588
588
  #
589
+ # @option params [required, String] :workflow_name
590
+ # The name of the workflow. There can't be multiple
591
+ # `IdMappingWorkflows` with the same name.
592
+ #
589
593
  # @option params [String] :description
590
594
  # A description of the workflow.
591
595
  #
592
- # @option params [required, Types::IdMappingTechniques] :id_mapping_techniques
593
- # An object which defines the ID mapping technique and any additional
594
- # configurations.
595
- #
596
596
  # @option params [required, Array<Types::IdMappingWorkflowInputSource>] :input_source_config
597
597
  # A list of `InputSource` objects, which have the fields
598
598
  # `InputSourceARN` and `SchemaName`.
@@ -601,6 +601,10 @@ module Aws::EntityResolution
601
601
  # A list of `IdMappingWorkflowOutputSource` objects, each of which
602
602
  # contains fields `OutputS3Path` and `Output`.
603
603
  #
604
+ # @option params [required, Types::IdMappingTechniques] :id_mapping_techniques
605
+ # An object which defines the ID mapping technique and any additional
606
+ # configurations.
607
+ #
604
608
  # @option params [String] :role_arn
605
609
  # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
606
610
  # assumes this role to create resources on your behalf as part of
@@ -609,46 +613,21 @@ module Aws::EntityResolution
609
613
  # @option params [Hash<String,String>] :tags
610
614
  # The tags used to organize, track, or control access for this resource.
611
615
  #
612
- # @option params [required, String] :workflow_name
613
- # The name of the workflow. There can't be multiple
614
- # `IdMappingWorkflows` with the same name.
615
- #
616
616
  # @return [Types::CreateIdMappingWorkflowOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
617
617
  #
618
+ # * {Types::CreateIdMappingWorkflowOutput#workflow_name #workflow_name} => String
619
+ # * {Types::CreateIdMappingWorkflowOutput#workflow_arn #workflow_arn} => String
618
620
  # * {Types::CreateIdMappingWorkflowOutput#description #description} => String
619
- # * {Types::CreateIdMappingWorkflowOutput#id_mapping_techniques #id_mapping_techniques} => Types::IdMappingTechniques
620
621
  # * {Types::CreateIdMappingWorkflowOutput#input_source_config #input_source_config} => Array&lt;Types::IdMappingWorkflowInputSource&gt;
621
622
  # * {Types::CreateIdMappingWorkflowOutput#output_source_config #output_source_config} => Array&lt;Types::IdMappingWorkflowOutputSource&gt;
623
+ # * {Types::CreateIdMappingWorkflowOutput#id_mapping_techniques #id_mapping_techniques} => Types::IdMappingTechniques
622
624
  # * {Types::CreateIdMappingWorkflowOutput#role_arn #role_arn} => String
623
- # * {Types::CreateIdMappingWorkflowOutput#workflow_arn #workflow_arn} => String
624
- # * {Types::CreateIdMappingWorkflowOutput#workflow_name #workflow_name} => String
625
625
  #
626
626
  # @example Request syntax with placeholder values
627
627
  #
628
628
  # resp = client.create_id_mapping_workflow({
629
+ # workflow_name: "EntityName", # required
629
630
  # description: "Description",
630
- # id_mapping_techniques: { # required
631
- # id_mapping_type: "PROVIDER", # required, accepts PROVIDER, RULE_BASED
632
- # provider_properties: {
633
- # intermediate_source_configuration: {
634
- # intermediate_s3_path: "S3Path", # required
635
- # },
636
- # provider_configuration: {
637
- # },
638
- # provider_service_arn: "ProviderServiceArn", # required
639
- # },
640
- # rule_based_properties: {
641
- # attribute_matching_model: "ONE_TO_ONE", # required, accepts ONE_TO_ONE, MANY_TO_MANY
642
- # record_matching_model: "ONE_SOURCE_TO_ONE_TARGET", # required, accepts ONE_SOURCE_TO_ONE_TARGET, MANY_SOURCE_TO_ONE_TARGET
643
- # rule_definition_type: "SOURCE", # required, accepts SOURCE, TARGET
644
- # rules: [
645
- # {
646
- # matching_keys: ["AttributeName"], # required
647
- # rule_name: "RuleRuleNameString", # required
648
- # },
649
- # ],
650
- # },
651
- # },
652
631
  # input_source_config: [ # required
653
632
  # {
654
633
  # input_source_arn: "IdMappingWorkflowInputSourceInputSourceARNString", # required
@@ -658,40 +637,61 @@ module Aws::EntityResolution
658
637
  # ],
659
638
  # output_source_config: [
660
639
  # {
661
- # kms_arn: "KMSArn",
662
640
  # output_s3_path: "S3Path", # required
641
+ # kms_arn: "KMSArn",
663
642
  # },
664
643
  # ],
644
+ # id_mapping_techniques: { # required
645
+ # id_mapping_type: "PROVIDER", # required, accepts PROVIDER, RULE_BASED
646
+ # rule_based_properties: {
647
+ # rules: [
648
+ # {
649
+ # rule_name: "RuleRuleNameString", # required
650
+ # matching_keys: ["AttributeName"], # required
651
+ # },
652
+ # ],
653
+ # rule_definition_type: "SOURCE", # required, accepts SOURCE, TARGET
654
+ # attribute_matching_model: "ONE_TO_ONE", # required, accepts ONE_TO_ONE, MANY_TO_MANY
655
+ # record_matching_model: "ONE_SOURCE_TO_ONE_TARGET", # required, accepts ONE_SOURCE_TO_ONE_TARGET, MANY_SOURCE_TO_ONE_TARGET
656
+ # },
657
+ # provider_properties: {
658
+ # provider_service_arn: "ProviderServiceArn", # required
659
+ # provider_configuration: {
660
+ # },
661
+ # intermediate_source_configuration: {
662
+ # intermediate_s3_path: "S3Path", # required
663
+ # },
664
+ # },
665
+ # },
665
666
  # role_arn: "IdMappingRoleArn",
666
667
  # tags: {
667
668
  # "TagKey" => "TagValue",
668
669
  # },
669
- # workflow_name: "EntityName", # required
670
670
  # })
671
671
  #
672
672
  # @example Response structure
673
673
  #
674
+ # resp.workflow_name #=> String
675
+ # resp.workflow_arn #=> String
674
676
  # resp.description #=> String
675
- # resp.id_mapping_techniques.id_mapping_type #=> String, one of "PROVIDER", "RULE_BASED"
676
- # resp.id_mapping_techniques.provider_properties.intermediate_source_configuration.intermediate_s3_path #=> String
677
- # resp.id_mapping_techniques.provider_properties.provider_service_arn #=> String
678
- # resp.id_mapping_techniques.rule_based_properties.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
679
- # resp.id_mapping_techniques.rule_based_properties.record_matching_model #=> String, one of "ONE_SOURCE_TO_ONE_TARGET", "MANY_SOURCE_TO_ONE_TARGET"
680
- # resp.id_mapping_techniques.rule_based_properties.rule_definition_type #=> String, one of "SOURCE", "TARGET"
681
- # resp.id_mapping_techniques.rule_based_properties.rules #=> Array
682
- # resp.id_mapping_techniques.rule_based_properties.rules[0].matching_keys #=> Array
683
- # resp.id_mapping_techniques.rule_based_properties.rules[0].matching_keys[0] #=> String
684
- # resp.id_mapping_techniques.rule_based_properties.rules[0].rule_name #=> String
685
677
  # resp.input_source_config #=> Array
686
678
  # resp.input_source_config[0].input_source_arn #=> String
687
679
  # resp.input_source_config[0].schema_name #=> String
688
680
  # resp.input_source_config[0].type #=> String, one of "SOURCE", "TARGET"
689
681
  # resp.output_source_config #=> Array
690
- # resp.output_source_config[0].kms_arn #=> String
691
682
  # resp.output_source_config[0].output_s3_path #=> String
683
+ # resp.output_source_config[0].kms_arn #=> String
684
+ # resp.id_mapping_techniques.id_mapping_type #=> String, one of "PROVIDER", "RULE_BASED"
685
+ # resp.id_mapping_techniques.rule_based_properties.rules #=> Array
686
+ # resp.id_mapping_techniques.rule_based_properties.rules[0].rule_name #=> String
687
+ # resp.id_mapping_techniques.rule_based_properties.rules[0].matching_keys #=> Array
688
+ # resp.id_mapping_techniques.rule_based_properties.rules[0].matching_keys[0] #=> String
689
+ # resp.id_mapping_techniques.rule_based_properties.rule_definition_type #=> String, one of "SOURCE", "TARGET"
690
+ # resp.id_mapping_techniques.rule_based_properties.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
691
+ # resp.id_mapping_techniques.rule_based_properties.record_matching_model #=> String, one of "ONE_SOURCE_TO_ONE_TARGET", "MANY_SOURCE_TO_ONE_TARGET"
692
+ # resp.id_mapping_techniques.provider_properties.provider_service_arn #=> String
693
+ # resp.id_mapping_techniques.provider_properties.intermediate_source_configuration.intermediate_s3_path #=> String
692
694
  # resp.role_arn #=> String
693
- # resp.workflow_arn #=> String
694
- # resp.workflow_name #=> String
695
695
  #
696
696
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/CreateIdMappingWorkflow AWS API Documentation
697
697
  #
@@ -707,27 +707,19 @@ module Aws::EntityResolution
707
707
  # must have a unique name. To modify an existing ID namespace, use the
708
708
  # `UpdateIdNamespace` API.
709
709
  #
710
- # @option params [String] :description
711
- # The description of the ID namespace.
712
- #
713
- # @option params [Array<Types::IdNamespaceIdMappingWorkflowProperties>] :id_mapping_workflow_properties
714
- # Determines the properties of `IdMappingWorflow` where this
715
- # `IdNamespace` can be used as a `Source` or a `Target`.
716
- #
717
710
  # @option params [required, String] :id_namespace_name
718
711
  # The name of the ID namespace.
719
712
  #
713
+ # @option params [String] :description
714
+ # The description of the ID namespace.
715
+ #
720
716
  # @option params [Array<Types::IdNamespaceInputSource>] :input_source_config
721
717
  # A list of `InputSource` objects, which have the fields
722
718
  # `InputSourceARN` and `SchemaName`.
723
719
  #
724
- # @option params [String] :role_arn
725
- # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
726
- # assumes this role to access the resources defined in this
727
- # `IdNamespace` on your behalf as part of the workflow run.
728
- #
729
- # @option params [Hash<String,String>] :tags
730
- # The tags used to organize, track, or control access for this resource.
720
+ # @option params [Array<Types::IdNamespaceIdMappingWorkflowProperties>] :id_mapping_workflow_properties
721
+ # Determines the properties of `IdMappingWorflow` where this
722
+ # `IdNamespace` can be used as a `Source` or a `Target`.
731
723
  #
732
724
  # @option params [required, String] :type
733
725
  # The type of ID namespace. There are two types: `SOURCE` and `TARGET`.
@@ -738,84 +730,92 @@ module Aws::EntityResolution
738
730
  # The `TARGET` contains a configuration of `targetId` to which all
739
731
  # `sourceIds` will resolve to.
740
732
  #
733
+ # @option params [String] :role_arn
734
+ # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
735
+ # assumes this role to access the resources defined in this
736
+ # `IdNamespace` on your behalf as part of the workflow run.
737
+ #
738
+ # @option params [Hash<String,String>] :tags
739
+ # The tags used to organize, track, or control access for this resource.
740
+ #
741
741
  # @return [Types::CreateIdNamespaceOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
742
742
  #
743
- # * {Types::CreateIdNamespaceOutput#created_at #created_at} => Time
744
- # * {Types::CreateIdNamespaceOutput#description #description} => String
745
- # * {Types::CreateIdNamespaceOutput#id_mapping_workflow_properties #id_mapping_workflow_properties} => Array&lt;Types::IdNamespaceIdMappingWorkflowProperties&gt;
746
- # * {Types::CreateIdNamespaceOutput#id_namespace_arn #id_namespace_arn} => String
747
743
  # * {Types::CreateIdNamespaceOutput#id_namespace_name #id_namespace_name} => String
744
+ # * {Types::CreateIdNamespaceOutput#id_namespace_arn #id_namespace_arn} => String
745
+ # * {Types::CreateIdNamespaceOutput#description #description} => String
748
746
  # * {Types::CreateIdNamespaceOutput#input_source_config #input_source_config} => Array&lt;Types::IdNamespaceInputSource&gt;
749
- # * {Types::CreateIdNamespaceOutput#role_arn #role_arn} => String
750
- # * {Types::CreateIdNamespaceOutput#tags #tags} => Hash&lt;String,String&gt;
747
+ # * {Types::CreateIdNamespaceOutput#id_mapping_workflow_properties #id_mapping_workflow_properties} => Array&lt;Types::IdNamespaceIdMappingWorkflowProperties&gt;
751
748
  # * {Types::CreateIdNamespaceOutput#type #type} => String
749
+ # * {Types::CreateIdNamespaceOutput#role_arn #role_arn} => String
750
+ # * {Types::CreateIdNamespaceOutput#created_at #created_at} => Time
752
751
  # * {Types::CreateIdNamespaceOutput#updated_at #updated_at} => Time
752
+ # * {Types::CreateIdNamespaceOutput#tags #tags} => Hash&lt;String,String&gt;
753
753
  #
754
754
  # @example Request syntax with placeholder values
755
755
  #
756
756
  # resp = client.create_id_namespace({
757
+ # id_namespace_name: "EntityName", # required
757
758
  # description: "Description",
759
+ # input_source_config: [
760
+ # {
761
+ # input_source_arn: "IdNamespaceInputSourceInputSourceARNString", # required
762
+ # schema_name: "EntityName",
763
+ # },
764
+ # ],
758
765
  # id_mapping_workflow_properties: [
759
766
  # {
760
767
  # id_mapping_type: "PROVIDER", # required, accepts PROVIDER, RULE_BASED
761
- # provider_properties: {
762
- # provider_configuration: {
763
- # },
764
- # provider_service_arn: "ProviderServiceArn", # required
765
- # },
766
768
  # rule_based_properties: {
767
- # attribute_matching_model: "ONE_TO_ONE", # accepts ONE_TO_ONE, MANY_TO_MANY
768
- # record_matching_models: ["ONE_SOURCE_TO_ONE_TARGET"], # accepts ONE_SOURCE_TO_ONE_TARGET, MANY_SOURCE_TO_ONE_TARGET
769
- # rule_definition_types: ["SOURCE"], # accepts SOURCE, TARGET
770
769
  # rules: [
771
770
  # {
772
- # matching_keys: ["AttributeName"], # required
773
771
  # rule_name: "RuleRuleNameString", # required
772
+ # matching_keys: ["AttributeName"], # required
774
773
  # },
775
774
  # ],
775
+ # rule_definition_types: ["SOURCE"], # accepts SOURCE, TARGET
776
+ # attribute_matching_model: "ONE_TO_ONE", # accepts ONE_TO_ONE, MANY_TO_MANY
777
+ # record_matching_models: ["ONE_SOURCE_TO_ONE_TARGET"], # accepts ONE_SOURCE_TO_ONE_TARGET, MANY_SOURCE_TO_ONE_TARGET
778
+ # },
779
+ # provider_properties: {
780
+ # provider_service_arn: "ProviderServiceArn", # required
781
+ # provider_configuration: {
782
+ # },
776
783
  # },
777
784
  # },
778
785
  # ],
779
- # id_namespace_name: "EntityName", # required
780
- # input_source_config: [
781
- # {
782
- # input_source_arn: "IdNamespaceInputSourceInputSourceARNString", # required
783
- # schema_name: "EntityName",
784
- # },
785
- # ],
786
+ # type: "SOURCE", # required, accepts SOURCE, TARGET
786
787
  # role_arn: "RoleArn",
787
788
  # tags: {
788
789
  # "TagKey" => "TagValue",
789
790
  # },
790
- # type: "SOURCE", # required, accepts SOURCE, TARGET
791
791
  # })
792
792
  #
793
793
  # @example Response structure
794
794
  #
795
- # resp.created_at #=> Time
795
+ # resp.id_namespace_name #=> String
796
+ # resp.id_namespace_arn #=> String
796
797
  # resp.description #=> String
798
+ # resp.input_source_config #=> Array
799
+ # resp.input_source_config[0].input_source_arn #=> String
800
+ # resp.input_source_config[0].schema_name #=> String
797
801
  # resp.id_mapping_workflow_properties #=> Array
798
802
  # resp.id_mapping_workflow_properties[0].id_mapping_type #=> String, one of "PROVIDER", "RULE_BASED"
799
- # resp.id_mapping_workflow_properties[0].provider_properties.provider_service_arn #=> String
800
- # resp.id_mapping_workflow_properties[0].rule_based_properties.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
801
- # resp.id_mapping_workflow_properties[0].rule_based_properties.record_matching_models #=> Array
802
- # resp.id_mapping_workflow_properties[0].rule_based_properties.record_matching_models[0] #=> String, one of "ONE_SOURCE_TO_ONE_TARGET", "MANY_SOURCE_TO_ONE_TARGET"
803
- # resp.id_mapping_workflow_properties[0].rule_based_properties.rule_definition_types #=> Array
804
- # resp.id_mapping_workflow_properties[0].rule_based_properties.rule_definition_types[0] #=> String, one of "SOURCE", "TARGET"
805
803
  # resp.id_mapping_workflow_properties[0].rule_based_properties.rules #=> Array
804
+ # resp.id_mapping_workflow_properties[0].rule_based_properties.rules[0].rule_name #=> String
806
805
  # resp.id_mapping_workflow_properties[0].rule_based_properties.rules[0].matching_keys #=> Array
807
806
  # resp.id_mapping_workflow_properties[0].rule_based_properties.rules[0].matching_keys[0] #=> String
808
- # resp.id_mapping_workflow_properties[0].rule_based_properties.rules[0].rule_name #=> String
809
- # resp.id_namespace_arn #=> String
810
- # resp.id_namespace_name #=> String
811
- # resp.input_source_config #=> Array
812
- # resp.input_source_config[0].input_source_arn #=> String
813
- # resp.input_source_config[0].schema_name #=> String
807
+ # resp.id_mapping_workflow_properties[0].rule_based_properties.rule_definition_types #=> Array
808
+ # resp.id_mapping_workflow_properties[0].rule_based_properties.rule_definition_types[0] #=> String, one of "SOURCE", "TARGET"
809
+ # resp.id_mapping_workflow_properties[0].rule_based_properties.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
810
+ # resp.id_mapping_workflow_properties[0].rule_based_properties.record_matching_models #=> Array
811
+ # resp.id_mapping_workflow_properties[0].rule_based_properties.record_matching_models[0] #=> String, one of "ONE_SOURCE_TO_ONE_TARGET", "MANY_SOURCE_TO_ONE_TARGET"
812
+ # resp.id_mapping_workflow_properties[0].provider_properties.provider_service_arn #=> String
813
+ # resp.type #=> String, one of "SOURCE", "TARGET"
814
814
  # resp.role_arn #=> String
815
+ # resp.created_at #=> Time
816
+ # resp.updated_at #=> Time
815
817
  # resp.tags #=> Hash
816
818
  # resp.tags["TagKey"] #=> String
817
- # resp.type #=> String, one of "SOURCE", "TARGET"
818
- # resp.updated_at #=> Time
819
819
  #
820
820
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/CreateIdNamespace AWS API Documentation
821
821
  #
@@ -831,13 +831,13 @@ module Aws::EntityResolution
831
831
  # should not be a pre-existing `MatchingWorkflow` with the same name. To
832
832
  # modify an existing workflow, utilize the `UpdateMatchingWorkflow` API.
833
833
  #
834
+ # @option params [required, String] :workflow_name
835
+ # The name of the workflow. There can't be multiple `MatchingWorkflows`
836
+ # with the same name.
837
+ #
834
838
  # @option params [String] :description
835
839
  # A description of the workflow.
836
840
  #
837
- # @option params [Types::IncrementalRunConfig] :incremental_run_config
838
- # An object which defines an incremental run type and has only
839
- # `incrementalRunType` as a field.
840
- #
841
841
  # @option params [required, Array<Types::InputSource>] :input_source_config
842
842
  # A list of `InputSource` objects, which have the fields
843
843
  # `InputSourceARN` and `SchemaName`.
@@ -850,6 +850,10 @@ module Aws::EntityResolution
850
850
  # An object which defines the `resolutionType` and the
851
851
  # `ruleBasedProperties`.
852
852
  #
853
+ # @option params [Types::IncrementalRunConfig] :incremental_run_config
854
+ # An object which defines an incremental run type and has only
855
+ # `incrementalRunType` as a field.
856
+ #
853
857
  # @option params [required, String] :role_arn
854
858
  # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
855
859
  # assumes this role to create resources on your behalf as part of
@@ -858,103 +862,99 @@ module Aws::EntityResolution
858
862
  # @option params [Hash<String,String>] :tags
859
863
  # The tags used to organize, track, or control access for this resource.
860
864
  #
861
- # @option params [required, String] :workflow_name
862
- # The name of the workflow. There can't be multiple `MatchingWorkflows`
863
- # with the same name.
864
- #
865
865
  # @return [Types::CreateMatchingWorkflowOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
866
866
  #
867
+ # * {Types::CreateMatchingWorkflowOutput#workflow_name #workflow_name} => String
868
+ # * {Types::CreateMatchingWorkflowOutput#workflow_arn #workflow_arn} => String
867
869
  # * {Types::CreateMatchingWorkflowOutput#description #description} => String
868
- # * {Types::CreateMatchingWorkflowOutput#incremental_run_config #incremental_run_config} => Types::IncrementalRunConfig
869
870
  # * {Types::CreateMatchingWorkflowOutput#input_source_config #input_source_config} => Array&lt;Types::InputSource&gt;
870
871
  # * {Types::CreateMatchingWorkflowOutput#output_source_config #output_source_config} => Array&lt;Types::OutputSource&gt;
871
872
  # * {Types::CreateMatchingWorkflowOutput#resolution_techniques #resolution_techniques} => Types::ResolutionTechniques
873
+ # * {Types::CreateMatchingWorkflowOutput#incremental_run_config #incremental_run_config} => Types::IncrementalRunConfig
872
874
  # * {Types::CreateMatchingWorkflowOutput#role_arn #role_arn} => String
873
- # * {Types::CreateMatchingWorkflowOutput#workflow_arn #workflow_arn} => String
874
- # * {Types::CreateMatchingWorkflowOutput#workflow_name #workflow_name} => String
875
875
  #
876
876
  # @example Request syntax with placeholder values
877
877
  #
878
878
  # resp = client.create_matching_workflow({
879
+ # workflow_name: "EntityName", # required
879
880
  # description: "Description",
880
- # incremental_run_config: {
881
- # incremental_run_type: "IMMEDIATE", # accepts IMMEDIATE
882
- # },
883
881
  # input_source_config: [ # required
884
882
  # {
885
- # apply_normalization: false,
886
883
  # input_source_arn: "InputSourceInputSourceARNString", # required
887
884
  # schema_name: "EntityName", # required
885
+ # apply_normalization: false,
888
886
  # },
889
887
  # ],
890
888
  # output_source_config: [ # required
891
889
  # {
890
+ # output_s3_path: "S3Path", # required
892
891
  # kms_arn: "KMSArn",
893
- # apply_normalization: false,
894
892
  # output: [ # required
895
893
  # {
896
- # hashed: false,
897
894
  # name: "AttributeName", # required
895
+ # hashed: false,
898
896
  # },
899
897
  # ],
900
- # output_s3_path: "S3Path", # required
898
+ # apply_normalization: false,
901
899
  # },
902
900
  # ],
903
901
  # resolution_techniques: { # required
904
- # provider_properties: {
905
- # intermediate_source_configuration: {
906
- # intermediate_s3_path: "S3Path", # required
907
- # },
908
- # provider_configuration: {
909
- # },
910
- # provider_service_arn: "ProviderServiceArn", # required
911
- # },
912
902
  # resolution_type: "RULE_MATCHING", # required, accepts RULE_MATCHING, ML_MATCHING, PROVIDER
913
903
  # rule_based_properties: {
914
- # attribute_matching_model: "ONE_TO_ONE", # required, accepts ONE_TO_ONE, MANY_TO_MANY
915
- # match_purpose: "IDENTIFIER_GENERATION", # accepts IDENTIFIER_GENERATION, INDEXING
916
904
  # rules: [ # required
917
905
  # {
918
- # matching_keys: ["AttributeName"], # required
919
906
  # rule_name: "RuleRuleNameString", # required
907
+ # matching_keys: ["AttributeName"], # required
920
908
  # },
921
909
  # ],
910
+ # attribute_matching_model: "ONE_TO_ONE", # required, accepts ONE_TO_ONE, MANY_TO_MANY
911
+ # match_purpose: "IDENTIFIER_GENERATION", # accepts IDENTIFIER_GENERATION, INDEXING
912
+ # },
913
+ # provider_properties: {
914
+ # provider_service_arn: "ProviderServiceArn", # required
915
+ # provider_configuration: {
916
+ # },
917
+ # intermediate_source_configuration: {
918
+ # intermediate_s3_path: "S3Path", # required
919
+ # },
922
920
  # },
923
921
  # },
922
+ # incremental_run_config: {
923
+ # incremental_run_type: "IMMEDIATE", # accepts IMMEDIATE
924
+ # },
924
925
  # role_arn: "String", # required
925
926
  # tags: {
926
927
  # "TagKey" => "TagValue",
927
928
  # },
928
- # workflow_name: "EntityName", # required
929
929
  # })
930
930
  #
931
931
  # @example Response structure
932
932
  #
933
+ # resp.workflow_name #=> String
934
+ # resp.workflow_arn #=> String
933
935
  # resp.description #=> String
934
- # resp.incremental_run_config.incremental_run_type #=> String, one of "IMMEDIATE"
935
936
  # resp.input_source_config #=> Array
936
- # resp.input_source_config[0].apply_normalization #=> Boolean
937
937
  # resp.input_source_config[0].input_source_arn #=> String
938
938
  # resp.input_source_config[0].schema_name #=> String
939
+ # resp.input_source_config[0].apply_normalization #=> Boolean
939
940
  # resp.output_source_config #=> Array
941
+ # resp.output_source_config[0].output_s3_path #=> String
940
942
  # resp.output_source_config[0].kms_arn #=> String
941
- # resp.output_source_config[0].apply_normalization #=> Boolean
942
943
  # resp.output_source_config[0].output #=> Array
943
- # resp.output_source_config[0].output[0].hashed #=> Boolean
944
944
  # resp.output_source_config[0].output[0].name #=> String
945
- # resp.output_source_config[0].output_s3_path #=> String
946
- # resp.resolution_techniques.provider_properties.intermediate_source_configuration.intermediate_s3_path #=> String
947
- # resp.resolution_techniques.provider_properties.provider_service_arn #=> String
945
+ # resp.output_source_config[0].output[0].hashed #=> Boolean
946
+ # resp.output_source_config[0].apply_normalization #=> Boolean
948
947
  # resp.resolution_techniques.resolution_type #=> String, one of "RULE_MATCHING", "ML_MATCHING", "PROVIDER"
949
- # resp.resolution_techniques.rule_based_properties.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
950
- # resp.resolution_techniques.rule_based_properties.match_purpose #=> String, one of "IDENTIFIER_GENERATION", "INDEXING"
951
948
  # resp.resolution_techniques.rule_based_properties.rules #=> Array
949
+ # resp.resolution_techniques.rule_based_properties.rules[0].rule_name #=> String
952
950
  # resp.resolution_techniques.rule_based_properties.rules[0].matching_keys #=> Array
953
951
  # resp.resolution_techniques.rule_based_properties.rules[0].matching_keys[0] #=> String
954
- # resp.resolution_techniques.rule_based_properties.rules[0].rule_name #=> String
952
+ # resp.resolution_techniques.rule_based_properties.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
953
+ # resp.resolution_techniques.rule_based_properties.match_purpose #=> String, one of "IDENTIFIER_GENERATION", "INDEXING"
954
+ # resp.resolution_techniques.provider_properties.provider_service_arn #=> String
955
+ # resp.resolution_techniques.provider_properties.intermediate_source_configuration.intermediate_s3_path #=> String
956
+ # resp.incremental_run_config.incremental_run_type #=> String, one of "IMMEDIATE"
955
957
  # resp.role_arn #=> String
956
- # resp.workflow_arn #=> String
957
- # resp.workflow_name #=> String
958
958
  #
959
959
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/CreateMatchingWorkflow AWS API Documentation
960
960
  #
@@ -970,6 +970,10 @@ module Aws::EntityResolution
970
970
  # Resolution with some metadata about the table, such as the attribute
971
971
  # types of the columns and which columns to match on.
972
972
  #
973
+ # @option params [required, String] :schema_name
974
+ # The name of the schema. There can't be multiple `SchemaMappings` with
975
+ # the same name.
976
+ #
973
977
  # @option params [String] :description
974
978
  # A description of the schema.
975
979
  #
@@ -978,35 +982,31 @@ module Aws::EntityResolution
978
982
  # a column the source data table, and contains column name plus
979
983
  # additional information that Entity Resolution uses for matching.
980
984
  #
981
- # @option params [required, String] :schema_name
982
- # The name of the schema. There can't be multiple `SchemaMappings` with
983
- # the same name.
984
- #
985
985
  # @option params [Hash<String,String>] :tags
986
986
  # The tags used to organize, track, or control access for this resource.
987
987
  #
988
988
  # @return [Types::CreateSchemaMappingOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
989
989
  #
990
+ # * {Types::CreateSchemaMappingOutput#schema_name #schema_name} => String
991
+ # * {Types::CreateSchemaMappingOutput#schema_arn #schema_arn} => String
990
992
  # * {Types::CreateSchemaMappingOutput#description #description} => String
991
993
  # * {Types::CreateSchemaMappingOutput#mapped_input_fields #mapped_input_fields} => Array&lt;Types::SchemaInputAttribute&gt;
992
- # * {Types::CreateSchemaMappingOutput#schema_arn #schema_arn} => String
993
- # * {Types::CreateSchemaMappingOutput#schema_name #schema_name} => String
994
994
  #
995
995
  # @example Request syntax with placeholder values
996
996
  #
997
997
  # resp = client.create_schema_mapping({
998
+ # schema_name: "EntityName", # required
998
999
  # description: "Description",
999
1000
  # mapped_input_fields: [ # required
1000
1001
  # {
1001
1002
  # field_name: "AttributeName", # required
1003
+ # type: "NAME", # required, accepts NAME, NAME_FIRST, NAME_MIDDLE, NAME_LAST, ADDRESS, ADDRESS_STREET1, ADDRESS_STREET2, ADDRESS_STREET3, ADDRESS_CITY, ADDRESS_STATE, ADDRESS_COUNTRY, ADDRESS_POSTALCODE, PHONE, PHONE_NUMBER, PHONE_COUNTRYCODE, EMAIL_ADDRESS, UNIQUE_ID, DATE, STRING, PROVIDER_ID
1002
1004
  # group_name: "AttributeName",
1003
- # hashed: false,
1004
1005
  # match_key: "AttributeName",
1005
1006
  # sub_type: "AttributeName",
1006
- # type: "NAME", # required, accepts NAME, NAME_FIRST, NAME_MIDDLE, NAME_LAST, ADDRESS, ADDRESS_STREET1, ADDRESS_STREET2, ADDRESS_STREET3, ADDRESS_CITY, ADDRESS_STATE, ADDRESS_COUNTRY, ADDRESS_POSTALCODE, PHONE, PHONE_NUMBER, PHONE_COUNTRYCODE, EMAIL_ADDRESS, UNIQUE_ID, DATE, STRING, PROVIDER_ID
1007
+ # hashed: false,
1007
1008
  # },
1008
1009
  # ],
1009
- # schema_name: "EntityName", # required
1010
1010
  # tags: {
1011
1011
  # "TagKey" => "TagValue",
1012
1012
  # },
@@ -1014,16 +1014,16 @@ module Aws::EntityResolution
1014
1014
  #
1015
1015
  # @example Response structure
1016
1016
  #
1017
+ # resp.schema_name #=> String
1018
+ # resp.schema_arn #=> String
1017
1019
  # resp.description #=> String
1018
1020
  # resp.mapped_input_fields #=> Array
1019
1021
  # resp.mapped_input_fields[0].field_name #=> String
1022
+ # resp.mapped_input_fields[0].type #=> String, one of "NAME", "NAME_FIRST", "NAME_MIDDLE", "NAME_LAST", "ADDRESS", "ADDRESS_STREET1", "ADDRESS_STREET2", "ADDRESS_STREET3", "ADDRESS_CITY", "ADDRESS_STATE", "ADDRESS_COUNTRY", "ADDRESS_POSTALCODE", "PHONE", "PHONE_NUMBER", "PHONE_COUNTRYCODE", "EMAIL_ADDRESS", "UNIQUE_ID", "DATE", "STRING", "PROVIDER_ID"
1020
1023
  # resp.mapped_input_fields[0].group_name #=> String
1021
- # resp.mapped_input_fields[0].hashed #=> Boolean
1022
1024
  # resp.mapped_input_fields[0].match_key #=> String
1023
1025
  # resp.mapped_input_fields[0].sub_type #=> String
1024
- # resp.mapped_input_fields[0].type #=> String, one of "NAME", "NAME_FIRST", "NAME_MIDDLE", "NAME_LAST", "ADDRESS", "ADDRESS_STREET1", "ADDRESS_STREET2", "ADDRESS_STREET3", "ADDRESS_CITY", "ADDRESS_STATE", "ADDRESS_COUNTRY", "ADDRESS_POSTALCODE", "PHONE", "PHONE_NUMBER", "PHONE_COUNTRYCODE", "EMAIL_ADDRESS", "UNIQUE_ID", "DATE", "STRING", "PROVIDER_ID"
1025
- # resp.schema_arn #=> String
1026
- # resp.schema_name #=> String
1026
+ # resp.mapped_input_fields[0].hashed #=> Boolean
1027
1027
  #
1028
1028
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/CreateSchemaMapping AWS API Documentation
1029
1029
  #
@@ -1132,8 +1132,8 @@ module Aws::EntityResolution
1132
1132
  # @return [Types::DeletePolicyStatementOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1133
1133
  #
1134
1134
  # * {Types::DeletePolicyStatementOutput#arn #arn} => String
1135
- # * {Types::DeletePolicyStatementOutput#policy #policy} => String
1136
1135
  # * {Types::DeletePolicyStatementOutput#token #token} => String
1136
+ # * {Types::DeletePolicyStatementOutput#policy #policy} => String
1137
1137
  #
1138
1138
  # @example Request syntax with placeholder values
1139
1139
  #
@@ -1145,8 +1145,8 @@ module Aws::EntityResolution
1145
1145
  # @example Response structure
1146
1146
  #
1147
1147
  # resp.arn #=> String
1148
- # resp.policy #=> String
1149
1148
  # resp.token #=> String
1149
+ # resp.policy #=> String
1150
1150
  #
1151
1151
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/DeletePolicyStatement AWS API Documentation
1152
1152
  #
@@ -1191,46 +1191,47 @@ module Aws::EntityResolution
1191
1191
  # Gets the status, metrics, and errors (if there are any) that are
1192
1192
  # associated with a job.
1193
1193
  #
1194
- # @option params [required, String] :job_id
1195
- # The ID of the job.
1196
- #
1197
1194
  # @option params [required, String] :workflow_name
1198
1195
  # The name of the workflow.
1199
1196
  #
1197
+ # @option params [required, String] :job_id
1198
+ # The ID of the job.
1199
+ #
1200
1200
  # @return [Types::GetIdMappingJobOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1201
1201
  #
1202
- # * {Types::GetIdMappingJobOutput#end_time #end_time} => Time
1203
- # * {Types::GetIdMappingJobOutput#error_details #error_details} => Types::ErrorDetails
1204
1202
  # * {Types::GetIdMappingJobOutput#job_id #job_id} => String
1203
+ # * {Types::GetIdMappingJobOutput#status #status} => String
1204
+ # * {Types::GetIdMappingJobOutput#start_time #start_time} => Time
1205
+ # * {Types::GetIdMappingJobOutput#end_time #end_time} => Time
1205
1206
  # * {Types::GetIdMappingJobOutput#metrics #metrics} => Types::IdMappingJobMetrics
1207
+ # * {Types::GetIdMappingJobOutput#error_details #error_details} => Types::ErrorDetails
1206
1208
  # * {Types::GetIdMappingJobOutput#output_source_config #output_source_config} => Array&lt;Types::IdMappingJobOutputSource&gt;
1207
- # * {Types::GetIdMappingJobOutput#start_time #start_time} => Time
1208
- # * {Types::GetIdMappingJobOutput#status #status} => String
1209
1209
  #
1210
1210
  # @example Request syntax with placeholder values
1211
1211
  #
1212
1212
  # resp = client.get_id_mapping_job({
1213
- # job_id: "JobId", # required
1214
1213
  # workflow_name: "EntityNameOrIdMappingWorkflowArn", # required
1214
+ # job_id: "JobId", # required
1215
1215
  # })
1216
1216
  #
1217
1217
  # @example Response structure
1218
1218
  #
1219
- # resp.end_time #=> Time
1220
- # resp.error_details.error_message #=> String
1221
1219
  # resp.job_id #=> String
1220
+ # resp.status #=> String, one of "RUNNING", "SUCCEEDED", "FAILED", "QUEUED"
1221
+ # resp.start_time #=> Time
1222
+ # resp.end_time #=> Time
1222
1223
  # resp.metrics.input_records #=> Integer
1224
+ # resp.metrics.total_records_processed #=> Integer
1223
1225
  # resp.metrics.records_not_processed #=> Integer
1224
1226
  # resp.metrics.total_mapped_records #=> Integer
1225
1227
  # resp.metrics.total_mapped_source_records #=> Integer
1226
1228
  # resp.metrics.total_mapped_target_records #=> Integer
1227
- # resp.metrics.total_records_processed #=> Integer
1229
+ # resp.metrics.unique_records_loaded #=> Integer
1230
+ # resp.error_details.error_message #=> String
1228
1231
  # resp.output_source_config #=> Array
1229
- # resp.output_source_config[0].kms_arn #=> String
1230
- # resp.output_source_config[0].output_s3_path #=> String
1231
1232
  # resp.output_source_config[0].role_arn #=> String
1232
- # resp.start_time #=> Time
1233
- # resp.status #=> String, one of "RUNNING", "SUCCEEDED", "FAILED", "QUEUED"
1233
+ # resp.output_source_config[0].output_s3_path #=> String
1234
+ # resp.output_source_config[0].kms_arn #=> String
1234
1235
  #
1235
1236
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/GetIdMappingJob AWS API Documentation
1236
1237
  #
@@ -1248,16 +1249,16 @@ module Aws::EntityResolution
1248
1249
  #
1249
1250
  # @return [Types::GetIdMappingWorkflowOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1250
1251
  #
1251
- # * {Types::GetIdMappingWorkflowOutput#created_at #created_at} => Time
1252
+ # * {Types::GetIdMappingWorkflowOutput#workflow_name #workflow_name} => String
1253
+ # * {Types::GetIdMappingWorkflowOutput#workflow_arn #workflow_arn} => String
1252
1254
  # * {Types::GetIdMappingWorkflowOutput#description #description} => String
1253
- # * {Types::GetIdMappingWorkflowOutput#id_mapping_techniques #id_mapping_techniques} => Types::IdMappingTechniques
1254
1255
  # * {Types::GetIdMappingWorkflowOutput#input_source_config #input_source_config} => Array&lt;Types::IdMappingWorkflowInputSource&gt;
1255
1256
  # * {Types::GetIdMappingWorkflowOutput#output_source_config #output_source_config} => Array&lt;Types::IdMappingWorkflowOutputSource&gt;
1257
+ # * {Types::GetIdMappingWorkflowOutput#id_mapping_techniques #id_mapping_techniques} => Types::IdMappingTechniques
1258
+ # * {Types::GetIdMappingWorkflowOutput#created_at #created_at} => Time
1259
+ # * {Types::GetIdMappingWorkflowOutput#updated_at #updated_at} => Time
1256
1260
  # * {Types::GetIdMappingWorkflowOutput#role_arn #role_arn} => String
1257
1261
  # * {Types::GetIdMappingWorkflowOutput#tags #tags} => Hash&lt;String,String&gt;
1258
- # * {Types::GetIdMappingWorkflowOutput#updated_at #updated_at} => Time
1259
- # * {Types::GetIdMappingWorkflowOutput#workflow_arn #workflow_arn} => String
1260
- # * {Types::GetIdMappingWorkflowOutput#workflow_name #workflow_name} => String
1261
1262
  #
1262
1263
  # @example Request syntax with placeholder values
1263
1264
  #
@@ -1267,31 +1268,31 @@ module Aws::EntityResolution
1267
1268
  #
1268
1269
  # @example Response structure
1269
1270
  #
1270
- # resp.created_at #=> Time
1271
+ # resp.workflow_name #=> String
1272
+ # resp.workflow_arn #=> String
1271
1273
  # resp.description #=> String
1272
- # resp.id_mapping_techniques.id_mapping_type #=> String, one of "PROVIDER", "RULE_BASED"
1273
- # resp.id_mapping_techniques.provider_properties.intermediate_source_configuration.intermediate_s3_path #=> String
1274
- # resp.id_mapping_techniques.provider_properties.provider_service_arn #=> String
1275
- # resp.id_mapping_techniques.rule_based_properties.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
1276
- # resp.id_mapping_techniques.rule_based_properties.record_matching_model #=> String, one of "ONE_SOURCE_TO_ONE_TARGET", "MANY_SOURCE_TO_ONE_TARGET"
1277
- # resp.id_mapping_techniques.rule_based_properties.rule_definition_type #=> String, one of "SOURCE", "TARGET"
1278
- # resp.id_mapping_techniques.rule_based_properties.rules #=> Array
1279
- # resp.id_mapping_techniques.rule_based_properties.rules[0].matching_keys #=> Array
1280
- # resp.id_mapping_techniques.rule_based_properties.rules[0].matching_keys[0] #=> String
1281
- # resp.id_mapping_techniques.rule_based_properties.rules[0].rule_name #=> String
1282
1274
  # resp.input_source_config #=> Array
1283
1275
  # resp.input_source_config[0].input_source_arn #=> String
1284
1276
  # resp.input_source_config[0].schema_name #=> String
1285
1277
  # resp.input_source_config[0].type #=> String, one of "SOURCE", "TARGET"
1286
1278
  # resp.output_source_config #=> Array
1287
- # resp.output_source_config[0].kms_arn #=> String
1288
1279
  # resp.output_source_config[0].output_s3_path #=> String
1280
+ # resp.output_source_config[0].kms_arn #=> String
1281
+ # resp.id_mapping_techniques.id_mapping_type #=> String, one of "PROVIDER", "RULE_BASED"
1282
+ # resp.id_mapping_techniques.rule_based_properties.rules #=> Array
1283
+ # resp.id_mapping_techniques.rule_based_properties.rules[0].rule_name #=> String
1284
+ # resp.id_mapping_techniques.rule_based_properties.rules[0].matching_keys #=> Array
1285
+ # resp.id_mapping_techniques.rule_based_properties.rules[0].matching_keys[0] #=> String
1286
+ # resp.id_mapping_techniques.rule_based_properties.rule_definition_type #=> String, one of "SOURCE", "TARGET"
1287
+ # resp.id_mapping_techniques.rule_based_properties.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
1288
+ # resp.id_mapping_techniques.rule_based_properties.record_matching_model #=> String, one of "ONE_SOURCE_TO_ONE_TARGET", "MANY_SOURCE_TO_ONE_TARGET"
1289
+ # resp.id_mapping_techniques.provider_properties.provider_service_arn #=> String
1290
+ # resp.id_mapping_techniques.provider_properties.intermediate_source_configuration.intermediate_s3_path #=> String
1291
+ # resp.created_at #=> Time
1292
+ # resp.updated_at #=> Time
1289
1293
  # resp.role_arn #=> String
1290
1294
  # resp.tags #=> Hash
1291
1295
  # resp.tags["TagKey"] #=> String
1292
- # resp.updated_at #=> Time
1293
- # resp.workflow_arn #=> String
1294
- # resp.workflow_name #=> String
1295
1296
  #
1296
1297
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/GetIdMappingWorkflow AWS API Documentation
1297
1298
  #
@@ -1309,16 +1310,16 @@ module Aws::EntityResolution
1309
1310
  #
1310
1311
  # @return [Types::GetIdNamespaceOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1311
1312
  #
1312
- # * {Types::GetIdNamespaceOutput#created_at #created_at} => Time
1313
- # * {Types::GetIdNamespaceOutput#description #description} => String
1314
- # * {Types::GetIdNamespaceOutput#id_mapping_workflow_properties #id_mapping_workflow_properties} => Array&lt;Types::IdNamespaceIdMappingWorkflowProperties&gt;
1315
- # * {Types::GetIdNamespaceOutput#id_namespace_arn #id_namespace_arn} => String
1316
1313
  # * {Types::GetIdNamespaceOutput#id_namespace_name #id_namespace_name} => String
1314
+ # * {Types::GetIdNamespaceOutput#id_namespace_arn #id_namespace_arn} => String
1315
+ # * {Types::GetIdNamespaceOutput#description #description} => String
1317
1316
  # * {Types::GetIdNamespaceOutput#input_source_config #input_source_config} => Array&lt;Types::IdNamespaceInputSource&gt;
1318
- # * {Types::GetIdNamespaceOutput#role_arn #role_arn} => String
1319
- # * {Types::GetIdNamespaceOutput#tags #tags} => Hash&lt;String,String&gt;
1317
+ # * {Types::GetIdNamespaceOutput#id_mapping_workflow_properties #id_mapping_workflow_properties} => Array&lt;Types::IdNamespaceIdMappingWorkflowProperties&gt;
1320
1318
  # * {Types::GetIdNamespaceOutput#type #type} => String
1319
+ # * {Types::GetIdNamespaceOutput#role_arn #role_arn} => String
1320
+ # * {Types::GetIdNamespaceOutput#created_at #created_at} => Time
1321
1321
  # * {Types::GetIdNamespaceOutput#updated_at #updated_at} => Time
1322
+ # * {Types::GetIdNamespaceOutput#tags #tags} => Hash&lt;String,String&gt;
1322
1323
  #
1323
1324
  # @example Request syntax with placeholder values
1324
1325
  #
@@ -1328,30 +1329,30 @@ module Aws::EntityResolution
1328
1329
  #
1329
1330
  # @example Response structure
1330
1331
  #
1331
- # resp.created_at #=> Time
1332
+ # resp.id_namespace_name #=> String
1333
+ # resp.id_namespace_arn #=> String
1332
1334
  # resp.description #=> String
1335
+ # resp.input_source_config #=> Array
1336
+ # resp.input_source_config[0].input_source_arn #=> String
1337
+ # resp.input_source_config[0].schema_name #=> String
1333
1338
  # resp.id_mapping_workflow_properties #=> Array
1334
1339
  # resp.id_mapping_workflow_properties[0].id_mapping_type #=> String, one of "PROVIDER", "RULE_BASED"
1335
- # resp.id_mapping_workflow_properties[0].provider_properties.provider_service_arn #=> String
1336
- # resp.id_mapping_workflow_properties[0].rule_based_properties.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
1337
- # resp.id_mapping_workflow_properties[0].rule_based_properties.record_matching_models #=> Array
1338
- # resp.id_mapping_workflow_properties[0].rule_based_properties.record_matching_models[0] #=> String, one of "ONE_SOURCE_TO_ONE_TARGET", "MANY_SOURCE_TO_ONE_TARGET"
1339
- # resp.id_mapping_workflow_properties[0].rule_based_properties.rule_definition_types #=> Array
1340
- # resp.id_mapping_workflow_properties[0].rule_based_properties.rule_definition_types[0] #=> String, one of "SOURCE", "TARGET"
1341
1340
  # resp.id_mapping_workflow_properties[0].rule_based_properties.rules #=> Array
1341
+ # resp.id_mapping_workflow_properties[0].rule_based_properties.rules[0].rule_name #=> String
1342
1342
  # resp.id_mapping_workflow_properties[0].rule_based_properties.rules[0].matching_keys #=> Array
1343
1343
  # resp.id_mapping_workflow_properties[0].rule_based_properties.rules[0].matching_keys[0] #=> String
1344
- # resp.id_mapping_workflow_properties[0].rule_based_properties.rules[0].rule_name #=> String
1345
- # resp.id_namespace_arn #=> String
1346
- # resp.id_namespace_name #=> String
1347
- # resp.input_source_config #=> Array
1348
- # resp.input_source_config[0].input_source_arn #=> String
1349
- # resp.input_source_config[0].schema_name #=> String
1344
+ # resp.id_mapping_workflow_properties[0].rule_based_properties.rule_definition_types #=> Array
1345
+ # resp.id_mapping_workflow_properties[0].rule_based_properties.rule_definition_types[0] #=> String, one of "SOURCE", "TARGET"
1346
+ # resp.id_mapping_workflow_properties[0].rule_based_properties.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
1347
+ # resp.id_mapping_workflow_properties[0].rule_based_properties.record_matching_models #=> Array
1348
+ # resp.id_mapping_workflow_properties[0].rule_based_properties.record_matching_models[0] #=> String, one of "ONE_SOURCE_TO_ONE_TARGET", "MANY_SOURCE_TO_ONE_TARGET"
1349
+ # resp.id_mapping_workflow_properties[0].provider_properties.provider_service_arn #=> String
1350
+ # resp.type #=> String, one of "SOURCE", "TARGET"
1350
1351
  # resp.role_arn #=> String
1352
+ # resp.created_at #=> Time
1353
+ # resp.updated_at #=> Time
1351
1354
  # resp.tags #=> Hash
1352
1355
  # resp.tags["TagKey"] #=> String
1353
- # resp.type #=> String, one of "SOURCE", "TARGET"
1354
- # resp.updated_at #=> Time
1355
1356
  #
1356
1357
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/GetIdNamespace AWS API Documentation
1357
1358
  #
@@ -1363,7 +1364,17 @@ module Aws::EntityResolution
1363
1364
  end
1364
1365
 
1365
1366
  # Returns the corresponding Match ID of a customer record if the record
1366
- # has been processed.
1367
+ # has been processed in a rule-based matching workflow or ML matching
1368
+ # workflow.
1369
+ #
1370
+ # You can call this API as a dry run of an incremental load on the
1371
+ # rule-based matching workflow.
1372
+ #
1373
+ # @option params [required, String] :workflow_name
1374
+ # The name of the workflow.
1375
+ #
1376
+ # @option params [required, Hash<String,String>] :record
1377
+ # The record to fetch the Match ID for.
1367
1378
  #
1368
1379
  # @option params [Boolean] :apply_normalization
1369
1380
  # Normalizes the attributes defined in the schema in the input data. For
@@ -1371,12 +1382,6 @@ module Aws::EntityResolution
1371
1382
  # the data in the input table is in a format of 1234567890, Entity
1372
1383
  # Resolution will normalize this field in the output to (123)-456-7890.
1373
1384
  #
1374
- # @option params [required, Hash<String,String>] :record
1375
- # The record to fetch the Match ID for.
1376
- #
1377
- # @option params [required, String] :workflow_name
1378
- # The name of the workflow.
1379
- #
1380
1385
  # @return [Types::GetMatchIdOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1381
1386
  #
1382
1387
  # * {Types::GetMatchIdOutput#match_id #match_id} => String
@@ -1385,11 +1390,11 @@ module Aws::EntityResolution
1385
1390
  # @example Request syntax with placeholder values
1386
1391
  #
1387
1392
  # resp = client.get_match_id({
1388
- # apply_normalization: false,
1393
+ # workflow_name: "EntityName", # required
1389
1394
  # record: { # required
1390
1395
  # "RecordAttributeMapKeyString" => "RecordAttributeMapValueString",
1391
1396
  # },
1392
- # workflow_name: "EntityName", # required
1397
+ # apply_normalization: false,
1393
1398
  # })
1394
1399
  #
1395
1400
  # @example Response structure
@@ -1409,44 +1414,44 @@ module Aws::EntityResolution
1409
1414
  # Gets the status, metrics, and errors (if there are any) that are
1410
1415
  # associated with a job.
1411
1416
  #
1412
- # @option params [required, String] :job_id
1413
- # The ID of the job.
1414
- #
1415
1417
  # @option params [required, String] :workflow_name
1416
1418
  # The name of the workflow.
1417
1419
  #
1420
+ # @option params [required, String] :job_id
1421
+ # The ID of the job.
1422
+ #
1418
1423
  # @return [Types::GetMatchingJobOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1419
1424
  #
1420
- # * {Types::GetMatchingJobOutput#end_time #end_time} => Time
1421
- # * {Types::GetMatchingJobOutput#error_details #error_details} => Types::ErrorDetails
1422
1425
  # * {Types::GetMatchingJobOutput#job_id #job_id} => String
1426
+ # * {Types::GetMatchingJobOutput#status #status} => String
1427
+ # * {Types::GetMatchingJobOutput#start_time #start_time} => Time
1428
+ # * {Types::GetMatchingJobOutput#end_time #end_time} => Time
1423
1429
  # * {Types::GetMatchingJobOutput#metrics #metrics} => Types::JobMetrics
1430
+ # * {Types::GetMatchingJobOutput#error_details #error_details} => Types::ErrorDetails
1424
1431
  # * {Types::GetMatchingJobOutput#output_source_config #output_source_config} => Array&lt;Types::JobOutputSource&gt;
1425
- # * {Types::GetMatchingJobOutput#start_time #start_time} => Time
1426
- # * {Types::GetMatchingJobOutput#status #status} => String
1427
1432
  #
1428
1433
  # @example Request syntax with placeholder values
1429
1434
  #
1430
1435
  # resp = client.get_matching_job({
1431
- # job_id: "JobId", # required
1432
1436
  # workflow_name: "EntityName", # required
1437
+ # job_id: "JobId", # required
1433
1438
  # })
1434
1439
  #
1435
1440
  # @example Response structure
1436
1441
  #
1437
- # resp.end_time #=> Time
1438
- # resp.error_details.error_message #=> String
1439
1442
  # resp.job_id #=> String
1443
+ # resp.status #=> String, one of "RUNNING", "SUCCEEDED", "FAILED", "QUEUED"
1444
+ # resp.start_time #=> Time
1445
+ # resp.end_time #=> Time
1440
1446
  # resp.metrics.input_records #=> Integer
1441
- # resp.metrics.match_i_ds #=> Integer
1442
- # resp.metrics.records_not_processed #=> Integer
1443
1447
  # resp.metrics.total_records_processed #=> Integer
1448
+ # resp.metrics.records_not_processed #=> Integer
1449
+ # resp.metrics.match_i_ds #=> Integer
1450
+ # resp.error_details.error_message #=> String
1444
1451
  # resp.output_source_config #=> Array
1445
- # resp.output_source_config[0].kms_arn #=> String
1446
- # resp.output_source_config[0].output_s3_path #=> String
1447
1452
  # resp.output_source_config[0].role_arn #=> String
1448
- # resp.start_time #=> Time
1449
- # resp.status #=> String, one of "RUNNING", "SUCCEEDED", "FAILED", "QUEUED"
1453
+ # resp.output_source_config[0].output_s3_path #=> String
1454
+ # resp.output_source_config[0].kms_arn #=> String
1450
1455
  #
1451
1456
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/GetMatchingJob AWS API Documentation
1452
1457
  #
@@ -1464,17 +1469,17 @@ module Aws::EntityResolution
1464
1469
  #
1465
1470
  # @return [Types::GetMatchingWorkflowOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1466
1471
  #
1467
- # * {Types::GetMatchingWorkflowOutput#created_at #created_at} => Time
1472
+ # * {Types::GetMatchingWorkflowOutput#workflow_name #workflow_name} => String
1473
+ # * {Types::GetMatchingWorkflowOutput#workflow_arn #workflow_arn} => String
1468
1474
  # * {Types::GetMatchingWorkflowOutput#description #description} => String
1469
- # * {Types::GetMatchingWorkflowOutput#incremental_run_config #incremental_run_config} => Types::IncrementalRunConfig
1470
1475
  # * {Types::GetMatchingWorkflowOutput#input_source_config #input_source_config} => Array&lt;Types::InputSource&gt;
1471
1476
  # * {Types::GetMatchingWorkflowOutput#output_source_config #output_source_config} => Array&lt;Types::OutputSource&gt;
1472
1477
  # * {Types::GetMatchingWorkflowOutput#resolution_techniques #resolution_techniques} => Types::ResolutionTechniques
1478
+ # * {Types::GetMatchingWorkflowOutput#created_at #created_at} => Time
1479
+ # * {Types::GetMatchingWorkflowOutput#updated_at #updated_at} => Time
1480
+ # * {Types::GetMatchingWorkflowOutput#incremental_run_config #incremental_run_config} => Types::IncrementalRunConfig
1473
1481
  # * {Types::GetMatchingWorkflowOutput#role_arn #role_arn} => String
1474
1482
  # * {Types::GetMatchingWorkflowOutput#tags #tags} => Hash&lt;String,String&gt;
1475
- # * {Types::GetMatchingWorkflowOutput#updated_at #updated_at} => Time
1476
- # * {Types::GetMatchingWorkflowOutput#workflow_arn #workflow_arn} => String
1477
- # * {Types::GetMatchingWorkflowOutput#workflow_name #workflow_name} => String
1478
1483
  #
1479
1484
  # @example Request syntax with placeholder values
1480
1485
  #
@@ -1484,35 +1489,35 @@ module Aws::EntityResolution
1484
1489
  #
1485
1490
  # @example Response structure
1486
1491
  #
1487
- # resp.created_at #=> Time
1492
+ # resp.workflow_name #=> String
1493
+ # resp.workflow_arn #=> String
1488
1494
  # resp.description #=> String
1489
- # resp.incremental_run_config.incremental_run_type #=> String, one of "IMMEDIATE"
1490
1495
  # resp.input_source_config #=> Array
1491
- # resp.input_source_config[0].apply_normalization #=> Boolean
1492
1496
  # resp.input_source_config[0].input_source_arn #=> String
1493
1497
  # resp.input_source_config[0].schema_name #=> String
1498
+ # resp.input_source_config[0].apply_normalization #=> Boolean
1494
1499
  # resp.output_source_config #=> Array
1500
+ # resp.output_source_config[0].output_s3_path #=> String
1495
1501
  # resp.output_source_config[0].kms_arn #=> String
1496
- # resp.output_source_config[0].apply_normalization #=> Boolean
1497
1502
  # resp.output_source_config[0].output #=> Array
1498
- # resp.output_source_config[0].output[0].hashed #=> Boolean
1499
1503
  # resp.output_source_config[0].output[0].name #=> String
1500
- # resp.output_source_config[0].output_s3_path #=> String
1501
- # resp.resolution_techniques.provider_properties.intermediate_source_configuration.intermediate_s3_path #=> String
1502
- # resp.resolution_techniques.provider_properties.provider_service_arn #=> String
1504
+ # resp.output_source_config[0].output[0].hashed #=> Boolean
1505
+ # resp.output_source_config[0].apply_normalization #=> Boolean
1503
1506
  # resp.resolution_techniques.resolution_type #=> String, one of "RULE_MATCHING", "ML_MATCHING", "PROVIDER"
1504
- # resp.resolution_techniques.rule_based_properties.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
1505
- # resp.resolution_techniques.rule_based_properties.match_purpose #=> String, one of "IDENTIFIER_GENERATION", "INDEXING"
1506
1507
  # resp.resolution_techniques.rule_based_properties.rules #=> Array
1508
+ # resp.resolution_techniques.rule_based_properties.rules[0].rule_name #=> String
1507
1509
  # resp.resolution_techniques.rule_based_properties.rules[0].matching_keys #=> Array
1508
1510
  # resp.resolution_techniques.rule_based_properties.rules[0].matching_keys[0] #=> String
1509
- # resp.resolution_techniques.rule_based_properties.rules[0].rule_name #=> String
1511
+ # resp.resolution_techniques.rule_based_properties.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
1512
+ # resp.resolution_techniques.rule_based_properties.match_purpose #=> String, one of "IDENTIFIER_GENERATION", "INDEXING"
1513
+ # resp.resolution_techniques.provider_properties.provider_service_arn #=> String
1514
+ # resp.resolution_techniques.provider_properties.intermediate_source_configuration.intermediate_s3_path #=> String
1515
+ # resp.created_at #=> Time
1516
+ # resp.updated_at #=> Time
1517
+ # resp.incremental_run_config.incremental_run_type #=> String, one of "IMMEDIATE"
1510
1518
  # resp.role_arn #=> String
1511
1519
  # resp.tags #=> Hash
1512
1520
  # resp.tags["TagKey"] #=> String
1513
- # resp.updated_at #=> Time
1514
- # resp.workflow_arn #=> String
1515
- # resp.workflow_name #=> String
1516
1521
  #
1517
1522
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/GetMatchingWorkflow AWS API Documentation
1518
1523
  #
@@ -1532,8 +1537,8 @@ module Aws::EntityResolution
1532
1537
  # @return [Types::GetPolicyOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1533
1538
  #
1534
1539
  # * {Types::GetPolicyOutput#arn #arn} => String
1535
- # * {Types::GetPolicyOutput#policy #policy} => String
1536
1540
  # * {Types::GetPolicyOutput#token #token} => String
1541
+ # * {Types::GetPolicyOutput#policy #policy} => String
1537
1542
  #
1538
1543
  # @example Request syntax with placeholder values
1539
1544
  #
@@ -1544,8 +1549,8 @@ module Aws::EntityResolution
1544
1549
  # @example Response structure
1545
1550
  #
1546
1551
  # resp.arn #=> String
1547
- # resp.policy #=> String
1548
1552
  # resp.token #=> String
1553
+ # resp.policy #=> String
1549
1554
  #
1550
1555
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/GetPolicy AWS API Documentation
1551
1556
  #
@@ -1567,19 +1572,19 @@ module Aws::EntityResolution
1567
1572
  #
1568
1573
  # @return [Types::GetProviderServiceOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1569
1574
  #
1570
- # * {Types::GetProviderServiceOutput#anonymized_output #anonymized_output} => Boolean
1571
- # * {Types::GetProviderServiceOutput#provider_component_schema #provider_component_schema} => Types::ProviderComponentSchema
1575
+ # * {Types::GetProviderServiceOutput#provider_name #provider_name} => String
1576
+ # * {Types::GetProviderServiceOutput#provider_service_name #provider_service_name} => String
1577
+ # * {Types::GetProviderServiceOutput#provider_service_display_name #provider_service_display_name} => String
1578
+ # * {Types::GetProviderServiceOutput#provider_service_type #provider_service_type} => String
1579
+ # * {Types::GetProviderServiceOutput#provider_service_arn #provider_service_arn} => String
1572
1580
  # * {Types::GetProviderServiceOutput#provider_configuration_definition #provider_configuration_definition} => Hash,Array,String,Numeric,Boolean
1581
+ # * {Types::GetProviderServiceOutput#provider_id_name_space_configuration #provider_id_name_space_configuration} => Types::ProviderIdNameSpaceConfiguration
1582
+ # * {Types::GetProviderServiceOutput#provider_job_configuration #provider_job_configuration} => Hash,Array,String,Numeric,Boolean
1573
1583
  # * {Types::GetProviderServiceOutput#provider_endpoint_configuration #provider_endpoint_configuration} => Types::ProviderEndpointConfiguration
1584
+ # * {Types::GetProviderServiceOutput#anonymized_output #anonymized_output} => Boolean
1574
1585
  # * {Types::GetProviderServiceOutput#provider_entity_output_definition #provider_entity_output_definition} => Hash,Array,String,Numeric,Boolean
1575
- # * {Types::GetProviderServiceOutput#provider_id_name_space_configuration #provider_id_name_space_configuration} => Types::ProviderIdNameSpaceConfiguration
1576
1586
  # * {Types::GetProviderServiceOutput#provider_intermediate_data_access_configuration #provider_intermediate_data_access_configuration} => Types::ProviderIntermediateDataAccessConfiguration
1577
- # * {Types::GetProviderServiceOutput#provider_job_configuration #provider_job_configuration} => Hash,Array,String,Numeric,Boolean
1578
- # * {Types::GetProviderServiceOutput#provider_name #provider_name} => String
1579
- # * {Types::GetProviderServiceOutput#provider_service_arn #provider_service_arn} => String
1580
- # * {Types::GetProviderServiceOutput#provider_service_display_name #provider_service_display_name} => String
1581
- # * {Types::GetProviderServiceOutput#provider_service_name #provider_service_name} => String
1582
- # * {Types::GetProviderServiceOutput#provider_service_type #provider_service_type} => String
1587
+ # * {Types::GetProviderServiceOutput#provider_component_schema #provider_component_schema} => Types::ProviderComponentSchema
1583
1588
  #
1584
1589
  # @example Request syntax with placeholder values
1585
1590
  #
@@ -1590,29 +1595,29 @@ module Aws::EntityResolution
1590
1595
  #
1591
1596
  # @example Response structure
1592
1597
  #
1593
- # resp.anonymized_output #=> Boolean
1594
- # resp.provider_component_schema.provider_schema_attributes #=> Array
1595
- # resp.provider_component_schema.provider_schema_attributes[0].field_name #=> String
1596
- # resp.provider_component_schema.provider_schema_attributes[0].hashing #=> Boolean
1597
- # resp.provider_component_schema.provider_schema_attributes[0].sub_type #=> String
1598
- # resp.provider_component_schema.provider_schema_attributes[0].type #=> String, one of "NAME", "NAME_FIRST", "NAME_MIDDLE", "NAME_LAST", "ADDRESS", "ADDRESS_STREET1", "ADDRESS_STREET2", "ADDRESS_STREET3", "ADDRESS_CITY", "ADDRESS_STATE", "ADDRESS_COUNTRY", "ADDRESS_POSTALCODE", "PHONE", "PHONE_NUMBER", "PHONE_COUNTRYCODE", "EMAIL_ADDRESS", "UNIQUE_ID", "DATE", "STRING", "PROVIDER_ID"
1599
- # resp.provider_component_schema.schemas #=> Array
1600
- # resp.provider_component_schema.schemas[0] #=> Array
1601
- # resp.provider_component_schema.schemas[0][0] #=> String
1602
- # resp.provider_endpoint_configuration.marketplace_configuration.asset_id #=> String
1598
+ # resp.provider_name #=> String
1599
+ # resp.provider_service_name #=> String
1600
+ # resp.provider_service_display_name #=> String
1601
+ # resp.provider_service_type #=> String, one of "ASSIGNMENT", "ID_MAPPING"
1602
+ # resp.provider_service_arn #=> String
1603
+ # resp.provider_id_name_space_configuration.description #=> String
1603
1604
  # resp.provider_endpoint_configuration.marketplace_configuration.data_set_id #=> String
1604
- # resp.provider_endpoint_configuration.marketplace_configuration.listing_id #=> String
1605
1605
  # resp.provider_endpoint_configuration.marketplace_configuration.revision_id #=> String
1606
- # resp.provider_id_name_space_configuration.description #=> String
1606
+ # resp.provider_endpoint_configuration.marketplace_configuration.asset_id #=> String
1607
+ # resp.provider_endpoint_configuration.marketplace_configuration.listing_id #=> String
1608
+ # resp.anonymized_output #=> Boolean
1607
1609
  # resp.provider_intermediate_data_access_configuration.aws_account_ids #=> Array
1608
1610
  # resp.provider_intermediate_data_access_configuration.aws_account_ids[0] #=> String
1609
1611
  # resp.provider_intermediate_data_access_configuration.required_bucket_actions #=> Array
1610
1612
  # resp.provider_intermediate_data_access_configuration.required_bucket_actions[0] #=> String
1611
- # resp.provider_name #=> String
1612
- # resp.provider_service_arn #=> String
1613
- # resp.provider_service_display_name #=> String
1614
- # resp.provider_service_name #=> String
1615
- # resp.provider_service_type #=> String, one of "ASSIGNMENT", "ID_MAPPING"
1613
+ # resp.provider_component_schema.schemas #=> Array
1614
+ # resp.provider_component_schema.schemas[0] #=> Array
1615
+ # resp.provider_component_schema.schemas[0][0] #=> String
1616
+ # resp.provider_component_schema.provider_schema_attributes #=> Array
1617
+ # resp.provider_component_schema.provider_schema_attributes[0].field_name #=> String
1618
+ # resp.provider_component_schema.provider_schema_attributes[0].type #=> String, one of "NAME", "NAME_FIRST", "NAME_MIDDLE", "NAME_LAST", "ADDRESS", "ADDRESS_STREET1", "ADDRESS_STREET2", "ADDRESS_STREET3", "ADDRESS_CITY", "ADDRESS_STATE", "ADDRESS_COUNTRY", "ADDRESS_POSTALCODE", "PHONE", "PHONE_NUMBER", "PHONE_COUNTRYCODE", "EMAIL_ADDRESS", "UNIQUE_ID", "DATE", "STRING", "PROVIDER_ID"
1619
+ # resp.provider_component_schema.provider_schema_attributes[0].sub_type #=> String
1620
+ # resp.provider_component_schema.provider_schema_attributes[0].hashing #=> Boolean
1616
1621
  #
1617
1622
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/GetProviderService AWS API Documentation
1618
1623
  #
@@ -1630,14 +1635,14 @@ module Aws::EntityResolution
1630
1635
  #
1631
1636
  # @return [Types::GetSchemaMappingOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1632
1637
  #
1633
- # * {Types::GetSchemaMappingOutput#created_at #created_at} => Time
1638
+ # * {Types::GetSchemaMappingOutput#schema_name #schema_name} => String
1639
+ # * {Types::GetSchemaMappingOutput#schema_arn #schema_arn} => String
1634
1640
  # * {Types::GetSchemaMappingOutput#description #description} => String
1635
- # * {Types::GetSchemaMappingOutput#has_workflows #has_workflows} => Boolean
1636
1641
  # * {Types::GetSchemaMappingOutput#mapped_input_fields #mapped_input_fields} => Array&lt;Types::SchemaInputAttribute&gt;
1637
- # * {Types::GetSchemaMappingOutput#schema_arn #schema_arn} => String
1638
- # * {Types::GetSchemaMappingOutput#schema_name #schema_name} => String
1639
- # * {Types::GetSchemaMappingOutput#tags #tags} => Hash&lt;String,String&gt;
1642
+ # * {Types::GetSchemaMappingOutput#created_at #created_at} => Time
1640
1643
  # * {Types::GetSchemaMappingOutput#updated_at #updated_at} => Time
1644
+ # * {Types::GetSchemaMappingOutput#tags #tags} => Hash&lt;String,String&gt;
1645
+ # * {Types::GetSchemaMappingOutput#has_workflows #has_workflows} => Boolean
1641
1646
  #
1642
1647
  # @example Request syntax with placeholder values
1643
1648
  #
@@ -1647,21 +1652,21 @@ module Aws::EntityResolution
1647
1652
  #
1648
1653
  # @example Response structure
1649
1654
  #
1650
- # resp.created_at #=> Time
1655
+ # resp.schema_name #=> String
1656
+ # resp.schema_arn #=> String
1651
1657
  # resp.description #=> String
1652
- # resp.has_workflows #=> Boolean
1653
1658
  # resp.mapped_input_fields #=> Array
1654
1659
  # resp.mapped_input_fields[0].field_name #=> String
1660
+ # resp.mapped_input_fields[0].type #=> String, one of "NAME", "NAME_FIRST", "NAME_MIDDLE", "NAME_LAST", "ADDRESS", "ADDRESS_STREET1", "ADDRESS_STREET2", "ADDRESS_STREET3", "ADDRESS_CITY", "ADDRESS_STATE", "ADDRESS_COUNTRY", "ADDRESS_POSTALCODE", "PHONE", "PHONE_NUMBER", "PHONE_COUNTRYCODE", "EMAIL_ADDRESS", "UNIQUE_ID", "DATE", "STRING", "PROVIDER_ID"
1655
1661
  # resp.mapped_input_fields[0].group_name #=> String
1656
- # resp.mapped_input_fields[0].hashed #=> Boolean
1657
1662
  # resp.mapped_input_fields[0].match_key #=> String
1658
1663
  # resp.mapped_input_fields[0].sub_type #=> String
1659
- # resp.mapped_input_fields[0].type #=> String, one of "NAME", "NAME_FIRST", "NAME_MIDDLE", "NAME_LAST", "ADDRESS", "ADDRESS_STREET1", "ADDRESS_STREET2", "ADDRESS_STREET3", "ADDRESS_CITY", "ADDRESS_STATE", "ADDRESS_COUNTRY", "ADDRESS_POSTALCODE", "PHONE", "PHONE_NUMBER", "PHONE_COUNTRYCODE", "EMAIL_ADDRESS", "UNIQUE_ID", "DATE", "STRING", "PROVIDER_ID"
1660
- # resp.schema_arn #=> String
1661
- # resp.schema_name #=> String
1664
+ # resp.mapped_input_fields[0].hashed #=> Boolean
1665
+ # resp.created_at #=> Time
1666
+ # resp.updated_at #=> Time
1662
1667
  # resp.tags #=> Hash
1663
1668
  # resp.tags["TagKey"] #=> String
1664
- # resp.updated_at #=> Time
1669
+ # resp.has_workflows #=> Boolean
1665
1670
  #
1666
1671
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/GetSchemaMapping AWS API Documentation
1667
1672
  #
@@ -1674,14 +1679,14 @@ module Aws::EntityResolution
1674
1679
 
1675
1680
  # Lists all ID mapping jobs for a given workflow.
1676
1681
  #
1677
- # @option params [Integer] :max_results
1678
- # The maximum number of objects returned per page.
1682
+ # @option params [required, String] :workflow_name
1683
+ # The name of the workflow to be retrieved.
1679
1684
  #
1680
1685
  # @option params [String] :next_token
1681
1686
  # The pagination token from the previous API call.
1682
1687
  #
1683
- # @option params [required, String] :workflow_name
1684
- # The name of the workflow to be retrieved.
1688
+ # @option params [Integer] :max_results
1689
+ # The maximum number of objects returned per page.
1685
1690
  #
1686
1691
  # @return [Types::ListIdMappingJobsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1687
1692
  #
@@ -1693,18 +1698,18 @@ module Aws::EntityResolution
1693
1698
  # @example Request syntax with placeholder values
1694
1699
  #
1695
1700
  # resp = client.list_id_mapping_jobs({
1696
- # max_results: 1,
1697
- # next_token: "NextToken",
1698
1701
  # workflow_name: "EntityNameOrIdMappingWorkflowArn", # required
1702
+ # next_token: "NextToken",
1703
+ # max_results: 1,
1699
1704
  # })
1700
1705
  #
1701
1706
  # @example Response structure
1702
1707
  #
1703
1708
  # resp.jobs #=> Array
1704
- # resp.jobs[0].end_time #=> Time
1705
1709
  # resp.jobs[0].job_id #=> String
1706
- # resp.jobs[0].start_time #=> Time
1707
1710
  # resp.jobs[0].status #=> String, one of "RUNNING", "SUCCEEDED", "FAILED", "QUEUED"
1711
+ # resp.jobs[0].start_time #=> Time
1712
+ # resp.jobs[0].end_time #=> Time
1708
1713
  # resp.next_token #=> String
1709
1714
  #
1710
1715
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/ListIdMappingJobs AWS API Documentation
@@ -1719,34 +1724,34 @@ module Aws::EntityResolution
1719
1724
  # Returns a list of all the `IdMappingWorkflows` that have been created
1720
1725
  # for an Amazon Web Services account.
1721
1726
  #
1722
- # @option params [Integer] :max_results
1723
- # The maximum number of objects returned per page.
1724
- #
1725
1727
  # @option params [String] :next_token
1726
1728
  # The pagination token from the previous API call.
1727
1729
  #
1730
+ # @option params [Integer] :max_results
1731
+ # The maximum number of objects returned per page.
1732
+ #
1728
1733
  # @return [Types::ListIdMappingWorkflowsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1729
1734
  #
1730
- # * {Types::ListIdMappingWorkflowsOutput#next_token #next_token} => String
1731
1735
  # * {Types::ListIdMappingWorkflowsOutput#workflow_summaries #workflow_summaries} => Array&lt;Types::IdMappingWorkflowSummary&gt;
1736
+ # * {Types::ListIdMappingWorkflowsOutput#next_token #next_token} => String
1732
1737
  #
1733
1738
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1734
1739
  #
1735
1740
  # @example Request syntax with placeholder values
1736
1741
  #
1737
1742
  # resp = client.list_id_mapping_workflows({
1738
- # max_results: 1,
1739
1743
  # next_token: "NextToken",
1744
+ # max_results: 1,
1740
1745
  # })
1741
1746
  #
1742
1747
  # @example Response structure
1743
1748
  #
1744
- # resp.next_token #=> String
1745
1749
  # resp.workflow_summaries #=> Array
1750
+ # resp.workflow_summaries[0].workflow_name #=> String
1751
+ # resp.workflow_summaries[0].workflow_arn #=> String
1746
1752
  # resp.workflow_summaries[0].created_at #=> Time
1747
1753
  # resp.workflow_summaries[0].updated_at #=> Time
1748
- # resp.workflow_summaries[0].workflow_arn #=> String
1749
- # resp.workflow_summaries[0].workflow_name #=> String
1754
+ # resp.next_token #=> String
1750
1755
  #
1751
1756
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/ListIdMappingWorkflows AWS API Documentation
1752
1757
  #
@@ -1759,12 +1764,12 @@ module Aws::EntityResolution
1759
1764
 
1760
1765
  # Returns a list of all ID namespaces.
1761
1766
  #
1762
- # @option params [Integer] :max_results
1763
- # The maximum number of `IdNamespace` objects returned per page.
1764
- #
1765
1767
  # @option params [String] :next_token
1766
1768
  # The pagination token from the previous API call.
1767
1769
  #
1770
+ # @option params [Integer] :max_results
1771
+ # The maximum number of `IdNamespace` objects returned per page.
1772
+ #
1768
1773
  # @return [Types::ListIdNamespacesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1769
1774
  #
1770
1775
  # * {Types::ListIdNamespacesOutput#id_namespace_summaries #id_namespace_summaries} => Array&lt;Types::IdNamespaceSummary&gt;
@@ -1775,20 +1780,20 @@ module Aws::EntityResolution
1775
1780
  # @example Request syntax with placeholder values
1776
1781
  #
1777
1782
  # resp = client.list_id_namespaces({
1778
- # max_results: 1,
1779
1783
  # next_token: "NextToken",
1784
+ # max_results: 1,
1780
1785
  # })
1781
1786
  #
1782
1787
  # @example Response structure
1783
1788
  #
1784
1789
  # resp.id_namespace_summaries #=> Array
1785
- # resp.id_namespace_summaries[0].created_at #=> Time
1790
+ # resp.id_namespace_summaries[0].id_namespace_name #=> String
1791
+ # resp.id_namespace_summaries[0].id_namespace_arn #=> String
1786
1792
  # resp.id_namespace_summaries[0].description #=> String
1787
1793
  # resp.id_namespace_summaries[0].id_mapping_workflow_properties #=> Array
1788
1794
  # resp.id_namespace_summaries[0].id_mapping_workflow_properties[0].id_mapping_type #=> String, one of "PROVIDER", "RULE_BASED"
1789
- # resp.id_namespace_summaries[0].id_namespace_arn #=> String
1790
- # resp.id_namespace_summaries[0].id_namespace_name #=> String
1791
1795
  # resp.id_namespace_summaries[0].type #=> String, one of "SOURCE", "TARGET"
1796
+ # resp.id_namespace_summaries[0].created_at #=> Time
1792
1797
  # resp.id_namespace_summaries[0].updated_at #=> Time
1793
1798
  # resp.next_token #=> String
1794
1799
  #
@@ -1803,14 +1808,14 @@ module Aws::EntityResolution
1803
1808
 
1804
1809
  # Lists all jobs for a given workflow.
1805
1810
  #
1806
- # @option params [Integer] :max_results
1807
- # The maximum number of objects returned per page.
1811
+ # @option params [required, String] :workflow_name
1812
+ # The name of the workflow to be retrieved.
1808
1813
  #
1809
1814
  # @option params [String] :next_token
1810
1815
  # The pagination token from the previous API call.
1811
1816
  #
1812
- # @option params [required, String] :workflow_name
1813
- # The name of the workflow to be retrieved.
1817
+ # @option params [Integer] :max_results
1818
+ # The maximum number of objects returned per page.
1814
1819
  #
1815
1820
  # @return [Types::ListMatchingJobsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1816
1821
  #
@@ -1822,18 +1827,18 @@ module Aws::EntityResolution
1822
1827
  # @example Request syntax with placeholder values
1823
1828
  #
1824
1829
  # resp = client.list_matching_jobs({
1825
- # max_results: 1,
1826
- # next_token: "NextToken",
1827
1830
  # workflow_name: "EntityName", # required
1831
+ # next_token: "NextToken",
1832
+ # max_results: 1,
1828
1833
  # })
1829
1834
  #
1830
1835
  # @example Response structure
1831
1836
  #
1832
1837
  # resp.jobs #=> Array
1833
- # resp.jobs[0].end_time #=> Time
1834
1838
  # resp.jobs[0].job_id #=> String
1835
- # resp.jobs[0].start_time #=> Time
1836
1839
  # resp.jobs[0].status #=> String, one of "RUNNING", "SUCCEEDED", "FAILED", "QUEUED"
1840
+ # resp.jobs[0].start_time #=> Time
1841
+ # resp.jobs[0].end_time #=> Time
1837
1842
  # resp.next_token #=> String
1838
1843
  #
1839
1844
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/ListMatchingJobs AWS API Documentation
@@ -1848,35 +1853,35 @@ module Aws::EntityResolution
1848
1853
  # Returns a list of all the `MatchingWorkflows` that have been created
1849
1854
  # for an Amazon Web Services account.
1850
1855
  #
1851
- # @option params [Integer] :max_results
1852
- # The maximum number of objects returned per page.
1853
- #
1854
1856
  # @option params [String] :next_token
1855
1857
  # The pagination token from the previous API call.
1856
1858
  #
1859
+ # @option params [Integer] :max_results
1860
+ # The maximum number of objects returned per page.
1861
+ #
1857
1862
  # @return [Types::ListMatchingWorkflowsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1858
1863
  #
1859
- # * {Types::ListMatchingWorkflowsOutput#next_token #next_token} => String
1860
1864
  # * {Types::ListMatchingWorkflowsOutput#workflow_summaries #workflow_summaries} => Array&lt;Types::MatchingWorkflowSummary&gt;
1865
+ # * {Types::ListMatchingWorkflowsOutput#next_token #next_token} => String
1861
1866
  #
1862
1867
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1863
1868
  #
1864
1869
  # @example Request syntax with placeholder values
1865
1870
  #
1866
1871
  # resp = client.list_matching_workflows({
1867
- # max_results: 1,
1868
1872
  # next_token: "NextToken",
1873
+ # max_results: 1,
1869
1874
  # })
1870
1875
  #
1871
1876
  # @example Response structure
1872
1877
  #
1873
- # resp.next_token #=> String
1874
1878
  # resp.workflow_summaries #=> Array
1879
+ # resp.workflow_summaries[0].workflow_name #=> String
1880
+ # resp.workflow_summaries[0].workflow_arn #=> String
1875
1881
  # resp.workflow_summaries[0].created_at #=> Time
1876
- # resp.workflow_summaries[0].resolution_type #=> String, one of "RULE_MATCHING", "ML_MATCHING", "PROVIDER"
1877
1882
  # resp.workflow_summaries[0].updated_at #=> Time
1878
- # resp.workflow_summaries[0].workflow_arn #=> String
1879
- # resp.workflow_summaries[0].workflow_name #=> String
1883
+ # resp.workflow_summaries[0].resolution_type #=> String, one of "RULE_MATCHING", "ML_MATCHING", "PROVIDER"
1884
+ # resp.next_token #=> String
1880
1885
  #
1881
1886
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/ListMatchingWorkflows AWS API Documentation
1882
1887
  #
@@ -1890,39 +1895,39 @@ module Aws::EntityResolution
1890
1895
  # Returns a list of all the `ProviderServices` that are available in
1891
1896
  # this Amazon Web Services Region.
1892
1897
  #
1893
- # @option params [Integer] :max_results
1894
- # The maximum number of objects returned per page.
1895
- #
1896
1898
  # @option params [String] :next_token
1897
1899
  # The pagination token from the previous API call.
1898
1900
  #
1901
+ # @option params [Integer] :max_results
1902
+ # The maximum number of objects returned per page.
1903
+ #
1899
1904
  # @option params [String] :provider_name
1900
1905
  # The name of the provider. This name is typically the company name.
1901
1906
  #
1902
1907
  # @return [Types::ListProviderServicesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1903
1908
  #
1904
- # * {Types::ListProviderServicesOutput#next_token #next_token} => String
1905
1909
  # * {Types::ListProviderServicesOutput#provider_service_summaries #provider_service_summaries} => Array&lt;Types::ProviderServiceSummary&gt;
1910
+ # * {Types::ListProviderServicesOutput#next_token #next_token} => String
1906
1911
  #
1907
1912
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1908
1913
  #
1909
1914
  # @example Request syntax with placeholder values
1910
1915
  #
1911
1916
  # resp = client.list_provider_services({
1912
- # max_results: 1,
1913
1917
  # next_token: "NextToken",
1918
+ # max_results: 1,
1914
1919
  # provider_name: "EntityName",
1915
1920
  # })
1916
1921
  #
1917
1922
  # @example Response structure
1918
1923
  #
1919
- # resp.next_token #=> String
1920
1924
  # resp.provider_service_summaries #=> Array
1921
- # resp.provider_service_summaries[0].provider_name #=> String
1922
1925
  # resp.provider_service_summaries[0].provider_service_arn #=> String
1926
+ # resp.provider_service_summaries[0].provider_name #=> String
1923
1927
  # resp.provider_service_summaries[0].provider_service_display_name #=> String
1924
1928
  # resp.provider_service_summaries[0].provider_service_name #=> String
1925
1929
  # resp.provider_service_summaries[0].provider_service_type #=> String, one of "ASSIGNMENT", "ID_MAPPING"
1930
+ # resp.next_token #=> String
1926
1931
  #
1927
1932
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/ListProviderServices AWS API Documentation
1928
1933
  #
@@ -1936,35 +1941,35 @@ module Aws::EntityResolution
1936
1941
  # Returns a list of all the `SchemaMappings` that have been created for
1937
1942
  # an Amazon Web Services account.
1938
1943
  #
1939
- # @option params [Integer] :max_results
1940
- # The maximum number of objects returned per page.
1941
- #
1942
1944
  # @option params [String] :next_token
1943
1945
  # The pagination token from the previous API call.
1944
1946
  #
1947
+ # @option params [Integer] :max_results
1948
+ # The maximum number of objects returned per page.
1949
+ #
1945
1950
  # @return [Types::ListSchemaMappingsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1946
1951
  #
1947
- # * {Types::ListSchemaMappingsOutput#next_token #next_token} => String
1948
1952
  # * {Types::ListSchemaMappingsOutput#schema_list #schema_list} => Array&lt;Types::SchemaMappingSummary&gt;
1953
+ # * {Types::ListSchemaMappingsOutput#next_token #next_token} => String
1949
1954
  #
1950
1955
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1951
1956
  #
1952
1957
  # @example Request syntax with placeholder values
1953
1958
  #
1954
1959
  # resp = client.list_schema_mappings({
1955
- # max_results: 1,
1956
1960
  # next_token: "NextToken",
1961
+ # max_results: 1,
1957
1962
  # })
1958
1963
  #
1959
1964
  # @example Response structure
1960
1965
  #
1961
- # resp.next_token #=> String
1962
1966
  # resp.schema_list #=> Array
1963
- # resp.schema_list[0].created_at #=> Time
1964
- # resp.schema_list[0].has_workflows #=> Boolean
1965
- # resp.schema_list[0].schema_arn #=> String
1966
1967
  # resp.schema_list[0].schema_name #=> String
1968
+ # resp.schema_list[0].schema_arn #=> String
1969
+ # resp.schema_list[0].created_at #=> Time
1967
1970
  # resp.schema_list[0].updated_at #=> Time
1971
+ # resp.schema_list[0].has_workflows #=> Boolean
1972
+ # resp.next_token #=> String
1968
1973
  #
1969
1974
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/ListSchemaMappings AWS API Documentation
1970
1975
  #
@@ -2012,6 +2017,9 @@ module Aws::EntityResolution
2012
2017
  # The Amazon Resource Name (ARN) of the resource for which the policy
2013
2018
  # needs to be updated.
2014
2019
  #
2020
+ # @option params [String] :token
2021
+ # A unique identifier for the current revision of the policy.
2022
+ #
2015
2023
  # @option params [required, String] :policy
2016
2024
  # The resource-based policy.
2017
2025
  #
@@ -2020,28 +2028,25 @@ module Aws::EntityResolution
2020
2028
  # the `effect` parameter to `Deny` for the `AddPolicyStatement`
2021
2029
  # operation.
2022
2030
  #
2023
- # @option params [String] :token
2024
- # A unique identifier for the current revision of the policy.
2025
- #
2026
2031
  # @return [Types::PutPolicyOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2027
2032
  #
2028
2033
  # * {Types::PutPolicyOutput#arn #arn} => String
2029
- # * {Types::PutPolicyOutput#policy #policy} => String
2030
2034
  # * {Types::PutPolicyOutput#token #token} => String
2035
+ # * {Types::PutPolicyOutput#policy #policy} => String
2031
2036
  #
2032
2037
  # @example Request syntax with placeholder values
2033
2038
  #
2034
2039
  # resp = client.put_policy({
2035
2040
  # arn: "VeniceGlobalArn", # required
2036
- # policy: "PolicyDocument", # required
2037
2041
  # token: "PolicyToken",
2042
+ # policy: "PolicyDocument", # required
2038
2043
  # })
2039
2044
  #
2040
2045
  # @example Response structure
2041
2046
  #
2042
2047
  # resp.arn #=> String
2043
- # resp.policy #=> String
2044
2048
  # resp.token #=> String
2049
+ # resp.policy #=> String
2045
2050
  #
2046
2051
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/PutPolicy AWS API Documentation
2047
2052
  #
@@ -2055,12 +2060,12 @@ module Aws::EntityResolution
2055
2060
  # Starts the `IdMappingJob` of a workflow. The workflow must have
2056
2061
  # previously been created using the `CreateIdMappingWorkflow` endpoint.
2057
2062
  #
2058
- # @option params [Array<Types::IdMappingJobOutputSource>] :output_source_config
2059
- # A list of `OutputSource` objects.
2060
- #
2061
2063
  # @option params [required, String] :workflow_name
2062
2064
  # The name of the ID mapping job to be retrieved.
2063
2065
  #
2066
+ # @option params [Array<Types::IdMappingJobOutputSource>] :output_source_config
2067
+ # A list of `OutputSource` objects.
2068
+ #
2064
2069
  # @return [Types::StartIdMappingJobOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2065
2070
  #
2066
2071
  # * {Types::StartIdMappingJobOutput#job_id #job_id} => String
@@ -2069,23 +2074,23 @@ module Aws::EntityResolution
2069
2074
  # @example Request syntax with placeholder values
2070
2075
  #
2071
2076
  # resp = client.start_id_mapping_job({
2077
+ # workflow_name: "EntityNameOrIdMappingWorkflowArn", # required
2072
2078
  # output_source_config: [
2073
2079
  # {
2074
- # kms_arn: "KMSArn",
2075
- # output_s3_path: "S3Path", # required
2076
2080
  # role_arn: "RoleArn", # required
2081
+ # output_s3_path: "S3Path", # required
2082
+ # kms_arn: "KMSArn",
2077
2083
  # },
2078
2084
  # ],
2079
- # workflow_name: "EntityNameOrIdMappingWorkflowArn", # required
2080
2085
  # })
2081
2086
  #
2082
2087
  # @example Response structure
2083
2088
  #
2084
2089
  # resp.job_id #=> String
2085
2090
  # resp.output_source_config #=> Array
2086
- # resp.output_source_config[0].kms_arn #=> String
2087
- # resp.output_source_config[0].output_s3_path #=> String
2088
2091
  # resp.output_source_config[0].role_arn #=> String
2092
+ # resp.output_source_config[0].output_s3_path #=> String
2093
+ # resp.output_source_config[0].kms_arn #=> String
2089
2094
  #
2090
2095
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/StartIdMappingJob AWS API Documentation
2091
2096
  #
@@ -2197,13 +2202,12 @@ module Aws::EntityResolution
2197
2202
  # instead of a `POST` request, and the `IdMappingWorkflow` must already
2198
2203
  # exist for the method to succeed.
2199
2204
  #
2205
+ # @option params [required, String] :workflow_name
2206
+ # The name of the workflow.
2207
+ #
2200
2208
  # @option params [String] :description
2201
2209
  # A description of the workflow.
2202
2210
  #
2203
- # @option params [required, Types::IdMappingTechniques] :id_mapping_techniques
2204
- # An object which defines the ID mapping technique and any additional
2205
- # configurations.
2206
- #
2207
2211
  # @option params [required, Array<Types::IdMappingWorkflowInputSource>] :input_source_config
2208
2212
  # A list of `InputSource` objects, which have the fields
2209
2213
  # `InputSourceARN` and `SchemaName`.
@@ -2212,50 +2216,30 @@ module Aws::EntityResolution
2212
2216
  # A list of `OutputSource` objects, each of which contains fields
2213
2217
  # `OutputS3Path` and `KMSArn`.
2214
2218
  #
2219
+ # @option params [required, Types::IdMappingTechniques] :id_mapping_techniques
2220
+ # An object which defines the ID mapping technique and any additional
2221
+ # configurations.
2222
+ #
2215
2223
  # @option params [String] :role_arn
2216
2224
  # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
2217
2225
  # assumes this role to access Amazon Web Services resources on your
2218
2226
  # behalf.
2219
2227
  #
2220
- # @option params [required, String] :workflow_name
2221
- # The name of the workflow.
2222
- #
2223
2228
  # @return [Types::UpdateIdMappingWorkflowOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2224
2229
  #
2230
+ # * {Types::UpdateIdMappingWorkflowOutput#workflow_name #workflow_name} => String
2231
+ # * {Types::UpdateIdMappingWorkflowOutput#workflow_arn #workflow_arn} => String
2225
2232
  # * {Types::UpdateIdMappingWorkflowOutput#description #description} => String
2226
- # * {Types::UpdateIdMappingWorkflowOutput#id_mapping_techniques #id_mapping_techniques} => Types::IdMappingTechniques
2227
2233
  # * {Types::UpdateIdMappingWorkflowOutput#input_source_config #input_source_config} => Array&lt;Types::IdMappingWorkflowInputSource&gt;
2228
2234
  # * {Types::UpdateIdMappingWorkflowOutput#output_source_config #output_source_config} => Array&lt;Types::IdMappingWorkflowOutputSource&gt;
2235
+ # * {Types::UpdateIdMappingWorkflowOutput#id_mapping_techniques #id_mapping_techniques} => Types::IdMappingTechniques
2229
2236
  # * {Types::UpdateIdMappingWorkflowOutput#role_arn #role_arn} => String
2230
- # * {Types::UpdateIdMappingWorkflowOutput#workflow_arn #workflow_arn} => String
2231
- # * {Types::UpdateIdMappingWorkflowOutput#workflow_name #workflow_name} => String
2232
2237
  #
2233
2238
  # @example Request syntax with placeholder values
2234
2239
  #
2235
2240
  # resp = client.update_id_mapping_workflow({
2241
+ # workflow_name: "EntityName", # required
2236
2242
  # description: "Description",
2237
- # id_mapping_techniques: { # required
2238
- # id_mapping_type: "PROVIDER", # required, accepts PROVIDER, RULE_BASED
2239
- # provider_properties: {
2240
- # intermediate_source_configuration: {
2241
- # intermediate_s3_path: "S3Path", # required
2242
- # },
2243
- # provider_configuration: {
2244
- # },
2245
- # provider_service_arn: "ProviderServiceArn", # required
2246
- # },
2247
- # rule_based_properties: {
2248
- # attribute_matching_model: "ONE_TO_ONE", # required, accepts ONE_TO_ONE, MANY_TO_MANY
2249
- # record_matching_model: "ONE_SOURCE_TO_ONE_TARGET", # required, accepts ONE_SOURCE_TO_ONE_TARGET, MANY_SOURCE_TO_ONE_TARGET
2250
- # rule_definition_type: "SOURCE", # required, accepts SOURCE, TARGET
2251
- # rules: [
2252
- # {
2253
- # matching_keys: ["AttributeName"], # required
2254
- # rule_name: "RuleRuleNameString", # required
2255
- # },
2256
- # ],
2257
- # },
2258
- # },
2259
2243
  # input_source_config: [ # required
2260
2244
  # {
2261
2245
  # input_source_arn: "IdMappingWorkflowInputSourceInputSourceARNString", # required
@@ -2265,37 +2249,58 @@ module Aws::EntityResolution
2265
2249
  # ],
2266
2250
  # output_source_config: [
2267
2251
  # {
2268
- # kms_arn: "KMSArn",
2269
2252
  # output_s3_path: "S3Path", # required
2253
+ # kms_arn: "KMSArn",
2270
2254
  # },
2271
2255
  # ],
2256
+ # id_mapping_techniques: { # required
2257
+ # id_mapping_type: "PROVIDER", # required, accepts PROVIDER, RULE_BASED
2258
+ # rule_based_properties: {
2259
+ # rules: [
2260
+ # {
2261
+ # rule_name: "RuleRuleNameString", # required
2262
+ # matching_keys: ["AttributeName"], # required
2263
+ # },
2264
+ # ],
2265
+ # rule_definition_type: "SOURCE", # required, accepts SOURCE, TARGET
2266
+ # attribute_matching_model: "ONE_TO_ONE", # required, accepts ONE_TO_ONE, MANY_TO_MANY
2267
+ # record_matching_model: "ONE_SOURCE_TO_ONE_TARGET", # required, accepts ONE_SOURCE_TO_ONE_TARGET, MANY_SOURCE_TO_ONE_TARGET
2268
+ # },
2269
+ # provider_properties: {
2270
+ # provider_service_arn: "ProviderServiceArn", # required
2271
+ # provider_configuration: {
2272
+ # },
2273
+ # intermediate_source_configuration: {
2274
+ # intermediate_s3_path: "S3Path", # required
2275
+ # },
2276
+ # },
2277
+ # },
2272
2278
  # role_arn: "IdMappingRoleArn",
2273
- # workflow_name: "EntityName", # required
2274
2279
  # })
2275
2280
  #
2276
2281
  # @example Response structure
2277
2282
  #
2283
+ # resp.workflow_name #=> String
2284
+ # resp.workflow_arn #=> String
2278
2285
  # resp.description #=> String
2279
- # resp.id_mapping_techniques.id_mapping_type #=> String, one of "PROVIDER", "RULE_BASED"
2280
- # resp.id_mapping_techniques.provider_properties.intermediate_source_configuration.intermediate_s3_path #=> String
2281
- # resp.id_mapping_techniques.provider_properties.provider_service_arn #=> String
2282
- # resp.id_mapping_techniques.rule_based_properties.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
2283
- # resp.id_mapping_techniques.rule_based_properties.record_matching_model #=> String, one of "ONE_SOURCE_TO_ONE_TARGET", "MANY_SOURCE_TO_ONE_TARGET"
2284
- # resp.id_mapping_techniques.rule_based_properties.rule_definition_type #=> String, one of "SOURCE", "TARGET"
2285
- # resp.id_mapping_techniques.rule_based_properties.rules #=> Array
2286
- # resp.id_mapping_techniques.rule_based_properties.rules[0].matching_keys #=> Array
2287
- # resp.id_mapping_techniques.rule_based_properties.rules[0].matching_keys[0] #=> String
2288
- # resp.id_mapping_techniques.rule_based_properties.rules[0].rule_name #=> String
2289
2286
  # resp.input_source_config #=> Array
2290
2287
  # resp.input_source_config[0].input_source_arn #=> String
2291
2288
  # resp.input_source_config[0].schema_name #=> String
2292
2289
  # resp.input_source_config[0].type #=> String, one of "SOURCE", "TARGET"
2293
2290
  # resp.output_source_config #=> Array
2294
- # resp.output_source_config[0].kms_arn #=> String
2295
2291
  # resp.output_source_config[0].output_s3_path #=> String
2292
+ # resp.output_source_config[0].kms_arn #=> String
2293
+ # resp.id_mapping_techniques.id_mapping_type #=> String, one of "PROVIDER", "RULE_BASED"
2294
+ # resp.id_mapping_techniques.rule_based_properties.rules #=> Array
2295
+ # resp.id_mapping_techniques.rule_based_properties.rules[0].rule_name #=> String
2296
+ # resp.id_mapping_techniques.rule_based_properties.rules[0].matching_keys #=> Array
2297
+ # resp.id_mapping_techniques.rule_based_properties.rules[0].matching_keys[0] #=> String
2298
+ # resp.id_mapping_techniques.rule_based_properties.rule_definition_type #=> String, one of "SOURCE", "TARGET"
2299
+ # resp.id_mapping_techniques.rule_based_properties.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
2300
+ # resp.id_mapping_techniques.rule_based_properties.record_matching_model #=> String, one of "ONE_SOURCE_TO_ONE_TARGET", "MANY_SOURCE_TO_ONE_TARGET"
2301
+ # resp.id_mapping_techniques.provider_properties.provider_service_arn #=> String
2302
+ # resp.id_mapping_techniques.provider_properties.intermediate_source_configuration.intermediate_s3_path #=> String
2296
2303
  # resp.role_arn #=> String
2297
- # resp.workflow_arn #=> String
2298
- # resp.workflow_name #=> String
2299
2304
  #
2300
2305
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/UpdateIdMappingWorkflow AWS API Documentation
2301
2306
  #
@@ -2308,20 +2313,20 @@ module Aws::EntityResolution
2308
2313
 
2309
2314
  # Updates an existing ID namespace.
2310
2315
  #
2311
- # @option params [String] :description
2312
- # The description of the ID namespace.
2313
- #
2314
- # @option params [Array<Types::IdNamespaceIdMappingWorkflowProperties>] :id_mapping_workflow_properties
2315
- # Determines the properties of `IdMappingWorkflow` where this
2316
- # `IdNamespace` can be used as a `Source` or a `Target`.
2317
- #
2318
2316
  # @option params [required, String] :id_namespace_name
2319
2317
  # The name of the ID namespace.
2320
2318
  #
2319
+ # @option params [String] :description
2320
+ # The description of the ID namespace.
2321
+ #
2321
2322
  # @option params [Array<Types::IdNamespaceInputSource>] :input_source_config
2322
2323
  # A list of `InputSource` objects, which have the fields
2323
2324
  # `InputSourceARN` and `SchemaName`.
2324
2325
  #
2326
+ # @option params [Array<Types::IdNamespaceIdMappingWorkflowProperties>] :id_mapping_workflow_properties
2327
+ # Determines the properties of `IdMappingWorkflow` where this
2328
+ # `IdNamespace` can be used as a `Source` or a `Target`.
2329
+ #
2325
2330
  # @option params [String] :role_arn
2326
2331
  # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
2327
2332
  # assumes this role to access the resources defined in this
@@ -2329,46 +2334,46 @@ module Aws::EntityResolution
2329
2334
  #
2330
2335
  # @return [Types::UpdateIdNamespaceOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2331
2336
  #
2332
- # * {Types::UpdateIdNamespaceOutput#created_at #created_at} => Time
2333
- # * {Types::UpdateIdNamespaceOutput#description #description} => String
2334
- # * {Types::UpdateIdNamespaceOutput#id_mapping_workflow_properties #id_mapping_workflow_properties} => Array&lt;Types::IdNamespaceIdMappingWorkflowProperties&gt;
2335
- # * {Types::UpdateIdNamespaceOutput#id_namespace_arn #id_namespace_arn} => String
2336
2337
  # * {Types::UpdateIdNamespaceOutput#id_namespace_name #id_namespace_name} => String
2338
+ # * {Types::UpdateIdNamespaceOutput#id_namespace_arn #id_namespace_arn} => String
2339
+ # * {Types::UpdateIdNamespaceOutput#description #description} => String
2337
2340
  # * {Types::UpdateIdNamespaceOutput#input_source_config #input_source_config} => Array&lt;Types::IdNamespaceInputSource&gt;
2338
- # * {Types::UpdateIdNamespaceOutput#role_arn #role_arn} => String
2341
+ # * {Types::UpdateIdNamespaceOutput#id_mapping_workflow_properties #id_mapping_workflow_properties} => Array&lt;Types::IdNamespaceIdMappingWorkflowProperties&gt;
2339
2342
  # * {Types::UpdateIdNamespaceOutput#type #type} => String
2343
+ # * {Types::UpdateIdNamespaceOutput#role_arn #role_arn} => String
2344
+ # * {Types::UpdateIdNamespaceOutput#created_at #created_at} => Time
2340
2345
  # * {Types::UpdateIdNamespaceOutput#updated_at #updated_at} => Time
2341
2346
  #
2342
2347
  # @example Request syntax with placeholder values
2343
2348
  #
2344
2349
  # resp = client.update_id_namespace({
2350
+ # id_namespace_name: "EntityName", # required
2345
2351
  # description: "Description",
2352
+ # input_source_config: [
2353
+ # {
2354
+ # input_source_arn: "IdNamespaceInputSourceInputSourceARNString", # required
2355
+ # schema_name: "EntityName",
2356
+ # },
2357
+ # ],
2346
2358
  # id_mapping_workflow_properties: [
2347
2359
  # {
2348
2360
  # id_mapping_type: "PROVIDER", # required, accepts PROVIDER, RULE_BASED
2349
- # provider_properties: {
2350
- # provider_configuration: {
2351
- # },
2352
- # provider_service_arn: "ProviderServiceArn", # required
2353
- # },
2354
2361
  # rule_based_properties: {
2355
- # attribute_matching_model: "ONE_TO_ONE", # accepts ONE_TO_ONE, MANY_TO_MANY
2356
- # record_matching_models: ["ONE_SOURCE_TO_ONE_TARGET"], # accepts ONE_SOURCE_TO_ONE_TARGET, MANY_SOURCE_TO_ONE_TARGET
2357
- # rule_definition_types: ["SOURCE"], # accepts SOURCE, TARGET
2358
2362
  # rules: [
2359
2363
  # {
2360
- # matching_keys: ["AttributeName"], # required
2361
2364
  # rule_name: "RuleRuleNameString", # required
2365
+ # matching_keys: ["AttributeName"], # required
2362
2366
  # },
2363
2367
  # ],
2368
+ # rule_definition_types: ["SOURCE"], # accepts SOURCE, TARGET
2369
+ # attribute_matching_model: "ONE_TO_ONE", # accepts ONE_TO_ONE, MANY_TO_MANY
2370
+ # record_matching_models: ["ONE_SOURCE_TO_ONE_TARGET"], # accepts ONE_SOURCE_TO_ONE_TARGET, MANY_SOURCE_TO_ONE_TARGET
2371
+ # },
2372
+ # provider_properties: {
2373
+ # provider_service_arn: "ProviderServiceArn", # required
2374
+ # provider_configuration: {
2375
+ # },
2364
2376
  # },
2365
- # },
2366
- # ],
2367
- # id_namespace_name: "EntityName", # required
2368
- # input_source_config: [
2369
- # {
2370
- # input_source_arn: "IdNamespaceInputSourceInputSourceARNString", # required
2371
- # schema_name: "EntityName",
2372
2377
  # },
2373
2378
  # ],
2374
2379
  # role_arn: "RoleArn",
@@ -2376,27 +2381,27 @@ module Aws::EntityResolution
2376
2381
  #
2377
2382
  # @example Response structure
2378
2383
  #
2379
- # resp.created_at #=> Time
2384
+ # resp.id_namespace_name #=> String
2385
+ # resp.id_namespace_arn #=> String
2380
2386
  # resp.description #=> String
2387
+ # resp.input_source_config #=> Array
2388
+ # resp.input_source_config[0].input_source_arn #=> String
2389
+ # resp.input_source_config[0].schema_name #=> String
2381
2390
  # resp.id_mapping_workflow_properties #=> Array
2382
2391
  # resp.id_mapping_workflow_properties[0].id_mapping_type #=> String, one of "PROVIDER", "RULE_BASED"
2383
- # resp.id_mapping_workflow_properties[0].provider_properties.provider_service_arn #=> String
2384
- # resp.id_mapping_workflow_properties[0].rule_based_properties.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
2385
- # resp.id_mapping_workflow_properties[0].rule_based_properties.record_matching_models #=> Array
2386
- # resp.id_mapping_workflow_properties[0].rule_based_properties.record_matching_models[0] #=> String, one of "ONE_SOURCE_TO_ONE_TARGET", "MANY_SOURCE_TO_ONE_TARGET"
2387
- # resp.id_mapping_workflow_properties[0].rule_based_properties.rule_definition_types #=> Array
2388
- # resp.id_mapping_workflow_properties[0].rule_based_properties.rule_definition_types[0] #=> String, one of "SOURCE", "TARGET"
2389
2392
  # resp.id_mapping_workflow_properties[0].rule_based_properties.rules #=> Array
2393
+ # resp.id_mapping_workflow_properties[0].rule_based_properties.rules[0].rule_name #=> String
2390
2394
  # resp.id_mapping_workflow_properties[0].rule_based_properties.rules[0].matching_keys #=> Array
2391
2395
  # resp.id_mapping_workflow_properties[0].rule_based_properties.rules[0].matching_keys[0] #=> String
2392
- # resp.id_mapping_workflow_properties[0].rule_based_properties.rules[0].rule_name #=> String
2393
- # resp.id_namespace_arn #=> String
2394
- # resp.id_namespace_name #=> String
2395
- # resp.input_source_config #=> Array
2396
- # resp.input_source_config[0].input_source_arn #=> String
2397
- # resp.input_source_config[0].schema_name #=> String
2398
- # resp.role_arn #=> String
2396
+ # resp.id_mapping_workflow_properties[0].rule_based_properties.rule_definition_types #=> Array
2397
+ # resp.id_mapping_workflow_properties[0].rule_based_properties.rule_definition_types[0] #=> String, one of "SOURCE", "TARGET"
2398
+ # resp.id_mapping_workflow_properties[0].rule_based_properties.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
2399
+ # resp.id_mapping_workflow_properties[0].rule_based_properties.record_matching_models #=> Array
2400
+ # resp.id_mapping_workflow_properties[0].rule_based_properties.record_matching_models[0] #=> String, one of "ONE_SOURCE_TO_ONE_TARGET", "MANY_SOURCE_TO_ONE_TARGET"
2401
+ # resp.id_mapping_workflow_properties[0].provider_properties.provider_service_arn #=> String
2399
2402
  # resp.type #=> String, one of "SOURCE", "TARGET"
2403
+ # resp.role_arn #=> String
2404
+ # resp.created_at #=> Time
2400
2405
  # resp.updated_at #=> Time
2401
2406
  #
2402
2407
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/UpdateIdNamespace AWS API Documentation
@@ -2413,13 +2418,12 @@ module Aws::EntityResolution
2413
2418
  # of a `POST` request, and the `MatchingWorkflow` must already exist for
2414
2419
  # the method to succeed.
2415
2420
  #
2421
+ # @option params [required, String] :workflow_name
2422
+ # The name of the workflow to be retrieved.
2423
+ #
2416
2424
  # @option params [String] :description
2417
2425
  # A description of the workflow.
2418
2426
  #
2419
- # @option params [Types::IncrementalRunConfig] :incremental_run_config
2420
- # An object which defines an incremental run type and has only
2421
- # `incrementalRunType` as a field.
2422
- #
2423
2427
  # @option params [required, Array<Types::InputSource>] :input_source_config
2424
2428
  # A list of `InputSource` objects, which have the fields
2425
2429
  # `InputSourceARN` and `SchemaName`.
@@ -2432,102 +2436,103 @@ module Aws::EntityResolution
2432
2436
  # An object which defines the `resolutionType` and the
2433
2437
  # `ruleBasedProperties`.
2434
2438
  #
2439
+ # @option params [Types::IncrementalRunConfig] :incremental_run_config
2440
+ # An object which defines an incremental run type and has only
2441
+ # `incrementalRunType` as a field.
2442
+ #
2435
2443
  # @option params [required, String] :role_arn
2436
2444
  # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
2437
2445
  # assumes this role to create resources on your behalf as part of
2438
2446
  # workflow execution.
2439
2447
  #
2440
- # @option params [required, String] :workflow_name
2441
- # The name of the workflow to be retrieved.
2442
- #
2443
2448
  # @return [Types::UpdateMatchingWorkflowOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2444
2449
  #
2450
+ # * {Types::UpdateMatchingWorkflowOutput#workflow_name #workflow_name} => String
2445
2451
  # * {Types::UpdateMatchingWorkflowOutput#description #description} => String
2446
- # * {Types::UpdateMatchingWorkflowOutput#incremental_run_config #incremental_run_config} => Types::IncrementalRunConfig
2447
2452
  # * {Types::UpdateMatchingWorkflowOutput#input_source_config #input_source_config} => Array&lt;Types::InputSource&gt;
2448
2453
  # * {Types::UpdateMatchingWorkflowOutput#output_source_config #output_source_config} => Array&lt;Types::OutputSource&gt;
2449
2454
  # * {Types::UpdateMatchingWorkflowOutput#resolution_techniques #resolution_techniques} => Types::ResolutionTechniques
2455
+ # * {Types::UpdateMatchingWorkflowOutput#incremental_run_config #incremental_run_config} => Types::IncrementalRunConfig
2450
2456
  # * {Types::UpdateMatchingWorkflowOutput#role_arn #role_arn} => String
2451
- # * {Types::UpdateMatchingWorkflowOutput#workflow_name #workflow_name} => String
2452
2457
  #
2453
2458
  # @example Request syntax with placeholder values
2454
2459
  #
2455
2460
  # resp = client.update_matching_workflow({
2461
+ # workflow_name: "EntityName", # required
2456
2462
  # description: "Description",
2457
- # incremental_run_config: {
2458
- # incremental_run_type: "IMMEDIATE", # accepts IMMEDIATE
2459
- # },
2460
2463
  # input_source_config: [ # required
2461
2464
  # {
2462
- # apply_normalization: false,
2463
2465
  # input_source_arn: "InputSourceInputSourceARNString", # required
2464
2466
  # schema_name: "EntityName", # required
2467
+ # apply_normalization: false,
2465
2468
  # },
2466
2469
  # ],
2467
2470
  # output_source_config: [ # required
2468
2471
  # {
2472
+ # output_s3_path: "S3Path", # required
2469
2473
  # kms_arn: "KMSArn",
2470
- # apply_normalization: false,
2471
2474
  # output: [ # required
2472
2475
  # {
2473
- # hashed: false,
2474
2476
  # name: "AttributeName", # required
2477
+ # hashed: false,
2475
2478
  # },
2476
2479
  # ],
2477
- # output_s3_path: "S3Path", # required
2480
+ # apply_normalization: false,
2478
2481
  # },
2479
2482
  # ],
2480
2483
  # resolution_techniques: { # required
2481
- # provider_properties: {
2482
- # intermediate_source_configuration: {
2483
- # intermediate_s3_path: "S3Path", # required
2484
- # },
2485
- # provider_configuration: {
2486
- # },
2487
- # provider_service_arn: "ProviderServiceArn", # required
2488
- # },
2489
2484
  # resolution_type: "RULE_MATCHING", # required, accepts RULE_MATCHING, ML_MATCHING, PROVIDER
2490
2485
  # rule_based_properties: {
2491
- # attribute_matching_model: "ONE_TO_ONE", # required, accepts ONE_TO_ONE, MANY_TO_MANY
2492
- # match_purpose: "IDENTIFIER_GENERATION", # accepts IDENTIFIER_GENERATION, INDEXING
2493
2486
  # rules: [ # required
2494
2487
  # {
2495
- # matching_keys: ["AttributeName"], # required
2496
2488
  # rule_name: "RuleRuleNameString", # required
2489
+ # matching_keys: ["AttributeName"], # required
2497
2490
  # },
2498
2491
  # ],
2492
+ # attribute_matching_model: "ONE_TO_ONE", # required, accepts ONE_TO_ONE, MANY_TO_MANY
2493
+ # match_purpose: "IDENTIFIER_GENERATION", # accepts IDENTIFIER_GENERATION, INDEXING
2494
+ # },
2495
+ # provider_properties: {
2496
+ # provider_service_arn: "ProviderServiceArn", # required
2497
+ # provider_configuration: {
2498
+ # },
2499
+ # intermediate_source_configuration: {
2500
+ # intermediate_s3_path: "S3Path", # required
2501
+ # },
2499
2502
  # },
2500
2503
  # },
2504
+ # incremental_run_config: {
2505
+ # incremental_run_type: "IMMEDIATE", # accepts IMMEDIATE
2506
+ # },
2501
2507
  # role_arn: "String", # required
2502
- # workflow_name: "EntityName", # required
2503
2508
  # })
2504
2509
  #
2505
2510
  # @example Response structure
2506
2511
  #
2512
+ # resp.workflow_name #=> String
2507
2513
  # resp.description #=> String
2508
- # resp.incremental_run_config.incremental_run_type #=> String, one of "IMMEDIATE"
2509
2514
  # resp.input_source_config #=> Array
2510
- # resp.input_source_config[0].apply_normalization #=> Boolean
2511
2515
  # resp.input_source_config[0].input_source_arn #=> String
2512
2516
  # resp.input_source_config[0].schema_name #=> String
2517
+ # resp.input_source_config[0].apply_normalization #=> Boolean
2513
2518
  # resp.output_source_config #=> Array
2519
+ # resp.output_source_config[0].output_s3_path #=> String
2514
2520
  # resp.output_source_config[0].kms_arn #=> String
2515
- # resp.output_source_config[0].apply_normalization #=> Boolean
2516
2521
  # resp.output_source_config[0].output #=> Array
2517
- # resp.output_source_config[0].output[0].hashed #=> Boolean
2518
2522
  # resp.output_source_config[0].output[0].name #=> String
2519
- # resp.output_source_config[0].output_s3_path #=> String
2520
- # resp.resolution_techniques.provider_properties.intermediate_source_configuration.intermediate_s3_path #=> String
2521
- # resp.resolution_techniques.provider_properties.provider_service_arn #=> String
2523
+ # resp.output_source_config[0].output[0].hashed #=> Boolean
2524
+ # resp.output_source_config[0].apply_normalization #=> Boolean
2522
2525
  # resp.resolution_techniques.resolution_type #=> String, one of "RULE_MATCHING", "ML_MATCHING", "PROVIDER"
2523
- # resp.resolution_techniques.rule_based_properties.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
2524
- # resp.resolution_techniques.rule_based_properties.match_purpose #=> String, one of "IDENTIFIER_GENERATION", "INDEXING"
2525
2526
  # resp.resolution_techniques.rule_based_properties.rules #=> Array
2527
+ # resp.resolution_techniques.rule_based_properties.rules[0].rule_name #=> String
2526
2528
  # resp.resolution_techniques.rule_based_properties.rules[0].matching_keys #=> Array
2527
2529
  # resp.resolution_techniques.rule_based_properties.rules[0].matching_keys[0] #=> String
2528
- # resp.resolution_techniques.rule_based_properties.rules[0].rule_name #=> String
2530
+ # resp.resolution_techniques.rule_based_properties.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
2531
+ # resp.resolution_techniques.rule_based_properties.match_purpose #=> String, one of "IDENTIFIER_GENERATION", "INDEXING"
2532
+ # resp.resolution_techniques.provider_properties.provider_service_arn #=> String
2533
+ # resp.resolution_techniques.provider_properties.intermediate_source_configuration.intermediate_s3_path #=> String
2534
+ # resp.incremental_run_config.incremental_run_type #=> String, one of "IMMEDIATE"
2529
2535
  # resp.role_arn #=> String
2530
- # resp.workflow_name #=> String
2531
2536
  #
2532
2537
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/UpdateMatchingWorkflow AWS API Documentation
2533
2538
  #
@@ -2546,6 +2551,10 @@ module Aws::EntityResolution
2546
2551
  #
2547
2552
  # </note>
2548
2553
  #
2554
+ # @option params [required, String] :schema_name
2555
+ # The name of the schema. There can't be multiple `SchemaMappings` with
2556
+ # the same name.
2557
+ #
2549
2558
  # @option params [String] :description
2550
2559
  # A description of the schema.
2551
2560
  #
@@ -2554,46 +2563,42 @@ module Aws::EntityResolution
2554
2563
  # a column the source data table, and contains column name plus
2555
2564
  # additional information that Entity Resolution uses for matching.
2556
2565
  #
2557
- # @option params [required, String] :schema_name
2558
- # The name of the schema. There can't be multiple `SchemaMappings` with
2559
- # the same name.
2560
- #
2561
2566
  # @return [Types::UpdateSchemaMappingOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2562
2567
  #
2568
+ # * {Types::UpdateSchemaMappingOutput#schema_name #schema_name} => String
2569
+ # * {Types::UpdateSchemaMappingOutput#schema_arn #schema_arn} => String
2563
2570
  # * {Types::UpdateSchemaMappingOutput#description #description} => String
2564
2571
  # * {Types::UpdateSchemaMappingOutput#mapped_input_fields #mapped_input_fields} => Array&lt;Types::SchemaInputAttribute&gt;
2565
- # * {Types::UpdateSchemaMappingOutput#schema_arn #schema_arn} => String
2566
- # * {Types::UpdateSchemaMappingOutput#schema_name #schema_name} => String
2567
2572
  #
2568
2573
  # @example Request syntax with placeholder values
2569
2574
  #
2570
2575
  # resp = client.update_schema_mapping({
2576
+ # schema_name: "EntityName", # required
2571
2577
  # description: "Description",
2572
2578
  # mapped_input_fields: [ # required
2573
2579
  # {
2574
2580
  # field_name: "AttributeName", # required
2581
+ # type: "NAME", # required, accepts NAME, NAME_FIRST, NAME_MIDDLE, NAME_LAST, ADDRESS, ADDRESS_STREET1, ADDRESS_STREET2, ADDRESS_STREET3, ADDRESS_CITY, ADDRESS_STATE, ADDRESS_COUNTRY, ADDRESS_POSTALCODE, PHONE, PHONE_NUMBER, PHONE_COUNTRYCODE, EMAIL_ADDRESS, UNIQUE_ID, DATE, STRING, PROVIDER_ID
2575
2582
  # group_name: "AttributeName",
2576
- # hashed: false,
2577
2583
  # match_key: "AttributeName",
2578
2584
  # sub_type: "AttributeName",
2579
- # type: "NAME", # required, accepts NAME, NAME_FIRST, NAME_MIDDLE, NAME_LAST, ADDRESS, ADDRESS_STREET1, ADDRESS_STREET2, ADDRESS_STREET3, ADDRESS_CITY, ADDRESS_STATE, ADDRESS_COUNTRY, ADDRESS_POSTALCODE, PHONE, PHONE_NUMBER, PHONE_COUNTRYCODE, EMAIL_ADDRESS, UNIQUE_ID, DATE, STRING, PROVIDER_ID
2585
+ # hashed: false,
2580
2586
  # },
2581
2587
  # ],
2582
- # schema_name: "EntityName", # required
2583
2588
  # })
2584
2589
  #
2585
2590
  # @example Response structure
2586
2591
  #
2592
+ # resp.schema_name #=> String
2593
+ # resp.schema_arn #=> String
2587
2594
  # resp.description #=> String
2588
2595
  # resp.mapped_input_fields #=> Array
2589
2596
  # resp.mapped_input_fields[0].field_name #=> String
2597
+ # resp.mapped_input_fields[0].type #=> String, one of "NAME", "NAME_FIRST", "NAME_MIDDLE", "NAME_LAST", "ADDRESS", "ADDRESS_STREET1", "ADDRESS_STREET2", "ADDRESS_STREET3", "ADDRESS_CITY", "ADDRESS_STATE", "ADDRESS_COUNTRY", "ADDRESS_POSTALCODE", "PHONE", "PHONE_NUMBER", "PHONE_COUNTRYCODE", "EMAIL_ADDRESS", "UNIQUE_ID", "DATE", "STRING", "PROVIDER_ID"
2590
2598
  # resp.mapped_input_fields[0].group_name #=> String
2591
- # resp.mapped_input_fields[0].hashed #=> Boolean
2592
2599
  # resp.mapped_input_fields[0].match_key #=> String
2593
2600
  # resp.mapped_input_fields[0].sub_type #=> String
2594
- # resp.mapped_input_fields[0].type #=> String, one of "NAME", "NAME_FIRST", "NAME_MIDDLE", "NAME_LAST", "ADDRESS", "ADDRESS_STREET1", "ADDRESS_STREET2", "ADDRESS_STREET3", "ADDRESS_CITY", "ADDRESS_STATE", "ADDRESS_COUNTRY", "ADDRESS_POSTALCODE", "PHONE", "PHONE_NUMBER", "PHONE_COUNTRYCODE", "EMAIL_ADDRESS", "UNIQUE_ID", "DATE", "STRING", "PROVIDER_ID"
2595
- # resp.schema_arn #=> String
2596
- # resp.schema_name #=> String
2601
+ # resp.mapped_input_fields[0].hashed #=> Boolean
2597
2602
  #
2598
2603
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/UpdateSchemaMapping AWS API Documentation
2599
2604
  #
@@ -2622,7 +2627,7 @@ module Aws::EntityResolution
2622
2627
  tracer: tracer
2623
2628
  )
2624
2629
  context[:gem_name] = 'aws-sdk-entityresolution'
2625
- context[:gem_version] = '1.26.0'
2630
+ context[:gem_version] = '1.27.0'
2626
2631
  Seahorse::Client::Request.new(handlers, context)
2627
2632
  end
2628
2633