aws-sdk-databasemigrationservice 1.85.0 → 1.86.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.
@@ -619,6 +619,121 @@ module Aws::DatabaseMigrationService
619
619
  req.send_request(options)
620
620
  end
621
621
 
622
+ # Creates a data provider using the provided settings. A data provider
623
+ # stores a data store type and location information about your database.
624
+ #
625
+ # @option params [String] :data_provider_name
626
+ # A user-friendly name for the data provider.
627
+ #
628
+ # @option params [String] :description
629
+ # A user-friendly description of the data provider.
630
+ #
631
+ # @option params [required, String] :engine
632
+ # The type of database engine for the data provider. Valid values
633
+ # include `"aurora"`, `"aurora_postgresql"`, `"mysql"`, `"oracle"`,
634
+ # `"postgres"`, and `"sqlserver"`. A value of `"aurora"` represents
635
+ # Amazon Aurora MySQL-Compatible Edition.
636
+ #
637
+ # @option params [required, Types::DataProviderSettings] :settings
638
+ # The settings in JSON format for a data provider.
639
+ #
640
+ # @option params [Array<Types::Tag>] :tags
641
+ # One or more tags to be assigned to the data provider.
642
+ #
643
+ # @return [Types::CreateDataProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
644
+ #
645
+ # * {Types::CreateDataProviderResponse#data_provider #data_provider} => Types::DataProvider
646
+ #
647
+ # @example Request syntax with placeholder values
648
+ #
649
+ # resp = client.create_data_provider({
650
+ # data_provider_name: "String",
651
+ # description: "String",
652
+ # engine: "String", # required
653
+ # settings: { # required
654
+ # postgre_sql_settings: {
655
+ # server_name: "String",
656
+ # port: 1,
657
+ # database_name: "String",
658
+ # ssl_mode: "none", # accepts none, require, verify-ca, verify-full
659
+ # certificate_arn: "String",
660
+ # },
661
+ # my_sql_settings: {
662
+ # server_name: "String",
663
+ # port: 1,
664
+ # ssl_mode: "none", # accepts none, require, verify-ca, verify-full
665
+ # certificate_arn: "String",
666
+ # },
667
+ # oracle_settings: {
668
+ # server_name: "String",
669
+ # port: 1,
670
+ # database_name: "String",
671
+ # ssl_mode: "none", # accepts none, require, verify-ca, verify-full
672
+ # certificate_arn: "String",
673
+ # asm_server: "String",
674
+ # secrets_manager_oracle_asm_secret_id: "String",
675
+ # secrets_manager_oracle_asm_access_role_arn: "String",
676
+ # secrets_manager_security_db_encryption_secret_id: "String",
677
+ # secrets_manager_security_db_encryption_access_role_arn: "String",
678
+ # },
679
+ # microsoft_sql_server_settings: {
680
+ # server_name: "String",
681
+ # port: 1,
682
+ # database_name: "String",
683
+ # ssl_mode: "none", # accepts none, require, verify-ca, verify-full
684
+ # certificate_arn: "String",
685
+ # },
686
+ # },
687
+ # tags: [
688
+ # {
689
+ # key: "String",
690
+ # value: "String",
691
+ # resource_arn: "String",
692
+ # },
693
+ # ],
694
+ # })
695
+ #
696
+ # @example Response structure
697
+ #
698
+ # resp.data_provider.data_provider_name #=> String
699
+ # resp.data_provider.data_provider_arn #=> String
700
+ # resp.data_provider.data_provider_creation_time #=> Time
701
+ # resp.data_provider.description #=> String
702
+ # resp.data_provider.engine #=> String
703
+ # resp.data_provider.settings.postgre_sql_settings.server_name #=> String
704
+ # resp.data_provider.settings.postgre_sql_settings.port #=> Integer
705
+ # resp.data_provider.settings.postgre_sql_settings.database_name #=> String
706
+ # resp.data_provider.settings.postgre_sql_settings.ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
707
+ # resp.data_provider.settings.postgre_sql_settings.certificate_arn #=> String
708
+ # resp.data_provider.settings.my_sql_settings.server_name #=> String
709
+ # resp.data_provider.settings.my_sql_settings.port #=> Integer
710
+ # resp.data_provider.settings.my_sql_settings.ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
711
+ # resp.data_provider.settings.my_sql_settings.certificate_arn #=> String
712
+ # resp.data_provider.settings.oracle_settings.server_name #=> String
713
+ # resp.data_provider.settings.oracle_settings.port #=> Integer
714
+ # resp.data_provider.settings.oracle_settings.database_name #=> String
715
+ # resp.data_provider.settings.oracle_settings.ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
716
+ # resp.data_provider.settings.oracle_settings.certificate_arn #=> String
717
+ # resp.data_provider.settings.oracle_settings.asm_server #=> String
718
+ # resp.data_provider.settings.oracle_settings.secrets_manager_oracle_asm_secret_id #=> String
719
+ # resp.data_provider.settings.oracle_settings.secrets_manager_oracle_asm_access_role_arn #=> String
720
+ # resp.data_provider.settings.oracle_settings.secrets_manager_security_db_encryption_secret_id #=> String
721
+ # resp.data_provider.settings.oracle_settings.secrets_manager_security_db_encryption_access_role_arn #=> String
722
+ # resp.data_provider.settings.microsoft_sql_server_settings.server_name #=> String
723
+ # resp.data_provider.settings.microsoft_sql_server_settings.port #=> Integer
724
+ # resp.data_provider.settings.microsoft_sql_server_settings.database_name #=> String
725
+ # resp.data_provider.settings.microsoft_sql_server_settings.ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
726
+ # resp.data_provider.settings.microsoft_sql_server_settings.certificate_arn #=> String
727
+ #
728
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateDataProvider AWS API Documentation
729
+ #
730
+ # @overload create_data_provider(params = {})
731
+ # @param [Hash] params ({})
732
+ def create_data_provider(params = {}, options = {})
733
+ req = build_request(:create_data_provider, params)
734
+ req.send_request(options)
735
+ end
736
+
622
737
  # Creates an endpoint using the provided settings.
623
738
  #
624
739
  # <note markdown="1"> For a MySQL source or target endpoint, don't explicitly specify the
@@ -1764,6 +1879,217 @@ module Aws::DatabaseMigrationService
1764
1879
  req.send_request(options)
1765
1880
  end
1766
1881
 
1882
+ # Creates the instance profile using the specified parameters.
1883
+ #
1884
+ # @option params [String] :availability_zone
1885
+ # The Availability Zone where the instance profile will be created. The
1886
+ # default value is a random, system-chosen Availability Zone in the
1887
+ # Amazon Web Services Region where your data provider is created, for
1888
+ # examplem `us-east-1d`.
1889
+ #
1890
+ # @option params [String] :kms_key_arn
1891
+ # The Amazon Resource Name (ARN) of the KMS key that is used to encrypt
1892
+ # the connection parameters for the instance profile.
1893
+ #
1894
+ # If you don't specify a value for the `KmsKeyArn` parameter, then DMS
1895
+ # uses your default encryption key.
1896
+ #
1897
+ # KMS creates the default encryption key for your Amazon Web Services
1898
+ # account. Your Amazon Web Services account has a different default
1899
+ # encryption key for each Amazon Web Services Region.
1900
+ #
1901
+ # @option params [Boolean] :publicly_accessible
1902
+ # Specifies the accessibility options for the instance profile. A value
1903
+ # of `true` represents an instance profile with a public IP address. A
1904
+ # value of `false` represents an instance profile with a private IP
1905
+ # address. The default value is `true`.
1906
+ #
1907
+ # @option params [Array<Types::Tag>] :tags
1908
+ # One or more tags to be assigned to the instance profile.
1909
+ #
1910
+ # @option params [String] :network_type
1911
+ # Specifies the network type for the instance profile. A value of `IPV4`
1912
+ # represents an instance profile with IPv4 network type and only
1913
+ # supports IPv4 addressing. A value of `IPV6` represents an instance
1914
+ # profile with IPv6 network type and only supports IPv6 addressing. A
1915
+ # value of `DUAL` represents an instance profile with dual network type
1916
+ # that supports IPv4 and IPv6 addressing.
1917
+ #
1918
+ # @option params [String] :instance_profile_name
1919
+ # A user-friendly name for the instance profile.
1920
+ #
1921
+ # @option params [String] :description
1922
+ # A user-friendly description of the instance profile.
1923
+ #
1924
+ # @option params [String] :subnet_group_identifier
1925
+ # A subnet group to associate with the instance profile.
1926
+ #
1927
+ # @option params [Array<String>] :vpc_security_groups
1928
+ # Specifies the VPC security group names to be used with the instance
1929
+ # profile. The VPC security group must work with the VPC containing the
1930
+ # instance profile.
1931
+ #
1932
+ # @return [Types::CreateInstanceProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1933
+ #
1934
+ # * {Types::CreateInstanceProfileResponse#instance_profile #instance_profile} => Types::InstanceProfile
1935
+ #
1936
+ # @example Request syntax with placeholder values
1937
+ #
1938
+ # resp = client.create_instance_profile({
1939
+ # availability_zone: "String",
1940
+ # kms_key_arn: "String",
1941
+ # publicly_accessible: false,
1942
+ # tags: [
1943
+ # {
1944
+ # key: "String",
1945
+ # value: "String",
1946
+ # resource_arn: "String",
1947
+ # },
1948
+ # ],
1949
+ # network_type: "String",
1950
+ # instance_profile_name: "String",
1951
+ # description: "String",
1952
+ # subnet_group_identifier: "String",
1953
+ # vpc_security_groups: ["String"],
1954
+ # })
1955
+ #
1956
+ # @example Response structure
1957
+ #
1958
+ # resp.instance_profile.instance_profile_arn #=> String
1959
+ # resp.instance_profile.availability_zone #=> String
1960
+ # resp.instance_profile.kms_key_arn #=> String
1961
+ # resp.instance_profile.publicly_accessible #=> Boolean
1962
+ # resp.instance_profile.network_type #=> String
1963
+ # resp.instance_profile.instance_profile_name #=> String
1964
+ # resp.instance_profile.description #=> String
1965
+ # resp.instance_profile.instance_profile_creation_time #=> Time
1966
+ # resp.instance_profile.subnet_group_identifier #=> String
1967
+ # resp.instance_profile.vpc_security_groups #=> Array
1968
+ # resp.instance_profile.vpc_security_groups[0] #=> String
1969
+ #
1970
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateInstanceProfile AWS API Documentation
1971
+ #
1972
+ # @overload create_instance_profile(params = {})
1973
+ # @param [Hash] params ({})
1974
+ def create_instance_profile(params = {}, options = {})
1975
+ req = build_request(:create_instance_profile, params)
1976
+ req.send_request(options)
1977
+ end
1978
+
1979
+ # Creates the migration project using the specified parameters.
1980
+ #
1981
+ # You can run this action only after you create an instance profile and
1982
+ # data providers using [CreateInstanceProfile][1] and
1983
+ # [CreateDataProvider][2].
1984
+ #
1985
+ #
1986
+ #
1987
+ # [1]: https://docs.aws.amazon.com/dms/latest/APIReference/API_CreateInstanceProfile.html
1988
+ # [2]: https://docs.aws.amazon.com/dms/latest/APIReference/API_CreateDataProvider.html
1989
+ #
1990
+ # @option params [String] :migration_project_name
1991
+ # A user-friendly name for the migration project.
1992
+ #
1993
+ # @option params [required, Array<Types::DataProviderDescriptorDefinition>] :source_data_provider_descriptors
1994
+ # Information about the source data provider, including the name, ARN,
1995
+ # and Secrets Manager parameters.
1996
+ #
1997
+ # @option params [required, Array<Types::DataProviderDescriptorDefinition>] :target_data_provider_descriptors
1998
+ # Information about the target data provider, including the name, ARN,
1999
+ # and Amazon Web Services Secrets Manager parameters.
2000
+ #
2001
+ # @option params [required, String] :instance_profile_identifier
2002
+ # The identifier of the associated instance profile. Identifiers must
2003
+ # begin with a letter and must contain only ASCII letters, digits, and
2004
+ # hyphens. They can't end with a hyphen, or contain two consecutive
2005
+ # hyphens.
2006
+ #
2007
+ # @option params [String] :transformation_rules
2008
+ # The settings in JSON format for migration rules. Migration rules make
2009
+ # it possible for you to change the object names according to the rules
2010
+ # that you specify. For example, you can change an object name to
2011
+ # lowercase or uppercase, add or remove a prefix or suffix, or rename
2012
+ # objects.
2013
+ #
2014
+ # @option params [String] :description
2015
+ # A user-friendly description of the migration project.
2016
+ #
2017
+ # @option params [Array<Types::Tag>] :tags
2018
+ # One or more tags to be assigned to the migration project.
2019
+ #
2020
+ # @option params [Types::SCApplicationAttributes] :schema_conversion_application_attributes
2021
+ # The schema conversion application attributes, including the Amazon S3
2022
+ # bucket name and Amazon S3 role ARN.
2023
+ #
2024
+ # @return [Types::CreateMigrationProjectResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2025
+ #
2026
+ # * {Types::CreateMigrationProjectResponse#migration_project #migration_project} => Types::MigrationProject
2027
+ #
2028
+ # @example Request syntax with placeholder values
2029
+ #
2030
+ # resp = client.create_migration_project({
2031
+ # migration_project_name: "String",
2032
+ # source_data_provider_descriptors: [ # required
2033
+ # {
2034
+ # data_provider_identifier: "String", # required
2035
+ # secrets_manager_secret_id: "String",
2036
+ # secrets_manager_access_role_arn: "String",
2037
+ # },
2038
+ # ],
2039
+ # target_data_provider_descriptors: [ # required
2040
+ # {
2041
+ # data_provider_identifier: "String", # required
2042
+ # secrets_manager_secret_id: "String",
2043
+ # secrets_manager_access_role_arn: "String",
2044
+ # },
2045
+ # ],
2046
+ # instance_profile_identifier: "String", # required
2047
+ # transformation_rules: "String",
2048
+ # description: "String",
2049
+ # tags: [
2050
+ # {
2051
+ # key: "String",
2052
+ # value: "String",
2053
+ # resource_arn: "String",
2054
+ # },
2055
+ # ],
2056
+ # schema_conversion_application_attributes: {
2057
+ # s3_bucket_path: "String",
2058
+ # s3_bucket_role_arn: "String",
2059
+ # },
2060
+ # })
2061
+ #
2062
+ # @example Response structure
2063
+ #
2064
+ # resp.migration_project.migration_project_name #=> String
2065
+ # resp.migration_project.migration_project_arn #=> String
2066
+ # resp.migration_project.migration_project_creation_time #=> Time
2067
+ # resp.migration_project.source_data_provider_descriptors #=> Array
2068
+ # resp.migration_project.source_data_provider_descriptors[0].secrets_manager_secret_id #=> String
2069
+ # resp.migration_project.source_data_provider_descriptors[0].secrets_manager_access_role_arn #=> String
2070
+ # resp.migration_project.source_data_provider_descriptors[0].data_provider_name #=> String
2071
+ # resp.migration_project.source_data_provider_descriptors[0].data_provider_arn #=> String
2072
+ # resp.migration_project.target_data_provider_descriptors #=> Array
2073
+ # resp.migration_project.target_data_provider_descriptors[0].secrets_manager_secret_id #=> String
2074
+ # resp.migration_project.target_data_provider_descriptors[0].secrets_manager_access_role_arn #=> String
2075
+ # resp.migration_project.target_data_provider_descriptors[0].data_provider_name #=> String
2076
+ # resp.migration_project.target_data_provider_descriptors[0].data_provider_arn #=> String
2077
+ # resp.migration_project.instance_profile_arn #=> String
2078
+ # resp.migration_project.instance_profile_name #=> String
2079
+ # resp.migration_project.transformation_rules #=> String
2080
+ # resp.migration_project.description #=> String
2081
+ # resp.migration_project.schema_conversion_application_attributes.s3_bucket_path #=> String
2082
+ # resp.migration_project.schema_conversion_application_attributes.s3_bucket_role_arn #=> String
2083
+ #
2084
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateMigrationProject AWS API Documentation
2085
+ #
2086
+ # @overload create_migration_project(params = {})
2087
+ # @param [Hash] params ({})
2088
+ def create_migration_project(params = {}, options = {})
2089
+ req = build_request(:create_migration_project, params)
2090
+ req.send_request(options)
2091
+ end
2092
+
1767
2093
  # Creates a configuration that you can later provide to configure and
