cdk-comprehend-s3olap 2.0.15 → 2.0.18
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/.jsii +3 -3
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +15 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +69 -13
- package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.min.json +54 -5
- package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/metadata.json +0 -3
- package/node_modules/aws-sdk/apis/mgn-2020-02-26.min.json +233 -44
- package/node_modules/aws-sdk/apis/mgn-2020-02-26.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/migration-hub-refactor-spaces-2021-10-26.min.json +75 -25
- package/node_modules/aws-sdk/apis/pricing-2017-10-15.min.json +6 -0
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +231 -182
- package/node_modules/aws-sdk/clients/all.d.ts +0 -1
- package/node_modules/aws-sdk/clients/all.js +0 -1
- package/node_modules/aws-sdk/clients/apigateway.d.ts +1 -1
- package/node_modules/aws-sdk/clients/glue.d.ts +106 -2
- package/node_modules/aws-sdk/clients/lookoutequipment.d.ts +69 -1
- package/node_modules/aws-sdk/clients/mediaconvert.d.ts +1 -1
- package/node_modules/aws-sdk/clients/mgn.d.ts +218 -3
- package/node_modules/aws-sdk/clients/migrationhubrefactorspaces.d.ts +70 -8
- package/node_modules/aws-sdk/clients/pricing.d.ts +4 -4
- package/node_modules/aws-sdk/clients/rdsdataservice.d.ts +8 -8
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +69 -8
- package/node_modules/aws-sdk/clients/transfer.d.ts +9 -9
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +20 -55
- package/node_modules/aws-sdk/dist/aws-sdk.js +13 -8
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +6 -6
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +0 -2
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +5 -1
- package/node_modules/aws-sdk/lib/dynamodb/document_client.js +4 -2
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
- package/node_modules/aws-sdk/apis/redshiftserverless-2021-04-21.examples.json +0 -5
- package/node_modules/aws-sdk/apis/redshiftserverless-2021-04-21.min.json +0 -1206
- package/node_modules/aws-sdk/apis/redshiftserverless-2021-04-21.paginators.json +0 -40
- package/node_modules/aws-sdk/clients/redshiftserverless.d.ts +0 -1525
- package/node_modules/aws-sdk/clients/redshiftserverless.js +0 -18
@@ -306,5 +306,4 @@ export import Ivschat = require('./ivschat');
|
|
306
306
|
export import ChimeSDKMediaPipelines = require('./chimesdkmediapipelines');
|
307
307
|
export import EMRServerless = require('./emrserverless');
|
308
308
|
export import M2 = require('./m2');
|
309
|
-
export import RedshiftServerless = require('./redshiftserverless');
|
310
309
|
export import ConnectCampaigns = require('./connectcampaigns');
|
@@ -308,6 +308,5 @@ module.exports = {
|
|
308
308
|
ChimeSDKMediaPipelines: require('./chimesdkmediapipelines'),
|
309
309
|
EMRServerless: require('./emrserverless'),
|
310
310
|
M2: require('./m2'),
|
311
|
-
RedshiftServerless: require('./redshiftserverless'),
|
312
311
|
ConnectCampaigns: require('./connectcampaigns')
|
313
312
|
};
|
@@ -3720,7 +3720,7 @@ declare namespace APIGateway {
|
|
3720
3720
|
export type Timestamp = Date;
|
3721
3721
|
export interface TlsConfig {
|
3722
3722
|
/**
|
3723
|
-
* Specifies whether or not API Gateway skips verification that the certificate for an integration endpoint is issued by a supported certificate authority. This isn’t recommended, but it enables you to use certificates that are signed by private certificate authorities, or certificates that are self-signed. If enabled, API Gateway still performs basic certificate validation, which includes checking the certificate's expiration date, hostname, and presence of a root certificate authority. Supported only for HTTP and HTTP_PROXY integrations.
|
3723
|
+
* Specifies whether or not API Gateway skips verification that the certificate for an integration endpoint is issued by a supported certificate authority. This isn’t recommended, but it enables you to use certificates that are signed by private certificate authorities, or certificates that are self-signed. If enabled, API Gateway still performs basic certificate validation, which includes checking the certificate's expiration date, hostname, and presence of a root certificate authority. Supported only for HTTP and HTTP_PROXY integrations. Enabling insecureSkipVerification isn't recommended, especially for integrations with public HTTPS endpoints. If you enable insecureSkipVerification, you increase the risk of man-in-the-middle attacks.
|
3724
3724
|
*/
|
3725
3725
|
insecureSkipVerification?: Boolean;
|
3726
3726
|
}
|
@@ -1019,6 +1019,14 @@ declare class Glue extends Service {
|
|
1019
1019
|
* Retrieves the names of all crawler resources in this Amazon Web Services account, or the resources with the specified tag. This operation allows you to see which resources are available in your account, and their names. This operation takes the optional Tags field, which you can use as a filter on the response so that tagged resources can be retrieved as a group. If you choose to use tags filtering, only resources with the tag are retrieved.
|
1020
1020
|
*/
|
1021
1021
|
listCrawlers(callback?: (err: AWSError, data: Glue.Types.ListCrawlersResponse) => void): Request<Glue.Types.ListCrawlersResponse, AWSError>;
|
1022
|
+
/**
|
1023
|
+
* Returns all the crawls of a specified crawler. Returns only the crawls that have occurred since the launch date of the crawler history feature, and only retains up to 12 months of crawls. Older crawls will not be returned. You may use this API to: Retrive all the crawls of a specified crawler. Retrieve all the crawls of a specified crawler within a limited count. Retrieve all the crawls of a specified crawler in a specific time range. Retrieve all the crawls of a specified crawler with a particular state, crawl ID, or DPU hour value.
|
1024
|
+
*/
|
1025
|
+
listCrawls(params: Glue.Types.ListCrawlsRequest, callback?: (err: AWSError, data: Glue.Types.ListCrawlsResponse) => void): Request<Glue.Types.ListCrawlsResponse, AWSError>;
|
1026
|
+
/**
|
1027
|
+
* Returns all the crawls of a specified crawler. Returns only the crawls that have occurred since the launch date of the crawler history feature, and only retains up to 12 months of crawls. Older crawls will not be returned. You may use this API to: Retrive all the crawls of a specified crawler. Retrieve all the crawls of a specified crawler within a limited count. Retrieve all the crawls of a specified crawler in a specific time range. Retrieve all the crawls of a specified crawler with a particular state, crawl ID, or DPU hour value.
|
1028
|
+
*/
|
1029
|
+
listCrawls(callback?: (err: AWSError, data: Glue.Types.ListCrawlsResponse) => void): Request<Glue.Types.ListCrawlsResponse, AWSError>;
|
1022
1030
|
/**
|
1023
1031
|
* Lists all the custom patterns that have been created.
|
1024
1032
|
*/
|
@@ -2877,6 +2885,7 @@ declare namespace Glue {
|
|
2877
2885
|
*/
|
2878
2886
|
LogStream?: LogStream;
|
2879
2887
|
}
|
2888
|
+
export type CrawlId = string;
|
2880
2889
|
export type CrawlList = Crawl[];
|
2881
2890
|
export type CrawlState = "RUNNING"|"CANCELLING"|"CANCELLED"|"SUCCEEDED"|"FAILED"|string;
|
2882
2891
|
export interface Crawler {
|
@@ -2957,11 +2966,55 @@ declare namespace Glue {
|
|
2957
2966
|
*/
|
2958
2967
|
CrawlerSecurityConfiguration?: CrawlerSecurityConfiguration;
|
2959
2968
|
/**
|
2960
|
-
* Specifies whether the crawler should use
|
2969
|
+
* Specifies whether the crawler should use Lake Formation credentials for the crawler instead of the IAM role credentials.
|
2961
2970
|
*/
|
2962
2971
|
LakeFormationConfiguration?: LakeFormationConfiguration;
|
2963
2972
|
}
|
2964
2973
|
export type CrawlerConfiguration = string;
|
2974
|
+
export interface CrawlerHistory {
|
2975
|
+
/**
|
2976
|
+
* A UUID identifier for each crawl.
|
2977
|
+
*/
|
2978
|
+
CrawlId?: CrawlId;
|
2979
|
+
/**
|
2980
|
+
* The state of the crawl.
|
2981
|
+
*/
|
2982
|
+
State?: CrawlerHistoryState;
|
2983
|
+
/**
|
2984
|
+
* The date and time on which the crawl started.
|
2985
|
+
*/
|
2986
|
+
StartTime?: Timestamp;
|
2987
|
+
/**
|
2988
|
+
* The date and time on which the crawl ended.
|
2989
|
+
*/
|
2990
|
+
EndTime?: Timestamp;
|
2991
|
+
/**
|
2992
|
+
* A run summary for the specific crawl in JSON. Contains the catalog tables and partitions that were added, updated, or deleted.
|
2993
|
+
*/
|
2994
|
+
Summary?: NameString;
|
2995
|
+
/**
|
2996
|
+
* If an error occurred, the error message associated with the crawl.
|
2997
|
+
*/
|
2998
|
+
ErrorMessage?: DescriptionString;
|
2999
|
+
/**
|
3000
|
+
* The log group associated with the crawl.
|
3001
|
+
*/
|
3002
|
+
LogGroup?: LogGroup;
|
3003
|
+
/**
|
3004
|
+
* The log stream associated with the crawl.
|
3005
|
+
*/
|
3006
|
+
LogStream?: LogStream;
|
3007
|
+
/**
|
3008
|
+
* The prefix for a CloudWatch message about this crawl.
|
3009
|
+
*/
|
3010
|
+
MessagePrefix?: MessagePrefix;
|
3011
|
+
/**
|
3012
|
+
* The number of data processing units (DPU) used in hours for the crawl.
|
3013
|
+
*/
|
3014
|
+
DPUHour?: NonNegativeDouble;
|
3015
|
+
}
|
3016
|
+
export type CrawlerHistoryList = CrawlerHistory[];
|
3017
|
+
export type CrawlerHistoryState = "RUNNING"|"COMPLETED"|"FAILED"|"STOPPED"|string;
|
2965
3018
|
export type CrawlerLineageSettings = "ENABLE"|"DISABLE"|string;
|
2966
3019
|
export type CrawlerList = Crawler[];
|
2967
3020
|
export interface CrawlerMetrics {
|
@@ -3034,6 +3087,21 @@ declare namespace Glue {
|
|
3034
3087
|
*/
|
3035
3088
|
DeltaTargets?: DeltaTargetList;
|
3036
3089
|
}
|
3090
|
+
export interface CrawlsFilter {
|
3091
|
+
/**
|
3092
|
+
* A key used to filter the crawler runs for a specified crawler. Valid values for each of the field names are: CRAWL_ID: A string representing the UUID identifier for a crawl. STATE: A string representing the state of the crawl. START_TIME and END_TIME: The epoch timestamp in milliseconds. DPU_HOUR: The number of data processing unit (DPU) hours used for the crawl.
|
3093
|
+
*/
|
3094
|
+
FieldName?: FieldName;
|
3095
|
+
/**
|
3096
|
+
* A defined comparator that operates on the value. The available operators are: GT: Greater than. GE: Greater than or equal to. LT: Less than. LE: Less than or equal to. EQ: Equal to. NE: Not equal to.
|
3097
|
+
*/
|
3098
|
+
FilterOperator?: FilterOperator;
|
3099
|
+
/**
|
3100
|
+
* The value provided for comparison on the crawl field.
|
3101
|
+
*/
|
3102
|
+
FieldValue?: GenericString;
|
3103
|
+
}
|
3104
|
+
export type CrawlsFilterList = CrawlsFilter[];
|
3037
3105
|
export interface CreateBlueprintRequest {
|
3038
3106
|
/**
|
3039
3107
|
* The name of the blueprint.
|
@@ -3139,6 +3207,9 @@ declare namespace Glue {
|
|
3139
3207
|
* Specifies data lineage configuration settings for the crawler.
|
3140
3208
|
*/
|
3141
3209
|
LineageConfiguration?: LineageConfiguration;
|
3210
|
+
/**
|
3211
|
+
* Specifies Lake Formation configuration settings for the crawler.
|
3212
|
+
*/
|
3142
3213
|
LakeFormationConfiguration?: LakeFormationConfiguration;
|
3143
3214
|
/**
|
3144
3215
|
* Crawler configuration information. This versioned JSON string allows users to specify aspects of a crawler's behavior. For more information, see Configuring a Crawler.
|
@@ -4913,6 +4984,7 @@ declare namespace Glue {
|
|
4913
4984
|
OutputS3Path?: UriString;
|
4914
4985
|
}
|
4915
4986
|
export type ExtendedString = string;
|
4987
|
+
export type FieldName = "CRAWL_ID"|"STATE"|"START_TIME"|"END_TIME"|"DPU_HOUR"|string;
|
4916
4988
|
export type FieldType = string;
|
4917
4989
|
export interface FillMissingValues {
|
4918
4990
|
/**
|
@@ -4967,6 +5039,7 @@ declare namespace Glue {
|
|
4967
5039
|
export type FilterExpressions = FilterExpression[];
|
4968
5040
|
export type FilterLogicalOperator = "AND"|"OR"|string;
|
4969
5041
|
export type FilterOperation = "EQ"|"LT"|"GT"|"LTE"|"GTE"|"REGEX"|"ISNULL"|string;
|
5042
|
+
export type FilterOperator = "GT"|"GE"|"LT"|"LE"|"EQ"|"NE"|string;
|
4970
5043
|
export type FilterString = string;
|
4971
5044
|
export interface FilterValue {
|
4972
5045
|
/**
|
@@ -7365,7 +7438,7 @@ declare namespace Glue {
|
|
7365
7438
|
}
|
7366
7439
|
export interface LakeFormationConfiguration {
|
7367
7440
|
/**
|
7368
|
-
* Specifies whether to use
|
7441
|
+
* Specifies whether to use Lake Formation credentials for the crawler instead of the IAM role credentials.
|
7369
7442
|
*/
|
7370
7443
|
UseLakeFormationCredentials?: NullableBoolean;
|
7371
7444
|
/**
|
@@ -7480,6 +7553,34 @@ declare namespace Glue {
|
|
7480
7553
|
*/
|
7481
7554
|
NextToken?: Token;
|
7482
7555
|
}
|
7556
|
+
export interface ListCrawlsRequest {
|
7557
|
+
/**
|
7558
|
+
* The name of the crawler whose runs you want to retrieve.
|
7559
|
+
*/
|
7560
|
+
CrawlerName: NameString;
|
7561
|
+
/**
|
7562
|
+
* The maximum number of results to return. The default is 20, and maximum is 100.
|
7563
|
+
*/
|
7564
|
+
MaxResults?: PageSize;
|
7565
|
+
/**
|
7566
|
+
* Filters the crawls by the criteria you specify in a list of CrawlsFilter objects.
|
7567
|
+
*/
|
7568
|
+
Filters?: CrawlsFilterList;
|
7569
|
+
/**
|
7570
|
+
* A continuation token, if this is a continuation call.
|
7571
|
+
*/
|
7572
|
+
NextToken?: Token;
|
7573
|
+
}
|
7574
|
+
export interface ListCrawlsResponse {
|
7575
|
+
/**
|
7576
|
+
* A list of CrawlerHistory objects representing the crawl runs that meet your criteria.
|
7577
|
+
*/
|
7578
|
+
Crawls?: CrawlerHistoryList;
|
7579
|
+
/**
|
7580
|
+
* A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.
|
7581
|
+
*/
|
7582
|
+
NextToken?: Token;
|
7583
|
+
}
|
7483
7584
|
export interface ListCustomEntityTypesRequest {
|
7484
7585
|
/**
|
7485
7586
|
* A paginated token to offset the results.
|
@@ -10761,6 +10862,9 @@ declare namespace Glue {
|
|
10761
10862
|
* Specifies data lineage configuration settings for the crawler.
|
10762
10863
|
*/
|
10763
10864
|
LineageConfiguration?: LineageConfiguration;
|
10865
|
+
/**
|
10866
|
+
* Specifies Lake Formation configuration settings for the crawler.
|
10867
|
+
*/
|
10764
10868
|
LakeFormationConfiguration?: LakeFormationConfiguration;
|
10765
10869
|
/**
|
10766
10870
|
* Crawler configuration information. This versioned JSON string allows users to specify aspects of a crawler's behavior. For more information, see Configuring a Crawler.
|
@@ -107,6 +107,14 @@ declare class LookoutEquipment extends Service {
|
|
107
107
|
* Lists all datasets currently available in your account, filtering on the dataset name.
|
108
108
|
*/
|
109
109
|
listDatasets(callback?: (err: AWSError, data: LookoutEquipment.Types.ListDatasetsResponse) => void): Request<LookoutEquipment.Types.ListDatasetsResponse, AWSError>;
|
110
|
+
/**
|
111
|
+
* Lists all inference events that have been found for the specified inference scheduler.
|
112
|
+
*/
|
113
|
+
listInferenceEvents(params: LookoutEquipment.Types.ListInferenceEventsRequest, callback?: (err: AWSError, data: LookoutEquipment.Types.ListInferenceEventsResponse) => void): Request<LookoutEquipment.Types.ListInferenceEventsResponse, AWSError>;
|
114
|
+
/**
|
115
|
+
* Lists all inference events that have been found for the specified inference scheduler.
|
116
|
+
*/
|
117
|
+
listInferenceEvents(callback?: (err: AWSError, data: LookoutEquipment.Types.ListInferenceEventsResponse) => void): Request<LookoutEquipment.Types.ListInferenceEventsResponse, AWSError>;
|
110
118
|
/**
|
111
119
|
* Lists all inference executions that have been performed by the specified inference scheduler.
|
112
120
|
*/
|
@@ -556,7 +564,7 @@ declare namespace LookoutEquipment {
|
|
556
564
|
*/
|
557
565
|
DatasetArn?: DatasetArn;
|
558
566
|
/**
|
559
|
-
* Specifies the time the dataset was created in
|
567
|
+
* Specifies the time the dataset was created in Lookout for Equipment.
|
560
568
|
*/
|
561
569
|
CreatedAt?: Timestamp;
|
562
570
|
/**
|
@@ -758,10 +766,38 @@ declare namespace LookoutEquipment {
|
|
758
766
|
*/
|
759
767
|
TotalNumberOfDuplicateTimestamps: Integer;
|
760
768
|
}
|
769
|
+
export type EventDurationInSeconds = number;
|
761
770
|
export type FileNameTimestampFormat = string;
|
762
771
|
export type Float = number;
|
763
772
|
export type IamRoleArn = string;
|
764
773
|
export type IdempotenceToken = string;
|
774
|
+
export type InferenceEventSummaries = InferenceEventSummary[];
|
775
|
+
export interface InferenceEventSummary {
|
776
|
+
/**
|
777
|
+
* The Amazon Resource Name (ARN) of the inference scheduler being used for the inference event.
|
778
|
+
*/
|
779
|
+
InferenceSchedulerArn?: InferenceSchedulerArn;
|
780
|
+
/**
|
781
|
+
* The name of the inference scheduler being used for the inference events.
|
782
|
+
*/
|
783
|
+
InferenceSchedulerName?: InferenceSchedulerName;
|
784
|
+
/**
|
785
|
+
* Indicates the starting time of an inference event.
|
786
|
+
*/
|
787
|
+
EventStartTime?: Timestamp;
|
788
|
+
/**
|
789
|
+
* Indicates the ending time of an inference event.
|
790
|
+
*/
|
791
|
+
EventEndTime?: Timestamp;
|
792
|
+
/**
|
793
|
+
* An array which specifies the names and values of all sensors contributing to an inference event.
|
794
|
+
*/
|
795
|
+
Diagnostics?: ModelMetrics;
|
796
|
+
/**
|
797
|
+
* Indicates the size of an inference event in seconds.
|
798
|
+
*/
|
799
|
+
EventDurationInSeconds?: EventDurationInSeconds;
|
800
|
+
}
|
765
801
|
export type InferenceExecutionStatus = "IN_PROGRESS"|"SUCCESS"|"FAILED"|string;
|
766
802
|
export type InferenceExecutionSummaries = InferenceExecutionSummary[];
|
767
803
|
export interface InferenceExecutionSummary {
|
@@ -1045,6 +1081,38 @@ declare namespace LookoutEquipment {
|
|
1045
1081
|
*/
|
1046
1082
|
DatasetSummaries?: DatasetSummaries;
|
1047
1083
|
}
|
1084
|
+
export interface ListInferenceEventsRequest {
|
1085
|
+
/**
|
1086
|
+
* An opaque pagination token indicating where to continue the listing of inference events.
|
1087
|
+
*/
|
1088
|
+
NextToken?: NextToken;
|
1089
|
+
/**
|
1090
|
+
* Specifies the maximum number of inference events to list.
|
1091
|
+
*/
|
1092
|
+
MaxResults?: MaxResults;
|
1093
|
+
/**
|
1094
|
+
* The name of the inference scheduler for the inference events listed.
|
1095
|
+
*/
|
1096
|
+
InferenceSchedulerName: InferenceSchedulerIdentifier;
|
1097
|
+
/**
|
1098
|
+
* Lookout for Equipment will return all the inference events with start time equal to or greater than the start time given.
|
1099
|
+
*/
|
1100
|
+
IntervalStartTime: Timestamp;
|
1101
|
+
/**
|
1102
|
+
* Lookout for Equipment will return all the inference events with end time equal to or less than the end time given.
|
1103
|
+
*/
|
1104
|
+
IntervalEndTime: Timestamp;
|
1105
|
+
}
|
1106
|
+
export interface ListInferenceEventsResponse {
|
1107
|
+
/**
|
1108
|
+
* An opaque pagination token indicating where to continue the listing of inference executions.
|
1109
|
+
*/
|
1110
|
+
NextToken?: NextToken;
|
1111
|
+
/**
|
1112
|
+
* Provides an array of information about the individual inference events returned from the ListInferenceEvents operation, including scheduler used, event start time, event end time, diagnostics, and so on.
|
1113
|
+
*/
|
1114
|
+
InferenceEventSummaries?: InferenceEventSummaries;
|
1115
|
+
}
|
1048
1116
|
export interface ListInferenceExecutionsRequest {
|
1049
1117
|
/**
|
1050
1118
|
* An opaque pagination token indicating where to continue the listing of inference executions.
|
@@ -1715,7 +1715,7 @@ declare namespace MediaConvert {
|
|
1715
1715
|
*/
|
1716
1716
|
Mapping?: DolbyVisionMapping;
|
1717
1717
|
/**
|
1718
|
-
* Required when you
|
1718
|
+
* Required when you enable Dolby Vision. Use Profile 5 to include frame-interleaved Dolby Vision metadata in your output. Your input must include Dolby Vision metadata or an HDR10 YUV color space. Use Profile 8.1 to include frame-interleaved Dolby Vision metadata and HDR10 metadata in your output. Your input must include Dolby Vision metadata.
|
1719
1719
|
*/
|
1720
1720
|
Profile?: DolbyVisionProfile;
|
1721
1721
|
}
|
@@ -19,6 +19,14 @@ declare class Mgn extends Service {
|
|
19
19
|
* Allows the user to set the SourceServer.LifeCycle.state property for specific Source Server IDs to one of the following: READY_FOR_TEST or READY_FOR_CUTOVER. This command only works if the Source Server is already launchable (dataReplicationInfo.lagDuration is not null.)
|
20
20
|
*/
|
21
21
|
changeServerLifeCycleState(callback?: (err: AWSError, data: Mgn.Types.SourceServer) => void): Request<Mgn.Types.SourceServer, AWSError>;
|
22
|
+
/**
|
23
|
+
* Creates a new ReplicationConfigurationTemplate.
|
24
|
+
*/
|
25
|
+
createLaunchConfigurationTemplate(params: Mgn.Types.CreateLaunchConfigurationTemplateRequest, callback?: (err: AWSError, data: Mgn.Types.LaunchConfigurationTemplate) => void): Request<Mgn.Types.LaunchConfigurationTemplate, AWSError>;
|
26
|
+
/**
|
27
|
+
* Creates a new ReplicationConfigurationTemplate.
|
28
|
+
*/
|
29
|
+
createLaunchConfigurationTemplate(callback?: (err: AWSError, data: Mgn.Types.LaunchConfigurationTemplate) => void): Request<Mgn.Types.LaunchConfigurationTemplate, AWSError>;
|
22
30
|
/**
|
23
31
|
* Creates a new ReplicationConfigurationTemplate.
|
24
32
|
*/
|
@@ -35,6 +43,14 @@ declare class Mgn extends Service {
|
|
35
43
|
* Deletes a single Job by ID.
|
36
44
|
*/
|
37
45
|
deleteJob(callback?: (err: AWSError, data: Mgn.Types.DeleteJobResponse) => void): Request<Mgn.Types.DeleteJobResponse, AWSError>;
|
46
|
+
/**
|
47
|
+
* Creates a new ReplicationConfigurationTemplate.
|
48
|
+
*/
|
49
|
+
deleteLaunchConfigurationTemplate(params: Mgn.Types.DeleteLaunchConfigurationTemplateRequest, callback?: (err: AWSError, data: Mgn.Types.DeleteLaunchConfigurationTemplateResponse) => void): Request<Mgn.Types.DeleteLaunchConfigurationTemplateResponse, AWSError>;
|
50
|
+
/**
|
51
|
+
* Creates a new ReplicationConfigurationTemplate.
|
52
|
+
*/
|
53
|
+
deleteLaunchConfigurationTemplate(callback?: (err: AWSError, data: Mgn.Types.DeleteLaunchConfigurationTemplateResponse) => void): Request<Mgn.Types.DeleteLaunchConfigurationTemplateResponse, AWSError>;
|
38
54
|
/**
|
39
55
|
* Deletes a single Replication Configuration Template by ID
|
40
56
|
*/
|
@@ -75,6 +91,14 @@ declare class Mgn extends Service {
|
|
75
91
|
* Returns a list of Jobs. Use the JobsID and fromDate and toData filters to limit which jobs are returned. The response is sorted by creationDataTime - latest date first. Jobs are normally created by the StartTest, StartCutover, and TerminateTargetInstances APIs. Jobs are also created by DiagnosticLaunch and TerminateDiagnosticInstances, which are APIs available only to *Support* and only used in response to relevant support tickets.
|
76
92
|
*/
|
77
93
|
describeJobs(callback?: (err: AWSError, data: Mgn.Types.DescribeJobsResponse) => void): Request<Mgn.Types.DescribeJobsResponse, AWSError>;
|
94
|
+
/**
|
95
|
+
* Creates a new ReplicationConfigurationTemplate.
|
96
|
+
*/
|
97
|
+
describeLaunchConfigurationTemplates(params: Mgn.Types.DescribeLaunchConfigurationTemplatesRequest, callback?: (err: AWSError, data: Mgn.Types.DescribeLaunchConfigurationTemplatesResponse) => void): Request<Mgn.Types.DescribeLaunchConfigurationTemplatesResponse, AWSError>;
|
98
|
+
/**
|
99
|
+
* Creates a new ReplicationConfigurationTemplate.
|
100
|
+
*/
|
101
|
+
describeLaunchConfigurationTemplates(callback?: (err: AWSError, data: Mgn.Types.DescribeLaunchConfigurationTemplatesResponse) => void): Request<Mgn.Types.DescribeLaunchConfigurationTemplatesResponse, AWSError>;
|
78
102
|
/**
|
79
103
|
* Lists all ReplicationConfigurationTemplates, filtered by Source Server IDs.
|
80
104
|
*/
|
@@ -219,6 +243,14 @@ declare class Mgn extends Service {
|
|
219
243
|
* Updates multiple LaunchConfigurations by Source Server ID.
|
220
244
|
*/
|
221
245
|
updateLaunchConfiguration(callback?: (err: AWSError, data: Mgn.Types.LaunchConfiguration) => void): Request<Mgn.Types.LaunchConfiguration, AWSError>;
|
246
|
+
/**
|
247
|
+
* Creates a new ReplicationConfigurationTemplate.
|
248
|
+
*/
|
249
|
+
updateLaunchConfigurationTemplate(params: Mgn.Types.UpdateLaunchConfigurationTemplateRequest, callback?: (err: AWSError, data: Mgn.Types.LaunchConfigurationTemplate) => void): Request<Mgn.Types.LaunchConfigurationTemplate, AWSError>;
|
250
|
+
/**
|
251
|
+
* Creates a new ReplicationConfigurationTemplate.
|
252
|
+
*/
|
253
|
+
updateLaunchConfigurationTemplate(callback?: (err: AWSError, data: Mgn.Types.LaunchConfigurationTemplate) => void): Request<Mgn.Types.LaunchConfigurationTemplate, AWSError>;
|
222
254
|
/**
|
223
255
|
* Allows you to update multiple ReplicationConfigurations by Source Server ID.
|
224
256
|
*/
|
@@ -276,7 +308,18 @@ declare namespace Mgn {
|
|
276
308
|
state: ChangeServerLifeCycleStateSourceServerLifecycleState;
|
277
309
|
}
|
278
310
|
export type ChangeServerLifeCycleStateSourceServerLifecycleState = "READY_FOR_TEST"|"READY_FOR_CUTOVER"|"CUTOVER"|string;
|
311
|
+
export type CloudWatchLogGroupName = string;
|
279
312
|
export type Cpus = CPU[];
|
313
|
+
export interface CreateLaunchConfigurationTemplateRequest {
|
314
|
+
/**
|
315
|
+
* Request to associate the default Application Migration Service Security group with the Replication Settings template.
|
316
|
+
*/
|
317
|
+
postLaunchActions?: PostLaunchActions;
|
318
|
+
/**
|
319
|
+
* Request to associate the default Application Migration Service Security group with the Replication Settings template.
|
320
|
+
*/
|
321
|
+
tags?: TagsMap;
|
322
|
+
}
|
280
323
|
export interface CreateReplicationConfigurationTemplateRequest {
|
281
324
|
/**
|
282
325
|
* Request to associate the default Application Migration Service Security group with the Replication Settings template.
|
@@ -362,7 +405,7 @@ declare namespace Mgn {
|
|
362
405
|
/**
|
363
406
|
* Request to query data replication lag duration.
|
364
407
|
*/
|
365
|
-
lagDuration?:
|
408
|
+
lagDuration?: ISO8601DurationString;
|
366
409
|
/**
|
367
410
|
* Request to query data replication last snapshot time.
|
368
411
|
*/
|
@@ -431,6 +474,14 @@ declare namespace Mgn {
|
|
431
474
|
}
|
432
475
|
export interface DeleteJobResponse {
|
433
476
|
}
|
477
|
+
export interface DeleteLaunchConfigurationTemplateRequest {
|
478
|
+
/**
|
479
|
+
* ID of resource to be deleted.
|
480
|
+
*/
|
481
|
+
launchConfigurationTemplateID: LaunchConfigurationTemplateID;
|
482
|
+
}
|
483
|
+
export interface DeleteLaunchConfigurationTemplateResponse {
|
484
|
+
}
|
434
485
|
export interface DeleteReplicationConfigurationTemplateRequest {
|
435
486
|
/**
|
436
487
|
* Request to delete Replication Configuration Template from service by Replication Configuration Template ID.
|
@@ -516,6 +567,30 @@ declare namespace Mgn {
|
|
516
567
|
*/
|
517
568
|
nextToken?: PaginationToken;
|
518
569
|
}
|
570
|
+
export interface DescribeLaunchConfigurationTemplatesRequest {
|
571
|
+
/**
|
572
|
+
* Request to disconnect Source Server from service by Server ID.
|
573
|
+
*/
|
574
|
+
launchConfigurationTemplateIDs?: LaunchConfigurationTemplateIDs;
|
575
|
+
/**
|
576
|
+
* Request to disconnect Source Server from service by Server ID.
|
577
|
+
*/
|
578
|
+
maxResults?: StrictlyPositiveInteger;
|
579
|
+
/**
|
580
|
+
* Request to disconnect Source Server from service by Server ID.
|
581
|
+
*/
|
582
|
+
nextToken?: PaginationToken;
|
583
|
+
}
|
584
|
+
export interface DescribeLaunchConfigurationTemplatesResponse {
|
585
|
+
/**
|
586
|
+
* Request to disconnect Source Server from service by Server ID.
|
587
|
+
*/
|
588
|
+
items?: LaunchConfigurationTemplates;
|
589
|
+
/**
|
590
|
+
* Request to disconnect Source Server from service by Server ID.
|
591
|
+
*/
|
592
|
+
nextToken?: PaginationToken;
|
593
|
+
}
|
519
594
|
export interface DescribeReplicationConfigurationTemplatesRequest {
|
520
595
|
/**
|
521
596
|
* Request to describe Replication Configuration template by max results.
|
@@ -643,6 +718,7 @@ declare namespace Mgn {
|
|
643
718
|
}
|
644
719
|
export type IPsList = BoundedString[];
|
645
720
|
export type ISO8601DatetimeString = string;
|
721
|
+
export type ISO8601DurationString = string;
|
646
722
|
export interface IdentificationHints {
|
647
723
|
/**
|
648
724
|
* AWS Instance ID identification hint.
|
@@ -743,6 +819,28 @@ declare namespace Mgn {
|
|
743
819
|
targetInstanceID?: EC2InstanceID;
|
744
820
|
}
|
745
821
|
export type JobLogs = JobLog[];
|
822
|
+
export interface JobPostLaunchActionsLaunchStatus {
|
823
|
+
/**
|
824
|
+
* Job type.
|
825
|
+
*/
|
826
|
+
executionID?: BoundedString;
|
827
|
+
/**
|
828
|
+
* Job type.
|
829
|
+
*/
|
830
|
+
executionStatus?: PostLaunchActionExecutionStatus;
|
831
|
+
/**
|
832
|
+
* Job type.
|
833
|
+
*/
|
834
|
+
failureReason?: BoundedString;
|
835
|
+
/**
|
836
|
+
* Job type.
|
837
|
+
*/
|
838
|
+
ssmDocument?: SsmDocument;
|
839
|
+
/**
|
840
|
+
* Job type.
|
841
|
+
*/
|
842
|
+
ssmDocumentType?: SsmDocumentType;
|
843
|
+
}
|
746
844
|
export type JobStatus = "PENDING"|"STARTED"|"COMPLETED"|string;
|
747
845
|
export type JobType = "LAUNCH"|"TERMINATE"|string;
|
748
846
|
export type JobsList = Job[];
|
@@ -776,6 +874,7 @@ declare namespace Mgn {
|
|
776
874
|
* Launch configuration name.
|
777
875
|
*/
|
778
876
|
name?: SmallBoundedString;
|
877
|
+
postLaunchActions?: PostLaunchActions;
|
779
878
|
/**
|
780
879
|
* Launch configuration Source Server ID.
|
781
880
|
*/
|
@@ -785,6 +884,27 @@ declare namespace Mgn {
|
|
785
884
|
*/
|
786
885
|
targetInstanceTypeRightSizingMethod?: TargetInstanceTypeRightSizingMethod;
|
787
886
|
}
|
887
|
+
export interface LaunchConfigurationTemplate {
|
888
|
+
/**
|
889
|
+
* Copy Private IP during Launch Configuration.
|
890
|
+
*/
|
891
|
+
arn?: ARN;
|
892
|
+
/**
|
893
|
+
* Copy Private IP during Launch Configuration.
|
894
|
+
*/
|
895
|
+
launchConfigurationTemplateID: LaunchConfigurationTemplateID;
|
896
|
+
/**
|
897
|
+
* Copy Private IP during Launch Configuration.
|
898
|
+
*/
|
899
|
+
postLaunchActions?: PostLaunchActions;
|
900
|
+
/**
|
901
|
+
* Copy Private IP during Launch Configuration.
|
902
|
+
*/
|
903
|
+
tags?: TagsMap;
|
904
|
+
}
|
905
|
+
export type LaunchConfigurationTemplateID = string;
|
906
|
+
export type LaunchConfigurationTemplateIDs = LaunchConfigurationTemplateID[];
|
907
|
+
export type LaunchConfigurationTemplates = LaunchConfigurationTemplate[];
|
788
908
|
export type LaunchDisposition = "STOPPED"|"STARTED"|string;
|
789
909
|
export type LaunchStatus = "PENDING"|"IN_PROGRESS"|"LAUNCHED"|"FAILED"|"TERMINATED"|string;
|
790
910
|
export interface LaunchedInstance {
|
@@ -815,7 +935,7 @@ declare namespace Mgn {
|
|
815
935
|
/**
|
816
936
|
* Lifecycle elapsed time and duration.
|
817
937
|
*/
|
818
|
-
elapsedReplicationDuration?:
|
938
|
+
elapsedReplicationDuration?: ISO8601DurationString;
|
819
939
|
/**
|
820
940
|
* Lifecycle replication initiation date and time.
|
821
941
|
*/
|
@@ -959,10 +1079,53 @@ declare namespace Mgn {
|
|
959
1079
|
/**
|
960
1080
|
* Participating server Source Server ID.
|
961
1081
|
*/
|
962
|
-
|
1082
|
+
launchedEc2InstanceID?: EC2InstanceID;
|
1083
|
+
/**
|
1084
|
+
* Participating server Source Server ID.
|
1085
|
+
*/
|
1086
|
+
postLaunchActionsStatus?: PostLaunchActionsStatus;
|
1087
|
+
/**
|
1088
|
+
* Participating server Source Server ID.
|
1089
|
+
*/
|
1090
|
+
sourceServerID: SourceServerID;
|
963
1091
|
}
|
964
1092
|
export type ParticipatingServers = ParticipatingServer[];
|
965
1093
|
export type PositiveInteger = number;
|
1094
|
+
export type PostLaunchActionExecutionStatus = "IN_PROGRESS"|"SUCCESS"|"FAILED"|string;
|
1095
|
+
export interface PostLaunchActions {
|
1096
|
+
/**
|
1097
|
+
* Server participating in Job.
|
1098
|
+
*/
|
1099
|
+
cloudWatchLogGroupName?: CloudWatchLogGroupName;
|
1100
|
+
/**
|
1101
|
+
* Server participating in Job.
|
1102
|
+
*/
|
1103
|
+
deployment?: PostLaunchActionsDeploymentType;
|
1104
|
+
/**
|
1105
|
+
* Server participating in Job.
|
1106
|
+
*/
|
1107
|
+
s3LogBucket?: S3LogBucketName;
|
1108
|
+
/**
|
1109
|
+
* Server participating in Job.
|
1110
|
+
*/
|
1111
|
+
s3OutputKeyPrefix?: BoundedString;
|
1112
|
+
/**
|
1113
|
+
* Server participating in Job.
|
1114
|
+
*/
|
1115
|
+
ssmDocuments?: SsmDocuments;
|
1116
|
+
}
|
1117
|
+
export type PostLaunchActionsDeploymentType = "TEST_AND_CUTOVER"|"CUTOVER_ONLY"|string;
|
1118
|
+
export type PostLaunchActionsLaunchStatusList = JobPostLaunchActionsLaunchStatus[];
|
1119
|
+
export interface PostLaunchActionsStatus {
|
1120
|
+
/**
|
1121
|
+
* Server participating in Job.
|
1122
|
+
*/
|
1123
|
+
postLaunchActionsLaunchStatusList?: PostLaunchActionsLaunchStatusList;
|
1124
|
+
/**
|
1125
|
+
* Server participating in Job.
|
1126
|
+
*/
|
1127
|
+
ssmAgentDiscoveryDatetime?: ISO8601DatetimeString;
|
1128
|
+
}
|
966
1129
|
export interface ReplicationConfiguration {
|
967
1130
|
/**
|
968
1131
|
* Replication Configuration associate default Application Migration Service Security Group.
|
@@ -1126,6 +1289,7 @@ declare namespace Mgn {
|
|
1126
1289
|
*/
|
1127
1290
|
sourceServerID: SourceServerID;
|
1128
1291
|
}
|
1292
|
+
export type S3LogBucketName = string;
|
1129
1293
|
export type SecurityGroupID = string;
|
1130
1294
|
export type SmallBoundedString = string;
|
1131
1295
|
export interface SourceProperties {
|
@@ -1206,6 +1370,46 @@ declare namespace Mgn {
|
|
1206
1370
|
}
|
1207
1371
|
export type SourceServerID = string;
|
1208
1372
|
export type SourceServersList = SourceServer[];
|
1373
|
+
export interface SsmDocument {
|
1374
|
+
/**
|
1375
|
+
* Source server replication type.
|
1376
|
+
*/
|
1377
|
+
actionName: BoundedString;
|
1378
|
+
/**
|
1379
|
+
* Source server replication type.
|
1380
|
+
*/
|
1381
|
+
mustSucceedForCutover?: Boolean;
|
1382
|
+
/**
|
1383
|
+
* Source server replication type.
|
1384
|
+
*/
|
1385
|
+
parameters?: SsmDocumentParameters;
|
1386
|
+
/**
|
1387
|
+
* Source server replication type.
|
1388
|
+
*/
|
1389
|
+
ssmDocumentName: SsmDocumentName;
|
1390
|
+
/**
|
1391
|
+
* Source server replication type.
|
1392
|
+
*/
|
1393
|
+
timeoutSeconds?: StrictlyPositiveInteger;
|
1394
|
+
}
|
1395
|
+
export type SsmDocumentName = string;
|
1396
|
+
export type SsmDocumentParameterName = string;
|
1397
|
+
export type SsmDocumentParameters = {[key: string]: SsmParameterStoreParameters};
|
1398
|
+
export type SsmDocumentType = "AUTOMATION"|"COMMAND"|string;
|
1399
|
+
export type SsmDocuments = SsmDocument[];
|
1400
|
+
export interface SsmParameterStoreParameter {
|
1401
|
+
/**
|
1402
|
+
* Source server replication type.
|
1403
|
+
*/
|
1404
|
+
parameterName: SsmParameterStoreParameterName;
|
1405
|
+
/**
|
1406
|
+
* Source server replication type.
|
1407
|
+
*/
|
1408
|
+
parameterType: SsmParameterStoreParameterType;
|
1409
|
+
}
|
1410
|
+
export type SsmParameterStoreParameterName = string;
|
1411
|
+
export type SsmParameterStoreParameterType = "STRING"|string;
|
1412
|
+
export type SsmParameterStoreParameters = SsmParameterStoreParameter[];
|
1209
1413
|
export interface StartCutoverRequest {
|
1210
1414
|
/**
|
1211
1415
|
* Start Cutover by Source Server IDs.
|
@@ -1315,6 +1519,7 @@ declare namespace Mgn {
|
|
1315
1519
|
* Update Launch configuration name request.
|
1316
1520
|
*/
|
1317
1521
|
name?: SmallBoundedString;
|
1522
|
+
postLaunchActions?: PostLaunchActions;
|
1318
1523
|
/**
|
1319
1524
|
* Update Launch configuration by Source Server ID request.
|
1320
1525
|
*/
|
@@ -1324,6 +1529,16 @@ declare namespace Mgn {
|
|
1324
1529
|
*/
|
1325
1530
|
targetInstanceTypeRightSizingMethod?: TargetInstanceTypeRightSizingMethod;
|
1326
1531
|
}
|
1532
|
+
export interface UpdateLaunchConfigurationTemplateRequest {
|
1533
|
+
/**
|
1534
|
+
* Update Launch configuration Target instance right sizing request.
|
1535
|
+
*/
|
1536
|
+
launchConfigurationTemplateID: LaunchConfigurationTemplateID;
|
1537
|
+
/**
|
1538
|
+
* Update Launch configuration Target instance right sizing request.
|
1539
|
+
*/
|
1540
|
+
postLaunchActions?: PostLaunchActions;
|
1541
|
+
}
|
1327
1542
|
export interface UpdateReplicationConfigurationRequest {
|
1328
1543
|
/**
|
1329
1544
|
* Update replication configuration associate default Application Migration Service Security group request.
|