cdk-lambda-subminute 2.0.276 → 2.0.278
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-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/CHANGELOG.md +16 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/codepipeline-2015-07-09.min.json +146 -55
- package/node_modules/aws-sdk/apis/marketplacecommerceanalytics-2015-07-01.min.json +9 -3
- package/node_modules/aws-sdk/apis/migrationhub-config-2019-06-30.min.json +15 -0
- package/node_modules/aws-sdk/apis/migrationhubstrategy-2020-02-19.min.json +43 -8
- package/node_modules/aws-sdk/apis/migrationhubstrategy-2020-02-19.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/networkmanager-2019-07-05.min.json +28 -26
- package/node_modules/aws-sdk/apis/opensearchserverless-2021-11-01.min.json +296 -45
- package/node_modules/aws-sdk/apis/opensearchserverless-2021-11-01.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/redshift-serverless-2021-04-21.min.json +3 -1
- package/node_modules/aws-sdk/apis/rekognition-2016-06-27.examples.json +141 -0
- package/node_modules/aws-sdk/apis/rekognition-2016-06-27.min.json +222 -12
- package/node_modules/aws-sdk/apis/rekognition-2016-06-27.paginators.json +5 -0
- package/node_modules/aws-sdk/clients/codepipeline.d.ts +108 -1
- package/node_modules/aws-sdk/clients/ec2.d.ts +3 -3
- package/node_modules/aws-sdk/clients/eks.d.ts +3 -3
- package/node_modules/aws-sdk/clients/marketplacecommerceanalytics.d.ts +10 -10
- package/node_modules/aws-sdk/clients/migrationhubconfig.d.ts +16 -0
- package/node_modules/aws-sdk/clients/migrationhubstrategy.d.ts +57 -1
- package/node_modules/aws-sdk/clients/networkmanager.d.ts +15 -3
- package/node_modules/aws-sdk/clients/opensearchserverless.d.ts +349 -3
- package/node_modules/aws-sdk/clients/redshiftserverless.d.ts +9 -1
- package/node_modules/aws-sdk/clients/rekognition.d.ts +234 -0
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +6 -6
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +22 -22
- package/node_modules/aws-sdk/dist/aws-sdk.js +385 -73
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +86 -86
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +6 -6
@@ -16431,7 +16431,7 @@ declare namespace EC2 {
|
|
16431
16431
|
}
|
16432
16432
|
export interface DescribeSpotPriceHistoryRequest {
|
16433
16433
|
/**
|
16434
|
-
* The filters. availability-zone - The Availability Zone for which prices should be returned. instance-type - The type of instance (for example, m3.medium). product-description - The product description for the Spot price (Linux/UNIX | Red Hat Enterprise Linux | SUSE Linux | Windows | Linux/UNIX (Amazon VPC) | Red Hat Enterprise Linux (Amazon VPC) | SUSE Linux (Amazon VPC) | Windows (Amazon VPC)). spot-price - The Spot price. The value must match exactly (or use wildcards; greater than or less than comparison is not supported). timestamp - The time stamp of the Spot price history, in UTC format (for example,
|
16434
|
+
* The filters. availability-zone - The Availability Zone for which prices should be returned. instance-type - The type of instance (for example, m3.medium). product-description - The product description for the Spot price (Linux/UNIX | Red Hat Enterprise Linux | SUSE Linux | Windows | Linux/UNIX (Amazon VPC) | Red Hat Enterprise Linux (Amazon VPC) | SUSE Linux (Amazon VPC) | Windows (Amazon VPC)). spot-price - The Spot price. The value must match exactly (or use wildcards; greater than or less than comparison is not supported). timestamp - The time stamp of the Spot price history, in UTC format (for example, ddd MMM dd HH:mm:ss UTC YYYY). You can use wildcards (* and ?). Greater than or less than comparison is not supported.
|
16435
16435
|
*/
|
16436
16436
|
Filters?: FilterList;
|
16437
16437
|
/**
|
@@ -21962,7 +21962,7 @@ declare namespace EC2 {
|
|
21962
21962
|
}
|
21963
21963
|
export interface HibernationOptionsRequest {
|
21964
21964
|
/**
|
21965
|
-
* Set to true to enable your instance for hibernation. Default: false
|
21965
|
+
* Set to true to enable your instance for hibernation. For Spot Instances, if you set Configured to true, either omit the InstanceInterruptionBehavior parameter (for SpotMarketOptions ), or set it to hibernate. When Configured is true: If you omit InstanceInterruptionBehavior, it defaults to hibernate. If you set InstanceInterruptionBehavior to a value other than hibernate, you'll get an error. Default: false
|
21966
21966
|
*/
|
21967
21967
|
Configured?: Boolean;
|
21968
21968
|
}
|
@@ -34779,7 +34779,7 @@ declare namespace EC2 {
|
|
34779
34779
|
*/
|
34780
34780
|
ValidUntil?: DateTime;
|
34781
34781
|
/**
|
34782
|
-
* The behavior when a Spot Instance is interrupted.
|
34782
|
+
* The behavior when a Spot Instance is interrupted. If Configured (for HibernationOptions ) is set to true, the InstanceInterruptionBehavior parameter is automatically set to hibernate. If you set it to stop or terminate, you'll get an error. If Configured (for HibernationOptions ) is set to false or null, the InstanceInterruptionBehavior parameter is automatically set to terminate. You can also set it to stop or hibernate. For more information, see Interruption behavior in the Amazon EC2 User Guide.
|
34783
34783
|
*/
|
34784
34784
|
InstanceInterruptionBehavior?: InstanceInterruptionBehavior;
|
34785
34785
|
}
|
@@ -648,7 +648,7 @@ declare namespace EKS {
|
|
648
648
|
*/
|
649
649
|
resourceIds?: StringList;
|
650
650
|
}
|
651
|
-
export type ClusterIssueCode = "AccessDenied"|"ClusterUnreachable"|"ConfigurationConflict"|"InternalFailure"|"ResourceLimitExceeded"|"ResourceNotFound"|string;
|
651
|
+
export type ClusterIssueCode = "AccessDenied"|"ClusterUnreachable"|"ConfigurationConflict"|"InternalFailure"|"ResourceLimitExceeded"|"ResourceNotFound"|"IamRoleNotFound"|"VpcNotFound"|"InsufficientFreeAddresses"|"Ec2ServiceNotSubscribed"|"Ec2SubnetNotFound"|"Ec2SecurityGroupNotFound"|"KmsGrantRevoked"|"KmsKeyNotFound"|"KmsKeyMarkedForDeletion"|"KmsKeyDisabled"|"StsRegionalEndpointDisabled"|"UnsupportedVersion"|"Other"|string;
|
652
652
|
export type ClusterIssueList = ClusterIssue[];
|
653
653
|
export type ClusterName = string;
|
654
654
|
export type ClusterStatus = "CREATING"|"ACTIVE"|"DELETING"|"FAILED"|"UPDATING"|"PENDING"|string;
|
@@ -2041,7 +2041,7 @@ declare namespace EKS {
|
|
2041
2041
|
*/
|
2042
2042
|
value?: String;
|
2043
2043
|
}
|
2044
|
-
export type UpdateParamType = "Version"|"PlatformVersion"|"EndpointPrivateAccess"|"EndpointPublicAccess"|"ClusterLogging"|"DesiredSize"|"LabelsToAdd"|"LabelsToRemove"|"TaintsToAdd"|"TaintsToRemove"|"MaxSize"|"MinSize"|"ReleaseVersion"|"PublicAccessCidrs"|"LaunchTemplateName"|"LaunchTemplateVersion"|"IdentityProviderConfig"|"EncryptionConfig"|"AddonVersion"|"ServiceAccountRoleArn"|"ResolveConflicts"|"MaxUnavailable"|"MaxUnavailablePercentage"|string;
|
2044
|
+
export type UpdateParamType = "Version"|"PlatformVersion"|"EndpointPrivateAccess"|"EndpointPublicAccess"|"ClusterLogging"|"DesiredSize"|"LabelsToAdd"|"LabelsToRemove"|"TaintsToAdd"|"TaintsToRemove"|"MaxSize"|"MinSize"|"ReleaseVersion"|"PublicAccessCidrs"|"LaunchTemplateName"|"LaunchTemplateVersion"|"IdentityProviderConfig"|"EncryptionConfig"|"AddonVersion"|"ServiceAccountRoleArn"|"ResolveConflicts"|"MaxUnavailable"|"MaxUnavailablePercentage"|"ConfigurationValues"|"SecurityGroups"|"Subnets"|string;
|
2045
2045
|
export type UpdateParams = UpdateParam[];
|
2046
2046
|
export type UpdateStatus = "InProgress"|"Failed"|"Cancelled"|"Successful"|string;
|
2047
2047
|
export interface UpdateTaintsPayload {
|
@@ -2054,7 +2054,7 @@ declare namespace EKS {
|
|
2054
2054
|
*/
|
2055
2055
|
removeTaints?: taintsList;
|
2056
2056
|
}
|
2057
|
-
export type UpdateType = "VersionUpdate"|"EndpointAccessUpdate"|"LoggingUpdate"|"ConfigUpdate"|"AssociateIdentityProviderConfig"|"DisassociateIdentityProviderConfig"|"AssociateEncryptionConfig"|"AddonUpdate"|string;
|
2057
|
+
export type UpdateType = "VersionUpdate"|"EndpointAccessUpdate"|"LoggingUpdate"|"ConfigUpdate"|"AssociateIdentityProviderConfig"|"DisassociateIdentityProviderConfig"|"AssociateEncryptionConfig"|"AddonUpdate"|"VpcConfigUpdate"|string;
|
2058
2058
|
export interface VpcConfigRequest {
|
2059
2059
|
/**
|
2060
2060
|
* Specify subnets for your Amazon EKS nodes. Amazon EKS creates cross-account elastic network interfaces in these subnets to allow communication between your nodes and the Kubernetes control plane.
|
@@ -20,11 +20,11 @@ declare class MarketplaceCommerceAnalytics extends Service {
|
|
20
20
|
*/
|
21
21
|
generateDataSet(callback?: (err: AWSError, data: MarketplaceCommerceAnalytics.Types.GenerateDataSetResult) => void): Request<MarketplaceCommerceAnalytics.Types.GenerateDataSetResult, AWSError>;
|
22
22
|
/**
|
23
|
-
* Given a data set type and a from date, asynchronously publishes the requested customer support data to the specified S3 bucket and notifies the specified SNS topic once the data is available. Returns a unique request identifier that can be used to correlate requests with notifications from the SNS topic. Data sets will be published in comma-separated values (CSV) format with the file name {data_set_type}_YYYY-MM-DD'T'HH-mm-ss'Z'.csv. If a file with the same name already exists (e.g. if the same data set is requested twice), the original file will be overwritten by the new file. Requires a Role with an attached permissions policy providing Allow permissions for the following actions: s3:PutObject, s3:GetBucketLocation, sns:GetTopicAttributes, sns:Publish, iam:GetRolePolicy.
|
23
|
+
* This target has been deprecated. Given a data set type and a from date, asynchronously publishes the requested customer support data to the specified S3 bucket and notifies the specified SNS topic once the data is available. Returns a unique request identifier that can be used to correlate requests with notifications from the SNS topic. Data sets will be published in comma-separated values (CSV) format with the file name {data_set_type}_YYYY-MM-DD'T'HH-mm-ss'Z'.csv. If a file with the same name already exists (e.g. if the same data set is requested twice), the original file will be overwritten by the new file. Requires a Role with an attached permissions policy providing Allow permissions for the following actions: s3:PutObject, s3:GetBucketLocation, sns:GetTopicAttributes, sns:Publish, iam:GetRolePolicy.
|
24
24
|
*/
|
25
25
|
startSupportDataExport(params: MarketplaceCommerceAnalytics.Types.StartSupportDataExportRequest, callback?: (err: AWSError, data: MarketplaceCommerceAnalytics.Types.StartSupportDataExportResult) => void): Request<MarketplaceCommerceAnalytics.Types.StartSupportDataExportResult, AWSError>;
|
26
26
|
/**
|
27
|
-
* Given a data set type and a from date, asynchronously publishes the requested customer support data to the specified S3 bucket and notifies the specified SNS topic once the data is available. Returns a unique request identifier that can be used to correlate requests with notifications from the SNS topic. Data sets will be published in comma-separated values (CSV) format with the file name {data_set_type}_YYYY-MM-DD'T'HH-mm-ss'Z'.csv. If a file with the same name already exists (e.g. if the same data set is requested twice), the original file will be overwritten by the new file. Requires a Role with an attached permissions policy providing Allow permissions for the following actions: s3:PutObject, s3:GetBucketLocation, sns:GetTopicAttributes, sns:Publish, iam:GetRolePolicy.
|
27
|
+
* This target has been deprecated. Given a data set type and a from date, asynchronously publishes the requested customer support data to the specified S3 bucket and notifies the specified SNS topic once the data is available. Returns a unique request identifier that can be used to correlate requests with notifications from the SNS topic. Data sets will be published in comma-separated values (CSV) format with the file name {data_set_type}_YYYY-MM-DD'T'HH-mm-ss'Z'.csv. If a file with the same name already exists (e.g. if the same data set is requested twice), the original file will be overwritten by the new file. Requires a Role with an attached permissions policy providing Allow permissions for the following actions: s3:PutObject, s3:GetBucketLocation, sns:GetTopicAttributes, sns:Publish, iam:GetRolePolicy.
|
28
28
|
*/
|
29
29
|
startSupportDataExport(callback?: (err: AWSError, data: MarketplaceCommerceAnalytics.Types.StartSupportDataExportResult) => void): Request<MarketplaceCommerceAnalytics.Types.StartSupportDataExportResult, AWSError>;
|
30
30
|
}
|
@@ -78,37 +78,37 @@ declare namespace MarketplaceCommerceAnalytics {
|
|
78
78
|
export type SnsTopicArn = string;
|
79
79
|
export interface StartSupportDataExportRequest {
|
80
80
|
/**
|
81
|
-
* Specifies the data set type to be written to the output csv file. The data set types customer_support_contacts_data and test_customer_support_contacts_data both result in a csv file containing the following fields: Product Id, Product Code, Customer Guid, Subscription Guid, Subscription Start Date, Organization, AWS Account Id, Given Name, Surname, Telephone Number, Email, Title, Country Code, ZIP Code, Operation Type, and Operation Time. customer_support_contacts_data Customer support contact data. The data set will contain all changes (Creates, Updates, and Deletes) to customer support contact data from the date specified in the from_date parameter. test_customer_support_contacts_data An example data set containing static test data in the same format as customer_support_contacts_data
|
81
|
+
* This target has been deprecated. Specifies the data set type to be written to the output csv file. The data set types customer_support_contacts_data and test_customer_support_contacts_data both result in a csv file containing the following fields: Product Id, Product Code, Customer Guid, Subscription Guid, Subscription Start Date, Organization, AWS Account Id, Given Name, Surname, Telephone Number, Email, Title, Country Code, ZIP Code, Operation Type, and Operation Time. customer_support_contacts_data Customer support contact data. The data set will contain all changes (Creates, Updates, and Deletes) to customer support contact data from the date specified in the from_date parameter. test_customer_support_contacts_data An example data set containing static test data in the same format as customer_support_contacts_data
|
82
82
|
*/
|
83
83
|
dataSetType: SupportDataSetType;
|
84
84
|
/**
|
85
|
-
* The start date from which to retrieve the data set in UTC. This parameter only affects the customer_support_contacts_data data set type.
|
85
|
+
* This target has been deprecated. The start date from which to retrieve the data set in UTC. This parameter only affects the customer_support_contacts_data data set type.
|
86
86
|
*/
|
87
87
|
fromDate: FromDate;
|
88
88
|
/**
|
89
|
-
* The Amazon Resource Name (ARN) of the Role with an attached permissions policy to interact with the provided AWS services.
|
89
|
+
* This target has been deprecated. The Amazon Resource Name (ARN) of the Role with an attached permissions policy to interact with the provided AWS services.
|
90
90
|
*/
|
91
91
|
roleNameArn: RoleNameArn;
|
92
92
|
/**
|
93
|
-
* The name (friendly name, not ARN) of the destination S3 bucket.
|
93
|
+
* This target has been deprecated. The name (friendly name, not ARN) of the destination S3 bucket.
|
94
94
|
*/
|
95
95
|
destinationS3BucketName: DestinationS3BucketName;
|
96
96
|
/**
|
97
|
-
* (Optional) The desired S3 prefix for the published data set, similar to a directory path in standard file systems. For example, if given the bucket name "mybucket" and the prefix "myprefix/mydatasets", the output file "outputfile" would be published to "s3://mybucket/myprefix/mydatasets/outputfile". If the prefix directory structure does not exist, it will be created. If no prefix is provided, the data set will be published to the S3 bucket root.
|
97
|
+
* This target has been deprecated. (Optional) The desired S3 prefix for the published data set, similar to a directory path in standard file systems. For example, if given the bucket name "mybucket" and the prefix "myprefix/mydatasets", the output file "outputfile" would be published to "s3://mybucket/myprefix/mydatasets/outputfile". If the prefix directory structure does not exist, it will be created. If no prefix is provided, the data set will be published to the S3 bucket root.
|
98
98
|
*/
|
99
99
|
destinationS3Prefix?: DestinationS3Prefix;
|
100
100
|
/**
|
101
|
-
* Amazon Resource Name (ARN) for the SNS Topic that will be notified when the data set has been published or if an error has occurred.
|
101
|
+
* This target has been deprecated. Amazon Resource Name (ARN) for the SNS Topic that will be notified when the data set has been published or if an error has occurred.
|
102
102
|
*/
|
103
103
|
snsTopicArn: SnsTopicArn;
|
104
104
|
/**
|
105
|
-
* (Optional) Key-value pairs which will be returned, unmodified, in the Amazon SNS notification message and the data set metadata file.
|
105
|
+
* This target has been deprecated. (Optional) Key-value pairs which will be returned, unmodified, in the Amazon SNS notification message and the data set metadata file.
|
106
106
|
*/
|
107
107
|
customerDefinedValues?: CustomerDefinedValues;
|
108
108
|
}
|
109
109
|
export interface StartSupportDataExportResult {
|
110
110
|
/**
|
111
|
-
* A unique identifier representing a specific request to the StartSupportDataExport operation. This identifier can be used to correlate a request with notifications from the SNS topic.
|
111
|
+
* This target has been deprecated. A unique identifier representing a specific request to the StartSupportDataExport operation. This identifier can be used to correlate a request with notifications from the SNS topic.
|
112
112
|
*/
|
113
113
|
dataSetRequestId?: DataSetRequestId;
|
114
114
|
}
|
@@ -19,6 +19,14 @@ declare class MigrationHubConfig extends Service {
|
|
19
19
|
* This API sets up the home region for the calling account only.
|
20
20
|
*/
|
21
21
|
createHomeRegionControl(callback?: (err: AWSError, data: MigrationHubConfig.Types.CreateHomeRegionControlResult) => void): Request<MigrationHubConfig.Types.CreateHomeRegionControlResult, AWSError>;
|
22
|
+
/**
|
23
|
+
* This operation deletes the home region configuration for the calling account. The operation does not delete discovery or migration tracking data in the home region.
|
24
|
+
*/
|
25
|
+
deleteHomeRegionControl(params: MigrationHubConfig.Types.DeleteHomeRegionControlRequest, callback?: (err: AWSError, data: MigrationHubConfig.Types.DeleteHomeRegionControlResult) => void): Request<MigrationHubConfig.Types.DeleteHomeRegionControlResult, AWSError>;
|
26
|
+
/**
|
27
|
+
* This operation deletes the home region configuration for the calling account. The operation does not delete discovery or migration tracking data in the home region.
|
28
|
+
*/
|
29
|
+
deleteHomeRegionControl(callback?: (err: AWSError, data: MigrationHubConfig.Types.DeleteHomeRegionControlResult) => void): Request<MigrationHubConfig.Types.DeleteHomeRegionControlResult, AWSError>;
|
22
30
|
/**
|
23
31
|
* This API permits filtering on the ControlId and HomeRegion fields.
|
24
32
|
*/
|
@@ -58,6 +66,14 @@ declare namespace MigrationHubConfig {
|
|
58
66
|
*/
|
59
67
|
HomeRegionControl?: HomeRegionControl;
|
60
68
|
}
|
69
|
+
export interface DeleteHomeRegionControlRequest {
|
70
|
+
/**
|
71
|
+
* A unique identifier that's generated for each home region control. It's always a string that begins with "hrc-" followed by 12 lowercase letters and numbers.
|
72
|
+
*/
|
73
|
+
ControlId: ControlId;
|
74
|
+
}
|
75
|
+
export interface DeleteHomeRegionControlResult {
|
76
|
+
}
|
61
77
|
export type DescribeHomeRegionControlsMaxResults = number;
|
62
78
|
export interface DescribeHomeRegionControlsRequest {
|
63
79
|
/**
|
@@ -91,6 +91,14 @@ declare class MigrationHubStrategy extends Service {
|
|
91
91
|
* Retrieves recommended strategies and tools for the specified server.
|
92
92
|
*/
|
93
93
|
getServerStrategies(callback?: (err: AWSError, data: MigrationHubStrategy.Types.GetServerStrategiesResponse) => void): Request<MigrationHubStrategy.Types.GetServerStrategiesResponse, AWSError>;
|
94
|
+
/**
|
95
|
+
* Retrieves a list of all the servers fetched from customer vCenter using Strategy Recommendation Collector.
|
96
|
+
*/
|
97
|
+
listAnalyzableServers(params: MigrationHubStrategy.Types.ListAnalyzableServersRequest, callback?: (err: AWSError, data: MigrationHubStrategy.Types.ListAnalyzableServersResponse) => void): Request<MigrationHubStrategy.Types.ListAnalyzableServersResponse, AWSError>;
|
98
|
+
/**
|
99
|
+
* Retrieves a list of all the servers fetched from customer vCenter using Strategy Recommendation Collector.
|
100
|
+
*/
|
101
|
+
listAnalyzableServers(callback?: (err: AWSError, data: MigrationHubStrategy.Types.ListAnalyzableServersResponse) => void): Request<MigrationHubStrategy.Types.ListAnalyzableServersResponse, AWSError>;
|
94
102
|
/**
|
95
103
|
* Retrieves a list of all the application components (processes).
|
96
104
|
*/
|
@@ -192,6 +200,25 @@ declare namespace MigrationHubStrategy {
|
|
192
200
|
srcCodeOrDbAnalysisStatus?: SrcCodeOrDbAnalysisStatus;
|
193
201
|
}
|
194
202
|
export type AnalysisType = "SOURCE_CODE_ANALYSIS"|"DATABASE_ANALYSIS"|"RUNTIME_ANALYSIS"|"BINARY_ANALYSIS"|string;
|
203
|
+
export interface AnalyzableServerSummary {
|
204
|
+
/**
|
205
|
+
* The host name of the analyzable server.
|
206
|
+
*/
|
207
|
+
hostname?: String;
|
208
|
+
/**
|
209
|
+
* The ip address of the analyzable server.
|
210
|
+
*/
|
211
|
+
ipAddress?: String;
|
212
|
+
/**
|
213
|
+
* The data source of the analyzable server.
|
214
|
+
*/
|
215
|
+
source?: String;
|
216
|
+
/**
|
217
|
+
* The virtual machine id of the analyzable server.
|
218
|
+
*/
|
219
|
+
vmId?: String;
|
220
|
+
}
|
221
|
+
export type AnalyzableServerSummaryList = AnalyzableServerSummary[];
|
195
222
|
export interface AnalyzerNameUnion {
|
196
223
|
/**
|
197
224
|
* The binary analyzer names.
|
@@ -380,6 +407,7 @@ declare namespace MigrationHubStrategy {
|
|
380
407
|
*/
|
381
408
|
managementPreference?: ManagementPreference;
|
382
409
|
}
|
410
|
+
export type AssessmentDataSourceType = "StrategyRecommendationsApplicationDataCollector"|"ManualImport"|"ApplicationDiscoveryService"|string;
|
383
411
|
export type AssessmentStatus = "IN_PROGRESS"|"COMPLETE"|"FAILED"|"STOPPED"|string;
|
384
412
|
export type AssessmentStatusMessage = string;
|
385
413
|
export interface AssessmentSummary {
|
@@ -580,7 +608,7 @@ declare namespace MigrationHubStrategy {
|
|
580
608
|
*/
|
581
609
|
success?: Integer;
|
582
610
|
}
|
583
|
-
export type DataSourceType = "ApplicationDiscoveryService"|"MPA"|"Import"|string;
|
611
|
+
export type DataSourceType = "ApplicationDiscoveryService"|"MPA"|"Import"|"StrategyRecommendationsApplicationDataCollector"|string;
|
584
612
|
export interface DatabaseConfigDetail {
|
585
613
|
/**
|
586
614
|
* AWS Secrets Manager key that holds the credentials that you use to connect to a database.
|
@@ -906,6 +934,30 @@ declare namespace MigrationHubStrategy {
|
|
906
934
|
export type InclusionStatus = "excludeFromAssessment"|"includeInAssessment"|string;
|
907
935
|
export type Integer = number;
|
908
936
|
export type InterfaceName = string;
|
937
|
+
export interface ListAnalyzableServersRequest {
|
938
|
+
/**
|
939
|
+
* The maximum number of items to include in the response. The maximum value is 100.
|
940
|
+
*/
|
941
|
+
maxResults?: MaxResult;
|
942
|
+
/**
|
943
|
+
* The token from a previous call that you use to retrieve the next set of results. For example, if a previous call to this action returned 100 items, but you set maxResults to 10. You'll receive a set of 10 results along with a token. You then use the returned token to retrieve the next set of 10.
|
944
|
+
*/
|
945
|
+
nextToken?: NextToken;
|
946
|
+
/**
|
947
|
+
* Specifies whether to sort by ascending (ASC) or descending (DESC) order.
|
948
|
+
*/
|
949
|
+
sort?: SortOrder;
|
950
|
+
}
|
951
|
+
export interface ListAnalyzableServersResponse {
|
952
|
+
/**
|
953
|
+
* The list of analyzable servers with summary information about each server.
|
954
|
+
*/
|
955
|
+
analyzableServers?: AnalyzableServerSummaryList;
|
956
|
+
/**
|
957
|
+
* The token you use to retrieve the next set of results, or null if there are no more results.
|
958
|
+
*/
|
959
|
+
nextToken?: NextToken;
|
960
|
+
}
|
909
961
|
export type ListAntipatternSeveritySummary = AntipatternSeveritySummary[];
|
910
962
|
export type ListApplicationComponentStatusSummary = ApplicationComponentStatusSummary[];
|
911
963
|
export type ListApplicationComponentSummary = ApplicationComponentSummary[];
|
@@ -1379,6 +1431,10 @@ declare namespace MigrationHubStrategy {
|
|
1379
1431
|
export type SourceVersion = string;
|
1380
1432
|
export type SrcCodeOrDbAnalysisStatus = "ANALYSIS_TO_BE_SCHEDULED"|"ANALYSIS_STARTED"|"ANALYSIS_SUCCESS"|"ANALYSIS_FAILED"|"ANALYSIS_PARTIAL_SUCCESS"|"UNCONFIGURED"|"CONFIGURED"|string;
|
1381
1433
|
export interface StartAssessmentRequest {
|
1434
|
+
/**
|
1435
|
+
* The data source type of an assessment to be started.
|
1436
|
+
*/
|
1437
|
+
assessmentDataSourceType?: AssessmentDataSourceType;
|
1382
1438
|
/**
|
1383
1439
|
* List of criteria for assessment.
|
1384
1440
|
*/
|
@@ -958,6 +958,10 @@ declare namespace NetworkManager {
|
|
958
958
|
* The list of key-value tags associated with the Connect peer.
|
959
959
|
*/
|
960
960
|
Tags?: TagList;
|
961
|
+
/**
|
962
|
+
* The subnet ARN for the Connect peer.
|
963
|
+
*/
|
964
|
+
SubnetArn?: SubnetArn;
|
961
965
|
}
|
962
966
|
export interface ConnectPeerAssociation {
|
963
967
|
/**
|
@@ -1056,6 +1060,10 @@ declare namespace NetworkManager {
|
|
1056
1060
|
* The list of key-value tags associated with the Connect peer summary.
|
1057
1061
|
*/
|
1058
1062
|
Tags?: TagList;
|
1063
|
+
/**
|
1064
|
+
* The subnet ARN for the Connect peer summary.
|
1065
|
+
*/
|
1066
|
+
SubnetArn?: SubnetArn;
|
1059
1067
|
}
|
1060
1068
|
export type ConnectPeerSummaryList = ConnectPeerSummary[];
|
1061
1069
|
export interface Connection {
|
@@ -1475,7 +1483,7 @@ declare namespace NetworkManager {
|
|
1475
1483
|
/**
|
1476
1484
|
* The inside IP addresses used for BGP peering.
|
1477
1485
|
*/
|
1478
|
-
InsideCidrBlocks
|
1486
|
+
InsideCidrBlocks?: ConstrainedStringList;
|
1479
1487
|
/**
|
1480
1488
|
* The tags associated with the peer request.
|
1481
1489
|
*/
|
@@ -1484,6 +1492,10 @@ declare namespace NetworkManager {
|
|
1484
1492
|
* The client token associated with the request.
|
1485
1493
|
*/
|
1486
1494
|
ClientToken?: ClientToken;
|
1495
|
+
/**
|
1496
|
+
* The subnet ARN for the Connect peer.
|
1497
|
+
*/
|
1498
|
+
SubnetArn?: SubnetArn;
|
1487
1499
|
}
|
1488
1500
|
export interface CreateConnectPeerResponse {
|
1489
1501
|
/**
|
@@ -3614,7 +3626,7 @@ declare namespace NetworkManager {
|
|
3614
3626
|
export type RouteStateList = RouteState[];
|
3615
3627
|
export interface RouteTableIdentifier {
|
3616
3628
|
/**
|
3617
|
-
* The ARN of the transit gateway route table.
|
3629
|
+
* The ARN of the transit gateway route table for the attachment request. For example, "TransitGatewayRouteTableArn": "arn:aws:ec2:us-west-2:123456789012:transit-gateway-route-table/tgw-rtb-9876543210123456".
|
3618
3630
|
*/
|
3619
3631
|
TransitGatewayRouteTableArn?: TransitGatewayRouteTableArn;
|
3620
3632
|
/**
|
@@ -3827,7 +3839,7 @@ declare namespace NetworkManager {
|
|
3827
3839
|
*/
|
3828
3840
|
TransitGatewayRouteTableArn?: TransitGatewayRouteTableArn;
|
3829
3841
|
}
|
3830
|
-
export type TunnelProtocol = "GRE"|string;
|
3842
|
+
export type TunnelProtocol = "GRE"|"NO_ENCAP"|string;
|
3831
3843
|
export interface UntagResourceRequest {
|
3832
3844
|
/**
|
3833
3845
|
* The Amazon Resource Name (ARN) of the resource.
|