1768
2094
  # start an DMS Serverless replication. You can also provide options to
1769
2095
  # validate the configuration inputs before you start the replication.
@@ -2663,6 +2989,67 @@ module Aws::DatabaseMigrationService
2663
2989
  req.send_request(options)
2664
2990
  end
2665
2991
 
2992
+ # Deletes the specified data provider.
2993
+ #
2994
+ # <note markdown="1"> All migration projects associated with the data provider must be
2995
+ # deleted or modified before you can delete the data provider.
2996
+ #
2997
+ # </note>
2998
+ #
2999
+ # @option params [required, String] :data_provider_identifier
3000
+ # The identifier of the data provider to delete.
3001
+ #
3002
+ # @return [Types::DeleteDataProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3003
+ #
3004
+ # * {Types::DeleteDataProviderResponse#data_provider #data_provider} => Types::DataProvider
3005
+ #
3006
+ # @example Request syntax with placeholder values
3007
+ #
3008
+ # resp = client.delete_data_provider({
3009
+ # data_provider_identifier: "String", # required
3010
+ # })
3011
+ #
3012
+ # @example Response structure
3013
+ #
3014
+ # resp.data_provider.data_provider_name #=> String
3015
+ # resp.data_provider.data_provider_arn #=> String
3016
+ # resp.data_provider.data_provider_creation_time #=> Time
3017
+ # resp.data_provider.description #=> String
3018
+ # resp.data_provider.engine #=> String
3019
+ # resp.data_provider.settings.postgre_sql_settings.server_name #=> String
3020
+ # resp.data_provider.settings.postgre_sql_settings.port #=> Integer
3021
+ # resp.data_provider.settings.postgre_sql_settings.database_name #=> String
3022
+ # resp.data_provider.settings.postgre_sql_settings.ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
3023
+ # resp.data_provider.settings.postgre_sql_settings.certificate_arn #=> String
3024
+ # resp.data_provider.settings.my_sql_settings.server_name #=> String
3025
+ # resp.data_provider.settings.my_sql_settings.port #=> Integer
3026
+ # resp.data_provider.settings.my_sql_settings.ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
3027
+ # resp.data_provider.settings.my_sql_settings.certificate_arn #=> String
3028
+ # resp.data_provider.settings.oracle_settings.server_name #=> String
3029
+ # resp.data_provider.settings.oracle_settings.port #=> Integer
3030
+ # resp.data_provider.settings.oracle_settings.database_name #=> String
3031
+ # resp.data_provider.settings.oracle_settings.ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
3032
+ # resp.data_provider.settings.oracle_settings.certificate_arn #=> String
3033
+ # resp.data_provider.settings.oracle_settings.asm_server #=> String
3034
+ # resp.data_provider.settings.oracle_settings.secrets_manager_oracle_asm_secret_id #=> String
3035
+ # resp.data_provider.settings.oracle_settings.secrets_manager_oracle_asm_access_role_arn #=> String
3036
+ # resp.data_provider.settings.oracle_settings.secrets_manager_security_db_encryption_secret_id #=> String
3037
+ # resp.data_provider.settings.oracle_settings.secrets_manager_security_db_encryption_access_role_arn #=> String
3038
+ # resp.data_provider.settings.microsoft_sql_server_settings.server_name #=> String
3039
+ # resp.data_provider.settings.microsoft_sql_server_settings.port #=> Integer
3040
+ # resp.data_provider.settings.microsoft_sql_server_settings.database_name #=> String
3041
+ # resp.data_provider.settings.microsoft_sql_server_settings.ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
3042
+ # resp.data_provider.settings.microsoft_sql_server_settings.certificate_arn #=> String
3043
+ #
3044
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteDataProvider AWS API Documentation
3045
+ #
3046
+ # @overload delete_data_provider(params = {})
3047
+ # @param [Hash] params ({})
3048
+ def delete_data_provider(params = {}, options = {})
3049
+ req = build_request(:delete_data_provider, params)
3050
+ req.send_request(options)
3051
+ end
3052
+
2666
3053
  # Deletes the specified endpoint.
2667
3054
  #
2668
3055
  # <note markdown="1"> All tasks associated with the endpoint must be deleted before you can
@@ -3115,6 +3502,100 @@ module Aws::DatabaseMigrationService
3115
3502
  req.send_request(options)
3116
3503
  end
3117
3504
 
3505
+ # Deletes the specified instance profile.
3506
+ #
3507
+ # <note markdown="1"> All migration projects associated with the instance profile must be
3508
+ # deleted or modified before you can delete the instance profile.
3509
+ #
3510
+ # </note>
3511
+ #
3512
+ # @option params [required, String] :instance_profile_identifier
3513
+ # The identifier of the instance profile to delete.
3514
+ #
3515
+ # @return [Types::DeleteInstanceProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3516
+ #
3517
+ # * {Types::DeleteInstanceProfileResponse#instance_profile #instance_profile} => Types::InstanceProfile
3518
+ #
3519
+ # @example Request syntax with placeholder values
3520
+ #
3521
+ # resp = client.delete_instance_profile({
3522
+ # instance_profile_identifier: "String", # required
3523
+ # })
3524
+ #
3525
+ # @example Response structure
3526
+ #
3527
+ # resp.instance_profile.instance_profile_arn #=> String
3528
+ # resp.instance_profile.availability_zone #=> String
3529
+ # resp.instance_profile.kms_key_arn #=> String
3530
+ # resp.instance_profile.publicly_accessible #=> Boolean
3531
+ # resp.instance_profile.network_type #=> String
3532
+ # resp.instance_profile.instance_profile_name #=> String
3533
+ # resp.instance_profile.description #=> String
3534
+ # resp.instance_profile.instance_profile_creation_time #=> Time
3535
+ # resp.instance_profile.subnet_group_identifier #=> String
3536
+ # resp.instance_profile.vpc_security_groups #=> Array
3537
+ # resp.instance_profile.vpc_security_groups[0] #=> String
3538
+ #
3539
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteInstanceProfile AWS API Documentation
3540
+ #
3541
+ # @overload delete_instance_profile(params = {})
3542
+ # @param [Hash] params ({})
3543
+ def delete_instance_profile(params = {}, options = {})
3544
+ req = build_request(:delete_instance_profile, params)
3545
+ req.send_request(options)
3546
+ end
3547
+
3548
+ # Deletes the specified migration project.
3549
+ #
3550
+ # <note markdown="1"> The migration project must be closed before you can delete it.
3551
+ #
3552
+ # </note>
3553
+ #
3554
+ # @option params [required, String] :migration_project_identifier
3555
+ # The name or Amazon Resource Name (ARN) of the migration project to
3556
+ # delete.
3557
+ #
3558
+ # @return [Types::DeleteMigrationProjectResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3559
+ #
3560
+ # * {Types::DeleteMigrationProjectResponse#migration_project #migration_project} => Types::MigrationProject
3561
+ #
3562
+ # @example Request syntax with placeholder values
3563
+ #
3564
+ # resp = client.delete_migration_project({
3565
+ # migration_project_identifier: "String", # required
3566
+ # })
3567
+ #
3568
+ # @example Response structure
3569
+ #
3570
+ # resp.migration_project.migration_project_name #=> String
3571
+ # resp.migration_project.migration_project_arn #=> String
3572
+ # resp.migration_project.migration_project_creation_time #=> Time
3573
+ # resp.migration_project.source_data_provider_descriptors #=> Array
3574
+ # resp.migration_project.source_data_provider_descriptors[0].secrets_manager_secret_id #=> String
3575
+ # resp.migration_project.source_data_provider_descriptors[0].secrets_manager_access_role_arn #=> String
3576
+ # resp.migration_project.source_data_provider_descriptors[0].data_provider_name #=> String
3577
+ # resp.migration_project.source_data_provider_descriptors[0].data_provider_arn #=> String
3578
+ # resp.migration_project.target_data_provider_descriptors #=> Array
3579
+ # resp.migration_project.target_data_provider_descriptors[0].secrets_manager_secret_id #=> String
3580
+ # resp.migration_project.target_data_provider_descriptors[0].secrets_manager_access_role_arn #=> String
3581
+ # resp.migration_project.target_data_provider_descriptors[0].data_provider_name #=> String
3582
+ # resp.migration_project.target_data_provider_descriptors[0].data_provider_arn #=> String
3583
+ # resp.migration_project.instance_profile_arn #=> String
3584
+ # resp.migration_project.instance_profile_name #=> String
3585
+ # resp.migration_project.transformation_rules #=> String
3586
+ # resp.migration_project.description #=> String
3587
+ # resp.migration_project.schema_conversion_application_attributes.s3_bucket_path #=> String
3588
+ # resp.migration_project.schema_conversion_application_attributes.s3_bucket_role_arn #=> String
3589
+ #
3590
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteMigrationProject AWS API Documentation
3591
+ #
3592
+ # @overload delete_migration_project(params = {})
3593
+ # @param [Hash] params ({})
3594
+ def delete_migration_project(params = {}, options = {})
3595
+ req = build_request(:delete_migration_project, params)
3596
+ req.send_request(options)
3597
+ end
3598
+
3118
3599
  # Deletes an DMS Serverless replication configuration. This effectively
