aws-sdk 2.702.0 → 2.706.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/CHANGELOG.md +24 -1
- package/README.md +1 -1
- package/apis/amplify-2017-07-25.min.json +135 -73
- package/apis/backup-2018-11-15.min.json +64 -31
- package/apis/cloudformation-2010-05-15.min.json +40 -18
- package/apis/codecommit-2015-04-13.min.json +96 -24
- package/apis/codecommit-2015-04-13.paginators.json +5 -0
- package/apis/cognito-idp-2016-04-18.min.json +4 -2
- package/apis/ec2-2016-11-15.min.json +5 -1
- package/apis/elasticmapreduce-2009-03-31.min.json +103 -96
- package/apis/fsx-2018-03-01.min.json +59 -15
- package/apis/glue-2017-03-31.min.json +449 -60
- package/apis/honeycode-2020-03-01.examples.json +5 -0
- package/apis/honeycode-2020-03-01.min.json +182 -0
- package/apis/honeycode-2020-03-01.paginators.json +4 -0
- package/apis/mediatailor-2018-04-23.min.json +42 -23
- package/apis/metadata.json +3 -0
- package/apis/quicksight-2018-04-01.min.json +66 -53
- package/apis/sagemaker-2017-07-24.min.json +146 -129
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/amplify.d.ts +413 -373
- package/clients/autoscaling.d.ts +35 -35
- package/clients/backup.d.ts +68 -15
- package/clients/cloudformation.d.ts +35 -3
- package/clients/codecommit.d.ts +105 -6
- package/clients/dms.d.ts +48 -48
- package/clients/ec2.d.ts +53 -49
- package/clients/emr.d.ts +18 -2
- package/clients/fsx.d.ts +63 -26
- package/clients/glue.d.ts +415 -0
- package/clients/honeycode.d.ts +190 -0
- package/clients/honeycode.js +18 -0
- package/clients/iam.d.ts +15 -15
- package/clients/mediatailor.d.ts +26 -0
- package/clients/organizations.d.ts +21 -21
- package/clients/quicksight.d.ts +33 -19
- package/clients/sagemaker.d.ts +23 -3
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +54 -17
- package/dist/aws-sdk.js +259 -144
- package/dist/aws-sdk.min.js +74 -73
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/codecommit.d.ts
CHANGED
|
@@ -220,27 +220,35 @@ declare class CodeCommit extends Service {
|
|
|
220
220
|
*/
|
|
221
221
|
getBranch(callback?: (err: AWSError, data: CodeCommit.Types.GetBranchOutput) => void): Request<CodeCommit.Types.GetBranchOutput, AWSError>;
|
|
222
222
|
/**
|
|
223
|
-
* Returns the content of a comment made on a change, file, or commit in a repository.
|
|
223
|
+
* Returns the content of a comment made on a change, file, or commit in a repository. Reaction counts might include numbers from user identities who were deleted after the reaction was made. For a count of reactions from active identities, use GetCommentReactions.
|
|
224
224
|
*/
|
|
225
225
|
getComment(params: CodeCommit.Types.GetCommentInput, callback?: (err: AWSError, data: CodeCommit.Types.GetCommentOutput) => void): Request<CodeCommit.Types.GetCommentOutput, AWSError>;
|
|
226
226
|
/**
|
|
227
|
-
* Returns the content of a comment made on a change, file, or commit in a repository.
|
|
227
|
+
* Returns the content of a comment made on a change, file, or commit in a repository. Reaction counts might include numbers from user identities who were deleted after the reaction was made. For a count of reactions from active identities, use GetCommentReactions.
|
|
228
228
|
*/
|
|
229
229
|
getComment(callback?: (err: AWSError, data: CodeCommit.Types.GetCommentOutput) => void): Request<CodeCommit.Types.GetCommentOutput, AWSError>;
|
|
230
230
|
/**
|
|
231
|
-
* Returns information about
|
|
231
|
+
* Returns information about reactions to a specified comment ID. Reactions from users who have been deleted will not be included in the count.
|
|
232
|
+
*/
|
|
233
|
+
getCommentReactions(params: CodeCommit.Types.GetCommentReactionsInput, callback?: (err: AWSError, data: CodeCommit.Types.GetCommentReactionsOutput) => void): Request<CodeCommit.Types.GetCommentReactionsOutput, AWSError>;
|
|
234
|
+
/**
|
|
235
|
+
* Returns information about reactions to a specified comment ID. Reactions from users who have been deleted will not be included in the count.
|
|
236
|
+
*/
|
|
237
|
+
getCommentReactions(callback?: (err: AWSError, data: CodeCommit.Types.GetCommentReactionsOutput) => void): Request<CodeCommit.Types.GetCommentReactionsOutput, AWSError>;
|
|
238
|
+
/**
|
|
239
|
+
* Returns information about comments made on the comparison between two commits. Reaction counts might include numbers from user identities who were deleted after the reaction was made. For a count of reactions from active identities, use GetCommentReactions.
|
|
232
240
|
*/
|
|
233
241
|
getCommentsForComparedCommit(params: CodeCommit.Types.GetCommentsForComparedCommitInput, callback?: (err: AWSError, data: CodeCommit.Types.GetCommentsForComparedCommitOutput) => void): Request<CodeCommit.Types.GetCommentsForComparedCommitOutput, AWSError>;
|
|
234
242
|
/**
|
|
235
|
-
* Returns information about comments made on the comparison between two commits.
|
|
243
|
+
* Returns information about comments made on the comparison between two commits. Reaction counts might include numbers from user identities who were deleted after the reaction was made. For a count of reactions from active identities, use GetCommentReactions.
|
|
236
244
|
*/
|
|
237
245
|
getCommentsForComparedCommit(callback?: (err: AWSError, data: CodeCommit.Types.GetCommentsForComparedCommitOutput) => void): Request<CodeCommit.Types.GetCommentsForComparedCommitOutput, AWSError>;
|
|
238
246
|
/**
|
|
239
|
-
* Returns comments made on a pull request.
|
|
247
|
+
* Returns comments made on a pull request. Reaction counts might include numbers from user identities who were deleted after the reaction was made. For a count of reactions from active identities, use GetCommentReactions.
|
|
240
248
|
*/
|
|
241
249
|
getCommentsForPullRequest(params: CodeCommit.Types.GetCommentsForPullRequestInput, callback?: (err: AWSError, data: CodeCommit.Types.GetCommentsForPullRequestOutput) => void): Request<CodeCommit.Types.GetCommentsForPullRequestOutput, AWSError>;
|
|
242
250
|
/**
|
|
243
|
-
* Returns comments made on a pull request.
|
|
251
|
+
* Returns comments made on a pull request. Reaction counts might include numbers from user identities who were deleted after the reaction was made. For a count of reactions from active identities, use GetCommentReactions.
|
|
244
252
|
*/
|
|
245
253
|
getCommentsForPullRequest(callback?: (err: AWSError, data: CodeCommit.Types.GetCommentsForPullRequestOutput) => void): Request<CodeCommit.Types.GetCommentsForPullRequestOutput, AWSError>;
|
|
246
254
|
/**
|
|
@@ -475,6 +483,14 @@ declare class CodeCommit extends Service {
|
|
|
475
483
|
* Posts a comment in reply to an existing comment on a comparison between commits or a pull request.
|
|
476
484
|
*/
|
|
477
485
|
postCommentReply(callback?: (err: AWSError, data: CodeCommit.Types.PostCommentReplyOutput) => void): Request<CodeCommit.Types.PostCommentReplyOutput, AWSError>;
|
|
486
|
+
/**
|
|
487
|
+
* Adds or updates a reaction to a specified comment for the user whose identity is used to make the request. You can only add or update a reaction for yourself. You cannot add, modify, or delete a reaction for another user.
|
|
488
|
+
*/
|
|
489
|
+
putCommentReaction(params: CodeCommit.Types.PutCommentReactionInput, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
490
|
+
/**
|
|
491
|
+
* Adds or updates a reaction to a specified comment for the user whose identity is used to make the request. You can only add or update a reaction for yourself. You cannot add, modify, or delete a reaction for another user.
|
|
492
|
+
*/
|
|
493
|
+
putCommentReaction(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
478
494
|
/**
|
|
479
495
|
* Adds or updates a file in a branch in an AWS CodeCommit repository, and generates a commit for the addition in the specified branch.
|
|
480
496
|
*/
|
|
@@ -982,6 +998,7 @@ declare namespace CodeCommit {
|
|
|
982
998
|
}
|
|
983
999
|
export type BranchName = string;
|
|
984
1000
|
export type BranchNameList = BranchName[];
|
|
1001
|
+
export type CallerReactions = ReactionValue[];
|
|
985
1002
|
export type CapitalBoolean = boolean;
|
|
986
1003
|
export type ChangeTypeEnum = "A"|"M"|"D"|string;
|
|
987
1004
|
export type ClientRequestToken = string;
|
|
@@ -1020,6 +1037,14 @@ declare namespace CodeCommit {
|
|
|
1020
1037
|
* A unique, client-generated idempotency token that, when provided in a request, ensures the request cannot be repeated with a changed parameter. If a request is received with the same parameters and a token is included, the request returns information about the initial request that used that token.
|
|
1021
1038
|
*/
|
|
1022
1039
|
clientRequestToken?: ClientRequestToken;
|
|
1040
|
+
/**
|
|
1041
|
+
* The emoji reactions to a comment, if any, submitted by the user whose credentials are associated with the call to the API.
|
|
1042
|
+
*/
|
|
1043
|
+
callerReactions?: CallerReactions;
|
|
1044
|
+
/**
|
|
1045
|
+
* A string to integer map that represents the number of individual users who have responded to a comment with the specified reactions.
|
|
1046
|
+
*/
|
|
1047
|
+
reactionCounts?: ReactionCountsMap;
|
|
1023
1048
|
}
|
|
1024
1049
|
export type CommentId = string;
|
|
1025
1050
|
export type Comments = Comment[];
|
|
@@ -1194,6 +1219,7 @@ declare namespace CodeCommit {
|
|
|
1194
1219
|
export type ConflictResolutionStrategyTypeEnum = "NONE"|"ACCEPT_SOURCE"|"ACCEPT_DESTINATION"|"AUTOMERGE"|string;
|
|
1195
1220
|
export type Conflicts = Conflict[];
|
|
1196
1221
|
export type Content = string;
|
|
1222
|
+
export type Count = number;
|
|
1197
1223
|
export interface CreateApprovalRuleTemplateInput {
|
|
1198
1224
|
/**
|
|
1199
1225
|
* The name of the approval rule template. Provide descriptive names, because this name is applied to the approval rules created automatically in associated repositories.
|
|
@@ -1839,6 +1865,34 @@ declare namespace CodeCommit {
|
|
|
1839
1865
|
*/
|
|
1840
1866
|
comment?: Comment;
|
|
1841
1867
|
}
|
|
1868
|
+
export interface GetCommentReactionsInput {
|
|
1869
|
+
/**
|
|
1870
|
+
* The ID of the comment for which you want to get reactions information.
|
|
1871
|
+
*/
|
|
1872
|
+
commentId: CommentId;
|
|
1873
|
+
/**
|
|
1874
|
+
* Optional. The Amazon Resource Name (ARN) of the user or identity for which you want to get reaction information.
|
|
1875
|
+
*/
|
|
1876
|
+
reactionUserArn?: Arn;
|
|
1877
|
+
/**
|
|
1878
|
+
* An enumeration token that, when provided in a request, returns the next batch of the results.
|
|
1879
|
+
*/
|
|
1880
|
+
nextToken?: NextToken;
|
|
1881
|
+
/**
|
|
1882
|
+
* A non-zero, non-negative integer used to limit the number of returned results. The default is the same as the allowed maximum, 1,000.
|
|
1883
|
+
*/
|
|
1884
|
+
maxResults?: MaxResults;
|
|
1885
|
+
}
|
|
1886
|
+
export interface GetCommentReactionsOutput {
|
|
1887
|
+
/**
|
|
1888
|
+
* An array of reactions to the specified comment.
|
|
1889
|
+
*/
|
|
1890
|
+
reactionsForComment: ReactionsForCommentList;
|
|
1891
|
+
/**
|
|
1892
|
+
* An enumeration token that can be used in a request to return the next batch of the results.
|
|
1893
|
+
*/
|
|
1894
|
+
nextToken?: NextToken;
|
|
1895
|
+
}
|
|
1842
1896
|
export interface GetCommentsForComparedCommitInput {
|
|
1843
1897
|
/**
|
|
1844
1898
|
* The name of the repository where you want to compare commits.
|
|
@@ -3158,6 +3212,16 @@ declare namespace CodeCommit {
|
|
|
3158
3212
|
mergeMetadata?: MergeMetadata;
|
|
3159
3213
|
}
|
|
3160
3214
|
export type PullRequestTargetList = PullRequestTarget[];
|
|
3215
|
+
export interface PutCommentReactionInput {
|
|
3216
|
+
/**
|
|
3217
|
+
* The ID of the comment to which you want to add or update a reaction.
|
|
3218
|
+
*/
|
|
3219
|
+
commentId: CommentId;
|
|
3220
|
+
/**
|
|
3221
|
+
* The emoji reaction you want to add or update. To remove a reaction, provide a value of blank or null. You can also provide the value of none. For information about emoji reaction values supported in AWS CodeCommit, see the AWS CodeCommit User Guide.
|
|
3222
|
+
*/
|
|
3223
|
+
reactionValue: ReactionValue;
|
|
3224
|
+
}
|
|
3161
3225
|
export type PutFileEntries = PutFileEntry[];
|
|
3162
3226
|
export interface PutFileEntry {
|
|
3163
3227
|
/**
|
|
@@ -3245,6 +3309,41 @@ declare namespace CodeCommit {
|
|
|
3245
3309
|
*/
|
|
3246
3310
|
configurationId?: RepositoryTriggersConfigurationId;
|
|
3247
3311
|
}
|
|
3312
|
+
export type ReactionCountsMap = {[key: string]: Count};
|
|
3313
|
+
export type ReactionEmoji = string;
|
|
3314
|
+
export interface ReactionForComment {
|
|
3315
|
+
/**
|
|
3316
|
+
* The reaction for a specified comment.
|
|
3317
|
+
*/
|
|
3318
|
+
reaction?: ReactionValueFormats;
|
|
3319
|
+
/**
|
|
3320
|
+
* The Amazon Resource Names (ARNs) of users who have provided reactions to the comment.
|
|
3321
|
+
*/
|
|
3322
|
+
reactionUsers?: ReactionUsersList;
|
|
3323
|
+
/**
|
|
3324
|
+
* A numerical count of users who reacted with the specified emoji whose identities have been subsequently deleted from IAM. While these IAM users or roles no longer exist, the reactions might still appear in total reaction counts.
|
|
3325
|
+
*/
|
|
3326
|
+
reactionsFromDeletedUsersCount?: Count;
|
|
3327
|
+
}
|
|
3328
|
+
export type ReactionShortCode = string;
|
|
3329
|
+
export type ReactionUnicode = string;
|
|
3330
|
+
export type ReactionUsersList = Arn[];
|
|
3331
|
+
export type ReactionValue = string;
|
|
3332
|
+
export interface ReactionValueFormats {
|
|
3333
|
+
/**
|
|
3334
|
+
* The Emoji Version 1.0 graphic of the reaction. These graphics are interpreted slightly differently on different operating systems.
|
|
3335
|
+
*/
|
|
3336
|
+
emoji?: ReactionEmoji;
|
|
3337
|
+
/**
|
|
3338
|
+
* The emoji short code for the reaction. Short codes are interpreted slightly differently on different operating systems.
|
|
3339
|
+
*/
|
|
3340
|
+
shortCode?: ReactionShortCode;
|
|
3341
|
+
/**
|
|
3342
|
+
* The Unicode codepoint for the reaction.
|
|
3343
|
+
*/
|
|
3344
|
+
unicode?: ReactionUnicode;
|
|
3345
|
+
}
|
|
3346
|
+
export type ReactionsForCommentList = ReactionForComment[];
|
|
3248
3347
|
export type ReferenceName = string;
|
|
3249
3348
|
export type RelativeFileVersionEnum = "BEFORE"|"AFTER"|string;
|
|
3250
3349
|
export type ReplaceContentEntries = ReplaceContentEntry[];
|
package/clients/dms.d.ts
CHANGED
|
@@ -567,7 +567,7 @@ declare namespace DMS {
|
|
|
567
567
|
*/
|
|
568
568
|
EndpointArn?: String;
|
|
569
569
|
/**
|
|
570
|
-
* The connection status.
|
|
570
|
+
* The connection status. This parameter can return one of the following values: "successful" "testing" "failed" "deleting"
|
|
571
571
|
*/
|
|
572
572
|
Status?: String;
|
|
573
573
|
/**
|
|
@@ -594,7 +594,7 @@ declare namespace DMS {
|
|
|
594
594
|
*/
|
|
595
595
|
EndpointType: ReplicationEndpointTypeValue;
|
|
596
596
|
/**
|
|
597
|
-
* The type of engine for the endpoint. Valid values, depending on the EndpointType value, include "mysql", "oracle", "postgres", "mariadb", "aurora", "aurora-postgresql", "redshift", "s3", "db2", "azuredb", "sybase", "dynamodb", "mongodb", "kinesis", "kafka", "elasticsearch", "documentdb", and "
|
|
597
|
+
* The type of engine for the endpoint. Valid values, depending on the EndpointType value, include "mysql", "oracle", "postgres", "mariadb", "aurora", "aurora-postgresql", "redshift", "s3", "db2", "azuredb", "sybase", "dynamodb", "mongodb", "kinesis", "kafka", "elasticsearch", "documentdb", "sqlserver", and "neptune".
|
|
598
598
|
*/
|
|
599
599
|
EngineName: String;
|
|
600
600
|
/**
|
|
@@ -662,19 +662,19 @@ declare namespace DMS {
|
|
|
662
662
|
*/
|
|
663
663
|
MongoDbSettings?: MongoDbSettings;
|
|
664
664
|
/**
|
|
665
|
-
* Settings in JSON format for the target endpoint for Amazon Kinesis Data Streams. For more information about the available settings, see Using Amazon Kinesis Data Streams as a Target for AWS Database Migration Service in the AWS Database Migration User Guide.
|
|
665
|
+
* Settings in JSON format for the target endpoint for Amazon Kinesis Data Streams. For more information about the available settings, see Using Amazon Kinesis Data Streams as a Target for AWS Database Migration Service in the AWS Database Migration Service User Guide.
|
|
666
666
|
*/
|
|
667
667
|
KinesisSettings?: KinesisSettings;
|
|
668
668
|
/**
|
|
669
|
-
* Settings in JSON format for the target Apache Kafka endpoint. For more information about the available settings, see Using Apache Kafka as a Target for AWS Database Migration Service in the AWS Database Migration User Guide.
|
|
669
|
+
* Settings in JSON format for the target Apache Kafka endpoint. For more information about the available settings, see Using Apache Kafka as a Target for AWS Database Migration Service in the AWS Database Migration Service User Guide.
|
|
670
670
|
*/
|
|
671
671
|
KafkaSettings?: KafkaSettings;
|
|
672
672
|
/**
|
|
673
|
-
* Settings in JSON format for the target Elasticsearch endpoint. For more information about the available settings, see Extra Connection Attributes When Using Elasticsearch as a Target for AWS DMS in the AWS Database Migration User Guide.
|
|
673
|
+
* Settings in JSON format for the target Elasticsearch endpoint. For more information about the available settings, see Extra Connection Attributes When Using Elasticsearch as a Target for AWS DMS in the AWS Database Migration Service User Guide.
|
|
674
674
|
*/
|
|
675
675
|
ElasticsearchSettings?: ElasticsearchSettings;
|
|
676
676
|
/**
|
|
677
|
-
* Settings in JSON format for the target Amazon Neptune endpoint. For more information about the available settings, see
|
|
677
|
+
* Settings in JSON format for the target Amazon Neptune endpoint. For more information about the available settings, see Specifying Endpoint Settings for Amazon Neptune as a Target in the AWS Database Migration Service User Guide.
|
|
678
678
|
*/
|
|
679
679
|
NeptuneSettings?: NeptuneSettings;
|
|
680
680
|
RedshiftSettings?: RedshiftSettings;
|
|
@@ -723,7 +723,7 @@ declare namespace DMS {
|
|
|
723
723
|
}
|
|
724
724
|
export interface CreateReplicationInstanceMessage {
|
|
725
725
|
/**
|
|
726
|
-
* The replication instance identifier. This parameter is stored as a lowercase string. Constraints: Must contain
|
|
726
|
+
* The replication instance identifier. This parameter is stored as a lowercase string. Constraints: Must contain 1-63 alphanumeric characters or hyphens. First character must be a letter. Can't end with a hyphen or contain two consecutive hyphens. Example: myrepinstance
|
|
727
727
|
*/
|
|
728
728
|
ReplicationInstanceIdentifier: String;
|
|
729
729
|
/**
|
|
@@ -731,7 +731,7 @@ declare namespace DMS {
|
|
|
731
731
|
*/
|
|
732
732
|
AllocatedStorage?: IntegerOptional;
|
|
733
733
|
/**
|
|
734
|
-
* The compute and memory capacity of the replication instance as
|
|
734
|
+
* The compute and memory capacity of the replication instance as defined for the specified replication instance class. For example to specify the instance class dms.c4.large, set this parameter to "dms.c4.large". For more information on the settings and capacities for the available replication instance classes, see Selecting the right AWS DMS replication instance for your migration.
|
|
735
735
|
*/
|
|
736
736
|
ReplicationInstanceClass: String;
|
|
737
737
|
/**
|
|
@@ -775,7 +775,7 @@ declare namespace DMS {
|
|
|
775
775
|
*/
|
|
776
776
|
PubliclyAccessible?: BooleanOptional;
|
|
777
777
|
/**
|
|
778
|
-
* A list of DNS name servers supported for the replication instance.
|
|
778
|
+
* A list of custom DNS name servers supported for the replication instance to access your on-premise source or target database. This list overrides the default name servers supported by the replication instance. You can specify a comma-separated list of internet addresses for up to four on-premise DNS name servers. For example: "1.1.1.1,2.2.2.2,3.3.3.3,4.4.4.4"
|
|
779
779
|
*/
|
|
780
780
|
DnsNameServers?: String;
|
|
781
781
|
}
|
|
@@ -811,7 +811,7 @@ declare namespace DMS {
|
|
|
811
811
|
}
|
|
812
812
|
export interface CreateReplicationTaskMessage {
|
|
813
813
|
/**
|
|
814
|
-
* An identifier for the replication task. Constraints: Must contain
|
|
814
|
+
* An identifier for the replication task. Constraints: Must contain 1-255 alphanumeric characters or hyphens. First character must be a letter. Cannot end with a hyphen or contain two consecutive hyphens.
|
|
815
815
|
*/
|
|
816
816
|
ReplicationTaskIdentifier: String;
|
|
817
817
|
/**
|
|
@@ -831,7 +831,7 @@ declare namespace DMS {
|
|
|
831
831
|
*/
|
|
832
832
|
MigrationType: MigrationTypeValue;
|
|
833
833
|
/**
|
|
834
|
-
* The table mappings for the task, in JSON format. For more information, see Using Table Mapping to Specify Task Settings in the AWS Database Migration User Guide.
|
|
834
|
+
* The table mappings for the task, in JSON format. For more information, see Using Table Mapping to Specify Task Settings in the AWS Database Migration Service User Guide.
|
|
835
835
|
*/
|
|
836
836
|
TableMappings: String;
|
|
837
837
|
/**
|
|
@@ -855,7 +855,7 @@ declare namespace DMS {
|
|
|
855
855
|
*/
|
|
856
856
|
Tags?: TagList;
|
|
857
857
|
/**
|
|
858
|
-
* Supplemental information that the task requires to migrate the data for certain source and target endpoints. For more information, see Specifying Supplemental Data for Task Settings in the AWS Database Migration User Guide.
|
|
858
|
+
* Supplemental information that the task requires to migrate the data for certain source and target endpoints. For more information, see Specifying Supplemental Data for Task Settings in the AWS Database Migration Service User Guide.
|
|
859
859
|
*/
|
|
860
860
|
TaskData?: String;
|
|
861
861
|
}
|
|
@@ -1445,7 +1445,7 @@ declare namespace DMS {
|
|
|
1445
1445
|
*/
|
|
1446
1446
|
EndpointType?: ReplicationEndpointTypeValue;
|
|
1447
1447
|
/**
|
|
1448
|
-
* The database engine name. Valid values, depending on the EndpointType, include "mysql", "oracle", "postgres", "mariadb", "aurora", "aurora-postgresql", "redshift", "s3", "db2", "azuredb", "sybase", "dynamodb", "mongodb", "kinesis", "kafka", "elasticsearch", "documentdb", and "
|
|
1448
|
+
* The database engine name. Valid values, depending on the EndpointType, include "mysql", "oracle", "postgres", "mariadb", "aurora", "aurora-postgresql", "redshift", "s3", "db2", "azuredb", "sybase", "dynamodb", "mongodb", "kinesis", "kafka", "elasticsearch", "documentdb", "sqlserver", and "neptune".
|
|
1449
1449
|
*/
|
|
1450
1450
|
EngineName?: String;
|
|
1451
1451
|
/**
|
|
@@ -1533,7 +1533,7 @@ declare namespace DMS {
|
|
|
1533
1533
|
*/
|
|
1534
1534
|
ElasticsearchSettings?: ElasticsearchSettings;
|
|
1535
1535
|
/**
|
|
1536
|
-
* The settings for the
|
|
1536
|
+
* The settings for the Amazon Neptune target endpoint. For more information, see the NeptuneSettings structure.
|
|
1537
1537
|
*/
|
|
1538
1538
|
NeptuneSettings?: NeptuneSettings;
|
|
1539
1539
|
/**
|
|
@@ -1595,7 +1595,7 @@ declare namespace DMS {
|
|
|
1595
1595
|
*/
|
|
1596
1596
|
Status?: String;
|
|
1597
1597
|
/**
|
|
1598
|
-
* The time the
|
|
1598
|
+
* The time the AWS DMS event notification subscription was created.
|
|
1599
1599
|
*/
|
|
1600
1600
|
SubscriptionCreationTime?: String;
|
|
1601
1601
|
/**
|
|
@@ -1728,7 +1728,7 @@ declare namespace DMS {
|
|
|
1728
1728
|
*/
|
|
1729
1729
|
EndpointType?: ReplicationEndpointTypeValue;
|
|
1730
1730
|
/**
|
|
1731
|
-
* The type of engine for the endpoint. Valid values, depending on the EndpointType, include "mysql", "oracle", "postgres", "mariadb", "aurora", "aurora-postgresql", "redshift", "s3", "db2", "azuredb", "sybase", "dynamodb", "mongodb", "kinesis", "kafka", "elasticsearch", "documentdb", and "
|
|
1731
|
+
* The type of engine for the endpoint. Valid values, depending on the EndpointType, include "mysql", "oracle", "postgres", "mariadb", "aurora", "aurora-postgresql", "redshift", "s3", "db2", "azuredb", "sybase", "dynamodb", "mongodb", "kinesis", "kafka", "elasticsearch", "documentdb", "sqlserver", and "neptune".
|
|
1732
1732
|
*/
|
|
1733
1733
|
EngineName?: String;
|
|
1734
1734
|
/**
|
|
@@ -1788,19 +1788,19 @@ declare namespace DMS {
|
|
|
1788
1788
|
*/
|
|
1789
1789
|
MongoDbSettings?: MongoDbSettings;
|
|
1790
1790
|
/**
|
|
1791
|
-
* Settings in JSON format for the target endpoint for Amazon Kinesis Data Streams. For more information about the available settings, see Using Amazon Kinesis Data Streams as a Target for AWS Database Migration Service in the AWS Database Migration User Guide.
|
|
1791
|
+
* Settings in JSON format for the target endpoint for Amazon Kinesis Data Streams. For more information about the available settings, see Using Amazon Kinesis Data Streams as a Target for AWS Database Migration Service in the AWS Database Migration Service User Guide.
|
|
1792
1792
|
*/
|
|
1793
1793
|
KinesisSettings?: KinesisSettings;
|
|
1794
1794
|
/**
|
|
1795
|
-
* Settings in JSON format for the target Apache Kafka endpoint. For more information about the available settings, see Using Apache Kafka as a Target for AWS Database Migration Service in the AWS Database Migration User Guide.
|
|
1795
|
+
* Settings in JSON format for the target Apache Kafka endpoint. For more information about the available settings, see Using Apache Kafka as a Target for AWS Database Migration Service in the AWS Database Migration Service User Guide.
|
|
1796
1796
|
*/
|
|
1797
1797
|
KafkaSettings?: KafkaSettings;
|
|
1798
1798
|
/**
|
|
1799
|
-
* Settings in JSON format for the target Elasticsearch endpoint. For more information about the available settings, see Extra Connection Attributes When Using Elasticsearch as a Target for AWS DMS in the AWS Database Migration User Guide.
|
|
1799
|
+
* Settings in JSON format for the target Elasticsearch endpoint. For more information about the available settings, see Extra Connection Attributes When Using Elasticsearch as a Target for AWS DMS in the AWS Database Migration Service User Guide.
|
|
1800
1800
|
*/
|
|
1801
1801
|
ElasticsearchSettings?: ElasticsearchSettings;
|
|
1802
1802
|
/**
|
|
1803
|
-
* Settings in JSON format for the target Amazon Neptune endpoint. For more information about the available settings, see
|
|
1803
|
+
* Settings in JSON format for the target Amazon Neptune endpoint. For more information about the available settings, see Specifying Endpoint Settings for Amazon Neptune as a Target in the AWS Database Migration Service User Guide.
|
|
1804
1804
|
*/
|
|
1805
1805
|
NeptuneSettings?: NeptuneSettings;
|
|
1806
1806
|
RedshiftSettings?: RedshiftSettings;
|
|
@@ -1853,7 +1853,7 @@ declare namespace DMS {
|
|
|
1853
1853
|
*/
|
|
1854
1854
|
ApplyImmediately?: Boolean;
|
|
1855
1855
|
/**
|
|
1856
|
-
* The compute and memory capacity of the replication instance
|
|
1856
|
+
* The compute and memory capacity of the replication instance as defined for the specified replication instance class. For example to specify the instance class dms.c4.large, set this parameter to "dms.c4.large". For more information on the settings and capacities for the available replication instance classes, see Selecting the right AWS DMS replication instance for your migration.
|
|
1857
1857
|
*/
|
|
1858
1858
|
ReplicationInstanceClass?: String;
|
|
1859
1859
|
/**
|
|
@@ -1917,7 +1917,7 @@ declare namespace DMS {
|
|
|
1917
1917
|
*/
|
|
1918
1918
|
ReplicationTaskArn: String;
|
|
1919
1919
|
/**
|
|
1920
|
-
* The replication task identifier. Constraints: Must contain
|
|
1920
|
+
* The replication task identifier. Constraints: Must contain 1-255 alphanumeric characters or hyphens. First character must be a letter. Cannot end with a hyphen or contain two consecutive hyphens.
|
|
1921
1921
|
*/
|
|
1922
1922
|
ReplicationTaskIdentifier?: String;
|
|
1923
1923
|
/**
|
|
@@ -1945,7 +1945,7 @@ declare namespace DMS {
|
|
|
1945
1945
|
*/
|
|
1946
1946
|
CdcStopPosition?: String;
|
|
1947
1947
|
/**
|
|
1948
|
-
* Supplemental information that the task requires to migrate the data for certain source and target endpoints. For more information, see Specifying Supplemental Data for Task Settings in the AWS Database Migration User Guide.
|
|
1948
|
+
* Supplemental information that the task requires to migrate the data for certain source and target endpoints. For more information, see Specifying Supplemental Data for Task Settings in the AWS Database Migration Service User Guide.
|
|
1949
1949
|
*/
|
|
1950
1950
|
TaskData?: String;
|
|
1951
1951
|
}
|
|
@@ -1977,27 +1977,27 @@ declare namespace DMS {
|
|
|
1977
1977
|
*/
|
|
1978
1978
|
DatabaseName?: String;
|
|
1979
1979
|
/**
|
|
1980
|
-
* The authentication type you use to access the MongoDB source endpoint.
|
|
1980
|
+
* The authentication type you use to access the MongoDB source endpoint. When when set to "no", user name and password parameters are not used and can be empty.
|
|
1981
1981
|
*/
|
|
1982
1982
|
AuthType?: AuthTypeValue;
|
|
1983
1983
|
/**
|
|
1984
|
-
* The authentication mechanism you use to access the MongoDB source endpoint.
|
|
1984
|
+
* The authentication mechanism you use to access the MongoDB source endpoint. For the default value, in MongoDB version 2.x, "default" is "mongodb_cr". For MongoDB version 3.x or later, "default" is "scram_sha_1". This setting isn't used when AuthType is set to "no".
|
|
1985
1985
|
*/
|
|
1986
1986
|
AuthMechanism?: AuthMechanismValue;
|
|
1987
1987
|
/**
|
|
1988
|
-
* Specifies either document or table mode.
|
|
1988
|
+
* Specifies either document or table mode. Default value is "none". Specify "none" to use document mode. Specify "one" to use table mode.
|
|
1989
1989
|
*/
|
|
1990
1990
|
NestingLevel?: NestingLevelValue;
|
|
1991
1991
|
/**
|
|
1992
|
-
* Specifies the document ID. Use this setting when NestingLevel is set to
|
|
1992
|
+
* Specifies the document ID. Use this setting when NestingLevel is set to "none". Default value is "false".
|
|
1993
1993
|
*/
|
|
1994
1994
|
ExtractDocId?: String;
|
|
1995
1995
|
/**
|
|
1996
|
-
* Indicates the number of documents to preview to determine the document organization. Use this setting when NestingLevel is set to
|
|
1996
|
+
* Indicates the number of documents to preview to determine the document organization. Use this setting when NestingLevel is set to "one". Must be a positive value greater than 0. Default value is 1000.
|
|
1997
1997
|
*/
|
|
1998
1998
|
DocsToInvestigate?: String;
|
|
1999
1999
|
/**
|
|
2000
|
-
* The MongoDB database name. This setting isn't used when
|
|
2000
|
+
* The MongoDB database name. This setting isn't used when AuthType is set to "no". The default is "admin".
|
|
2001
2001
|
*/
|
|
2002
2002
|
AuthSource?: String;
|
|
2003
2003
|
/**
|
|
@@ -2007,15 +2007,15 @@ declare namespace DMS {
|
|
|
2007
2007
|
}
|
|
2008
2008
|
export interface NeptuneSettings {
|
|
2009
2009
|
/**
|
|
2010
|
-
* The ARN of the service role you
|
|
2010
|
+
* The Amazon Resource Name (ARN) of the service role that you created for the Neptune target endpoint. For more information, see Creating an IAM Service Role for Accessing Amazon Neptune as a Target in the AWS Database Migration Service User Guide.
|
|
2011
2011
|
*/
|
|
2012
2012
|
ServiceAccessRoleArn?: String;
|
|
2013
2013
|
/**
|
|
2014
|
-
* The name of the S3 bucket
|
|
2014
|
+
* The name of the Amazon S3 bucket where AWS DMS can temporarily store migrated graph data in .csv files before bulk-loading it to the Neptune target database. AWS DMS maps the SQL source data to graph data before storing it in these .csv files.
|
|
2015
2015
|
*/
|
|
2016
2016
|
S3BucketName: String;
|
|
2017
2017
|
/**
|
|
2018
|
-
* A folder path where you
|
|
2018
|
+
* A folder path where you want AWS DMS to store migrated graph data in the S3 bucket specified by S3BucketName
|
|
2019
2019
|
*/
|
|
2020
2020
|
S3BucketFolder: String;
|
|
2021
2021
|
/**
|
|
@@ -2023,15 +2023,15 @@ declare namespace DMS {
|
|
|
2023
2023
|
*/
|
|
2024
2024
|
ErrorRetryDuration?: IntegerOptional;
|
|
2025
2025
|
/**
|
|
2026
|
-
* The maximum size in
|
|
2026
|
+
* The maximum size in kilobytes of migrated graph data stored in a .csv file before AWS DMS bulk-loads the data to the Neptune target database. The default is 1,048,576 KB. If the bulk load is successful, AWS DMS clears the bucket, ready to store the next batch of migrated graph data.
|
|
2027
2027
|
*/
|
|
2028
2028
|
MaxFileSize?: IntegerOptional;
|
|
2029
2029
|
/**
|
|
2030
|
-
* The number of times for AWS DMS to retry a bulk
|
|
2030
|
+
* The number of times for AWS DMS to retry a bulk load of migrated graph data to the Neptune target database before raising an error. The default is 5.
|
|
2031
2031
|
*/
|
|
2032
2032
|
MaxRetryCount?: IntegerOptional;
|
|
2033
2033
|
/**
|
|
2034
|
-
* If you want IAM authorization enabled for this endpoint, set this parameter to true
|
|
2034
|
+
* If you want AWS Identity and Access Management (IAM) authorization enabled for this endpoint, set this parameter to true. Then attach the appropriate IAM policy document to your service role specified by ServiceAccessRoleArn. The default is false.
|
|
2035
2035
|
*/
|
|
2036
2036
|
IamAuthEnabled?: BooleanOptional;
|
|
2037
2037
|
}
|
|
@@ -2042,7 +2042,7 @@ declare namespace DMS {
|
|
|
2042
2042
|
*/
|
|
2043
2043
|
EngineVersion?: String;
|
|
2044
2044
|
/**
|
|
2045
|
-
* The compute and memory capacity of the replication instance
|
|
2045
|
+
* The compute and memory capacity of the replication instance as defined for the specified replication instance class. For example to specify the instance class dms.c4.large, set this parameter to "dms.c4.large". For more information on the settings and capacities for the available replication instance classes, see Selecting the right AWS DMS replication instance for your migration.
|
|
2046
2046
|
*/
|
|
2047
2047
|
ReplicationInstanceClass?: String;
|
|
2048
2048
|
/**
|
|
@@ -2298,15 +2298,15 @@ declare namespace DMS {
|
|
|
2298
2298
|
export type ReplicationEndpointTypeValue = "source"|"target"|string;
|
|
2299
2299
|
export interface ReplicationInstance {
|
|
2300
2300
|
/**
|
|
2301
|
-
* The replication instance identifier. This parameter is stored as a lowercase string. Constraints: Must contain
|
|
2301
|
+
* The replication instance identifier. This parameter is stored as a lowercase string. Constraints: Must contain 1-63 alphanumeric characters or hyphens. First character must be a letter. Cannot end with a hyphen or contain two consecutive hyphens. Example: myrepinstance
|
|
2302
2302
|
*/
|
|
2303
2303
|
ReplicationInstanceIdentifier?: String;
|
|
2304
2304
|
/**
|
|
2305
|
-
* The compute and memory capacity of the replication instance
|
|
2305
|
+
* The compute and memory capacity of the replication instance as defined for the specified replication instance class. For more information on the settings and capacities for the available replication instance classes, see Selecting the right AWS DMS replication instance for your migration.
|
|
2306
2306
|
*/
|
|
2307
2307
|
ReplicationInstanceClass?: String;
|
|
2308
2308
|
/**
|
|
2309
|
-
* The status of the replication instance.
|
|
2309
|
+
* The status of the replication instance. The possible return values include: "available" "creating" "deleted" "deleting" "failed" "modifying" "upgrading" "rebooting" "resetting-master-credentials" "storage-full" "incompatible-credentials" "incompatible-network" "maintenance"
|
|
2310
2310
|
*/
|
|
2311
2311
|
ReplicationInstanceStatus?: String;
|
|
2312
2312
|
/**
|
|
@@ -2386,7 +2386,7 @@ declare namespace DMS {
|
|
|
2386
2386
|
*/
|
|
2387
2387
|
FreeUntil?: TStamp;
|
|
2388
2388
|
/**
|
|
2389
|
-
* The DNS name servers for the replication instance.
|
|
2389
|
+
* The DNS name servers supported for the replication instance to access your on-premise source or target database.
|
|
2390
2390
|
*/
|
|
2391
2391
|
DnsNameServers?: String;
|
|
2392
2392
|
}
|
|
@@ -2410,7 +2410,7 @@ declare namespace DMS {
|
|
|
2410
2410
|
export type ReplicationInstanceTaskLogsList = ReplicationInstanceTaskLog[];
|
|
2411
2411
|
export interface ReplicationPendingModifiedValues {
|
|
2412
2412
|
/**
|
|
2413
|
-
* The compute and memory capacity of the replication instance
|
|
2413
|
+
* The compute and memory capacity of the replication instance as defined for the specified replication instance class. For more information on the settings and capacities for the available replication instance classes, see Selecting the right AWS DMS replication instance for your migration.
|
|
2414
2414
|
*/
|
|
2415
2415
|
ReplicationInstanceClass?: String;
|
|
2416
2416
|
/**
|
|
@@ -2451,7 +2451,7 @@ declare namespace DMS {
|
|
|
2451
2451
|
export type ReplicationSubnetGroups = ReplicationSubnetGroup[];
|
|
2452
2452
|
export interface ReplicationTask {
|
|
2453
2453
|
/**
|
|
2454
|
-
* The user-assigned replication task identifier or name. Constraints: Must contain
|
|
2454
|
+
* The user-assigned replication task identifier or name. Constraints: Must contain 1-255 alphanumeric characters or hyphens. First character must be a letter. Cannot end with a hyphen or contain two consecutive hyphens.
|
|
2455
2455
|
*/
|
|
2456
2456
|
ReplicationTaskIdentifier?: String;
|
|
2457
2457
|
/**
|
|
@@ -2487,7 +2487,7 @@ declare namespace DMS {
|
|
|
2487
2487
|
*/
|
|
2488
2488
|
LastFailureMessage?: String;
|
|
2489
2489
|
/**
|
|
2490
|
-
* The reason the replication task was stopped.
|
|
2490
|
+
* The reason the replication task was stopped. This response parameter can return one of the following values: "STOP_REASON_FULL_LOAD_COMPLETED" – Full-load migration completed. "STOP_REASON_CACHED_CHANGES_APPLIED" – Change data capture (CDC) load completed. "STOP_REASON_CACHED_CHANGES_NOT_APPLIED" – In a full-load and CDC migration, the full-load stopped as specified before starting the CDC migration. "STOP_REASON_SERVER_TIME" – The migration stopped at the specified server time.
|
|
2491
2491
|
*/
|
|
2492
2492
|
StopReason?: String;
|
|
2493
2493
|
/**
|
|
@@ -2519,7 +2519,7 @@ declare namespace DMS {
|
|
|
2519
2519
|
*/
|
|
2520
2520
|
ReplicationTaskStats?: ReplicationTaskStats;
|
|
2521
2521
|
/**
|
|
2522
|
-
* Supplemental information that the task requires to migrate the data for certain source and target endpoints. For more information, see Specifying Supplemental Data for Task Settings in the AWS Database Migration User Guide.
|
|
2522
|
+
* Supplemental information that the task requires to migrate the data for certain source and target endpoints. For more information, see Specifying Supplemental Data for Task Settings in the AWS Database Migration Service User Guide.
|
|
2523
2523
|
*/
|
|
2524
2524
|
TaskData?: String;
|
|
2525
2525
|
}
|
|
@@ -2773,7 +2773,7 @@ declare namespace DMS {
|
|
|
2773
2773
|
export type SubnetList = Subnet[];
|
|
2774
2774
|
export interface SupportedEndpointType {
|
|
2775
2775
|
/**
|
|
2776
|
-
* The database engine name. Valid values, depending on the EndpointType, include "mysql", "oracle", "postgres", "mariadb", "aurora", "aurora-postgresql", "redshift", "s3", "db2", "azuredb", "sybase", "dynamodb", "mongodb", "kinesis", "kafka", "elasticsearch", "documentdb", and "
|
|
2776
|
+
* The database engine name. Valid values, depending on the EndpointType, include "mysql", "oracle", "postgres", "mariadb", "aurora", "aurora-postgresql", "redshift", "s3", "db2", "azuredb", "sybase", "dynamodb", "mongodb", "kinesis", "kafka", "elasticsearch", "documentdb", "sqlserver", and "neptune".
|
|
2777
2777
|
*/
|
|
2778
2778
|
EngineName?: String;
|
|
2779
2779
|
/**
|
|
@@ -2887,11 +2887,11 @@ declare namespace DMS {
|
|
|
2887
2887
|
}
|
|
2888
2888
|
export interface Tag {
|
|
2889
2889
|
/**
|
|
2890
|
-
* A key is the required name of the tag. The string value can be
|
|
2890
|
+
* A key is the required name of the tag. The string value can be 1-128 Unicode characters in length and can't be prefixed with "aws:" or "dms:". The string can only contain only the set of Unicode letters, digits, white-space, '_', '.', '/', '=', '+', '-' (Java regular expressions: "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-]*)$").
|
|
2891
2891
|
*/
|
|
2892
2892
|
Key?: String;
|
|
2893
2893
|
/**
|
|
2894
|
-
* A value is the optional value of the tag. The string value can be
|
|
2894
|
+
* A value is the optional value of the tag. The string value can be 1-256 Unicode characters in length and can't be prefixed with "aws:" or "dms:". The string can only contain only the set of Unicode letters, digits, white-space, '_', '.', '/', '=', '+', '-' (Java regular expressions: "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-]*)$").
|
|
2895
2895
|
*/
|
|
2896
2896
|
Value?: String;
|
|
2897
2897
|
}
|
|
@@ -2915,7 +2915,7 @@ declare namespace DMS {
|
|
|
2915
2915
|
export type VpcSecurityGroupIdList = String[];
|
|
2916
2916
|
export interface VpcSecurityGroupMembership {
|
|
2917
2917
|
/**
|
|
2918
|
-
* The VPC security group
|
|
2918
|
+
* The VPC security group ID.
|
|
2919
2919
|
*/
|
|
2920
2920
|
VpcSecurityGroupId?: String;
|
|
2921
2921
|
/**
|