aws-sdk 2.705.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 +7 -1
- package/README.md +1 -1
- package/apis/cloudformation-2010-05-15.min.json +40 -18
- package/apis/cognito-idp-2016-04-18.min.json +4 -2
- package/apis/quicksight-2018-04-01.min.json +66 -53
- package/apis/sagemaker-2017-07-24.min.json +146 -129
- package/clients/cloudformation.d.ts +35 -3
- package/clients/dms.d.ts +48 -48
- package/clients/quicksight.d.ts +33 -19
- package/clients/sagemaker.d.ts +23 -3
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +5 -5
- package/dist/aws-sdk.js +47 -23
- package/dist/aws-sdk.min.js +65 -65
- package/lib/core.js +1 -1
- package/package.json +1 -1
|
@@ -293,11 +293,11 @@ declare class CloudFormation extends Service {
|
|
|
293
293
|
*/
|
|
294
294
|
listImports(callback?: (err: AWSError, data: CloudFormation.Types.ListImportsOutput) => void): Request<CloudFormation.Types.ListImportsOutput, AWSError>;
|
|
295
295
|
/**
|
|
296
|
-
* Returns summary information about stack instances that are associated with the specified stack set. You can filter for stack instances that are associated with a specific AWS account name or Region.
|
|
296
|
+
* Returns summary information about stack instances that are associated with the specified stack set. You can filter for stack instances that are associated with a specific AWS account name or Region, or that have a specific status.
|
|
297
297
|
*/
|
|
298
298
|
listStackInstances(params: CloudFormation.Types.ListStackInstancesInput, callback?: (err: AWSError, data: CloudFormation.Types.ListStackInstancesOutput) => void): Request<CloudFormation.Types.ListStackInstancesOutput, AWSError>;
|
|
299
299
|
/**
|
|
300
|
-
* Returns summary information about stack instances that are associated with the specified stack set. You can filter for stack instances that are associated with a specific AWS account name or Region.
|
|
300
|
+
* Returns summary information about stack instances that are associated with the specified stack set. You can filter for stack instances that are associated with a specific AWS account name or Region, or that have a specific status.
|
|
301
301
|
*/
|
|
302
302
|
listStackInstances(callback?: (err: AWSError, data: CloudFormation.Types.ListStackInstancesOutput) => void): Request<CloudFormation.Types.ListStackInstancesOutput, AWSError>;
|
|
303
303
|
/**
|
|
@@ -1681,6 +1681,10 @@ declare namespace CloudFormation {
|
|
|
1681
1681
|
* The maximum number of results to be returned with a single call. If the number of available results exceeds this maximum, the response includes a NextToken value that you can assign to the NextToken request parameter to get the next set of results.
|
|
1682
1682
|
*/
|
|
1683
1683
|
MaxResults?: MaxResults;
|
|
1684
|
+
/**
|
|
1685
|
+
* The status that stack instances are filtered by.
|
|
1686
|
+
*/
|
|
1687
|
+
Filters?: StackInstanceFilters;
|
|
1684
1688
|
/**
|
|
1685
1689
|
* The name of the AWS account that you want to list stack instances for.
|
|
1686
1690
|
*/
|
|
@@ -2226,7 +2230,7 @@ declare namespace CloudFormation {
|
|
|
2226
2230
|
}
|
|
2227
2231
|
export interface ResourceToImport {
|
|
2228
2232
|
/**
|
|
2229
|
-
* The type of resource to import into your stack, such as AWS::S3::Bucket.
|
|
2233
|
+
* The type of resource to import into your stack, such as AWS::S3::Bucket. For a list of supported resource types, see Resources that support import operations in the AWS CloudFormation User Guide.
|
|
2230
2234
|
*/
|
|
2231
2235
|
ResourceType: ResourceType;
|
|
2232
2236
|
/**
|
|
@@ -2511,6 +2515,10 @@ declare namespace CloudFormation {
|
|
|
2511
2515
|
* The status of the stack instance, in terms of its synchronization with its associated stack set. INOPERABLE: A DeleteStackInstances operation has failed and left the stack in an unstable state. Stacks in this state are excluded from further UpdateStackSet operations. You might need to perform a DeleteStackInstances operation, with RetainStacks set to true, to delete the stack instance, and then delete the stack manually. OUTDATED: The stack isn't currently up to date with the stack set because: The associated stack failed during a CreateStackSet or UpdateStackSet operation. The stack was part of a CreateStackSet or UpdateStackSet operation that failed or was stopped before the stack was created or updated. CURRENT: The stack is currently up to date with the stack set.
|
|
2512
2516
|
*/
|
|
2513
2517
|
Status?: StackInstanceStatus;
|
|
2518
|
+
/**
|
|
2519
|
+
* The detailed status of the stack instance.
|
|
2520
|
+
*/
|
|
2521
|
+
StackInstanceStatus?: StackInstanceComprehensiveStatus;
|
|
2514
2522
|
/**
|
|
2515
2523
|
* The explanation for the specific status code that is assigned to this stack instance.
|
|
2516
2524
|
*/
|
|
@@ -2528,6 +2536,26 @@ declare namespace CloudFormation {
|
|
|
2528
2536
|
*/
|
|
2529
2537
|
LastDriftCheckTimestamp?: Timestamp;
|
|
2530
2538
|
}
|
|
2539
|
+
export interface StackInstanceComprehensiveStatus {
|
|
2540
|
+
/**
|
|
2541
|
+
* CANCELLED: The operation in the specified account and Region has been cancelled. This is either because a user has stopped the stack set operation, or because the failure tolerance of the stack set operation has been exceeded. FAILED: The operation in the specified account and Region failed. If the stack set operation fails in enough accounts within a Region, the failure tolerance for the stack set operation as a whole might be exceeded. INOPERABLE: A DeleteStackInstances operation has failed and left the stack in an unstable state. Stacks in this state are excluded from further UpdateStackSet operations. You might need to perform a DeleteStackInstances operation, with RetainStacks set to true, to delete the stack instance, and then delete the stack manually. PENDING: The operation in the specified account and Region has yet to start. RUNNING: The operation in the specified account and Region is currently in progress. SUCCEEDED: The operation in the specified account and Region completed successfully.
|
|
2542
|
+
*/
|
|
2543
|
+
DetailedStatus?: StackInstanceDetailedStatus;
|
|
2544
|
+
}
|
|
2545
|
+
export type StackInstanceDetailedStatus = "PENDING"|"RUNNING"|"SUCCEEDED"|"FAILED"|"CANCELLED"|"INOPERABLE"|string;
|
|
2546
|
+
export interface StackInstanceFilter {
|
|
2547
|
+
/**
|
|
2548
|
+
* The type of filter to apply.
|
|
2549
|
+
*/
|
|
2550
|
+
Name?: StackInstanceFilterName;
|
|
2551
|
+
/**
|
|
2552
|
+
* The status to filter by.
|
|
2553
|
+
*/
|
|
2554
|
+
Values?: StackInstanceFilterValues;
|
|
2555
|
+
}
|
|
2556
|
+
export type StackInstanceFilterName = "DETAILED_STATUS"|string;
|
|
2557
|
+
export type StackInstanceFilterValues = string;
|
|
2558
|
+
export type StackInstanceFilters = StackInstanceFilter[];
|
|
2531
2559
|
export type StackInstanceStatus = "CURRENT"|"OUTDATED"|"INOPERABLE"|string;
|
|
2532
2560
|
export type StackInstanceSummaries = StackInstanceSummary[];
|
|
2533
2561
|
export interface StackInstanceSummary {
|
|
@@ -2555,6 +2583,10 @@ declare namespace CloudFormation {
|
|
|
2555
2583
|
* The explanation for the specific status code assigned to this stack instance.
|
|
2556
2584
|
*/
|
|
2557
2585
|
StatusReason?: Reason;
|
|
2586
|
+
/**
|
|
2587
|
+
* The detailed status of the stack instance.
|
|
2588
|
+
*/
|
|
2589
|
+
StackInstanceStatus?: StackInstanceComprehensiveStatus;
|
|
2558
2590
|
/**
|
|
2559
2591
|
* [Service-managed permissions] The organization root ID or organizational unit (OU) IDs that you specified for DeploymentTargets.
|
|
2560
2592
|
*/
|
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
|
/**
|