@aws-sdk/client-database-migration-service 3.709.0 → 3.712.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +30 -1
- package/dist-es/commands/DescribeReplicationTaskAssessmentResultsCommand.js +2 -1
- package/dist-es/models/models_0.js +18 -0
- package/dist-es/protocols/Aws_json1_1.js +1 -0
- package/dist-types/commands/CreateEndpointCommand.d.ts +10 -0
- package/dist-types/commands/CreateReplicationInstanceCommand.d.ts +10 -0
- package/dist-types/commands/DeleteEndpointCommand.d.ts +5 -0
- package/dist-types/commands/DeleteEventSubscriptionCommand.d.ts +4 -0
- package/dist-types/commands/DeleteReplicationInstanceCommand.d.ts +5 -0
- package/dist-types/commands/DeleteReplicationSubnetGroupCommand.d.ts +4 -0
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +5 -0
- package/dist-types/commands/DescribeReplicationInstancesCommand.d.ts +5 -0
- package/dist-types/commands/DescribeSchemasCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTableStatisticsCommand.d.ts +5 -2
- package/dist-types/commands/ModifyEndpointCommand.d.ts +10 -0
- package/dist-types/commands/ModifyEventSubscriptionCommand.d.ts +4 -0
- package/dist-types/commands/ModifyReplicationInstanceCommand.d.ts +10 -0
- package/dist-types/commands/RebootReplicationInstanceCommand.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +132 -96
- package/dist-types/models/models_1.d.ts +96 -1
- package/dist-types/ts3.4/commands/DescribeSchemasCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTableStatisticsCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +30 -15
- package/dist-types/ts3.4/models/models_1.d.ts +18 -0
- package/package.json +5 -5
|
@@ -460,6 +460,10 @@ export interface ReplicationTaskAssessmentRun {
|
|
|
460
460
|
* <code>"starting"</code> – The assessment run is starting, but resources are not yet
|
|
461
461
|
* being provisioned for individual assessments.</p>
|
|
462
462
|
* </li>
|
|
463
|
+
* <li>
|
|
464
|
+
* <p>
|
|
465
|
+
* <code>"warning"</code> – At least one individual assessment completed with a <code>warning</code> status.</p>
|
|
466
|
+
* </li>
|
|
463
467
|
* </ul>
|
|
464
468
|
* @public
|
|
465
469
|
*/
|
|
@@ -2049,6 +2053,11 @@ export interface KafkaSettings {
|
|
|
2049
2053
|
* @public
|
|
2050
2054
|
*/
|
|
2051
2055
|
SslEndpointIdentificationAlgorithm?: KafkaSslEndpointIdentificationAlgorithm | undefined;
|
|
2056
|
+
/**
|
|
2057
|
+
* <p>Specifies using the large integer value with Kafka.</p>
|
|
2058
|
+
* @public
|
|
2059
|
+
*/
|
|
2060
|
+
UseLargeIntegerValue?: boolean | undefined;
|
|
2052
2061
|
}
|
|
2053
2062
|
/**
|
|
2054
2063
|
* <p>Provides information that describes an Amazon Kinesis Data Stream endpoint. This
|
|
@@ -2126,7 +2135,24 @@ export interface KinesisSettings {
|
|
|
2126
2135
|
* @public
|
|
2127
2136
|
*/
|
|
2128
2137
|
NoHexPrefix?: boolean | undefined;
|
|
2138
|
+
/**
|
|
2139
|
+
* <p>Specifies using the large integer value with Kinesis.</p>
|
|
2140
|
+
* @public
|
|
2141
|
+
*/
|
|
2142
|
+
UseLargeIntegerValue?: boolean | undefined;
|
|
2129
2143
|
}
|
|
2144
|
+
/**
|
|
2145
|
+
* @public
|
|
2146
|
+
* @enum
|
|
2147
|
+
*/
|
|
2148
|
+
export declare const SqlServerAuthenticationMethod: {
|
|
2149
|
+
readonly Kerberos: "kerberos";
|
|
2150
|
+
readonly Password: "password";
|
|
2151
|
+
};
|
|
2152
|
+
/**
|
|
2153
|
+
* @public
|
|
2154
|
+
*/
|
|
2155
|
+
export type SqlServerAuthenticationMethod = (typeof SqlServerAuthenticationMethod)[keyof typeof SqlServerAuthenticationMethod];
|
|
2130
2156
|
/**
|
|
2131
2157
|
* @public
|
|
2132
2158
|
* @enum
|
|
@@ -2300,6 +2326,11 @@ export interface MicrosoftSQLServerSettings {
|
|
|
2300
2326
|
* @public
|
|
2301
2327
|
*/
|
|
2302
2328
|
ForceLobLookup?: boolean | undefined;
|
|
2329
|
+
/**
|
|
2330
|
+
* <p>Specifies using Kerberos authentication with Microsoft SQL Server.</p>
|
|
2331
|
+
* @public
|
|
2332
|
+
*/
|
|
2333
|
+
AuthenticationMethod?: SqlServerAuthenticationMethod | undefined;
|
|
2303
2334
|
}
|
|
2304
2335
|
/**
|
|
2305
2336
|
* <p>Provides information that defines a MongoDB endpoint.</p>
|
|
@@ -2626,6 +2657,18 @@ export interface NeptuneSettings {
|
|
|
2626
2657
|
*/
|
|
2627
2658
|
IamAuthEnabled?: boolean | undefined;
|
|
2628
2659
|
}
|
|
2660
|
+
/**
|
|
2661
|
+
* @public
|
|
2662
|
+
* @enum
|
|
2663
|
+
*/
|
|
2664
|
+
export declare const OracleAuthenticationMethod: {
|
|
2665
|
+
readonly Kerberos: "kerberos";
|
|
2666
|
+
readonly Password: "password";
|
|
2667
|
+
};
|
|
2668
|
+
/**
|
|
2669
|
+
* @public
|
|
2670
|
+
*/
|
|
2671
|
+
export type OracleAuthenticationMethod = (typeof OracleAuthenticationMethod)[keyof typeof OracleAuthenticationMethod];
|
|
2629
2672
|
/**
|
|
2630
2673
|
* @public
|
|
2631
2674
|
* @enum
|
|
@@ -2784,7 +2827,7 @@ export interface OracleSettings {
|
|
|
2784
2827
|
*/
|
|
2785
2828
|
DirectPathNoLog?: boolean | undefined;
|
|
2786
2829
|
/**
|
|
2787
|
-
* <p>When this field is set to <code>
|
|
2830
|
+
* <p>When this field is set to <code>True</code>, DMS only accesses the
|
|
2788
2831
|
* archived redo logs. If the archived redo logs are stored on
|
|
2789
2832
|
* Automatic Storage Management (ASM) only, the DMS user account needs to be
|
|
2790
2833
|
* granted ASM privileges.</p>
|
|
@@ -2946,8 +2989,8 @@ export interface OracleSettings {
|
|
|
2946
2989
|
*/
|
|
2947
2990
|
Username?: string | undefined;
|
|
2948
2991
|
/**
|
|
2949
|
-
* <p>Set this attribute to
|
|
2950
|
-
* <code>UseLogminerReader</code> to
|
|
2992
|
+
* <p>Set this attribute to True to capture change data using the Binary Reader utility. Set
|
|
2993
|
+
* <code>UseLogminerReader</code> to False to set this attribute to True. To use Binary Reader
|
|
2951
2994
|
* with Amazon RDS for Oracle as the source, you set additional attributes. For more information
|
|
2952
2995
|
* about using this setting with Oracle Automatic Storage Management (ASM), see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.CDC"> Using Oracle LogMiner or DMS Binary Reader for
|
|
2953
2996
|
* CDC</a>.</p>
|
|
@@ -2955,16 +2998,16 @@ export interface OracleSettings {
|
|
|
2955
2998
|
*/
|
|
2956
2999
|
UseBFile?: boolean | undefined;
|
|
2957
3000
|
/**
|
|
2958
|
-
* <p>Set this attribute to
|
|
3001
|
+
* <p>Set this attribute to True to have DMS use a direct path full load.
|
|
2959
3002
|
* Specify this value to use the direct path protocol in the Oracle Call Interface (OCI).
|
|
2960
3003
|
* By using this OCI protocol, you can bulk-load Oracle target tables during a full load.</p>
|
|
2961
3004
|
* @public
|
|
2962
3005
|
*/
|
|
2963
3006
|
UseDirectPathFullLoad?: boolean | undefined;
|
|
2964
3007
|
/**
|
|
2965
|
-
* <p>Set this attribute to
|
|
2966
|
-
* default). Set this attribute to
|
|
2967
|
-
* When you set <code>UseLogminerReader</code> to
|
|
3008
|
+
* <p>Set this attribute to True to capture change data using the Oracle LogMiner utility (the
|
|
3009
|
+
* default). Set this attribute to False if you want to access the redo logs as a binary file.
|
|
3010
|
+
* When you set <code>UseLogminerReader</code> to False, also set <code>UseBfile</code> to True. For
|
|
2968
3011
|
* more information on this setting and using Oracle ASM, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.CDC"> Using Oracle LogMiner or DMS Binary Reader for CDC</a> in
|
|
2969
3012
|
* the <i>DMS User Guide</i>.</p>
|
|
2970
3013
|
* @public
|
|
@@ -3037,12 +3080,16 @@ export interface OracleSettings {
|
|
|
3037
3080
|
* <p>You can
|
|
3038
3081
|
* specify an integer value between 0 (the default) and 240 (the maximum). </p>
|
|
3039
3082
|
* <note>
|
|
3040
|
-
* <p>This parameter is only valid in DMS version 3.5.0 and later
|
|
3041
|
-
* a window of up to 9.5 hours including the value for <code>OpenTransactionWindow</code>.</p>
|
|
3083
|
+
* <p>This parameter is only valid in DMS version 3.5.0 and later.</p>
|
|
3042
3084
|
* </note>
|
|
3043
3085
|
* @public
|
|
3044
3086
|
*/
|
|
3045
3087
|
OpenTransactionWindow?: number | undefined;
|
|
3088
|
+
/**
|
|
3089
|
+
* <p>Specifies using Kerberos authentication with Oracle.</p>
|
|
3090
|
+
* @public
|
|
3091
|
+
*/
|
|
3092
|
+
AuthenticationMethod?: OracleAuthenticationMethod | undefined;
|
|
3046
3093
|
}
|
|
3047
3094
|
/**
|
|
3048
3095
|
* @public
|
|
@@ -3101,6 +3148,7 @@ export interface PostgreSQLSettings {
|
|
|
3101
3148
|
* <p>To capture DDL events, DMS creates various artifacts in
|
|
3102
3149
|
* the PostgreSQL database when the task starts. You can later
|
|
3103
3150
|
* remove these artifacts.</p>
|
|
3151
|
+
* <p>The default value is <code>true</code>.</p>
|
|
3104
3152
|
* <p>If this value is set to <code>N</code>, you don't have to create tables or
|
|
3105
3153
|
* triggers on the source database.</p>
|
|
3106
3154
|
* @public
|
|
@@ -3109,6 +3157,7 @@ export interface PostgreSQLSettings {
|
|
|
3109
3157
|
/**
|
|
3110
3158
|
* <p>Specifies the maximum size (in KB) of any .csv file used to
|
|
3111
3159
|
* transfer data to PostgreSQL.</p>
|
|
3160
|
+
* <p>The default value is 32,768 KB (32 MB).</p>
|
|
3112
3161
|
* <p>Example: <code>maxFileSize=512</code>
|
|
3113
3162
|
* </p>
|
|
3114
3163
|
* @public
|
|
@@ -3122,6 +3171,7 @@ export interface PostgreSQLSettings {
|
|
|
3122
3171
|
/**
|
|
3123
3172
|
* <p>The schema in which the operational DDL database artifacts
|
|
3124
3173
|
* are created.</p>
|
|
3174
|
+
* <p>The default value is <code>public</code>.</p>
|
|
3125
3175
|
* <p>Example: <code>ddlArtifactsSchema=xyzddlschema;</code>
|
|
3126
3176
|
* </p>
|
|
3127
3177
|
* @public
|
|
@@ -3139,6 +3189,7 @@ export interface PostgreSQLSettings {
|
|
|
3139
3189
|
* <p>When set to <code>true</code>, this value causes a task to fail if the
|
|
3140
3190
|
* actual size of a LOB column is greater than the specified
|
|
3141
3191
|
* <code>LobMaxSize</code>.</p>
|
|
3192
|
+
* <p>The default value is <code>false</code>.</p>
|
|
3142
3193
|
* <p>If task is set to Limited LOB mode and this option is set to
|
|
3143
3194
|
* true, the task fails instead of truncating the LOB data.</p>
|
|
3144
3195
|
* @public
|
|
@@ -3149,16 +3200,19 @@ export interface PostgreSQLSettings {
|
|
|
3149
3200
|
* it prevents idle logical replication slots from holding onto old WAL logs, which can result in
|
|
3150
3201
|
* storage full situations on the source. This heartbeat keeps <code>restart_lsn</code> moving
|
|
3151
3202
|
* and prevents storage full scenarios.</p>
|
|
3203
|
+
* <p>The default value is <code>false</code>.</p>
|
|
3152
3204
|
* @public
|
|
3153
3205
|
*/
|
|
3154
3206
|
HeartbeatEnable?: boolean | undefined;
|
|
3155
3207
|
/**
|
|
3156
3208
|
* <p>Sets the schema in which the heartbeat artifacts are created.</p>
|
|
3209
|
+
* <p>The default value is <code>public</code>.</p>
|
|
3157
3210
|
* @public
|
|
3158
3211
|
*/
|
|
3159
3212
|
HeartbeatSchema?: string | undefined;
|
|
3160
3213
|
/**
|
|
3161
3214
|
* <p>Sets the WAL heartbeat frequency (in minutes).</p>
|
|
3215
|
+
* <p>The default value is 5 minutes.</p>
|
|
3162
3216
|
* @public
|
|
3163
3217
|
*/
|
|
3164
3218
|
HeartbeatFrequency?: number | undefined;
|
|
@@ -3210,6 +3264,7 @@ export interface PostgreSQLSettings {
|
|
|
3210
3264
|
SlotName?: string | undefined;
|
|
3211
3265
|
/**
|
|
3212
3266
|
* <p>Specifies the plugin to use to create a replication slot.</p>
|
|
3267
|
+
* <p>The default value is <code>pglogical</code>.</p>
|
|
3213
3268
|
* @public
|
|
3214
3269
|
*/
|
|
3215
3270
|
PluginName?: PluginNameValue | undefined;
|
|
@@ -3247,16 +3302,19 @@ export interface PostgreSQLSettings {
|
|
|
3247
3302
|
/**
|
|
3248
3303
|
* <p>When true, lets PostgreSQL migrate the boolean type as boolean. By default, PostgreSQL migrates booleans as
|
|
3249
3304
|
* <code>varchar(5)</code>. You must set this setting on both the source and target endpoints for it to take effect.</p>
|
|
3305
|
+
* <p>The default value is <code>false</code>.</p>
|
|
3250
3306
|
* @public
|
|
3251
3307
|
*/
|
|
3252
3308
|
MapBooleanAsBoolean?: boolean | undefined;
|
|
3253
3309
|
/**
|
|
3254
3310
|
* <p>When true, DMS migrates JSONB values as CLOB.</p>
|
|
3311
|
+
* <p>The default value is <code>false</code>.</p>
|
|
3255
3312
|
* @public
|
|
3256
3313
|
*/
|
|
3257
3314
|
MapJsonbAsClob?: boolean | undefined;
|
|
3258
3315
|
/**
|
|
3259
|
-
* <p>
|
|
3316
|
+
* <p>Sets what datatype to map LONG values as.</p>
|
|
3317
|
+
* <p>The default value is <code>wstring</code>.</p>
|
|
3260
3318
|
* @public
|
|
3261
3319
|
*/
|
|
3262
3320
|
MapLongVarcharAs?: LongVarcharMappingType | undefined;
|
|
@@ -3270,6 +3328,13 @@ export interface PostgreSQLSettings {
|
|
|
3270
3328
|
* @public
|
|
3271
3329
|
*/
|
|
3272
3330
|
BabelfishDatabaseName?: string | undefined;
|
|
3331
|
+
/**
|
|
3332
|
+
* <p>Disables the Unicode source filter with PostgreSQL, for values passed into the Selection rule filter on Source Endpoint column values.
|
|
3333
|
+
* By default DMS performs source filter comparisons using a Unicode string which can cause look ups to ignore the indexes in the text columns and slow down migrations.</p>
|
|
3334
|
+
* <p>Unicode support should only be disabled when using a selection rule filter is on a text column in the Source database that is indexed.</p>
|
|
3335
|
+
* @public
|
|
3336
|
+
*/
|
|
3337
|
+
DisableUnicodeSourceFilter?: boolean | undefined;
|
|
3273
3338
|
}
|
|
3274
3339
|
/**
|
|
3275
3340
|
* @public
|
|
@@ -5825,6 +5890,27 @@ export declare class ReplicationSubnetGroupDoesNotCoverEnoughAZs extends __BaseE
|
|
|
5825
5890
|
*/
|
|
5826
5891
|
constructor(opts: __ExceptionOptionType<ReplicationSubnetGroupDoesNotCoverEnoughAZs, __BaseException>);
|
|
5827
5892
|
}
|
|
5893
|
+
/**
|
|
5894
|
+
* <p>Specifies using Kerberos authentication settings for use with DMS.</p>
|
|
5895
|
+
* @public
|
|
5896
|
+
*/
|
|
5897
|
+
export interface KerberosAuthenticationSettings {
|
|
5898
|
+
/**
|
|
5899
|
+
* <p>Specifies the secret ID of the key cache for the replication instance.</p>
|
|
5900
|
+
* @public
|
|
5901
|
+
*/
|
|
5902
|
+
KeyCacheSecretId?: string | undefined;
|
|
5903
|
+
/**
|
|
5904
|
+
* <p>Specifies the Amazon Resource Name (ARN) of the IAM role that grants Amazon Web Services DMS access to the secret containing key cache file for the replication instance.</p>
|
|
5905
|
+
* @public
|
|
5906
|
+
*/
|
|
5907
|
+
KeyCacheSecretIamArn?: string | undefined;
|
|
5908
|
+
/**
|
|
5909
|
+
* <p>Specifies the ID of the secret that stores the key cache file required for kerberos authentication of the replication instance.</p>
|
|
5910
|
+
* @public
|
|
5911
|
+
*/
|
|
5912
|
+
Krb5FileContents?: string | undefined;
|
|
5913
|
+
}
|
|
5828
5914
|
/**
|
|
5829
5915
|
* <p></p>
|
|
5830
5916
|
* @public
|
|
@@ -5973,6 +6059,11 @@ export interface CreateReplicationInstanceMessage {
|
|
|
5973
6059
|
* @public
|
|
5974
6060
|
*/
|
|
5975
6061
|
NetworkType?: string | undefined;
|
|
6062
|
+
/**
|
|
6063
|
+
* <p>Specifies the ID of the secret that stores the key cache file required for kerberos authentication, when creating a replication instance.</p>
|
|
6064
|
+
* @public
|
|
6065
|
+
*/
|
|
6066
|
+
KerberosAuthenticationSettings?: KerberosAuthenticationSettings | undefined;
|
|
5976
6067
|
}
|
|
5977
6068
|
/**
|
|
5978
6069
|
* <p>Provides information about the values of pending modifications to a replication
|
|
@@ -6358,6 +6449,11 @@ export interface ReplicationInstance {
|
|
|
6358
6449
|
* @public
|
|
6359
6450
|
*/
|
|
6360
6451
|
NetworkType?: string | undefined;
|
|
6452
|
+
/**
|
|
6453
|
+
* <p>Specifies the ID of the secret that stores the key cache file required for kerberos authentication, when replicating an instance.</p>
|
|
6454
|
+
* @public
|
|
6455
|
+
*/
|
|
6456
|
+
KerberosAuthenticationSettings?: KerberosAuthenticationSettings | undefined;
|
|
6361
6457
|
}
|
|
6362
6458
|
/**
|
|
6363
6459
|
* <p></p>
|
|
@@ -6797,8 +6893,7 @@ export interface ReplicationTask {
|
|
|
6797
6893
|
* <ul>
|
|
6798
6894
|
* <li>
|
|
6799
6895
|
* <p>
|
|
6800
|
-
* <code>"Stop Reason NORMAL"</code>
|
|
6801
|
-
* </p>
|
|
6896
|
+
* <code>"Stop Reason NORMAL"</code> – The task completed successfully with no additional information returned.</p>
|
|
6802
6897
|
* </li>
|
|
6803
6898
|
* <li>
|
|
6804
6899
|
* <p>
|
|
@@ -6812,8 +6907,8 @@ export interface ReplicationTask {
|
|
|
6812
6907
|
* </li>
|
|
6813
6908
|
* <li>
|
|
6814
6909
|
* <p>
|
|
6815
|
-
* <code>"Stop Reason FULL_LOAD_ONLY_FINISHED"</code>
|
|
6816
|
-
* </p>
|
|
6910
|
+
* <code>"Stop Reason FULL_LOAD_ONLY_FINISHED"</code> – The task completed the full load phase.
|
|
6911
|
+
* DMS applied cached changes if you set <code>StopTaskCachedChangesApplied</code> to <code>true</code>.</p>
|
|
6817
6912
|
* </li>
|
|
6818
6913
|
* <li>
|
|
6819
6914
|
* <p>
|
|
@@ -7678,7 +7773,7 @@ export interface DescribeDataMigrationsResponse {
|
|
|
7678
7773
|
export interface DescribeDataProvidersMessage {
|
|
7679
7774
|
/**
|
|
7680
7775
|
* <p>Filters applied to the data providers described in the form of key-value pairs.</p>
|
|
7681
|
-
* <p>Valid filter names: data-provider-identifier</p>
|
|
7776
|
+
* <p>Valid filter names and values: data-provider-identifier, data provider arn or name</p>
|
|
7682
7777
|
* @public
|
|
7683
7778
|
*/
|
|
7684
7779
|
Filters?: Filter[] | undefined;
|
|
@@ -9182,6 +9277,7 @@ export interface DescribeFleetAdvisorSchemasResponse {
|
|
|
9182
9277
|
export interface DescribeInstanceProfilesMessage {
|
|
9183
9278
|
/**
|
|
9184
9279
|
* <p>Filters applied to the instance profiles described in the form of key-value pairs.</p>
|
|
9280
|
+
* <p>Valid filter names and values: instance-profile-identifier, instance profile arn or name</p>
|
|
9185
9281
|
* @public
|
|
9186
9282
|
*/
|
|
9187
9283
|
Filters?: Filter[] | undefined;
|
|
@@ -9487,6 +9583,18 @@ export interface DescribeMetadataModelImportsResponse {
|
|
|
9487
9583
|
export interface DescribeMigrationProjectsMessage {
|
|
9488
9584
|
/**
|
|
9489
9585
|
* <p>Filters applied to the migration projects described in the form of key-value pairs.</p>
|
|
9586
|
+
* <p>Valid filter names and values:</p>
|
|
9587
|
+
* <ul>
|
|
9588
|
+
* <li>
|
|
9589
|
+
* <p>instance-profile-identifier, instance profile arn or name</p>
|
|
9590
|
+
* </li>
|
|
9591
|
+
* <li>
|
|
9592
|
+
* <p>data-provider-identifier, data provider arn or name</p>
|
|
9593
|
+
* </li>
|
|
9594
|
+
* <li>
|
|
9595
|
+
* <p>migration-project-identifier, migration project arn or name</p>
|
|
9596
|
+
* </li>
|
|
9597
|
+
* </ul>
|
|
9490
9598
|
* @public
|
|
9491
9599
|
*/
|
|
9492
9600
|
Filters?: Filter[] | undefined;
|
|
@@ -10491,7 +10599,7 @@ export interface Replication {
|
|
|
10491
10599
|
*/
|
|
10492
10600
|
ReplicationStats?: ReplicationStats | undefined;
|
|
10493
10601
|
/**
|
|
10494
|
-
* <p>The replication
|
|
10602
|
+
* <p>The type of replication to start.</p>
|
|
10495
10603
|
* @public
|
|
10496
10604
|
*/
|
|
10497
10605
|
StartReplicationType?: string | undefined;
|
|
@@ -11141,86 +11249,6 @@ export interface DescribeReplicationTasksResponse {
|
|
|
11141
11249
|
*/
|
|
11142
11250
|
ReplicationTasks?: ReplicationTask[] | undefined;
|
|
11143
11251
|
}
|
|
11144
|
-
/**
|
|
11145
|
-
* <p></p>
|
|
11146
|
-
* @public
|
|
11147
|
-
*/
|
|
11148
|
-
export interface DescribeSchemasMessage {
|
|
11149
|
-
/**
|
|
11150
|
-
* <p>The Amazon Resource Name (ARN) string that uniquely identifies the endpoint.</p>
|
|
11151
|
-
* @public
|
|
11152
|
-
*/
|
|
11153
|
-
EndpointArn: string | undefined;
|
|
11154
|
-
/**
|
|
11155
|
-
* <p> The maximum number of records to include in the response. If more records exist than
|
|
11156
|
-
* the specified <code>MaxRecords</code> value, a pagination token called a marker is included
|
|
11157
|
-
* in the response so that the remaining results can be retrieved. </p>
|
|
11158
|
-
* <p>Default: 100</p>
|
|
11159
|
-
* <p>Constraints: Minimum 20, maximum 100.</p>
|
|
11160
|
-
* @public
|
|
11161
|
-
*/
|
|
11162
|
-
MaxRecords?: number | undefined;
|
|
11163
|
-
/**
|
|
11164
|
-
* <p> An optional pagination token provided by a previous request. If this parameter is
|
|
11165
|
-
* specified, the response includes only records beyond the marker, up to the value specified
|
|
11166
|
-
* by <code>MaxRecords</code>. </p>
|
|
11167
|
-
* @public
|
|
11168
|
-
*/
|
|
11169
|
-
Marker?: string | undefined;
|
|
11170
|
-
}
|
|
11171
|
-
/**
|
|
11172
|
-
* <p></p>
|
|
11173
|
-
* @public
|
|
11174
|
-
*/
|
|
11175
|
-
export interface DescribeSchemasResponse {
|
|
11176
|
-
/**
|
|
11177
|
-
* <p> An optional pagination token provided by a previous request. If this parameter is
|
|
11178
|
-
* specified, the response includes only records beyond the marker, up to the value specified
|
|
11179
|
-
* by <code>MaxRecords</code>. </p>
|
|
11180
|
-
* @public
|
|
11181
|
-
*/
|
|
11182
|
-
Marker?: string | undefined;
|
|
11183
|
-
/**
|
|
11184
|
-
* <p>The described schema.</p>
|
|
11185
|
-
* @public
|
|
11186
|
-
*/
|
|
11187
|
-
Schemas?: string[] | undefined;
|
|
11188
|
-
}
|
|
11189
|
-
/**
|
|
11190
|
-
* <p></p>
|
|
11191
|
-
* @public
|
|
11192
|
-
*/
|
|
11193
|
-
export interface DescribeTableStatisticsMessage {
|
|
11194
|
-
/**
|
|
11195
|
-
* <p>The Amazon Resource Name (ARN) of the replication task.</p>
|
|
11196
|
-
* @public
|
|
11197
|
-
*/
|
|
11198
|
-
ReplicationTaskArn: string | undefined;
|
|
11199
|
-
/**
|
|
11200
|
-
* <p> The maximum number of records to include in the response. If more records exist than
|
|
11201
|
-
* the specified <code>MaxRecords</code> value, a pagination token called a marker is included
|
|
11202
|
-
* in the response so that the remaining results can be retrieved. </p>
|
|
11203
|
-
* <p>Default: 100</p>
|
|
11204
|
-
* <p>Constraints: Minimum 20, maximum 500.</p>
|
|
11205
|
-
* @public
|
|
11206
|
-
*/
|
|
11207
|
-
MaxRecords?: number | undefined;
|
|
11208
|
-
/**
|
|
11209
|
-
* <p> An optional pagination token provided by a previous request. If this parameter is
|
|
11210
|
-
* specified, the response includes only records beyond the marker, up to the value specified
|
|
11211
|
-
* by <code>MaxRecords</code>. </p>
|
|
11212
|
-
* @public
|
|
11213
|
-
*/
|
|
11214
|
-
Marker?: string | undefined;
|
|
11215
|
-
/**
|
|
11216
|
-
* <p>Filters applied to table statistics.</p>
|
|
11217
|
-
* <p>Valid filter names: schema-name | table-name | table-state</p>
|
|
11218
|
-
* <p>A combination of filters creates an AND condition where each record matches all
|
|
11219
|
-
* specified filters.</p>
|
|
11220
|
-
* @public
|
|
11221
|
-
*/
|
|
11222
|
-
Filters?: Filter[] | undefined;
|
|
11223
|
-
}
|
|
11224
11252
|
/**
|
|
11225
11253
|
* @internal
|
|
11226
11254
|
*/
|
|
@@ -11313,3 +11341,11 @@ export declare const DescribeDataMigrationsResponseFilterSensitiveLog: (obj: Des
|
|
|
11313
11341
|
* @internal
|
|
11314
11342
|
*/
|
|
11315
11343
|
export declare const DescribeEndpointsResponseFilterSensitiveLog: (obj: DescribeEndpointsResponse) => any;
|
|
11344
|
+
/**
|
|
11345
|
+
* @internal
|
|
11346
|
+
*/
|
|
11347
|
+
export declare const ReplicationTaskAssessmentResultFilterSensitiveLog: (obj: ReplicationTaskAssessmentResult) => any;
|
|
11348
|
+
/**
|
|
11349
|
+
* @internal
|
|
11350
|
+
*/
|
|
11351
|
+
export declare const DescribeReplicationTaskAssessmentResultsResponseFilterSensitiveLog: (obj: DescribeReplicationTaskAssessmentResultsResponse) => any;
|
|
@@ -1,6 +1,86 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { DatabaseMigrationServiceServiceException as __BaseException } from "./DatabaseMigrationServiceServiceException";
|
|
3
|
-
import { Certificate, ComputeConfig, Connection, DataMigration, DataProvider, DataProviderDescriptorDefinition, DataProviderSettings, DmsSslModeValue, DmsTransferSettings, DocDbSettings, DynamoDbSettings, ElasticsearchSettings, Endpoint, EventSubscription, GcpMySQLSettings, IBMDb2Settings, InstanceProfile, KafkaSettings, KinesisSettings, MicrosoftSQLServerSettings, MigrationProject, MigrationTypeValue, MongoDbSettings, MySQLSettings, NeptuneSettings, OracleSettings, PostgreSQLSettings, RecommendationSettings, RedisSettings, RedshiftSettings, RefreshSchemasStatus, Replication, ReplicationConfig, ReplicationEndpointTypeValue, ReplicationInstance, ReplicationSubnetGroup, ReplicationTask, ReplicationTaskAssessmentRun, S3Settings, SCApplicationAttributes, SourceDataSetting, SybaseSettings, TableStatistics, Tag, TimestreamSettings } from "./models_0";
|
|
3
|
+
import { Certificate, ComputeConfig, Connection, DataMigration, DataProvider, DataProviderDescriptorDefinition, DataProviderSettings, DmsSslModeValue, DmsTransferSettings, DocDbSettings, DynamoDbSettings, ElasticsearchSettings, Endpoint, EventSubscription, Filter, GcpMySQLSettings, IBMDb2Settings, InstanceProfile, KafkaSettings, KerberosAuthenticationSettings, KinesisSettings, MicrosoftSQLServerSettings, MigrationProject, MigrationTypeValue, MongoDbSettings, MySQLSettings, NeptuneSettings, OracleSettings, PostgreSQLSettings, RecommendationSettings, RedisSettings, RedshiftSettings, RefreshSchemasStatus, Replication, ReplicationConfig, ReplicationEndpointTypeValue, ReplicationInstance, ReplicationSubnetGroup, ReplicationTask, ReplicationTaskAssessmentRun, S3Settings, SCApplicationAttributes, SourceDataSetting, SybaseSettings, TableStatistics, Tag, TimestreamSettings } from "./models_0";
|
|
4
|
+
/**
|
|
5
|
+
* <p></p>
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface DescribeSchemasMessage {
|
|
9
|
+
/**
|
|
10
|
+
* <p>The Amazon Resource Name (ARN) string that uniquely identifies the endpoint.</p>
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
EndpointArn: string | undefined;
|
|
14
|
+
/**
|
|
15
|
+
* <p> The maximum number of records to include in the response. If more records exist than
|
|
16
|
+
* the specified <code>MaxRecords</code> value, a pagination token called a marker is included
|
|
17
|
+
* in the response so that the remaining results can be retrieved. </p>
|
|
18
|
+
* <p>Default: 100</p>
|
|
19
|
+
* <p>Constraints: Minimum 20, maximum 100.</p>
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
22
|
+
MaxRecords?: number | undefined;
|
|
23
|
+
/**
|
|
24
|
+
* <p> An optional pagination token provided by a previous request. If this parameter is
|
|
25
|
+
* specified, the response includes only records beyond the marker, up to the value specified
|
|
26
|
+
* by <code>MaxRecords</code>. </p>
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
Marker?: string | undefined;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* <p></p>
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
export interface DescribeSchemasResponse {
|
|
36
|
+
/**
|
|
37
|
+
* <p> An optional pagination token provided by a previous request. If this parameter is
|
|
38
|
+
* specified, the response includes only records beyond the marker, up to the value specified
|
|
39
|
+
* by <code>MaxRecords</code>. </p>
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
42
|
+
Marker?: string | undefined;
|
|
43
|
+
/**
|
|
44
|
+
* <p>The described schema.</p>
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
Schemas?: string[] | undefined;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* <p></p>
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
53
|
+
export interface DescribeTableStatisticsMessage {
|
|
54
|
+
/**
|
|
55
|
+
* <p>The Amazon Resource Name (ARN) of the replication task.</p>
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
58
|
+
ReplicationTaskArn: string | undefined;
|
|
59
|
+
/**
|
|
60
|
+
* <p> The maximum number of records to include in the response. If more records exist than
|
|
61
|
+
* the specified <code>MaxRecords</code> value, a pagination token called a marker is included
|
|
62
|
+
* in the response so that the remaining results can be retrieved. </p>
|
|
63
|
+
* <p>Default: 100</p>
|
|
64
|
+
* <p>Constraints: Minimum 20, maximum 500.</p>
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
MaxRecords?: number | undefined;
|
|
68
|
+
/**
|
|
69
|
+
* <p> An optional pagination token provided by a previous request. If this parameter is
|
|
70
|
+
* specified, the response includes only records beyond the marker, up to the value specified
|
|
71
|
+
* by <code>MaxRecords</code>. </p>
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
Marker?: string | undefined;
|
|
75
|
+
/**
|
|
76
|
+
* <p>Filters applied to table statistics.</p>
|
|
77
|
+
* <p>Valid filter names: schema-name | table-name | table-state</p>
|
|
78
|
+
* <p>A combination of filters creates an AND condition where each record matches all
|
|
79
|
+
* specified filters.</p>
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
Filters?: Filter[] | undefined;
|
|
83
|
+
}
|
|
4
84
|
/**
|
|
5
85
|
* <p></p>
|
|
6
86
|
* @public
|
|
@@ -957,6 +1037,11 @@ export interface ModifyReplicationInstanceMessage {
|
|
|
957
1037
|
* @public
|
|
958
1038
|
*/
|
|
959
1039
|
NetworkType?: string | undefined;
|
|
1040
|
+
/**
|
|
1041
|
+
* <p>Specifies the ID of the secret that stores the key cache file required for kerberos authentication, when modifying a replication instance.</p>
|
|
1042
|
+
* @public
|
|
1043
|
+
*/
|
|
1044
|
+
KerberosAuthenticationSettings?: KerberosAuthenticationSettings | undefined;
|
|
960
1045
|
}
|
|
961
1046
|
/**
|
|
962
1047
|
* <p></p>
|
|
@@ -1605,6 +1690,16 @@ export interface StartReplicationMessage {
|
|
|
1605
1690
|
ReplicationConfigArn: string | undefined;
|
|
1606
1691
|
/**
|
|
1607
1692
|
* <p>The replication type.</p>
|
|
1693
|
+
* <p>When the replication type is <code>full-load</code> or <code>full-load-and-cdc</code>, the only valid value
|
|
1694
|
+
* for the first run of the replication is <code>start-replication</code>. This option will start the replication.</p>
|
|
1695
|
+
* <p>You can also use <a>ReloadTables</a> to reload specific tables that failed during replication instead
|
|
1696
|
+
* of restarting the replication.</p>
|
|
1697
|
+
* <p>The <code>resume-processing</code> option isn't applicable for a full-load replication,
|
|
1698
|
+
* because you can't resume partially loaded tables during the full load phase.</p>
|
|
1699
|
+
* <p>For a <code>full-load-and-cdc</code> replication, DMS migrates table data, and then applies data changes
|
|
1700
|
+
* that occur on the source. To load all the tables again, and start capturing source changes,
|
|
1701
|
+
* use <code>reload-target</code>. Otherwise use <code>resume-processing</code>, to replicate the
|
|
1702
|
+
* changes from the last stop position.</p>
|
|
1608
1703
|
* @public
|
|
1609
1704
|
*/
|
|
1610
1705
|
StartReplicationType: string | undefined;
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
DescribeSchemasMessage,
|
|
10
10
|
DescribeSchemasResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface DescribeSchemasCommandInput extends DescribeSchemasMessage {}
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DatabaseMigrationServiceClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
DescribeTableStatisticsMessage,
|
|
10
|
+
DescribeTableStatisticsResponse,
|
|
11
|
+
} from "../models/models_1";
|
|
10
12
|
export { __MetadataBearer };
|
|
11
13
|
export { $Command };
|
|
12
14
|
export interface DescribeTableStatisticsCommandInput
|