aws-sdk-databasemigrationservice 1.109.0 → 1.111.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -248,7 +248,7 @@ module Aws::DatabaseMigrationService
248
248
  #
249
249
  # @!attribute [rw] certificate_wallet
250
250
  # The location of an imported Oracle Wallet certificate for use with
251
- # SSL. Example: `filebase64("$\{path.root\}/rds-ca-2019-root.sso")`
251
+ # SSL. Example: `filebase64("${path.root}/rds-ca-2019-root.sso")`
252
252
  # @return [String]
253
253
  #
254
254
  # @!attribute [rw] certificate_arn
@@ -842,8 +842,8 @@ module Aws::DatabaseMigrationService
842
842
  # Shorthand syntax for these settings is as follows:
843
843
  # `ServiceAccessRoleArn=string,BucketName=string`
844
844
  #
845
- # JSON syntax for these settings is as follows: `\{
846
- # "ServiceAccessRoleArn": "string", "BucketName": "string", \} `
845
+ # JSON syntax for these settings is as follows: `{
846
+ # "ServiceAccessRoleArn": "string", "BucketName": "string", } `
847
847
  # @return [Types::DmsTransferSettings]
848
848
  #
849
849
  # @!attribute [rw] mongo_db_settings
@@ -1627,6 +1627,12 @@ module Aws::DatabaseMigrationService
1627
1627
  # addressing. IPv6 only is not yet supported.
1628
1628
  # @return [String]
1629
1629
  #
1630
+ # @!attribute [rw] kerberos_authentication_settings
1631
+ # Specifies the ID of the secret that stores the key cache file
1632
+ # required for kerberos authentication, when creating a replication
1633
+ # instance.
1634
+ # @return [Types::KerberosAuthenticationSettings]
1635
+ #
1630
1636
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateReplicationInstanceMessage AWS API Documentation
1631
1637
  #
1632
1638
  class CreateReplicationInstanceMessage < Struct.new(
@@ -1645,7 +1651,8 @@ module Aws::DatabaseMigrationService
1645
1651
  :publicly_accessible,
1646
1652
  :dns_name_servers,
1647
1653
  :resource_identifier,
1648
- :network_type)
1654
+ :network_type,
1655
+ :kerberos_authentication_settings)
1649
1656
  SENSITIVE = []
1650
1657
  include Aws::Structure
1651
1658
  end
@@ -3024,7 +3031,8 @@ module Aws::DatabaseMigrationService
3024
3031
  # Filters applied to the data providers described in the form of
3025
3032
  # key-value pairs.
3026
3033
  #
3027
- # Valid filter names: data-provider-identifier
3034
+ # Valid filter names and values: data-provider-identifier, data
3035
+ # provider arn or name
3028
3036
  # @return [Array<Types::Filter>]
3029
3037
  #
3030
3038
  # @!attribute [rw] max_records
@@ -3796,6 +3804,9 @@ module Aws::DatabaseMigrationService
3796
3804
  # @!attribute [rw] filters
3797
3805
  # Filters applied to the instance profiles described in the form of
3798
3806
  # key-value pairs.
3807
+ #
3808
+ # Valid filter names and values: instance-profile-identifier, instance
3809
+ # profile arn or name
3799
3810
  # @return [Array<Types::Filter>]
3800
3811
  #
3801
3812
  # @!attribute [rw] max_records
@@ -4173,6 +4184,14 @@ module Aws::DatabaseMigrationService
4173
4184
  # @!attribute [rw] filters
4174
4185
  # Filters applied to the migration projects described in the form of
4175
4186
  # key-value pairs.
4187
+ #
4188
+ # Valid filter names and values:
4189
+ #
4190
+ # * instance-profile-identifier, instance profile arn or name
4191
+ #
4192
+ # * data-provider-identifier, data provider arn or name
4193
+ #
4194
+ # * migration-project-identifier, migration project arn or name
4176
4195
  # @return [Array<Types::Filter>]