3119
3600
  # deprovisions any and all replications that use this configuration. You
3120
3601
  # can't delete the configuration for an DMS Serverless replication that
@@ -3812,6 +4293,124 @@ module Aws::DatabaseMigrationService
3812
4293
  req.send_request(options)
3813
4294
  end
3814
4295
 
4296
+ # Returns configuration parameters for a schema conversion project.
4297
+ #
4298
+ # @option params [required, String] :migration_project_identifier
4299
+ # The name or Amazon Resource Name (ARN) for the schema conversion
4300
+ # project to describe.
4301
+ #
4302
+ # @return [Types::DescribeConversionConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4303
+ #
4304
+ # * {Types::DescribeConversionConfigurationResponse#migration_project_identifier #migration_project_identifier} => String
4305
+ # * {Types::DescribeConversionConfigurationResponse#conversion_configuration #conversion_configuration} => String
4306
+ #
4307
+ # @example Request syntax with placeholder values
4308
+ #
4309
+ # resp = client.describe_conversion_configuration({
4310
+ # migration_project_identifier: "String", # required
4311
+ # })
4312
+ #
4313
+ # @example Response structure
4314
+ #
4315
+ # resp.migration_project_identifier #=> String
4316
+ # resp.conversion_configuration #=> String
4317
+ #
4318
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeConversionConfiguration AWS API Documentation
4319
+ #
4320
+ # @overload describe_conversion_configuration(params = {})
4321
+ # @param [Hash] params ({})
4322
+ def describe_conversion_configuration(params = {}, options = {})
4323
+ req = build_request(:describe_conversion_configuration, params)
4324
+ req.send_request(options)
4325
+ end
4326
+
4327
+ # Returns a paginated list of data providers for your account in the
4328
+ # current region.
4329
+ #
4330
+ # @option params [Array<Types::Filter>] :filters
4331
+ # Filters applied to the data providers described in the form of
4332
+ # key-value pairs.
4333
+ #
4334
+ # @option params [Integer] :max_records
4335
+ # The maximum number of records to include in the response. If more
4336
+ # records exist than the specified `MaxRecords` value, DMS includes a
4337
+ # pagination token in the response so that you can retrieve the
4338
+ # remaining results.
4339
+ #
4340
+ # @option params [String] :marker
4341
+ # Specifies the unique pagination token that makes it possible to
4342
+ # display the next page of results. If this parameter is specified, the
4343
+ # response includes only records beyond the marker, up to the value
4344
+ # specified by `MaxRecords`.
4345
+ #
4346
+ # If `Marker` is returned by a previous response, there are more results
4347
+ # available. The value of `Marker` is a unique pagination token for each
4348
+ # page. To retrieve the next page, make the call again using the
4349
+ # returned token and keeping all other arguments unchanged.
4350
+ #
4351
+ # @return [Types::DescribeDataProvidersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4352
+ #
4353
+ # * {Types::DescribeDataProvidersResponse#marker #marker} => String
4354
+ # * {Types::DescribeDataProvidersResponse#data_providers #data_providers} => Array&lt;Types::DataProvider&gt;
4355
+ #
4356
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
4357
+ #
4358
+ # @example Request syntax with placeholder values
4359
+ #
4360
+ # resp = client.describe_data_providers({
4361
+ # filters: [
4362
+ # {
4363
+ # name: "String", # required
4364
+ # values: ["String"], # required
4365
+ # },
4366
+ # ],
4367
+ # max_records: 1,
4368
+ # marker: "String",
4369
+ # })
4370
+ #
4371
+ # @example Response structure
4372
+ #
4373
+ # resp.marker #=> String
4374
+ # resp.data_providers #=> Array
4375
+ # resp.data_providers[0].data_provider_name #=> String
4376
+ # resp.data_providers[0].data_provider_arn #=> String
4377
+ # resp.data_providers[0].data_provider_creation_time #=> Time
4378
+ # resp.data_providers[0].description #=> String
4379
+ # resp.data_providers[0].engine #=> String
4380
+ # resp.data_providers[0].settings.postgre_sql_settings.server_name #=> String
4381
+ # resp.data_providers[0].settings.postgre_sql_settings.port #=> Integer
4382
+ # resp.data_providers[0].settings.postgre_sql_settings.database_name #=> String
4383
+ # resp.data_providers[0].settings.postgre_sql_settings.ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
4384
+ # resp.data_providers[0].settings.postgre_sql_settings.certificate_arn #=> String
4385
+ # resp.data_providers[0].settings.my_sql_settings.server_name #=> String
4386
+ # resp.data_providers[0].settings.my_sql_settings.port #=> Integer
4387
+ # resp.data_providers[0].settings.my_sql_settings.ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
4388
+ # resp.data_providers[0].settings.my_sql_settings.certificate_arn #=> String
4389
+ # resp.data_providers[0].settings.oracle_settings.server_name #=> String
4390
+ # resp.data_providers[0].settings.oracle_settings.port #=> Integer
4391
+ # resp.data_providers[0].settings.oracle_settings.database_name #=> String
4392
+ # resp.data_providers[0].settings.oracle_settings.ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
4393
+ # resp.data_providers[0].settings.oracle_settings.certificate_arn #=> String
4394
+ # resp.data_providers[0].settings.oracle_settings.asm_server #=> String
4395
+ # resp.data_providers[0].settings.oracle_settings.secrets_manager_oracle_asm_secret_id #=> String
4396
+ # resp.data_providers[0].settings.oracle_settings.secrets_manager_oracle_asm_access_role_arn #=> String
4397
+ # resp.data_providers[0].settings.oracle_settings.secrets_manager_security_db_encryption_secret_id #=> String
4398
+ # resp.data_providers[0].settings.oracle_settings.secrets_manager_security_db_encryption_access_role_arn #=> String
4399
+ # resp.data_providers[0].settings.microsoft_sql_server_settings.server_name #=> String
4400
+ # resp.data_providers[0].settings.microsoft_sql_server_settings.port #=> Integer
4401
+ # resp.data_providers[0].settings.microsoft_sql_server_settings.database_name #=> String
4402
+ # resp.data_providers[0].settings.microsoft_sql_server_settings.ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
4403
+ # resp.data_providers[0].settings.microsoft_sql_server_settings.certificate_arn #=> String
4404
+ #
4405
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeDataProviders AWS API Documentation
4406
+ #
4407
+ # @overload describe_data_providers(params = {})
4408
+ # @param [Hash] params ({})
4409
+ def describe_data_providers(params = {}, options = {})
4410
+ req = build_request(:describe_data_providers, params)
4411
+ req.send_request(options)
4412
+ end
4413
+
3815
4414
  # Returns information about the possible endpoint settings available
3816
4415
  # when you create an endpoint for a specific database engine.
3817
4416
  #
@@ -4620,47 +5219,117 @@ module Aws::DatabaseMigrationService
4620
5219
  req.send_request(options)
4621
5220
  end
4622
5221
 
4623
- # Returns a list of the Fleet Advisor collectors in your account.
5222
+ # Returns a paginated list of extension pack associations for the
5223
+ # specified migration project. An extension pack is an add-on module
5224
+ # that emulates functions present in a source database that are required
5225
+ # when converting objects to the target database.
4624
5226
  #
4625
- # @option params [Array<Types::Filter>] :filters
4626
- # If you specify any of the following filters, the output includes
4627
- # information for only those collectors that meet the filter criteria:
5227
+ # @option params [required, String] :migration_project_identifier
5228
+ # The name or Amazon Resource Name (ARN) for the migration project.
4628
5229
  #
4629
- # * `collector-referenced-id` The ID of the collector agent, for
4630
- # example `d4610ac5-e323-4ad9-bc50-eaf7249dfe9d`.
5230
+ # @option params [Array<Types::Filter>] :filters
5231
+ # Filters applied to the extension pack associations described in the
5232
+ # form of key-value pairs.
4631
5233
  #
4632
- # * `collector-name` The name of the collector agent.
5234
+ # @option params [String] :marker
5235
+ # Specifies the unique pagination token that makes it possible to
5236
+ # display the next page of results. If this parameter is specified, the
5237
+ # response includes only records beyond the marker, up to the value
5238
+ # specified by `MaxRecords`.
4633
5239
  #
4634
- # An example is: `describe-fleet-advisor-collectors --filter
4635
- # Name="collector-referenced-id",Values="d4610ac5-e323-4ad9-bc50-eaf7249dfe9d"`
5240
+ # If `Marker` is returned by a previous response, there are more results
5241
+ # available. The value of `Marker` is a unique pagination token for each
5242
+ # page. To retrieve the next page, make the call again using the
5243
+ # returned token and keeping all other arguments unchanged.
4636
5244
  #
4637
5245
  # @option params [Integer] :max_records
4638
- # Sets the maximum number of records returned in the response.
4639
- #
4640
- # @option params [String] :next_token
4641
- # If `NextToken` is returned by a previous response, there are more
4642
- # results available. The value of `NextToken` is a unique pagination
4643
- # token for each page. Make the call again using the returned token to
4644
- # retrieve the next page. Keep all other arguments unchanged.
5246
+ # The maximum number of records to include in the response. If more
5247
+ # records exist than the specified `MaxRecords` value, DMS includes a
5248
+ # pagination token in the response so that you can retrieve the
5249
+ # remaining results.
4645
5250
  #