4177
4196
  #
4178
4197
  # @!attribute [rw] max_records
@@ -6324,7 +6343,7 @@ module Aws::DatabaseMigrationService
6324
6343
  # SSL. Provide the name of a `.sso` file using the `fileb://` prefix.
6325
6344
  # You can't provide the certificate inline.
6326
6345
  #
6327
- # Example: `filebase64("$\{path.root\}/rds-ca-2019-root.sso")`
6346
+ # Example: `filebase64("${path.root}/rds-ca-2019-root.sso")`
6328
6347
  # @return [String]
6329
6348
  #
6330
6349
  # @!attribute [rw] tags
@@ -6750,6 +6769,10 @@ module Aws::DatabaseMigrationService
6750
6769
  # supported in DMS version 3.5.1 and later.
6751
6770
  # @return [String]
6752
6771
  #
6772
+ # @!attribute [rw] use_large_integer_value
6773
+ # Specifies using the large integer value with Kafka.
6774
+ # @return [Boolean]
6775
+ #
6753
6776
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/KafkaSettings AWS API Documentation
6754
6777
  #
6755
6778
  class KafkaSettings < Struct.new(
@@ -6772,11 +6795,40 @@ module Aws::DatabaseMigrationService
6772
6795
  :sasl_password,
6773
6796
  :no_hex_prefix,
6774
6797
  :sasl_mechanism,
6775
- :ssl_endpoint_identification_algorithm)
6798
+ :ssl_endpoint_identification_algorithm,
6799
+ :use_large_integer_value)
6776
6800
  SENSITIVE = [:ssl_client_key_password, :sasl_password]
6777
6801
  include Aws::Structure
6778
6802
  end
6779
6803
 
6804
+ # Specifies using Kerberos authentication settings for use with DMS.
6805
+ #
6806
+ # @!attribute [rw] key_cache_secret_id
6807
+ # Specifies the secret ID of the key cache for the replication
6808
+ # instance.
6809
+ # @return [String]
6810
+ #
6811
+ # @!attribute [rw] key_cache_secret_iam_arn
6812
+ # Specifies the Amazon Resource Name (ARN) of the IAM role that grants
6813
+ # Amazon Web Services DMS access to the secret containing key cache
6814
+ # file for the replication instance.
6815
+ # @return [String]
6816
+ #
6817
+ # @!attribute [rw] krb_5_file_contents
6818
+ # Specifies the ID of the secret that stores the key cache file
6819
+ # required for kerberos authentication of the replication instance.
6820
+ # @return [String]
6821
+ #
6822
+ # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/KerberosAuthenticationSettings AWS API Documentation
6823
+ #
6824
+ class KerberosAuthenticationSettings < Struct.new(
6825
+ :key_cache_secret_id,
6826
+ :key_cache_secret_iam_arn,
6827
+ :krb_5_file_contents)
6828
+ SENSITIVE = []
6829
+ include Aws::Structure
6830
+ end
6831
+
6780
6832
  # Provides information that describes an Amazon Kinesis Data Stream
6781
6833
  # endpoint. This information includes the output format of records
6782
6834
  # applied to the endpoint and details of transaction and control table
@@ -6849,6 +6901,10 @@ module Aws::DatabaseMigrationService
6849
6901
  # type columns without adding the '0x' prefix.
6850
6902
  # @return [Boolean]
6851
6903
  #
6904
+ # @!attribute [rw] use_large_integer_value
6905
+ # Specifies using the large integer value with Kinesis.
6906
+ # @return [Boolean]
6907
+ #
6852
6908
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/KinesisSettings AWS API Documentation
6853
6909
  #
6854
6910
  class KinesisSettings < Struct.new(
@@ -6861,7 +6917,8 @@ module Aws::DatabaseMigrationService
6861
6917
  :include_table_alter_operations,
6862
6918
  :include_control_details,
6863
6919
  :include_null_and_empty,
6864
- :no_hex_prefix)
6920
+ :no_hex_prefix,
6921
+ :use_large_integer_value)
6865
6922
  SENSITIVE = []
6866
6923
  include Aws::Structure
6867
6924
  end
@@ -7123,6 +7180,10 @@ module Aws::DatabaseMigrationService
7123
7180
  # Forces LOB lookup on inline LOB.
7124
7181
  # @return [Boolean]
7125
7182
  #
7183
+ # @!attribute [rw] authentication_method
7184
+ # Specifies using Kerberos authentication with Microsoft SQL Server.
7185
+ # @return [String]
7186
+ #
7126
7187
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MicrosoftSQLServerSettings AWS API Documentation
7127
7188
  #
7128
7189
  class MicrosoftSQLServerSettings < Struct.new(
@@ -7142,7 +7203,8 @@ module Aws::DatabaseMigrationService
7142
7203
  :secrets_manager_secret_id,
7143
7204
  :trim_space_in_char,
7144
7205
  :tlog_access_mode,
7145
- :force_lob_lookup)
7206
+ :force_lob_lookup,
7207
+ :authentication_method)
7146
7208
  SENSITIVE = [:password]
7147
7209
  include Aws::Structure
7148
7210
  end
@@ -7513,8 +7575,8 @@ module Aws::DatabaseMigrationService
7513
7575
  # Shorthand syntax for these settings is as follows:
7514
7576
  # `ServiceAccessRoleArn=string ,BucketName=string`
7515
7577
  #
7516
- # JSON syntax for these settings is as follows: `\{
7517
- # "ServiceAccessRoleArn": "string", "BucketName": "string"\} `
7578
+ # JSON syntax for these settings is as follows: `{
7579
+ # "ServiceAccessRoleArn": "string", "BucketName": "string"} `
7518
7580
  # @return [Types::DmsTransferSettings]
7519
7581
  #
7520
7582
  # @!attribute [rw] mongo_db_settings
@@ -7683,16 +7745,16 @@ module Aws::DatabaseMigrationService
7683
7745
  # settings with different names.
7684
7746
  #
7685
7747
  # For example, if you call `create-endpoint ... --endpoint-settings
7686
- # '\{"a":1\}' ...`, the endpoint has the following endpoint settings:
7687
- # `'\{"a":1\}'`. If you then call `modify-endpoint ...
7688
- # --endpoint-settings '\{"b":2\}' ...` for the same endpoint, the
7689
- # endpoint has the following settings: `'\{"a":1,"b":2\}'`.
7748
+ # '{"a":1}' ...`, the endpoint has the following endpoint settings:
7749
+ # `'{"a":1}'`. If you then call `modify-endpoint ...
7750
+ # --endpoint-settings '{"b":2}' ...` for the same endpoint, the
7751
+ # endpoint has the following settings: `'{"a":1,"b":2}'`.
7690
7752
  #
7691
7753
  # However, suppose that you follow this with a call to
7692
- # `modify-endpoint ... --endpoint-settings '\{"b":2\}'
7693
- # --exact-settings ...` for that same endpoint again. Then the
7694
- # endpoint has the following settings: `'\{"b":2\}'`. All existing
7695
- # settings are replaced with the exact settings that you specify.
7754
+ # `modify-endpoint ... --endpoint-settings '{"b":2}' --exact-settings
7755
+ # ...` for that same endpoint again. Then the endpoint has the
7756
+ # following settings: `'{"b":2}'`. All existing settings are replaced
7757
+ # with the exact settings that you specify.
7696
7758
  # @return [Boolean]
7697
7759
  #
7698
7760
  # @!attribute [rw] gcp_my_sql_settings
@@ -8130,6 +8192,12 @@ module Aws::DatabaseMigrationService
8130
8192
  # addressing. IPv6 only is not yet supported.