4646
- # @return [Types::DescribeFleetAdvisorCollectorsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5251
+ # @return [Types::DescribeExtensionPackAssociationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4647
5252
  #
4648
- # * {Types::DescribeFleetAdvisorCollectorsResponse#collectors #collectors} => Array&lt;Types::CollectorResponse&gt;
4649
- # * {Types::DescribeFleetAdvisorCollectorsResponse#next_token #next_token} => String
5253
+ # * {Types::DescribeExtensionPackAssociationsResponse#marker #marker} => String
5254
+ # * {Types::DescribeExtensionPackAssociationsResponse#requests #requests} => Array&lt;Types::SchemaConversionRequest&gt;
4650
5255
  #
4651
5256
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
4652
5257
  #
4653
5258
  # @example Request syntax with placeholder values
4654
5259
  #
4655
- # resp = client.describe_fleet_advisor_collectors({
5260
+ # resp = client.describe_extension_pack_associations({
5261
+ # migration_project_identifier: "String", # required
4656
5262
  # filters: [
4657
5263
  # {
4658
5264
  # name: "String", # required
4659
5265
  # values: ["String"], # required
4660
5266
  # },
4661
5267
  # ],
5268
+ # marker: "String",
4662
5269
  # max_records: 1,
4663
- # next_token: "String",
5270
+ # })
5271
+ #
5272
+ # @example Response structure
5273
+ #
5274
+ # resp.marker #=> String
5275
+ # resp.requests #=> Array
5276
+ # resp.requests[0].status #=> String
5277
+ # resp.requests[0].request_identifier #=> String
5278
+ # resp.requests[0].migration_project_arn #=> String
5279
+ # resp.requests[0].error.default_error_details.message #=> String
5280
+ # resp.requests[0].export_sql_details.s3_object_key #=> String
5281
+ # resp.requests[0].export_sql_details.object_url #=> String
5282
+ #
5283
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeExtensionPackAssociations AWS API Documentation
5284
+ #
5285
+ # @overload describe_extension_pack_associations(params = {})
5286
+ # @param [Hash] params ({})
5287
+ def describe_extension_pack_associations(params = {}, options = {})
5288
+ req = build_request(:describe_extension_pack_associations, params)
5289
+ req.send_request(options)
5290
+ end
5291
+
5292
+ # Returns a list of the Fleet Advisor collectors in your account.
5293
+ #
5294
+ # @option params [Array<Types::Filter>] :filters
5295
+ # If you specify any of the following filters, the output includes
5296
+ # information for only those collectors that meet the filter criteria:
5297
+ #
5298
+ # * `collector-referenced-id` – The ID of the collector agent, for
5299
+ # example `d4610ac5-e323-4ad9-bc50-eaf7249dfe9d`.
5300
+ #
5301
+ # * `collector-name` – The name of the collector agent.
5302
+ #
5303
+ # An example is: `describe-fleet-advisor-collectors --filter
5304
+ # Name="collector-referenced-id",Values="d4610ac5-e323-4ad9-bc50-eaf7249dfe9d"`
5305
+ #
5306
+ # @option params [Integer] :max_records
5307
+ # Sets the maximum number of records returned in the response.
5308
+ #
5309
+ # @option params [String] :next_token
5310
+ # If `NextToken` is returned by a previous response, there are more
5311
+ # results available. The value of `NextToken` is a unique pagination
5312
+ # token for each page. Make the call again using the returned token to
5313
+ # retrieve the next page. Keep all other arguments unchanged.
5314
+ #
5315
+ # @return [Types::DescribeFleetAdvisorCollectorsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5316
+ #
5317
+ # * {Types::DescribeFleetAdvisorCollectorsResponse#collectors #collectors} => Array&lt;Types::CollectorResponse&gt;
5318
+ # * {Types::DescribeFleetAdvisorCollectorsResponse#next_token #next_token} => String
5319
+ #
5320
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
5321
+ #
5322
+ # @example Request syntax with placeholder values
5323
+ #
5324
+ # resp = client.describe_fleet_advisor_collectors({
5325
+ # filters: [
5326
+ # {
5327
+ # name: "String", # required
5328
+ # values: ["String"], # required
5329
+ # },
5330
+ # ],
5331
+ # max_records: 1,
5332
+ # next_token: "String",
4664
5333
  # })
4665
5334
  #
4666
5335
  # @example Response structure
@@ -4964,12 +5633,492 @@ module Aws::DatabaseMigrationService
4964
5633
  # resp.fleet_advisor_schemas[0].similarity #=> Float
4965
5634
  # resp.next_token #=> String
4966
5635
  #
4967
- # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorSchemas AWS API Documentation
5636
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeFleetAdvisorSchemas AWS API Documentation
5637
+ #
5638
+ # @overload describe_fleet_advisor_schemas(params = {})
5639
+ # @param [Hash] params ({})
5640
+ def describe_fleet_advisor_schemas(params = {}, options = {})
5641
+ req = build_request(:describe_fleet_advisor_schemas, params)
5642
+ req.send_request(options)
5643
+ end
5644
+
5645
+ # Returns a paginated list of instance profiles for your account in the
5646
+ # current region.
5647
+ #
5648
+ # @option params [Array<Types::Filter>] :filters
5649
+ # Filters applied to the instance profiles described in the form of
5650
+ # key-value pairs.
5651
+ #
5652
+ # @option params [Integer] :max_records
5653
+ # The maximum number of records to include in the response. If more
5654
+ # records exist than the specified `MaxRecords` value, DMS includes a
5655
+ # pagination token in the response so that you can retrieve the
5656
+ # remaining results.
5657
+ #
5658
+ # @option params [String] :marker
5659
+ # Specifies the unique pagination token that makes it possible to
5660
+ # display the next page of results. If this parameter is specified, the
5661
+ # response includes only records beyond the marker, up to the value
5662
+ # specified by `MaxRecords`.
5663
+ #
5664
+ # If `Marker` is returned by a previous response, there are more results
5665
+ # available. The value of `Marker` is a unique pagination token for each
5666
+ # page. To retrieve the next page, make the call again using the
5667
+ # returned token and keeping all other arguments unchanged.
5668
+ #
5669
+ # @return [Types::DescribeInstanceProfilesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5670
+ #
5671
+ # * {Types::DescribeInstanceProfilesResponse#marker #marker} => String
5672
+ # * {Types::DescribeInstanceProfilesResponse#instance_profiles #instance_profiles} => Array&lt;Types::InstanceProfile&gt;
5673
+ #
5674
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
5675
+ #
5676
+ # @example Request syntax with placeholder values
5677
+ #
5678
+ # resp = client.describe_instance_profiles({
5679
+ # filters: [
5680
+ # {
5681
+ # name: "String", # required
5682
+ # values: ["String"], # required
5683
+ # },
5684
+ # ],
5685
+ # max_records: 1,
5686
+ # marker: "String",
5687
+ # })
5688
+ #
5689
+ # @example Response structure
5690
+ #
5691
+ # resp.marker #=> String
5692
+ # resp.instance_profiles #=> Array
5693
+ # resp.instance_profiles[0].instance_profile_arn #=> String
5694
+ # resp.instance_profiles[0].availability_zone #=> String
5695
+ # resp.instance_profiles[0].kms_key_arn #=> String
5696
+ # resp.instance_profiles[0].publicly_accessible #=> Boolean
5697
+ # resp.instance_profiles[0].network_type #=> String
5698
+ # resp.instance_profiles[0].instance_profile_name #=> String
5699
+ # resp.instance_profiles[0].description #=> String
5700
+ # resp.instance_profiles[0].instance_profile_creation_time #=> Time
5701
+ # resp.instance_profiles[0].subnet_group_identifier #=> String
5702
+ # resp.instance_profiles[0].vpc_security_groups #=> Array
5703
+ # resp.instance_profiles[0].vpc_security_groups[0] #=> String
5704
+ #
5705
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeInstanceProfiles AWS API Documentation
5706
+ #
5707
+ # @overload describe_instance_profiles(params = {})
5708
+ # @param [Hash] params ({})
5709
+ def describe_instance_profiles(params = {}, options = {})
5710
+ req = build_request(:describe_instance_profiles, params)
5711
+ req.send_request(options)
5712
+ end
5713
+
5714
+ # Returns a paginated list of metadata model assessments for your
5715
+ # account in the current region.
5716
+ #
5717
+ # @option params [required, String] :migration_project_identifier
5718
+ # The name or Amazon Resource Name (ARN) of the migration project.
5719
+ #
5720
+ # @option params [Array<Types::Filter>] :filters
5721
+ # Filters applied to the metadata model assessments described in the
5722
+ # form of key-value pairs.
5723
+ #
5724
+ # @option params [String] :marker
5725
+ # Specifies the unique pagination token that makes it possible to
5726
+ # display the next page of results. If this parameter is specified, the
5727
+ # response includes only records beyond the marker, up to the value
5728
+ # specified by `MaxRecords`.
5729
+ #
5730
+ # If `Marker` is returned by a previous response, there are more results
5731
+ # available. The value of `Marker` is a unique pagination token for each
5732
+ # page. To retrieve the next page, make the call again using the
5733
+ # returned token and keeping all other arguments unchanged.
5734
+ #
5735
+ # @option params [Integer] :max_records
5736
+ # The maximum number of records to include in the response. If more
5737
+ # records exist than the specified `MaxRecords` value, DMS includes a
5738
+ # pagination token in the response so that you can retrieve the
5739
+ # remaining results.
5740
+ #
5741
+ # @return [Types::DescribeMetadataModelAssessmentsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5742
+ #
5743
+ # * {Types::DescribeMetadataModelAssessmentsResponse#marker #marker} => String
5744
+ # * {Types::DescribeMetadataModelAssessmentsResponse#requests #requests} => Array&lt;Types::SchemaConversionRequest&gt;
5745
+ #
5746
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
5747
+ #
5748
+ # @example Request syntax with placeholder values
5749
+ #
5750
+ # resp = client.describe_metadata_model_assessments({
5751
+ # migration_project_identifier: "String", # required
5752
+ # filters: [
5753
+ # {
5754
+ # name: "String", # required
5755
+ # values: ["String"], # required
5756
+ # },
5757
+ # ],
5758
+ # marker: "String",
5759
+ # max_records: 1,
5760
+ # })
5761
+ #
5762
+ # @example Response structure
5763
+ #
5764
+ # resp.marker #=> String
5765
+ # resp.requests #=> Array
5766
+ # resp.requests[0].status #=> String
5767
+ # resp.requests[0].request_identifier #=> String
5768
+ # resp.requests[0].migration_project_arn #=> String
5769
+ # resp.requests[0].error.default_error_details.message #=> String
5770
+ # resp.requests[0].export_sql_details.s3_object_key #=> String
5771
+ # resp.requests[0].export_sql_details.object_url #=> String
5772
+ #
5773
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelAssessments AWS API Documentation
5774
+ #
5775
+ # @overload describe_metadata_model_assessments(params = {})
5776
+ # @param [Hash] params ({})
5777
+ def describe_metadata_model_assessments(params = {}, options = {})
5778
+ req = build_request(:describe_metadata_model_assessments, params)
5779
+ req.send_request(options)
5780
+ end
5781
+
5782
+ # Returns a paginated list of metadata model conversions for a migration
5783
+ # project.
5784
+ #
5785
+ # @option params [required, String] :migration_project_identifier
5786
+ # The migration project name or Amazon Resource Name (ARN).
5787
+ #
5788
+ # @option params [Array<Types::Filter>] :filters
5789
+ # Filters applied to the metadata model conversions described in the
5790
+ # form of key-value pairs.
5791
+ #
5792
+ # @option params [String] :marker
5793
+ # Specifies the unique pagination token that makes it possible to
5794
+ # display the next page of results. If this parameter is specified, the
5795
+ # response includes only records beyond the marker, up to the value
5796
+ # specified by `MaxRecords`.
5797
+ #
5798
+ # If `Marker` is returned by a previous response, there are more results
5799
+ # available. The value of `Marker` is a unique pagination token for each
5800
+ # page. To retrieve the next page, make the call again using the
5801
+ # returned token and keeping all other arguments unchanged.
5802
+ #
5803
+ # @option params [Integer] :max_records
5804
+ # The maximum number of records to include in the response. If more
5805
+ # records exist than the specified `MaxRecords` value, DMS includes a
5806
+ # pagination token in the response so that you can retrieve the
5807
+ # remaining results.
5808
+ #
5809
+ # @return [Types::DescribeMetadataModelConversionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5810
+ #
5811
+ # * {Types::DescribeMetadataModelConversionsResponse#marker #marker} => String
5812
+ # * {Types::DescribeMetadataModelConversionsResponse#requests #requests} => Array&lt;Types::SchemaConversionRequest&gt;
5813
+ #
5814
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
5815
+ #
5816
+ # @example Request syntax with placeholder values
5817
+ #
5818
+ # resp = client.describe_metadata_model_conversions({
5819
+ # migration_project_identifier: "String", # required
5820
+ # filters: [
5821
+ # {
5822
+ # name: "String", # required
5823
+ # values: ["String"], # required
5824
+ # },
5825
+ # ],
5826
+ # marker: "String",
5827
+ # max_records: 1,
5828
+ # })
5829
+ #
5830
+ # @example Response structure
5831
+ #
5832
+ # resp.marker #=> String
5833
+ # resp.requests #=> Array
5834
+ # resp.requests[0].status #=> String
5835
+ # resp.requests[0].request_identifier #=> String
5836
+ # resp.requests[0].migration_project_arn #=> String
5837
+ # resp.requests[0].error.default_error_details.message #=> String
5838
+ # resp.requests[0].export_sql_details.s3_object_key #=> String
5839
+ # resp.requests[0].export_sql_details.object_url #=> String
5840
+ #
5841
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelConversions AWS API Documentation
5842
+ #
5843
+ # @overload describe_metadata_model_conversions(params = {})
5844
+ # @param [Hash] params ({})
5845
+ def describe_metadata_model_conversions(params = {}, options = {})
5846
+ req = build_request(:describe_metadata_model_conversions, params)
5847
+ req.send_request(options)
5848
+ end
5849
+
5850
+ # Returns a paginated list of metadata model exports.
5851
+ #
5852
+ # @option params [required, String] :migration_project_identifier
5853
+ # The migration project name or Amazon Resource Name (ARN).
5854
+ #
5855
+ # @option params [Array<Types::Filter>] :filters
5856
+ # Filters applied to the metadata model exports described in the form of
5857
+ # key-value pairs.
5858
+ #
5859
+ # @option params [String] :marker
5860
+ # Specifies the unique pagination token that makes it possible to
5861
+ # display the next page of results. If this parameter is specified, the
5862
+ # response includes only records beyond the marker, up to the value
5863
+ # specified by `MaxRecords`.
5864
+ #
5865
+ # If `Marker` is returned by a previous response, there are more results
5866
+ # available. The value of `Marker` is a unique pagination token for each
5867
+ # page. To retrieve the next page, make the call again using the
5868
+ # returned token and keeping all other arguments unchanged.
5869
+ #
5870
+ # @option params [Integer] :max_records
5871
+ # The maximum number of records to include in the response. If more
5872
+ # records exist than the specified `MaxRecords` value, DMS includes a
5873
+ # pagination token in the response so that you can retrieve the
5874
+ # remaining results.
5875
+ #
5876
+ # @return [Types::DescribeMetadataModelExportsAsScriptResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5877
+ #
5878
+ # * {Types::DescribeMetadataModelExportsAsScriptResponse#marker #marker} => String
5879
+ # * {Types::DescribeMetadataModelExportsAsScriptResponse#requests #requests} => Array&lt;Types::SchemaConversionRequest&gt;
5880
+ #
5881
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
5882
+ #
5883
+ # @example Request syntax with placeholder values
5884
+ #
5885
+ # resp = client.describe_metadata_model_exports_as_script({
5886
+ # migration_project_identifier: "String", # required
5887
+ # filters: [
5888
+ # {
5889
+ # name: "String", # required
5890
+ # values: ["String"], # required
5891
+ # },
5892
+ # ],
5893
+ # marker: "String",
5894
+ # max_records: 1,
5895
+ # })
5896
+ #
5897
+ # @example Response structure
5898
+ #
5899
+ # resp.marker #=> String
5900
+ # resp.requests #=> Array
5901
+ # resp.requests[0].status #=> String
5902
+ # resp.requests[0].request_identifier #=> String
5903
+ # resp.requests[0].migration_project_arn #=> String
5904
+ # resp.requests[0].error.default_error_details.message #=> String
5905
+ # resp.requests[0].export_sql_details.s3_object_key #=> String
5906
+ # resp.requests[0].export_sql_details.object_url #=> String
5907
+ #
5908
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelExportsAsScript AWS API Documentation
5909
+ #
5910
+ # @overload describe_metadata_model_exports_as_script(params = {})
5911
+ # @param [Hash] params ({})
5912
+ def describe_metadata_model_exports_as_script(params = {}, options = {})
5913
+ req = build_request(:describe_metadata_model_exports_as_script, params)
5914
+ req.send_request(options)
5915
+ end
5916
+
5917
+ # Returns a paginated list of metadata model exports.
5918
+ #
5919
+ # @option params [required, String] :migration_project_identifier
5920
+ # The migration project name or Amazon Resource Name (ARN).
5921
+ #
5922
+ # @option params [Array<Types::Filter>] :filters
5923
+ # Filters applied to the metadata model exports described in the form of
5924
+ # key-value pairs.
5925
+ #
5926
+ # @option params [String] :marker
5927
+ # Specifies the unique pagination token that makes it possible to
5928
+ # display the next page of results. If this parameter is specified, the
5929
+ # response includes only records beyond the marker, up to the value
5930
+ # specified by `MaxRecords`.
5931
+ #
5932
+ # If `Marker` is returned by a previous response, there are more results
5933
+ # available. The value of `Marker` is a unique pagination token for each
5934
+ # page. To retrieve the next page, make the call again using the
5935
+ # returned token and keeping all other arguments unchanged.
5936
+ #
5937
+ # @option params [Integer] :max_records
5938
+ # The maximum number of records to include in the response. If more
5939
+ # records exist than the specified `MaxRecords` value, DMS includes a
5940
+ # pagination token in the response so that you can retrieve the
5941
+ # remaining results.
5942
+ #
5943
+ # @return [Types::DescribeMetadataModelExportsToTargetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5944
+ #
5945
+ # * {Types::DescribeMetadataModelExportsToTargetResponse#marker #marker} => String
5946
+ # * {Types::DescribeMetadataModelExportsToTargetResponse#requests #requests} => Array&lt;Types::SchemaConversionRequest&gt;
5947
+ #
5948
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
5949
+ #
5950
+ # @example Request syntax with placeholder values
5951
+ #
5952
+ # resp = client.describe_metadata_model_exports_to_target({
5953
+ # migration_project_identifier: "String", # required
5954
+ # filters: [
5955
+ # {
5956
+ # name: "String", # required
5957
+ # values: ["String"], # required
5958
+ # },
5959
+ # ],
5960
+ # marker: "String",
5961
+ # max_records: 1,
5962
+ # })
5963
+ #
5964
+ # @example Response structure
5965
+ #
5966
+ # resp.marker #=> String
5967
+ # resp.requests #=> Array
5968
+ # resp.requests[0].status #=> String
5969
+ # resp.requests[0].request_identifier #=> String
5970
+ # resp.requests[0].migration_project_arn #=> String
5971
+ # resp.requests[0].error.default_error_details.message #=> String
5972
+ # resp.requests[0].export_sql_details.s3_object_key #=> String
5973
+ # resp.requests[0].export_sql_details.object_url #=> String
5974
+ #
5975
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelExportsToTarget AWS API Documentation
5976
+ #
5977
+ # @overload describe_metadata_model_exports_to_target(params = {})
5978
+ # @param [Hash] params ({})
5979
+ def describe_metadata_model_exports_to_target(params = {}, options = {})
5980
+ req = build_request(:describe_metadata_model_exports_to_target, params)
5981
+ req.send_request(options)
5982
+ end
5983
+
5984
+ # Returns a paginated list of metadata model imports.
5985
+ #
5986
+ # @option params [required, String] :migration_project_identifier
5987
+ # The migration project name or Amazon Resource Name (ARN).
5988
+ #
5989
+ # @option params [Array<Types::Filter>] :filters
5990
+ # Filters applied to the metadata model imports described in the form of
5991
+ # key-value pairs.
5992
+ #
5993
+ # @option params [String] :marker
5994
+ # Specifies the unique pagination token that makes it possible to
5995
+ # display the next page of results. If this parameter is specified, the
5996
+ # response includes only records beyond the marker, up to the value
5997
+ # specified by `MaxRecords`.
5998
+ #
5999
+ # If `Marker` is returned by a previous response, there are more results
6000
+ # available. The value of `Marker` is a unique pagination token for each
6001
+ # page. To retrieve the next page, make the call again using the
6002
+ # returned token and keeping all other arguments unchanged.
6003
+ #
6004
+ # @option params [Integer] :max_records
6005
+ # A paginated list of metadata model imports.
6006
+ #
6007
+ # @return [Types::DescribeMetadataModelImportsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6008
+ #
6009
+ # * {Types::DescribeMetadataModelImportsResponse#marker #marker} => String
6010
+ # * {Types::DescribeMetadataModelImportsResponse#requests #requests} => Array&lt;Types::SchemaConversionRequest&gt;
6011
+ #
6012
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
6013
+ #
6014
+ # @example Request syntax with placeholder values
6015
+ #
6016
+ # resp = client.describe_metadata_model_imports({
6017
+ # migration_project_identifier: "String", # required
6018
+ # filters: [
6019
+ # {
6020
+ # name: "String", # required
6021
+ # values: ["String"], # required
6022
+ # },
6023
+ # ],
6024
+ # marker: "String",
6025
+ # max_records: 1,
6026
+ # })
6027
+ #
6028
+ # @example Response structure
6029
+ #
6030
+ # resp.marker #=> String
6031
+ # resp.requests #=> Array
6032
+ # resp.requests[0].status #=> String
6033
+ # resp.requests[0].request_identifier #=> String
6034
+ # resp.requests[0].migration_project_arn #=> String
6035
+ # resp.requests[0].error.default_error_details.message #=> String
6036
+ # resp.requests[0].export_sql_details.s3_object_key #=> String
6037
+ # resp.requests[0].export_sql_details.object_url #=> String
6038
+ #
6039
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMetadataModelImports AWS API Documentation
6040
+ #
6041
+ # @overload describe_metadata_model_imports(params = {})
6042
+ # @param [Hash] params ({})
6043
+ def describe_metadata_model_imports(params = {}, options = {})
6044
+ req = build_request(:describe_metadata_model_imports, params)
6045
+ req.send_request(options)
6046
+ end
6047
+
6048
+ # Returns a paginated list of migration projects for your account in the
6049
+ # current region.
6050
+ #
6051
+ # @option params [Array<Types::Filter>] :filters
6052
+ # Filters applied to the migration projects described in the form of
6053
+ # key-value pairs.
6054
+ #
6055
+ # @option params [Integer] :max_records
6056
+ # The maximum number of records to include in the response. If more
6057
+ # records exist than the specified `MaxRecords` value, DMS includes a
6058
+ # pagination token in the response so that you can retrieve the
6059
+ # remaining results.
6060
+ #
6061
+ # @option params [String] :marker
6062
+ # Specifies the unique pagination token that makes it possible to
6063
+ # display the next page of results. If this parameter is specified, the
6064
+ # response includes only records beyond the marker, up to the value
6065
+ # specified by `MaxRecords`.
6066
+ #
6067
+ # If `Marker` is returned by a previous response, there are more results
6068
+ # available. The value of `Marker` is a unique pagination token for each
6069
+ # page. To retrieve the next page, make the call again using the
6070
+ # returned token and keeping all other arguments unchanged.
6071
+ #
6072
+ # @return [Types::DescribeMigrationProjectsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6073
+ #
6074
+ # * {Types::DescribeMigrationProjectsResponse#marker #marker} => String
6075
+ # * {Types::DescribeMigrationProjectsResponse#migration_projects #migration_projects} => Array&lt;Types::MigrationProject&gt;
6076
+ #
6077
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
6078
+ #
6079
+ # @example Request syntax with placeholder values
6080
+ #
6081
+ # resp = client.describe_migration_projects({
6082
+ # filters: [
6083
+ # {
6084
+ # name: "String", # required
6085
+ # values: ["String"], # required
6086
+ # },
6087
+ # ],
6088
+ # max_records: 1,
6089
+ # marker: "String",
6090
+ # })
6091
+ #
6092
+ # @example Response structure
4968
6093
  #