8131
8193
  # @return [String]
8132
8194
  #
8195
+ # @!attribute [rw] kerberos_authentication_settings
8196
+ # Specifies the ID of the secret that stores the key cache file
8197
+ # required for kerberos authentication, when modifying a replication
8198
+ # instance.
8199
+ # @return [Types::KerberosAuthenticationSettings]
8200
+ #
8133
8201
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyReplicationInstanceMessage AWS API Documentation
8134
8202
  #
8135
8203
  class ModifyReplicationInstanceMessage < Struct.new(
@@ -8144,7 +8212,8 @@ module Aws::DatabaseMigrationService
8144
8212
  :allow_major_version_upgrade,
8145
8213
  :auto_minor_version_upgrade,
8146
8214
  :replication_instance_identifier,
8147
- :network_type)
8215
+ :network_type,
8216
+ :kerberos_authentication_settings)
8148
8217
  SENSITIVE = []
8149
8218
  include Aws::Structure
8150
8219
  end
@@ -9028,8 +9097,8 @@ module Aws::DatabaseMigrationService
9028
9097
  # @return [Boolean]
9029
9098
  #
9030
9099
  # @!attribute [rw] archived_logs_only
9031
- # When this field is set to `Y`, DMS only accesses the archived redo
9032
- # logs. If the archived redo logs are stored on Automatic Storage
9100
+ # When this field is set to `True`, DMS only accesses the archived
9101
+ # redo logs. If the archived redo logs are stored on Automatic Storage
9033
9102
  # Management (ASM) only, the DMS user account needs to be granted ASM
9034
9103
  # privileges.
9035
9104
  # @return [Boolean]
@@ -9198,12 +9267,12 @@ module Aws::DatabaseMigrationService
9198
9267
  # @return [String]
9199
9268
  #
9200
9269
  # @!attribute [rw] use_b_file
9201
- # Set this attribute to Y to capture change data using the Binary
9202
- # Reader utility. Set `UseLogminerReader` to N to set this attribute
9203
- # to Y. To use Binary Reader with Amazon RDS for Oracle as the source,
9204
- # you set additional attributes. For more information about using this
9205
- # setting with Oracle Automatic Storage Management (ASM), see [ Using
9206
- # Oracle LogMiner or DMS Binary Reader for CDC][1].
9270
+ # Set this attribute to True to capture change data using the Binary
9271
+ # Reader utility. Set `UseLogminerReader` to False to set this
9272
+ # attribute to True. To use Binary Reader with Amazon RDS for Oracle
9273
+ # as the source, you set additional attributes. For more information
9274
+ # about using this setting with Oracle Automatic Storage Management
9275
+ # (ASM), see [ Using Oracle LogMiner or DMS Binary Reader for CDC][1].
9207
9276
  #
9208
9277
  #
9209
9278
  #
@@ -9211,17 +9280,17 @@ module Aws::DatabaseMigrationService
9211
9280
  # @return [Boolean]
9212
9281
  #
9213
9282
  # @!attribute [rw] use_direct_path_full_load
9214
- # Set this attribute to Y to have DMS use a direct path full load.
9283
+ # Set this attribute to True to have DMS use a direct path full load.
9215
9284
  # Specify this value to use the direct path protocol in the Oracle
9216
9285
  # Call Interface (OCI). By using this OCI protocol, you can bulk-load
9217
9286
  # Oracle target tables during a full load.
9218
9287
  # @return [Boolean]
9219
9288
  #
9220
9289
  # @!attribute [rw] use_logminer_reader
9221
- # Set this attribute to Y to capture change data using the Oracle
9222
- # LogMiner utility (the default). Set this attribute to N if you want
9223
- # to access the redo logs as a binary file. When you set
9224
- # `UseLogminerReader` to N, also set `UseBfile` to Y. For more
9290
+ # Set this attribute to True to capture change data using the Oracle
9291
+ # LogMiner utility (the default). Set this attribute to False if you
9292
+ # want to access the redo logs as a binary file. When you set
9293
+ # `UseLogminerReader` to False, also set `UseBfile` to True. For more
9225
9294
  # information on this setting and using Oracle ASM, see [ Using Oracle