4969
- # @overload describe_fleet_advisor_schemas(params = {})
6094
+ # resp.marker #=> String
6095
+ # resp.migration_projects #=> Array
6096
+ # resp.migration_projects[0].migration_project_name #=> String
6097
+ # resp.migration_projects[0].migration_project_arn #=> String
6098
+ # resp.migration_projects[0].migration_project_creation_time #=> Time
6099
+ # resp.migration_projects[0].source_data_provider_descriptors #=> Array
6100
+ # resp.migration_projects[0].source_data_provider_descriptors[0].secrets_manager_secret_id #=> String
6101
+ # resp.migration_projects[0].source_data_provider_descriptors[0].secrets_manager_access_role_arn #=> String
6102
+ # resp.migration_projects[0].source_data_provider_descriptors[0].data_provider_name #=> String
6103
+ # resp.migration_projects[0].source_data_provider_descriptors[0].data_provider_arn #=> String
6104
+ # resp.migration_projects[0].target_data_provider_descriptors #=> Array
6105
+ # resp.migration_projects[0].target_data_provider_descriptors[0].secrets_manager_secret_id #=> String
6106
+ # resp.migration_projects[0].target_data_provider_descriptors[0].secrets_manager_access_role_arn #=> String
6107
+ # resp.migration_projects[0].target_data_provider_descriptors[0].data_provider_name #=> String
6108
+ # resp.migration_projects[0].target_data_provider_descriptors[0].data_provider_arn #=> String
6109
+ # resp.migration_projects[0].instance_profile_arn #=> String
6110
+ # resp.migration_projects[0].instance_profile_name #=> String
6111
+ # resp.migration_projects[0].transformation_rules #=> String
6112
+ # resp.migration_projects[0].description #=> String
6113
+ # resp.migration_projects[0].schema_conversion_application_attributes.s3_bucket_path #=> String
6114
+ # resp.migration_projects[0].schema_conversion_application_attributes.s3_bucket_role_arn #=> String
6115
+ #
6116
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeMigrationProjects AWS API Documentation
6117
+ #
6118
+ # @overload describe_migration_projects(params = {})
4970
6119
  # @param [Hash] params ({})
4971
- def describe_fleet_advisor_schemas(params = {}, options = {})
4972
- req = build_request(:describe_fleet_advisor_schemas, params)
6120
+ def describe_migration_projects(params = {}, options = {})
6121
+ req = build_request(:describe_migration_projects, params)
4973
6122
  req.send_request(options)
4974
6123
  end
4975
6124
 
@@ -6341,6 +7490,52 @@ module Aws::DatabaseMigrationService
6341
7490
  req.send_request(options)
6342
7491
  end
6343
7492
 
7493
+ # Saves a copy of a database migration assessment report to your Amazon
7494
+ # S3 bucket. DMS can save your assessment report as a comma-separated
7495
+ # value (CSV) or a PDF file.
7496
+ #
7497
+ # @option params [required, String] :migration_project_identifier
7498
+ # The migration project name or Amazon Resource Name (ARN).
7499
+ #
7500
+ # @option params [required, String] :selection_rules
7501
+ # A value that specifies the database objects to assess.
7502
+ #
7503
+ # @option params [String] :file_name
7504
+ # The name of the assessment file to create in your Amazon S3 bucket.
7505
+ #
7506
+ # @option params [Array<String>] :assessment_report_types
7507
+ # The file format of the assessment file.
7508
+ #
7509
+ # @return [Types::ExportMetadataModelAssessmentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7510
+ #
7511
+ # * {Types::ExportMetadataModelAssessmentResponse#pdf_report #pdf_report} => Types::ExportMetadataModelAssessmentResultEntry
7512
+ # * {Types::ExportMetadataModelAssessmentResponse#csv_report #csv_report} => Types::ExportMetadataModelAssessmentResultEntry
7513
+ #
7514
+ # @example Request syntax with placeholder values
7515
+ #
7516
+ # resp = client.export_metadata_model_assessment({
7517
+ # migration_project_identifier: "String", # required
7518
+ # selection_rules: "String", # required
7519
+ # file_name: "String",
7520
+ # assessment_report_types: ["pdf"], # accepts pdf, csv
7521
+ # })
7522
+ #
7523
+ # @example Response structure
7524
+ #
7525
+ # resp.pdf_report.s3_object_key #=> String
7526
+ # resp.pdf_report.object_url #=> String
7527
+ # resp.csv_report.s3_object_key #=> String
7528
+ # resp.csv_report.object_url #=> String
7529
+ #
7530
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ExportMetadataModelAssessment AWS API Documentation
7531
+ #
7532
+ # @overload export_metadata_model_assessment(params = {})
7533
+ # @param [Hash] params ({})
7534
+ def export_metadata_model_assessment(params = {}, options = {})
7535
+ req = build_request(:export_metadata_model_assessment, params)
7536
+ req.send_request(options)
7537
+ end
7538
+
6344
7539
  # Uploads the specified certificate.
6345
7540
  #
6346
7541
  # @option params [required, String] :certificate_identifier
@@ -6481,6 +7676,167 @@ module Aws::DatabaseMigrationService
6481
7676
  req.send_request(options)
6482
7677
  end
6483
7678
 
7679
+ # Modifies the specified schema conversion configuration using the
7680
+ # provided parameters.
7681
+ #
7682
+ # @option params [required, String] :migration_project_identifier
7683
+ # The migration project name or Amazon Resource Name (ARN).
7684
+ #
7685
+ # @option params [required, String] :conversion_configuration
7686
+ # The new conversion configuration.
7687
+ #
7688
+ # @return [Types::ModifyConversionConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7689
+ #
7690
+ # * {Types::ModifyConversionConfigurationResponse#migration_project_identifier #migration_project_identifier} => String
7691
+ #
7692
+ # @example Request syntax with placeholder values
7693
+ #
7694
+ # resp = client.modify_conversion_configuration({
7695
+ # migration_project_identifier: "String", # required
7696
+ # conversion_configuration: "String", # required
7697
+ # })
7698
+ #
7699
+ # @example Response structure
7700
+ #
7701
+ # resp.migration_project_identifier #=> String
7702
+ #
7703
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyConversionConfiguration AWS API Documentation
7704
+ #
7705
+ # @overload modify_conversion_configuration(params = {})
7706
+ # @param [Hash] params ({})
7707
+ def modify_conversion_configuration(params = {}, options = {})
7708
+ req = build_request(:modify_conversion_configuration, params)
7709
+ req.send_request(options)
7710
+ end
7711
+
7712
+ # Modifies the specified data provider using the provided settings.
7713
+ #
7714
+ # <note markdown="1"> You must remove the data provider from all migration projects before
7715
+ # you can modify it.
7716
+ #
7717
+ # </note>
7718
+ #
7719
+ # @option params [required, String] :data_provider_identifier
7720
+ # The identifier of the data provider. Identifiers must begin with a
7721
+ # letter and must contain only ASCII letters, digits, and hyphens. They
7722
+ # can't end with a hyphen, or contain two consecutive hyphens.
7723
+ #
7724
+ # @option params [String] :data_provider_name
7725
+ # The name of the data provider.
7726
+ #
7727
+ # @option params [String] :description
7728
+ # A user-friendly description of the data provider.
7729
+ #
7730
+ # @option params [String] :engine
7731
+ # The type of database engine for the data provider. Valid values
7732
+ # include `"aurora"`, `"aurora_postgresql"`, `"mysql"`, `"oracle"`,
7733
+ # `"postgres"`, and `"sqlserver"`. A value of `"aurora"` represents
7734
+ # Amazon Aurora MySQL-Compatible Edition.
7735
+ #
7736
+ # @option params [Boolean] :exact_settings
7737
+ # If this attribute is Y, the current call to `ModifyDataProvider`
7738
+ # replaces all existing data provider settings with the exact settings
7739
+ # that you specify in this call. If this attribute is N, the current
7740
+ # call to `ModifyDataProvider` does two things:
7741
+ #
7742
+ # * It replaces any data provider settings that already exist with new
7743
+ # values, for settings with the same names.
7744
+ #
7745
+ # * It creates new data provider settings that you specify in the call,
7746
+ # for settings with different names.
7747
+ #
7748
+ # @option params [Types::DataProviderSettings] :settings
7749
+ # The settings in JSON format for a data provider.
7750
+ #
7751
+ # @return [Types::ModifyDataProviderResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7752
+ #
7753
+ # * {Types::ModifyDataProviderResponse#data_provider #data_provider} => Types::DataProvider
7754
+ #
7755
+ # @example Request syntax with placeholder values
7756
+ #
7757
+ # resp = client.modify_data_provider({
7758
+ # data_provider_identifier: "String", # required
7759
+ # data_provider_name: "String",
7760
+ # description: "String",
7761
+ # engine: "String",
7762
+ # exact_settings: false,
7763
+ # settings: {
7764
+ # postgre_sql_settings: {
7765
+ # server_name: "String",
7766
+ # port: 1,
7767
+ # database_name: "String",
7768
+ # ssl_mode: "none", # accepts none, require, verify-ca, verify-full
7769
+ # certificate_arn: "String",
7770
+ # },
7771
+ # my_sql_settings: {
7772
+ # server_name: "String",
7773
+ # port: 1,
7774
+ # ssl_mode: "none", # accepts none, require, verify-ca, verify-full
7775
+ # certificate_arn: "String",
7776
+ # },
7777
+ # oracle_settings: {
7778
+ # server_name: "String",
7779
+ # port: 1,
7780
+ # database_name: "String",
7781
+ # ssl_mode: "none", # accepts none, require, verify-ca, verify-full
7782
+ # certificate_arn: "String",
7783
+ # asm_server: "String",
7784
+ # secrets_manager_oracle_asm_secret_id: "String",
7785
+ # secrets_manager_oracle_asm_access_role_arn: "String",
7786
+ # secrets_manager_security_db_encryption_secret_id: "String",
7787
+ # secrets_manager_security_db_encryption_access_role_arn: "String",
7788
+ # },
7789
+ # microsoft_sql_server_settings: {
7790
+ # server_name: "String",
7791
+ # port: 1,
7792
+ # database_name: "String",
7793
+ # ssl_mode: "none", # accepts none, require, verify-ca, verify-full
7794
+ # certificate_arn: "String",
7795
+ # },
7796
+ # },
7797
+ # })
7798
+ #
7799
+ # @example Response structure
7800
+ #
7801
+ # resp.data_provider.data_provider_name #=> String
7802
+ # resp.data_provider.data_provider_arn #=> String
7803
+ # resp.data_provider.data_provider_creation_time #=> Time
7804
+ # resp.data_provider.description #=> String
7805
+ # resp.data_provider.engine #=> String
7806
+ # resp.data_provider.settings.postgre_sql_settings.server_name #=> String
7807
+ # resp.data_provider.settings.postgre_sql_settings.port #=> Integer
7808
+ # resp.data_provider.settings.postgre_sql_settings.database_name #=> String
7809
+ # resp.data_provider.settings.postgre_sql_settings.ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
7810
+ # resp.data_provider.settings.postgre_sql_settings.certificate_arn #=> String
7811
+ # resp.data_provider.settings.my_sql_settings.server_name #=> String
7812
+ # resp.data_provider.settings.my_sql_settings.port #=> Integer
7813
+ # resp.data_provider.settings.my_sql_settings.ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
7814
+ # resp.data_provider.settings.my_sql_settings.certificate_arn #=> String
7815
+ # resp.data_provider.settings.oracle_settings.server_name #=> String
7816
+ # resp.data_provider.settings.oracle_settings.port #=> Integer
7817
+ # resp.data_provider.settings.oracle_settings.database_name #=> String
7818
+ # resp.data_provider.settings.oracle_settings.ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
7819
+ # resp.data_provider.settings.oracle_settings.certificate_arn #=> String
7820
+ # resp.data_provider.settings.oracle_settings.asm_server #=> String
7821
+ # resp.data_provider.settings.oracle_settings.secrets_manager_oracle_asm_secret_id #=> String
7822
+ # resp.data_provider.settings.oracle_settings.secrets_manager_oracle_asm_access_role_arn #=> String
7823
+ # resp.data_provider.settings.oracle_settings.secrets_manager_security_db_encryption_secret_id #=> String
7824
+ # resp.data_provider.settings.oracle_settings.secrets_manager_security_db_encryption_access_role_arn #=> String
7825
+ # resp.data_provider.settings.microsoft_sql_server_settings.server_name #=> String
7826
+ # resp.data_provider.settings.microsoft_sql_server_settings.port #=> Integer
7827
+ # resp.data_provider.settings.microsoft_sql_server_settings.database_name #=> String
7828
+ # resp.data_provider.settings.microsoft_sql_server_settings.ssl_mode #=> String, one of "none", "require", "verify-ca", "verify-full"
7829
+ # resp.data_provider.settings.microsoft_sql_server_settings.certificate_arn #=> String
7830
+ #
7831
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyDataProvider AWS API Documentation
7832
+ #
7833
+ # @overload modify_data_provider(params = {})
7834
+ # @param [Hash] params ({})
7835
+ def modify_data_provider(params = {}, options = {})
7836
+ req = build_request(:modify_data_provider, params)
7837
+ req.send_request(options)
7838
+ end
7839
+
6484
7840
  # Modifies the specified endpoint.
6485
7841
  #
6486
7842
  # <note markdown="1"> For a MySQL source or target endpoint, don't explicitly specify the
@@ -7505,6 +8861,204 @@ module Aws::DatabaseMigrationService
7505
8861
  req.send_request(options)
7506
8862
  end
7507
8863
 
8864
+ # Modifies the specified instance profile using the provided parameters.
8865
+ #
8866
+ # <note markdown="1"> All migration projects associated with the instance profile must be
8867
+ # deleted or modified before you can modify the instance profile.
8868
+ #
8869
+ # </note>
8870
+ #
8871
+ # @option params [required, String] :instance_profile_identifier
8872
+ # The identifier of the instance profile. Identifiers must begin with a
8873
+ # letter and must contain only ASCII letters, digits, and hyphens. They
8874
+ # can't end with a hyphen, or contain two consecutive hyphens.
8875
+ #
8876
+ # @option params [String] :availability_zone
8877
+ # The Availability Zone where the instance profile runs.
8878
+ #
8879
+ # @option params [String] :kms_key_arn
8880
+ # The Amazon Resource Name (ARN) of the KMS key that is used to encrypt
8881
+ # the connection parameters for the instance profile.
8882
+ #
8883
+ # If you don't specify a value for the `KmsKeyArn` parameter, then DMS
8884
+ # uses your default encryption key.
8885
+ #
8886
+ # KMS creates the default encryption key for your Amazon Web Services
8887
+ # account. Your Amazon Web Services account has a different default
8888
+ # encryption key for each Amazon Web Services Region.
8889
+ #
8890
+ # @option params [Boolean] :publicly_accessible
8891
+ # Specifies the accessibility options for the instance profile. A value
8892
+ # of `true` represents an instance profile with a public IP address. A
8893
+ # value of `false` represents an instance profile with a private IP
8894
+ # address. The default value is `true`.
8895
+ #
8896
+ # @option params [String] :network_type
8897
+ # Specifies the network type for the instance profile. A value of `IPV4`
8898
+ # represents an instance profile with IPv4 network type and only
8899
+ # supports IPv4 addressing. A value of `IPV6` represents an instance
8900
+ # profile with IPv6 network type and only supports IPv6 addressing. A
8901
+ # value of `DUAL` represents an instance profile with dual network type
8902
+ # that supports IPv4 and IPv6 addressing.
8903
+ #
8904
+ # @option params [String] :instance_profile_name
8905
+ # A user-friendly name for the instance profile.
8906
+ #
8907
+ # @option params [String] :description
8908
+ # A user-friendly description for the instance profile.
8909
+ #
8910
+ # @option params [String] :subnet_group_identifier
8911
+ # A subnet group to associate with the instance profile.
8912
+ #
8913
+ # @option params [Array<String>] :vpc_security_groups
8914
+ # Specifies the VPC security groups to be used with the instance
8915
+ # profile. The VPC security group must work with the VPC containing the
8916
+ # instance profile.
8917
+ #
8918
+ # @return [Types::ModifyInstanceProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8919
+ #
8920
+ # * {Types::ModifyInstanceProfileResponse#instance_profile #instance_profile} => Types::InstanceProfile
8921
+ #
8922
+ # @example Request syntax with placeholder values
8923
+ #
8924
+ # resp = client.modify_instance_profile({
8925
+ # instance_profile_identifier: "String", # required
8926
+ # availability_zone: "String",
8927
+ # kms_key_arn: "String",
8928
+ # publicly_accessible: false,
8929
+ # network_type: "String",
8930
+ # instance_profile_name: "String",
8931
+ # description: "String",
8932
+ # subnet_group_identifier: "String",
8933
+ # vpc_security_groups: ["String"],
8934
+ # })
8935
+ #
8936
+ # @example Response structure
8937
+ #
8938
+ # resp.instance_profile.instance_profile_arn #=> String
8939
+ # resp.instance_profile.availability_zone #=> String
8940
+ # resp.instance_profile.kms_key_arn #=> String
8941
+ # resp.instance_profile.publicly_accessible #=> Boolean
8942
+ # resp.instance_profile.network_type #=> String
8943
+ # resp.instance_profile.instance_profile_name #=> String
8944
+ # resp.instance_profile.description #=> String
8945
+ # resp.instance_profile.instance_profile_creation_time #=> Time
8946
+ # resp.instance_profile.subnet_group_identifier #=> String
8947
+ # resp.instance_profile.vpc_security_groups #=> Array
8948
+ # resp.instance_profile.vpc_security_groups[0] #=> String
8949
+ #
8950
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyInstanceProfile AWS API Documentation
8951
+ #
8952
+ # @overload modify_instance_profile(params = {})
8953
+ # @param [Hash] params ({})
8954
+ def modify_instance_profile(params = {}, options = {})
8955
+ req = build_request(:modify_instance_profile, params)
8956
+ req.send_request(options)
8957
+ end
8958
+
8959
+ # Modifies the specified migration project using the provided
8960
+ # parameters.
8961
+ #
8962
+ # <note markdown="1"> The migration project must be closed before you can modify it.
8963
+ #
8964
+ # </note>
8965
+ #
8966
+ # @option params [required, String] :migration_project_identifier
8967
+ # The identifier of the migration project. Identifiers must begin with a
8968
+ # letter and must contain only ASCII letters, digits, and hyphens. They
8969
+ # can't end with a hyphen, or contain two consecutive hyphens.
8970
+ #
8971
+ # @option params [String] :migration_project_name
8972
+ # A user-friendly name for the migration project.
8973
+ #
8974
+ # @option params [Array<Types::DataProviderDescriptorDefinition>] :source_data_provider_descriptors
8975
+ # Information about the source data provider, including the name, ARN,
8976
+ # and Amazon Web Services Secrets Manager parameters.
8977
+ #
8978
+ # @option params [Array<Types::DataProviderDescriptorDefinition>] :target_data_provider_descriptors
8979
+ # Information about the target data provider, including the name, ARN,
8980
+ # and Amazon Web Services Secrets Manager parameters.
8981
+ #
8982
+ # @option params [String] :instance_profile_identifier
8983
+ # The name or Amazon Resource Name (ARN) for the instance profile.
8984
+ #
8985
+ # @option params [String] :transformation_rules
8986
+ # The settings in JSON format for migration rules. Migration rules make
8987
+ # it possible for you to change the object names according to the rules
8988
+ # that you specify. For example, you can change an object name to
8989
+ # lowercase or uppercase, add or remove a prefix or suffix, or rename
8990
+ # objects.
8991
+ #
8992
+ # @option params [String] :description
8993
+ # A user-friendly description of the migration project.
8994
+ #
8995
+ # @option params [Types::SCApplicationAttributes] :schema_conversion_application_attributes
8996
+ # The schema conversion application attributes, including the Amazon S3
8997
+ # bucket name and Amazon S3 role ARN.
8998
+ #
8999
+ # @return [Types::ModifyMigrationProjectResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9000
+ #
9001
+ # * {Types::ModifyMigrationProjectResponse#migration_project #migration_project} => Types::MigrationProject
9002
+ #
9003
+ # @example Request syntax with placeholder values
9004
+ #
9005
+ # resp = client.modify_migration_project({
9006
+ # migration_project_identifier: "String", # required
9007
+ # migration_project_name: "String",
9008
+ # source_data_provider_descriptors: [
9009
+ # {
9010
+ # data_provider_identifier: "String", # required
9011
+ # secrets_manager_secret_id: "String",
9012
+ # secrets_manager_access_role_arn: "String",
9013
+ # },
9014
+ # ],
9015
+ # target_data_provider_descriptors: [
9016
+ # {
9017
+ # data_provider_identifier: "String", # required
9018
+ # secrets_manager_secret_id: "String",
9019
+ # secrets_manager_access_role_arn: "String",
9020
+ # },
9021
+ # ],
9022
+ # instance_profile_identifier: "String",
9023
+ # transformation_rules: "String",
9024
+ # description: "String",
9025
+ # schema_conversion_application_attributes: {
9026
+ # s3_bucket_path: "String",
9027
+ # s3_bucket_role_arn: "String",
9028
+ # },
9029
+ # })
9030
+ #
9031
+ # @example Response structure
9032
+ #
9033
+ # resp.migration_project.migration_project_name #=> String
9034
+ # resp.migration_project.migration_project_arn #=> String
9035
+ # resp.migration_project.migration_project_creation_time #=> Time
9036
+ # resp.migration_project.source_data_provider_descriptors #=> Array
9037
+ # resp.migration_project.source_data_provider_descriptors[0].secrets_manager_secret_id #=> String
9038
+ # resp.migration_project.source_data_provider_descriptors[0].secrets_manager_access_role_arn #=> String
9039
+ # resp.migration_project.source_data_provider_descriptors[0].data_provider_name #=> String
9040
+ # resp.migration_project.source_data_provider_descriptors[0].data_provider_arn #=> String
9041
+ # resp.migration_project.target_data_provider_descriptors #=> Array
9042
+ # resp.migration_project.target_data_provider_descriptors[0].secrets_manager_secret_id #=> String
9043
+ # resp.migration_project.target_data_provider_descriptors[0].secrets_manager_access_role_arn #=> String
9044
+ # resp.migration_project.target_data_provider_descriptors[0].data_provider_name #=> String
9045
+ # resp.migration_project.target_data_provider_descriptors[0].data_provider_arn #=> String
9046
+ # resp.migration_project.instance_profile_arn #=> String
9047
+ # resp.migration_project.instance_profile_name #=> String
9048
+ # resp.migration_project.transformation_rules #=> String
9049
+ # resp.migration_project.description #=> String
9050
+ # resp.migration_project.schema_conversion_application_attributes.s3_bucket_path #=> String
9051
+ # resp.migration_project.schema_conversion_application_attributes.s3_bucket_role_arn #=> String
9052
+ #
9053
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyMigrationProject AWS API Documentation
9054
+ #
9055
+ # @overload modify_migration_project(params = {})
9056
+ # @param [Hash] params ({})
9057
+ def modify_migration_project(params = {}, options = {})
9058
+ req = build_request(:modify_migration_project, params)
9059
+ req.send_request(options)
9060
+ end
9061
+
7508
9062
  # Modifies an existing DMS Serverless replication configuration that you