9226
9295
  # LogMiner or DMS Binary Reader for CDC][1] in the *DMS User Guide*.
9227
9296
  #
@@ -9312,13 +9381,15 @@ module Aws::DatabaseMigrationService
9312
9381
  # You can specify an integer value between 0 (the default) and 240
9313
9382
  # (the maximum).
9314
9383
  #
9315
- # <note markdown="1"> This parameter is only valid in DMS version 3.5.0 and later. DMS
9316
- # supports a window of up to 9.5 hours including the value for
9317
- # `OpenTransactionWindow`.
9384
+ # <note markdown="1"> This parameter is only valid in DMS version 3.5.0 and later.
9318
9385
  #
9319
9386
  # </note>
9320
9387
  # @return [Integer]
9321
9388
  #
9389
+ # @!attribute [rw] authentication_method
9390
+ # Specifies using Kerberos authentication with Oracle.
9391
+ # @return [String]
9392
+ #
9322
9393
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/OracleSettings AWS API Documentation
9323
9394
  #
9324
9395
  class OracleSettings < Struct.new(
@@ -9364,7 +9435,8 @@ module Aws::DatabaseMigrationService
9364
9435
  :secrets_manager_oracle_asm_secret_id,
9365
9436
  :trim_space_in_char,
9366
9437
  :convert_timestamp_with_zone_to_utc,
9367
- :open_transaction_window)
9438
+ :open_transaction_window,
9439
+ :authentication_method)
9368
9440
  SENSITIVE = [:asm_password, :password, :security_db_encryption]
9369
9441
  include Aws::Structure
9370
9442
  end
@@ -9517,6 +9589,8 @@ module Aws::DatabaseMigrationService
9517
9589
  # PostgreSQL database when the task starts. You can later remove these
9518
9590
  # artifacts.
9519
9591
  #
9592
+ # The default value is `true`.
9593
+ #
9520
9594
  # If this value is set to `N`, you don't have to create tables or
9521
9595
  # triggers on the source database.
9522
9596
  # @return [Boolean]
@@ -9525,6 +9599,8 @@ module Aws::DatabaseMigrationService
9525
9599
  # Specifies the maximum size (in KB) of any .csv file used to transfer
9526
9600
  # data to PostgreSQL.
9527
9601
  #
9602
+ # The default value is 32,768 KB (32 MB).
9603
+ #
9528
9604
  # Example: `maxFileSize=512`
9529
9605
  # @return [Integer]
9530
9606
  #
@@ -9536,6 +9612,8 @@ module Aws::DatabaseMigrationService
9536
9612
  # The schema in which the operational DDL database artifacts are
9537
9613
  # created.
9538
9614
  #
9615
+ # The default value is `public`.
9616
+ #
9539
9617
  # Example: `ddlArtifactsSchema=xyzddlschema;`
9540
9618
  # @return [String]
9541
9619
  #
@@ -9550,6 +9628,8 @@ module Aws::DatabaseMigrationService
9550
9628
  # When set to `true`, this value causes a task to fail if the actual
9551
9629
  # size of a LOB column is greater than the specified `LobMaxSize`.
9552
9630
  #
9631
+ # The default value is `false`.
9632
+ #
9553
9633
  # If task is set to Limited LOB mode and this option is set to true,
9554
9634
  # the task fails instead of truncating the LOB data.
9555
9635
  # @return [Boolean]
@@ -9560,14 +9640,20 @@ module Aws::DatabaseMigrationService
9560
9640
  # slots from holding onto old WAL logs, which can result in storage
9561
9641
  # full situations on the source. This heartbeat keeps `restart_lsn`
9562
9642
  # moving and prevents storage full scenarios.
9643
+ #
9644
+ # The default value is `false`.
9563
9645
  # @return [Boolean]
9564
9646
  #
9565
9647
  # @!attribute [rw] heartbeat_schema
9566
9648
  # Sets the schema in which the heartbeat artifacts are created.
9649
+ #
9650
+ # The default value is `public`.
9567
9651
  # @return [String]
9568
9652
  #
9569
9653
  # @!attribute [rw] heartbeat_frequency
9570
9654
  # Sets the WAL heartbeat frequency (in minutes).
9655
+ #
9656
+ # The default value is 5 minutes.
9571
9657
  # @return [Integer]
9572
9658
  #
9573
9659
  # @!attribute [rw] password
@@ -9625,6 +9711,8 @@ module Aws::DatabaseMigrationService
9625
9711
  #
9626
9712
  # @!attribute [rw] plugin_name
9627
9713
  # Specifies the plugin to use to create a replication slot.
9714
+ #
9715
+ # The default value is `pglogical`.
9628
9716
  # @return [String]
9629
9717
  #
9630
9718
  # @!attribute [rw] secrets_manager_access_role_arn
@@ -9669,14 +9757,20 @@ module Aws::DatabaseMigrationService
9669
9757
  # default, PostgreSQL migrates booleans as `varchar(5)`. You must set
9670
9758
  # this setting on both the source and target endpoints for it to take
9671
9759
  # effect.
9760
+ #
9761
+ # The default value is `false`.
9672
9762
  # @return [Boolean]
9673
9763
  #
9674
9764
  # @!attribute [rw] map_jsonb_as_clob
9675
9765
  # When true, DMS migrates JSONB values as CLOB.
9766
+ #
9767
+ # The default value is `false`.
9676
9768
  # @return [Boolean]
9677
9769
  #
9678
9770
  # @!attribute [rw] map_long_varchar_as
9679
- # When true, DMS migrates LONG values as VARCHAR.
9771
+ # Sets what datatype to map LONG values as.
9772
+ #
9773
+ # The default value is `wstring`.
9680
9774
  # @return [String]
9681
9775
  #
9682
9776
  # @!attribute [rw] database_mode
@@ -9689,6 +9783,17 @@ module Aws::DatabaseMigrationService
9689
9783
  # The Babelfish for Aurora PostgreSQL database name for the endpoint.
9690
9784
  # @return [String]
9691
9785
  #
9786
+ # @!attribute [rw] disable_unicode_source_filter
9787
+ # Disables the Unicode source filter with PostgreSQL, for values
9788
+ # passed into the Selection rule filter on Source Endpoint column
9789
+ # values. By default DMS performs source filter comparisons using a
9790
+ # Unicode string which can cause look ups to ignore the indexes in the
9791
+ # text columns and slow down migrations.
9792
+ #
9793
+ # Unicode support should only be disabled when using a selection rule
9794
+ # filter is on a text column in the Source database that is indexed.
9795
+ # @return [Boolean]
9796
+ #
9692
9797
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/PostgreSQLSettings AWS API Documentation
9693
9798
  #
9694
9799
  class PostgreSQLSettings < Struct.new(
@@ -9715,7 +9820,8 @@ module Aws::DatabaseMigrationService
9715
9820
  :map_jsonb_as_clob,
9716
9821
  :map_long_varchar_as,
9717
9822
  :database_mode,
9718
- :babelfish_database_name)
9823
+ :babelfish_database_name,
9824
+ :disable_unicode_source_filter)
9719
9825
  SENSITIVE = [:password]
9720
9826
  include Aws::Structure
9721
9827
  end
@@ -10712,7 +10818,7 @@ module Aws::DatabaseMigrationService
10712
10818
  # @return [Types::ReplicationStats]
10713
10819
  #
10714
10820
  # @!attribute [rw] start_replication_type