7509
9063
  # can use to start a replication. This command includes input validation
7510
9064
  # and logic to check the state of any replication that uses this
@@ -8460,6 +10014,231 @@ module Aws::DatabaseMigrationService
8460
10014
  req.send_request(options)
8461
10015
  end
8462
10016
 
10017
+ # Applies the extension pack to your target database. An extension pack
10018
+ # is an add-on module that emulates functions present in a source
10019
+ # database that are required when converting objects to the target
10020
+ # database.
10021
+ #
10022
+ # @option params [required, String] :migration_project_identifier
10023
+ # The migration project name or Amazon Resource Name (ARN).
10024
+ #
10025
+ # @return [Types::StartExtensionPackAssociationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10026
+ #
10027
+ # * {Types::StartExtensionPackAssociationResponse#request_identifier #request_identifier} => String
10028
+ #
10029
+ # @example Request syntax with placeholder values
10030
+ #
10031
+ # resp = client.start_extension_pack_association({
10032
+ # migration_project_identifier: "String", # required
10033
+ # })
10034
+ #
10035
+ # @example Response structure
10036
+ #
10037
+ # resp.request_identifier #=> String
10038
+ #
10039
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartExtensionPackAssociation AWS API Documentation
10040
+ #
10041
+ # @overload start_extension_pack_association(params = {})
10042
+ # @param [Hash] params ({})
10043
+ def start_extension_pack_association(params = {}, options = {})
10044
+ req = build_request(:start_extension_pack_association, params)
10045
+ req.send_request(options)
10046
+ end
10047
+
10048
+ # Creates a database migration assessment report by assessing the
10049
+ # migration complexity for your source database. A database migration
10050
+ # assessment report summarizes all of the schema conversion tasks. It
10051
+ # also details the action items for database objects that can't be
10052
+ # converted to the database engine of your target database instance.
10053
+ #
10054
+ # @option params [required, String] :migration_project_identifier
10055
+ # The migration project name or Amazon Resource Name (ARN).
10056
+ #
10057
+ # @option params [required, String] :selection_rules
10058
+ # A value that specifies the database objects to assess.
10059
+ #
10060
+ # @return [Types::StartMetadataModelAssessmentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10061
+ #
10062
+ # * {Types::StartMetadataModelAssessmentResponse#request_identifier #request_identifier} => String
10063
+ #
10064
+ # @example Request syntax with placeholder values
10065
+ #
10066
+ # resp = client.start_metadata_model_assessment({
10067
+ # migration_project_identifier: "String", # required
10068
+ # selection_rules: "String", # required
10069
+ # })
10070
+ #
10071
+ # @example Response structure
10072
+ #
10073
+ # resp.request_identifier #=> String
10074
+ #
10075
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartMetadataModelAssessment AWS API Documentation
10076
+ #
10077
+ # @overload start_metadata_model_assessment(params = {})
10078
+ # @param [Hash] params ({})
10079
+ def start_metadata_model_assessment(params = {}, options = {})
10080
+ req = build_request(:start_metadata_model_assessment, params)
10081
+ req.send_request(options)
10082
+ end
10083
+
10084
+ # Converts your source database objects to a format compatible with the
10085
+ # target database.
10086
+ #
10087
+ # @option params [required, String] :migration_project_identifier
10088
+ # The migration project name or Amazon Resource Name (ARN).
10089
+ #
10090
+ # @option params [required, String] :selection_rules
10091
+ # A value that specifies the database objects to convert.
10092
+ #
10093
+ # @return [Types::StartMetadataModelConversionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10094
+ #
10095
+ # * {Types::StartMetadataModelConversionResponse#request_identifier #request_identifier} => String
10096
+ #
10097
+ # @example Request syntax with placeholder values
10098
+ #
10099
+ # resp = client.start_metadata_model_conversion({
10100
+ # migration_project_identifier: "String", # required
10101
+ # selection_rules: "String", # required
10102
+ # })
10103
+ #
10104
+ # @example Response structure
10105
+ #
10106
+ # resp.request_identifier #=> String
10107
+ #
10108
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartMetadataModelConversion AWS API Documentation
10109
+ #
10110
+ # @overload start_metadata_model_conversion(params = {})
10111
+ # @param [Hash] params ({})
10112
+ def start_metadata_model_conversion(params = {}, options = {})
10113
+ req = build_request(:start_metadata_model_conversion, params)
10114
+ req.send_request(options)
10115
+ end
10116
+
10117
+ # Saves your converted code to a file as a SQL script, and stores this
10118
+ # file on your Amazon S3 bucket.
10119
+ #
10120
+ # @option params [required, String] :migration_project_identifier
10121
+ # The migration project name or Amazon Resource Name (ARN).
10122
+ #
10123
+ # @option params [required, String] :selection_rules
10124
+ # A value that specifies the database objects to export.
10125
+ #
10126
+ # @option params [required, String] :origin
10127
+ # Whether to export the metadata model from the source or the target.
10128
+ #
10129
+ # @option params [String] :file_name
10130
+ # The name of the model file to create in the Amazon S3 bucket.
10131
+ #
10132
+ # @return [Types::StartMetadataModelExportAsScriptResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10133
+ #
10134
+ # * {Types::StartMetadataModelExportAsScriptResponse#request_identifier #request_identifier} => String
10135
+ #
10136
+ # @example Request syntax with placeholder values
10137
+ #
10138
+ # resp = client.start_metadata_model_export_as_script({
10139
+ # migration_project_identifier: "String", # required
10140
+ # selection_rules: "String", # required
10141
+ # origin: "SOURCE", # required, accepts SOURCE, TARGET
10142
+ # file_name: "String",
10143
+ # })
10144
+ #
10145
+ # @example Response structure
10146
+ #
10147
+ # resp.request_identifier #=> String
10148
+ #
10149
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartMetadataModelExportAsScript AWS API Documentation
10150
+ #
10151
+ # @overload start_metadata_model_export_as_script(params = {})
10152
+ # @param [Hash] params ({})
10153
+ def start_metadata_model_export_as_script(params = {}, options = {})
10154
+ req = build_request(:start_metadata_model_export_as_script, params)
10155
+ req.send_request(options)
10156
+ end
10157
+
10158
+ # Applies converted database objects to your target database.
10159
+ #
10160
+ # @option params [required, String] :migration_project_identifier
10161
+ # The migration project name or Amazon Resource Name (ARN).
10162
+ #
10163
+ # @option params [required, String] :selection_rules
10164
+ # A value that specifies the database objects to export.
10165
+ #
10166
+ # @option params [Boolean] :overwrite_extension_pack
10167
+ # Whether to overwrite the migration project extension pack. An
10168
+ # extension pack is an add-on module that emulates functions present in
10169
+ # a source database that are required when converting objects to the
10170
+ # target database.
10171
+ #
10172
+ # @return [Types::StartMetadataModelExportToTargetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10173
+ #
10174
+ # * {Types::StartMetadataModelExportToTargetResponse#request_identifier #request_identifier} => String
10175
+ #
10176
+ # @example Request syntax with placeholder values
10177
+ #
10178
+ # resp = client.start_metadata_model_export_to_target({
10179
+ # migration_project_identifier: "String", # required
10180
+ # selection_rules: "String", # required
10181
+ # overwrite_extension_pack: false,
10182
+ # })
10183
+ #
10184
+ # @example Response structure
10185
+ #
10186
+ # resp.request_identifier #=> String
10187
+ #
10188
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartMetadataModelExportToTarget AWS API Documentation
10189
+ #
10190
+ # @overload start_metadata_model_export_to_target(params = {})
10191
+ # @param [Hash] params ({})
10192
+ def start_metadata_model_export_to_target(params = {}, options = {})
10193
+ req = build_request(:start_metadata_model_export_to_target, params)
10194
+ req.send_request(options)
10195
+ end
10196
+
10197
+ # Loads the metadata for all the dependent database objects of the
10198
+ # parent object.
10199
+ #
10200
+ # This operation uses your project's Amazon S3 bucket as a metadata
10201
+ # cache to improve performance.
10202
+ #
10203
+ # @option params [required, String] :migration_project_identifier
10204
+ # The migration project name or Amazon Resource Name (ARN).
10205
+ #
10206
+ # @option params [required, String] :selection_rules
10207
+ # A value that specifies the database objects to import.
10208
+ #
10209
+ # @option params [required, String] :origin
10210
+ # Whether to load metadata to the source or target database.
10211
+ #
10212
+ # @option params [Boolean] :refresh
10213
+ # If `true`, DMS loads metadata for the specified objects from the
10214
+ # source database.
10215
+ #
10216
+ # @return [Types::StartMetadataModelImportResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10217
+ #
10218
+ # * {Types::StartMetadataModelImportResponse#request_identifier #request_identifier} => String
10219
+ #
10220
+ # @example Request syntax with placeholder values
10221
+ #
10222
+ # resp = client.start_metadata_model_import({
10223
+ # migration_project_identifier: "String", # required
10224
+ # selection_rules: "String", # required
10225
+ # origin: "SOURCE", # required, accepts SOURCE, TARGET
10226
+ # refresh: false,
10227
+ # })
10228
+ #
10229
+ # @example Response structure
10230
+ #
10231
+ # resp.request_identifier #=> String
10232
+ #
10233
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartMetadataModelImport AWS API Documentation
10234
+ #
10235
+ # @overload start_metadata_model_import(params = {})
10236
+ # @param [Hash] params ({})
10237
+ def start_metadata_model_import(params = {}, options = {})
10238
+ req = build_request(:start_metadata_model_import, params)
10239
+ req.send_request(options)
10240
+ end
10241
+
8463
10242
  # Starts the analysis of your source database to provide recommendations
8464
10243
  # of target engines.
8465
10244
  #
@@ -9212,7 +10991,7 @@ module Aws::DatabaseMigrationService
9212
10991
  params: params,
9213
10992
  config: config)
9214
10993
  context[:gem_name] = 'aws-sdk-databasemigrationservice'
9215
- context[:gem_version] = '1.85.0'
10994
+ context[:gem_version] = '1.86.0'
9216
10995
  Seahorse::Client::Request.new(handlers, context)
9217
10996
  end
9218
10997