10715
- # The replication type.
10821
+ # The type of replication to start.
10716
10822
  # @return [String]
10717
10823
  #
10718
10824
  # @!attribute [rw] cdc_start_time
@@ -11033,6 +11139,11 @@ module Aws::DatabaseMigrationService
11033
11139
  # addressing. IPv6 only is not yet supported.
11034
11140
  # @return [String]
11035
11141
  #
11142
+ # @!attribute [rw] kerberos_authentication_settings
11143
+ # Specifies the ID of the secret that stores the key cache file
11144
+ # required for kerberos authentication, when replicating an instance.
11145
+ # @return [Types::KerberosAuthenticationSettings]
11146
+ #
11036
11147
  # @see http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ReplicationInstance AWS API Documentation
11037
11148
  #
11038
11149
  class ReplicationInstance < Struct.new(
@@ -11060,7 +11171,8 @@ module Aws::DatabaseMigrationService
11060
11171
  :secondary_availability_zone,
11061
11172
  :free_until,
11062
11173
  :dns_name_servers,
11063
- :network_type)
11174
+ :network_type,
11175
+ :kerberos_authentication_settings)
11064
11176
  SENSITIVE = []
11065
11177
  include Aws::Structure
11066
11178
  end
@@ -11384,13 +11496,16 @@ module Aws::DatabaseMigrationService
11384
11496
  # The reason the replication task was stopped. This response parameter
11385
11497
  # can return one of the following values:
11386
11498
  #
11387
- # * `"Stop Reason NORMAL"`
11499
+ # * `"Stop Reason NORMAL"` – The task completed successfully with no
11500
+ # additional information returned.
11388
11501
  #
11389
11502
  # * `"Stop Reason RECOVERABLE_ERROR"`
11390
11503
  #
11391
11504
  # * `"Stop Reason FATAL_ERROR"`
11392
11505
  #
11393
- # * `"Stop Reason FULL_LOAD_ONLY_FINISHED"`
11506
+ # * `"Stop Reason FULL_LOAD_ONLY_FINISHED"` – The task completed the
11507
+ # full load phase. DMS applied cached changes if you set
11508
+ # `StopTaskCachedChangesApplied` to `true`.
11394
11509
  #
11395
11510
  # * `"Stop Reason STOPPED_AFTER_FULL_LOAD"` – Full load completed,
11396
11511
  # with cached changes not applied
@@ -11566,7 +11681,7 @@ module Aws::DatabaseMigrationService
11566
11681
  :assessment_results_file,
11567
11682
  :assessment_results,
11568
11683
  :s3_object_url)
11569
- SENSITIVE = []
11684
+ SENSITIVE = [:s3_object_url]
11570
11685
  include Aws::Structure
11571
11686
  end
11572
11687
 
@@ -11618,6 +11733,9 @@ module Aws::DatabaseMigrationService
11618
11733
  #
11619
11734
  # * `"starting"` – The assessment run is starting, but resources are
11620
11735
  # not yet being provisioned for individual assessments.
11736
+ #
11737
+ # * `"warning"` – At least one individual assessment completed with a
11738
+ # `warning` status.
11621
11739
  # @return [String]
11622
11740
  #
11623
11741
  # @!attribute [rw] replication_task_assessment_run_creation_date
@@ -12545,10 +12663,10 @@ module Aws::DatabaseMigrationService
12545
12663
  # this parameter when `DatePartitionedEnabled` is set to `true`, as
12546
12664
  # shown in the following example.
12547
12665
  #
12548
- # `s3-settings='\{"DatePartitionEnabled": true,
12666
+ # `s3-settings='{"DatePartitionEnabled": true,
12549
12667
  # "DatePartitionSequence": "YYYYMMDDHH", "DatePartitionDelimiter":
12550
12668
  # "SLASH", "DatePartitionTimezone":"Asia/Seoul", "BucketName":
12551
- # "dms-nattarat-test"\}'`
12669
+ # "dms-nattarat-test"}'`
12552
12670
  # @return [String]
12553
12671
  #
12554
12672
  # @!attribute [rw] add_trailing_padding_character
@@ -12560,8 +12678,7 @@ module Aws::DatabaseMigrationService
12560
12678
  # To specify a bucket owner and prevent sniping, you can use the
12561
12679
  # `ExpectedBucketOwner` endpoint setting.
12562
12680
  #
12563
- # Example: `--s3-settings='\{"ExpectedBucketOwner":
12564
- # "AWS_Account_ID"\}'`
12681
+ # Example: `--s3-settings='{"ExpectedBucketOwner": "AWS_Account_ID"}'`
12565
12682
  #
12566
12683
  # When you make a request to test a connection or perform a migration,
12567
12684
  # S3 checks the account ID of the bucket owner against the specified
@@ -13136,6 +13253,23 @@ module Aws::DatabaseMigrationService
13136
13253
  #
13137
13254
  # @!attribute [rw] start_replication_type
13138
13255
  # The replication type.
13256
+ #
13257
+ # When the replication type is `full-load` or `full-load-and-cdc`, the
13258
+ # only valid value for the first run of the replication is
13259
+ # `start-replication`. This option will start the replication.
13260
+ #
13261
+ # You can also use ReloadTables to reload specific tables that failed
13262
+ # during replication instead of restarting the replication.
13263
+ #
13264
+ # The `resume-processing` option isn't applicable for a full-load
13265
+ # replication, because you can't resume partially loaded tables
13266
+ # during the full load phase.
13267
+ #
13268
+ # For a `full-load-and-cdc` replication, DMS migrates table data, and
13269
+ # then applies data changes that occur on the source. To load all the
13270
+ # tables again, and start capturing source changes, use
13271
+ # `reload-target`. Otherwise use `resume-processing`, to replicate the
13272
+ # changes from the last stop position.
13139
13273
  # @return [String]
13140
13274
  #
13141
13275
  # @!attribute [rw] cdc_start_time
@@ -13857,7 +13991,7 @@ module Aws::DatabaseMigrationService
13857
13991
  # "dms:". The string can only contain only the set of Unicode
13858
13992
  # letters, digits, white-space, '\_', '.', '/', '=', '+',
13859
13993
  # '-' (Java regular expressions:
13860
- # "^(\[\\\\p\\\{L\\}\\\\p\\\{Z\\}\\\\p\\\{N\\}\_.:/=+\\\\-\]*)$").
13994
+ # "^(\[\\\\p\{L}\\\\p\{Z}\\\\p\{N}\_.:/=+\\\\-\]*)$").
13861
13995
  # @return [String]
13862
13996
  #
13863
13997
  # @!attribute [rw] value
@@ -13866,7 +14000,7 @@ module Aws::DatabaseMigrationService
13866
14000
  # "aws:" or "dms:". The string can only contain only the set of
13867
14001
  # Unicode letters, digits, white-space, '\_', '.', '/', '=',
13868
14002
  # '+', '-' (Java regular expressions:
13869
- # "^(\[\\\\p\\\{L\\}\\\\p\\\{Z\\}\\\\p\\\{N\\}\_.:/=+\\\\-\]*)$").
14003
+ # "^(\[\\\\p\{L}\\\\p\{Z}\\\\p\{N}\_.:/=+\\\\-\]*)$").
13870
14004
  # @return [String]
13871
14005
  #
13872
14006
  # @!attribute [rw] resource_arn
@@ -55,7 +55,7 @@ module Aws::DatabaseMigrationService
55
55
  autoload :EndpointProvider, 'aws-sdk-databasemigrationservice/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-databasemigrationservice/endpoints'
57
57
 
58
- GEM_VERSION = '1.109.0'
58
+ GEM_VERSION = '1.111.0'
59
59
 
60
60
  end
61
61