aws-sdk 2.768.0 → 2.772.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 +40 -1
- package/README.md +1 -1
- package/apis/accessanalyzer-2019-11-01.min.json +70 -48
- package/apis/amplify-2017-07-25.min.json +58 -46
- package/apis/budgets-2016-10-20.min.json +411 -0
- package/apis/budgets-2016-10-20.paginators.json +18 -0
- package/apis/ce-2017-10-25.min.json +119 -87
- package/apis/dms-2016-01-01.min.json +15 -3
- package/apis/ec2-2016-11-15.min.json +33 -7
- package/apis/elasticache-2015-02-02.min.json +425 -106
- package/apis/elasticache-2015-02-02.paginators.json +12 -0
- package/apis/eventbridge-2015-10-07.min.json +20 -3
- package/apis/events-2015-10-07.min.json +20 -3
- package/apis/groundstation-2019-05-23.min.json +1 -0
- package/apis/iot-2015-05-28.min.json +4 -1
- package/apis/macie2-2020-01-01.min.json +159 -22
- package/apis/medialive-2017-10-14.min.json +366 -194
- package/apis/mediapackage-2017-10-12.min.json +214 -93
- package/apis/rds-2014-10-31.min.json +20 -2
- package/apis/rekognition-2016-06-27.min.json +206 -76
- package/apis/servicecatalog-2015-12-10.min.json +60 -30
- package/apis/servicecatalog-2015-12-10.paginators.json +5 -0
- package/apis/snowball-2016-06-30.min.json +61 -9
- package/apis/ssm-2014-11-06.min.json +147 -126
- package/apis/transfer-2018-11-05.min.json +32 -28
- package/apis/workmail-2017-10-01.min.json +93 -30
- package/apis/xray-2016-04-12.min.json +11 -5
- package/apis/xray-2016-04-12.paginators.json +0 -15
- package/clients/accessanalyzer.d.ts +26 -4
- package/clients/amplify.d.ts +17 -0
- package/clients/budgets.d.ts +358 -0
- package/clients/cloudwatchevents.d.ts +27 -0
- package/clients/computeoptimizer.d.ts +15 -15
- package/clients/costexplorer.d.ts +64 -12
- package/clients/dms.d.ts +26 -2
- package/clients/ec2.d.ts +28 -8
- package/clients/eks.d.ts +2 -2
- package/clients/elasticache.d.ts +416 -4
- package/clients/eventbridge.d.ts +27 -0
- package/clients/glue.d.ts +1 -1
- package/clients/groundstation.d.ts +5 -1
- package/clients/iot.d.ts +10 -6
- package/clients/macie2.d.ts +182 -62
- package/clients/medialive.d.ts +206 -4
- package/clients/mediapackage.d.ts +58 -0
- package/clients/rds.d.ts +26 -14
- package/clients/rekognition.d.ts +155 -14
- package/clients/sagemaker.d.ts +5 -5
- package/clients/servicecatalog.d.ts +66 -21
- package/clients/snowball.d.ts +122 -52
- package/clients/sns.d.ts +1 -1
- package/clients/ssm.d.ts +63 -11
- package/clients/transfer.d.ts +77 -71
- package/clients/workmail.d.ts +91 -1
- package/clients/workspaces.d.ts +12 -12
- package/clients/xray.d.ts +29 -21
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +27 -27
- package/dist/aws-sdk.js +1087 -483
- package/dist/aws-sdk.min.js +78 -78
- package/lib/config-base.d.ts +3 -0
- package/lib/core.d.ts +1 -1
- package/lib/core.js +1 -1
- package/package.json +1 -1
|
@@ -92,19 +92,19 @@ declare class CostExplorer extends Service {
|
|
|
92
92
|
*/
|
|
93
93
|
getAnomalySubscriptions(callback?: (err: AWSError, data: CostExplorer.Types.GetAnomalySubscriptionsResponse) => void): Request<CostExplorer.Types.GetAnomalySubscriptionsResponse, AWSError>;
|
|
94
94
|
/**
|
|
95
|
-
* Retrieves cost and usage metrics for your account. You can specify which cost and usage-related metric, such as BlendedCosts or UsageQuantity, that you want the request to return. You can also filter and group your data by various dimensions, such as SERVICE or AZ, in a specific time range. For a complete list of valid dimensions, see the GetDimensionValues operation. Master
|
|
95
|
+
* Retrieves cost and usage metrics for your account. You can specify which cost and usage-related metric, such as BlendedCosts or UsageQuantity, that you want the request to return. You can also filter and group your data by various dimensions, such as SERVICE or AZ, in a specific time range. For a complete list of valid dimensions, see the GetDimensionValues operation. Master account in an organization in AWS Organizations have access to all member accounts.
|
|
96
96
|
*/
|
|
97
97
|
getCostAndUsage(params: CostExplorer.Types.GetCostAndUsageRequest, callback?: (err: AWSError, data: CostExplorer.Types.GetCostAndUsageResponse) => void): Request<CostExplorer.Types.GetCostAndUsageResponse, AWSError>;
|
|
98
98
|
/**
|
|
99
|
-
* Retrieves cost and usage metrics for your account. You can specify which cost and usage-related metric, such as BlendedCosts or UsageQuantity, that you want the request to return. You can also filter and group your data by various dimensions, such as SERVICE or AZ, in a specific time range. For a complete list of valid dimensions, see the GetDimensionValues operation. Master
|
|
99
|
+
* Retrieves cost and usage metrics for your account. You can specify which cost and usage-related metric, such as BlendedCosts or UsageQuantity, that you want the request to return. You can also filter and group your data by various dimensions, such as SERVICE or AZ, in a specific time range. For a complete list of valid dimensions, see the GetDimensionValues operation. Master account in an organization in AWS Organizations have access to all member accounts.
|
|
100
100
|
*/
|
|
101
101
|
getCostAndUsage(callback?: (err: AWSError, data: CostExplorer.Types.GetCostAndUsageResponse) => void): Request<CostExplorer.Types.GetCostAndUsageResponse, AWSError>;
|
|
102
102
|
/**
|
|
103
|
-
* Retrieves cost and usage metrics with resources for your account. You can specify which cost and usage-related metric, such as BlendedCosts or UsageQuantity, that you want the request to return. You can also filter and group your data by various dimensions, such as SERVICE or AZ, in a specific time range. For a complete list of valid dimensions, see the GetDimensionValues operation. Master
|
|
103
|
+
* Retrieves cost and usage metrics with resources for your account. You can specify which cost and usage-related metric, such as BlendedCosts or UsageQuantity, that you want the request to return. You can also filter and group your data by various dimensions, such as SERVICE or AZ, in a specific time range. For a complete list of valid dimensions, see the GetDimensionValues operation. Master account in an organization in AWS Organizations have access to all member accounts. This API is currently available for the Amazon Elastic Compute Cloud – Compute service only. This is an opt-in only feature. You can enable this feature from the Cost Explorer Settings page. For information on how to access the Settings page, see Controlling Access for Cost Explorer in the AWS Billing and Cost Management User Guide.
|
|
104
104
|
*/
|
|
105
105
|
getCostAndUsageWithResources(params: CostExplorer.Types.GetCostAndUsageWithResourcesRequest, callback?: (err: AWSError, data: CostExplorer.Types.GetCostAndUsageWithResourcesResponse) => void): Request<CostExplorer.Types.GetCostAndUsageWithResourcesResponse, AWSError>;
|
|
106
106
|
/**
|
|
107
|
-
* Retrieves cost and usage metrics with resources for your account. You can specify which cost and usage-related metric, such as BlendedCosts or UsageQuantity, that you want the request to return. You can also filter and group your data by various dimensions, such as SERVICE or AZ, in a specific time range. For a complete list of valid dimensions, see the GetDimensionValues operation. Master
|
|
107
|
+
* Retrieves cost and usage metrics with resources for your account. You can specify which cost and usage-related metric, such as BlendedCosts or UsageQuantity, that you want the request to return. You can also filter and group your data by various dimensions, such as SERVICE or AZ, in a specific time range. For a complete list of valid dimensions, see the GetDimensionValues operation. Master account in an organization in AWS Organizations have access to all member accounts. This API is currently available for the Amazon Elastic Compute Cloud – Compute service only. This is an opt-in only feature. You can enable this feature from the Cost Explorer Settings page. For information on how to access the Settings page, see Controlling Access for Cost Explorer in the AWS Billing and Cost Management User Guide.
|
|
108
108
|
*/
|
|
109
109
|
getCostAndUsageWithResources(callback?: (err: AWSError, data: CostExplorer.Types.GetCostAndUsageWithResourcesResponse) => void): Request<CostExplorer.Types.GetCostAndUsageWithResourcesResponse, AWSError>;
|
|
110
110
|
/**
|
|
@@ -140,11 +140,11 @@ declare class CostExplorer extends Service {
|
|
|
140
140
|
*/
|
|
141
141
|
getReservationPurchaseRecommendation(callback?: (err: AWSError, data: CostExplorer.Types.GetReservationPurchaseRecommendationResponse) => void): Request<CostExplorer.Types.GetReservationPurchaseRecommendationResponse, AWSError>;
|
|
142
142
|
/**
|
|
143
|
-
* Retrieves the reservation utilization for your account. Master
|
|
143
|
+
* Retrieves the reservation utilization for your account. Master account in an organization have access to member accounts. You can filter data by dimensions in a time period. You can use GetDimensionValues to determine the possible dimension values. Currently, you can group only by SUBSCRIPTION_ID.
|
|
144
144
|
*/
|
|
145
145
|
getReservationUtilization(params: CostExplorer.Types.GetReservationUtilizationRequest, callback?: (err: AWSError, data: CostExplorer.Types.GetReservationUtilizationResponse) => void): Request<CostExplorer.Types.GetReservationUtilizationResponse, AWSError>;
|
|
146
146
|
/**
|
|
147
|
-
* Retrieves the reservation utilization for your account. Master
|
|
147
|
+
* Retrieves the reservation utilization for your account. Master account in an organization have access to member accounts. You can filter data by dimensions in a time period. You can use GetDimensionValues to determine the possible dimension values. Currently, you can group only by SUBSCRIPTION_ID.
|
|
148
148
|
*/
|
|
149
149
|
getReservationUtilization(callback?: (err: AWSError, data: CostExplorer.Types.GetReservationUtilizationResponse) => void): Request<CostExplorer.Types.GetReservationUtilizationResponse, AWSError>;
|
|
150
150
|
/**
|
|
@@ -172,11 +172,11 @@ declare class CostExplorer extends Service {
|
|
|
172
172
|
*/
|
|
173
173
|
getSavingsPlansPurchaseRecommendation(callback?: (err: AWSError, data: CostExplorer.Types.GetSavingsPlansPurchaseRecommendationResponse) => void): Request<CostExplorer.Types.GetSavingsPlansPurchaseRecommendationResponse, AWSError>;
|
|
174
174
|
/**
|
|
175
|
-
* Retrieves the Savings Plans utilization for your account across date ranges with daily or monthly granularity. Master
|
|
175
|
+
* Retrieves the Savings Plans utilization for your account across date ranges with daily or monthly granularity. Master account in an organization have access to member accounts. You can use GetDimensionValues in SAVINGS_PLANS to determine the possible dimension values. You cannot group by any dimension values for GetSavingsPlansUtilization.
|
|
176
176
|
*/
|
|
177
177
|
getSavingsPlansUtilization(params: CostExplorer.Types.GetSavingsPlansUtilizationRequest, callback?: (err: AWSError, data: CostExplorer.Types.GetSavingsPlansUtilizationResponse) => void): Request<CostExplorer.Types.GetSavingsPlansUtilizationResponse, AWSError>;
|
|
178
178
|
/**
|
|
179
|
-
* Retrieves the Savings Plans utilization for your account across date ranges with daily or monthly granularity. Master
|
|
179
|
+
* Retrieves the Savings Plans utilization for your account across date ranges with daily or monthly granularity. Master account in an organization have access to member accounts. You can use GetDimensionValues in SAVINGS_PLANS to determine the possible dimension values. You cannot group by any dimension values for GetSavingsPlansUtilization.
|
|
180
180
|
*/
|
|
181
181
|
getSavingsPlansUtilization(callback?: (err: AWSError, data: CostExplorer.Types.GetSavingsPlansUtilizationResponse) => void): Request<CostExplorer.Types.GetSavingsPlansUtilizationResponse, AWSError>;
|
|
182
182
|
/**
|
|
@@ -400,9 +400,24 @@ declare namespace CostExplorer {
|
|
|
400
400
|
* Rules are processed in order. If there are multiple rules that match the line item, then the first rule to match is used to determine that Cost Category value.
|
|
401
401
|
*/
|
|
402
402
|
Rules: CostCategoryRulesList;
|
|
403
|
+
/**
|
|
404
|
+
* The list of processing statuses for Cost Management products for a specific cost category.
|
|
405
|
+
*/
|
|
406
|
+
ProcessingStatus?: CostCategoryProcessingStatusList;
|
|
403
407
|
}
|
|
404
408
|
export type CostCategoryMaxResults = number;
|
|
405
409
|
export type CostCategoryName = string;
|
|
410
|
+
export interface CostCategoryProcessingStatus {
|
|
411
|
+
/**
|
|
412
|
+
* The Cost Management product name of the applied status.
|
|
413
|
+
*/
|
|
414
|
+
Component?: CostCategoryStatusComponent;
|
|
415
|
+
/**
|
|
416
|
+
* The process status for a specific cost category.
|
|
417
|
+
*/
|
|
418
|
+
Status?: CostCategoryStatus;
|
|
419
|
+
}
|
|
420
|
+
export type CostCategoryProcessingStatusList = CostCategoryProcessingStatus[];
|
|
406
421
|
export interface CostCategoryReference {
|
|
407
422
|
/**
|
|
408
423
|
* The unique identifier for your Cost Category.
|
|
@@ -421,6 +436,14 @@ declare namespace CostExplorer {
|
|
|
421
436
|
* The number of rules associated with a specific Cost Category.
|
|
422
437
|
*/
|
|
423
438
|
NumberOfRules?: NonNegativeInteger;
|
|
439
|
+
/**
|
|
440
|
+
* The list of processing statuses for Cost Management products for a specific cost category.
|
|
441
|
+
*/
|
|
442
|
+
ProcessingStatus?: CostCategoryProcessingStatusList;
|
|
443
|
+
/**
|
|
444
|
+
* A list of unique cost category values in a specific cost category.
|
|
445
|
+
*/
|
|
446
|
+
Values?: CostCategoryValuesList;
|
|
424
447
|
}
|
|
425
448
|
export type CostCategoryReferencesList = CostCategoryReference[];
|
|
426
449
|
export interface CostCategoryRule {
|
|
@@ -432,6 +455,8 @@ declare namespace CostExplorer {
|
|
|
432
455
|
}
|
|
433
456
|
export type CostCategoryRuleVersion = "CostCategoryExpression.v1"|string;
|
|
434
457
|
export type CostCategoryRulesList = CostCategoryRule[];
|
|
458
|
+
export type CostCategoryStatus = "PROCESSING"|"APPLIED"|string;
|
|
459
|
+
export type CostCategoryStatusComponent = "COST_EXPLORER"|string;
|
|
435
460
|
export type CostCategoryValue = string;
|
|
436
461
|
export interface CostCategoryValues {
|
|
437
462
|
Key?: CostCategoryName;
|
|
@@ -439,7 +464,12 @@ declare namespace CostExplorer {
|
|
|
439
464
|
* The specific value of the Cost Category.
|
|
440
465
|
*/
|
|
441
466
|
Values?: Values;
|
|
467
|
+
/**
|
|
468
|
+
* The match options that you can use to filter your results. MatchOptions is only applicable for only applicable for actions related to cost category. The default values for MatchOptions is EQUALS and CASE_SENSITIVE.
|
|
469
|
+
*/
|
|
470
|
+
MatchOptions?: MatchOptions;
|
|
442
471
|
}
|
|
472
|
+
export type CostCategoryValuesList = CostCategoryValue[];
|
|
443
473
|
export interface Coverage {
|
|
444
474
|
/**
|
|
445
475
|
* The amount of instance usage that the reservation covered, in hours.
|
|
@@ -682,6 +712,24 @@ declare namespace CostExplorer {
|
|
|
682
712
|
Attributes?: Attributes;
|
|
683
713
|
}
|
|
684
714
|
export type DimensionValuesWithAttributesList = DimensionValuesWithAttributes[];
|
|
715
|
+
export interface EBSResourceUtilization {
|
|
716
|
+
/**
|
|
717
|
+
* The maximum number of read operations per second.
|
|
718
|
+
*/
|
|
719
|
+
EbsReadOpsPerSecond?: GenericString;
|
|
720
|
+
/**
|
|
721
|
+
* The maximum number of write operations per second.
|
|
722
|
+
*/
|
|
723
|
+
EbsWriteOpsPerSecond?: GenericString;
|
|
724
|
+
/**
|
|
725
|
+
* The maximum size of read operations per second
|
|
726
|
+
*/
|
|
727
|
+
EbsReadBytesPerSecond?: GenericString;
|
|
728
|
+
/**
|
|
729
|
+
* The maximum size of write operations per second.
|
|
730
|
+
*/
|
|
731
|
+
EbsWriteBytesPerSecond?: GenericString;
|
|
732
|
+
}
|
|
685
733
|
export interface EC2InstanceDetails {
|
|
686
734
|
/**
|
|
687
735
|
* The instance family of the recommended reservation.
|
|
@@ -767,6 +815,10 @@ declare namespace CostExplorer {
|
|
|
767
815
|
* Maximum observed or expected storage utilization of the instance (does not measure EBS storage).
|
|
768
816
|
*/
|
|
769
817
|
MaxStorageUtilizationPercentage?: GenericString;
|
|
818
|
+
/**
|
|
819
|
+
* The EBS field that contains a list of EBS metrics associated with the current instance.
|
|
820
|
+
*/
|
|
821
|
+
EBSResourceUtilization?: EBSResourceUtilization;
|
|
770
822
|
}
|
|
771
823
|
export interface EC2Specification {
|
|
772
824
|
/**
|
|
@@ -1019,7 +1071,7 @@ declare namespace CostExplorer {
|
|
|
1019
1071
|
*/
|
|
1020
1072
|
Metrics?: MetricNames;
|
|
1021
1073
|
/**
|
|
1022
|
-
* You can group Amazon Web Services costs using up to two different groups:
|
|
1074
|
+
* You can group Amazon Web Services costs using up to two different groups: DIMENSION, TAG, COST_CATEGORY.
|
|
1023
1075
|
*/
|
|
1024
1076
|
GroupBy?: GroupDefinitions;
|
|
1025
1077
|
/**
|
|
@@ -1163,7 +1215,7 @@ declare namespace CostExplorer {
|
|
|
1163
1215
|
*/
|
|
1164
1216
|
Service: GenericString;
|
|
1165
1217
|
/**
|
|
1166
|
-
* The account scope that you want your recommendations for. Amazon Web Services calculates recommendations including the
|
|
1218
|
+
* The account scope that you want your recommendations for. Amazon Web Services calculates recommendations including the master account and member accounts if the value is set to PAYER. If the value is LINKED, recommendations are calculated for individual member accounts only.
|
|
1167
1219
|
*/
|
|
1168
1220
|
AccountScope?: AccountScope;
|
|
1169
1221
|
/**
|
|
@@ -1336,7 +1388,7 @@ declare namespace CostExplorer {
|
|
|
1336
1388
|
*/
|
|
1337
1389
|
PaymentOption: PaymentOption;
|
|
1338
1390
|
/**
|
|
1339
|
-
* The account scope that you want your recommendations for. Amazon Web Services calculates recommendations including the
|
|
1391
|
+
* The account scope that you want your recommendations for. Amazon Web Services calculates recommendations including the master account and member accounts if the value is set to PAYER. If the value is LINKED, recommendations are calculated for individual member accounts only.
|
|
1340
1392
|
*/
|
|
1341
1393
|
AccountScope?: AccountScope;
|
|
1342
1394
|
/**
|
|
@@ -2101,7 +2153,7 @@ declare namespace CostExplorer {
|
|
|
2101
2153
|
}
|
|
2102
2154
|
export interface SavingsPlansPurchaseRecommendation {
|
|
2103
2155
|
/**
|
|
2104
|
-
* The account scope that you want your recommendations for.
|
|
2156
|
+
* The account scope that you want your recommendations for. Amazon Web Services calculates recommendations including the master account and member accounts if the value is set to PAYER. If the value is LINKED, recommendations are calculated for individual member accounts only.
|
|
2105
2157
|
*/
|
|
2106
2158
|
AccountScope?: AccountScope;
|
|
2107
2159
|
/**
|
package/clients/dms.d.ts
CHANGED
|
@@ -763,6 +763,10 @@ declare namespace DMS {
|
|
|
763
763
|
* Settings in JSON format for the source IBM Db2 LUW endpoint. For information about other available settings, see Extra connection attributes when using Db2 LUW as a source for AWS DMS in the AWS Database Migration Service User Guide.
|
|
764
764
|
*/
|
|
765
765
|
IBMDb2Settings?: IBMDb2Settings;
|
|
766
|
+
/**
|
|
767
|
+
* A friendly name for the resource identifier at the end of the EndpointArn response parameter that is returned in the created Endpoint object. The value for this parameter can have up to 31 characters. It can contain only ASCII letters, digits, and hyphen ('-'). Also, it can't end with a hyphen or contain two consecutive hyphens, and can only begin with a letter, such as Example-App-ARN1. For example, this value might result in the EndpointArn value arn:aws:dms:eu-west-1:012345678901:rep:Example-App-ARN1. If you don't specify a ResourceIdentifier value, AWS DMS generates a default identifier value for the end of EndpointArn.
|
|
768
|
+
*/
|
|
769
|
+
ResourceIdentifier?: String;
|
|
766
770
|
}
|
|
767
771
|
export interface CreateEndpointResponse {
|
|
768
772
|
/**
|
|
@@ -863,6 +867,10 @@ declare namespace DMS {
|
|
|
863
867
|
* 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"
|
|
864
868
|
*/
|
|
865
869
|
DnsNameServers?: String;
|
|
870
|
+
/**
|
|
871
|
+
* A friendly name for the resource identifier at the end of the EndpointArn response parameter that is returned in the created Endpoint object. The value for this parameter can have up to 31 characters. It can contain only ASCII letters, digits, and hyphen ('-'). Also, it can't end with a hyphen or contain two consecutive hyphens, and can only begin with a letter, such as Example-App-ARN1. For example, this value might result in the EndpointArn value arn:aws:dms:eu-west-1:012345678901:rep:Example-App-ARN1. If you don't specify a ResourceIdentifier value, AWS DMS generates a default identifier value for the end of EndpointArn.
|
|
872
|
+
*/
|
|
873
|
+
ResourceIdentifier?: String;
|
|
866
874
|
}
|
|
867
875
|
export interface CreateReplicationInstanceResponse {
|
|
868
876
|
/**
|
|
@@ -943,6 +951,10 @@ declare namespace DMS {
|
|
|
943
951
|
* 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.
|
|
944
952
|
*/
|
|
945
953
|
TaskData?: String;
|
|
954
|
+
/**
|
|
955
|
+
* A friendly name for the resource identifier at the end of the EndpointArn response parameter that is returned in the created Endpoint object. The value for this parameter can have up to 31 characters. It can contain only ASCII letters, digits, and hyphen ('-'). Also, it can't end with a hyphen or contain two consecutive hyphens, and can only begin with a letter, such as Example-App-ARN1. For example, this value might result in the EndpointArn value arn:aws:dms:eu-west-1:012345678901:rep:Example-App-ARN1. If you don't specify a ResourceIdentifier value, AWS DMS generates a default identifier value for the end of EndpointArn.
|
|
956
|
+
*/
|
|
957
|
+
ResourceIdentifier?: String;
|
|
946
958
|
}
|
|
947
959
|
export interface CreateReplicationTaskResponse {
|
|
948
960
|
/**
|
|
@@ -2705,6 +2717,14 @@ declare namespace DMS {
|
|
|
2705
2717
|
* The name of the intermediate S3 bucket used to store .csv files before uploading data to Redshift.
|
|
2706
2718
|
*/
|
|
2707
2719
|
BucketName?: String;
|
|
2720
|
+
/**
|
|
2721
|
+
* If Amazon Redshift is configured to support case sensitive schema names, set CaseSensitiveNames to true. The default is false.
|
|
2722
|
+
*/
|
|
2723
|
+
CaseSensitiveNames?: BooleanOptional;
|
|
2724
|
+
/**
|
|
2725
|
+
* If you set CompUpdate to true Amazon Redshift applies automatic compression if the table is empty. This applies even if the table columns already have encodings other than RAW. If you set CompUpdate to false, automatic compression is disabled and existing column encodings aren't changed. The default is true.
|
|
2726
|
+
*/
|
|
2727
|
+
CompUpdate?: BooleanOptional;
|
|
2708
2728
|
/**
|
|
2709
2729
|
* A value that sets the amount of time to wait (in milliseconds) before timing out, beginning from when you initially establish a connection.
|
|
2710
2730
|
*/
|
|
@@ -2725,6 +2745,10 @@ declare namespace DMS {
|
|
|
2725
2745
|
* The type of server-side encryption that you want to use for your data. This encryption type is part of the endpoint settings or the extra connections attributes for Amazon S3. You can choose either SSE_S3 (the default) or SSE_KMS. For the ModifyEndpoint operation, you can change the existing value of the EncryptionMode parameter from SSE_KMS to SSE_S3. But you can’t change the existing value from SSE_S3 to SSE_KMS. To use SSE_S3, create an AWS Identity and Access Management (IAM) role with a policy that allows "arn:aws:s3:::*" to use the following actions: "s3:PutObject", "s3:ListBucket"
|
|
2726
2746
|
*/
|
|
2727
2747
|
EncryptionMode?: EncryptionModeValue;
|
|
2748
|
+
/**
|
|
2749
|
+
* This setting is only valid for a full-load migration task. Set ExplicitIds to true to have tables with IDENTITY columns override their auto-generated values with explicit values loaded from the source data files used to populate the tables. The default is false.
|
|
2750
|
+
*/
|
|
2751
|
+
ExplicitIds?: BooleanOptional;
|
|
2728
2752
|
/**
|
|
2729
2753
|
* The number of threads used to upload a single file. This parameter accepts a value from 1 through 64. It defaults to 10. The number of parallel streams used to upload a single .csv file to an S3 bucket using S3 Multipart Upload. For more information, see Multipart upload overview. FileTransferUploadStreams accepts a value from 1 through 64. It defaults to 10.
|
|
2730
2754
|
*/
|
|
@@ -3357,7 +3381,7 @@ declare namespace DMS {
|
|
|
3357
3381
|
*/
|
|
3358
3382
|
DatePartitionSequence?: DatePartitionSequenceValue;
|
|
3359
3383
|
/**
|
|
3360
|
-
* Specifies a date separating delimiter to use during folder partitioning. The default value is SLASH
|
|
3384
|
+
* Specifies a date separating delimiter to use during folder partitioning. The default value is SLASH. Use this parameter when DatePartitionedEnabled is set to true.
|
|
3361
3385
|
*/
|
|
3362
3386
|
DatePartitionDelimiter?: DatePartitionDelimiterValue;
|
|
3363
3387
|
}
|
|
@@ -3428,7 +3452,7 @@ declare namespace DMS {
|
|
|
3428
3452
|
*/
|
|
3429
3453
|
ReplicationTaskArn: String;
|
|
3430
3454
|
/**
|
|
3431
|
-
*
|
|
3455
|
+
* A type of replication task.
|
|
3432
3456
|
*/
|
|
3433
3457
|
StartReplicationTaskType: StartReplicationTaskTypeValue;
|
|
3434
3458
|
/**
|
package/clients/ec2.d.ts
CHANGED
|
@@ -3221,21 +3221,21 @@ declare class EC2 extends Service {
|
|
|
3221
3221
|
*/
|
|
3222
3222
|
revokeClientVpnIngress(callback?: (err: AWSError, data: EC2.Types.RevokeClientVpnIngressResult) => void): Request<EC2.Types.RevokeClientVpnIngressResult, AWSError>;
|
|
3223
3223
|
/**
|
|
3224
|
-
* [VPC only] Removes the specified egress rules from a security group for EC2-VPC. This action
|
|
3224
|
+
* [VPC only] Removes the specified egress rules from a security group for EC2-VPC. This action does not apply to security groups for use in EC2-Classic. To remove a rule, the values that you specify (for example, ports) must match the existing rule's values exactly. [Default VPC] If the values you specify do not match the existing rule's values, no error is returned, and the output describes the security group rules that were not revoked. AWS recommends that you use DescribeSecurityGroups to verify that the rule has been removed. Each rule consists of the protocol and the IPv4 or IPv6 CIDR range or source security group. For the TCP and UDP protocols, you must also specify the destination port or range of ports. For the ICMP protocol, you must also specify the ICMP type and code. If the security group rule has a description, you do not have to specify the description to revoke the rule. Rule changes are propagated to instances within the security group as quickly as possible. However, a small delay might occur.
|
|
3225
3225
|
*/
|
|
3226
|
-
revokeSecurityGroupEgress(params: EC2.Types.RevokeSecurityGroupEgressRequest, callback?: (err: AWSError, data:
|
|
3226
|
+
revokeSecurityGroupEgress(params: EC2.Types.RevokeSecurityGroupEgressRequest, callback?: (err: AWSError, data: EC2.Types.RevokeSecurityGroupEgressResult) => void): Request<EC2.Types.RevokeSecurityGroupEgressResult, AWSError>;
|
|
3227
3227
|
/**
|
|
3228
|
-
* [VPC only] Removes the specified egress rules from a security group for EC2-VPC. This action
|
|
3228
|
+
* [VPC only] Removes the specified egress rules from a security group for EC2-VPC. This action does not apply to security groups for use in EC2-Classic. To remove a rule, the values that you specify (for example, ports) must match the existing rule's values exactly. [Default VPC] If the values you specify do not match the existing rule's values, no error is returned, and the output describes the security group rules that were not revoked. AWS recommends that you use DescribeSecurityGroups to verify that the rule has been removed. Each rule consists of the protocol and the IPv4 or IPv6 CIDR range or source security group. For the TCP and UDP protocols, you must also specify the destination port or range of ports. For the ICMP protocol, you must also specify the ICMP type and code. If the security group rule has a description, you do not have to specify the description to revoke the rule. Rule changes are propagated to instances within the security group as quickly as possible. However, a small delay might occur.
|
|
3229
3229
|
*/
|
|
3230
|
-
revokeSecurityGroupEgress(callback?: (err: AWSError, data:
|
|
3230
|
+
revokeSecurityGroupEgress(callback?: (err: AWSError, data: EC2.Types.RevokeSecurityGroupEgressResult) => void): Request<EC2.Types.RevokeSecurityGroupEgressResult, AWSError>;
|
|
3231
3231
|
/**
|
|
3232
|
-
* Removes the specified ingress rules from a security group. To remove a rule, the values that you specify (for example, ports) must match the existing rule's values exactly. [EC2-Classic
|
|
3232
|
+
* Removes the specified ingress rules from a security group. To remove a rule, the values that you specify (for example, ports) must match the existing rule's values exactly. [EC2-Classic , default VPC] If the values you specify do not match the existing rule's values, no error is returned, and the output describes the security group rules that were not revoked. AWS recommends that you use DescribeSecurityGroups to verify that the rule has been removed. Each rule consists of the protocol and the CIDR range or source security group. For the TCP and UDP protocols, you must also specify the destination port or range of ports. For the ICMP protocol, you must also specify the ICMP type and code. If the security group rule has a description, you do not have to specify the description to revoke the rule. Rule changes are propagated to instances within the security group as quickly as possible. However, a small delay might occur.
|
|
3233
3233
|
*/
|
|
3234
|
-
revokeSecurityGroupIngress(params: EC2.Types.RevokeSecurityGroupIngressRequest, callback?: (err: AWSError, data:
|
|
3234
|
+
revokeSecurityGroupIngress(params: EC2.Types.RevokeSecurityGroupIngressRequest, callback?: (err: AWSError, data: EC2.Types.RevokeSecurityGroupIngressResult) => void): Request<EC2.Types.RevokeSecurityGroupIngressResult, AWSError>;
|
|
3235
3235
|
/**
|
|
3236
|
-
* Removes the specified ingress rules from a security group. To remove a rule, the values that you specify (for example, ports) must match the existing rule's values exactly. [EC2-Classic
|
|
3236
|
+
* Removes the specified ingress rules from a security group. To remove a rule, the values that you specify (for example, ports) must match the existing rule's values exactly. [EC2-Classic , default VPC] If the values you specify do not match the existing rule's values, no error is returned, and the output describes the security group rules that were not revoked. AWS recommends that you use DescribeSecurityGroups to verify that the rule has been removed. Each rule consists of the protocol and the CIDR range or source security group. For the TCP and UDP protocols, you must also specify the destination port or range of ports. For the ICMP protocol, you must also specify the ICMP type and code. If the security group rule has a description, you do not have to specify the description to revoke the rule. Rule changes are propagated to instances within the security group as quickly as possible. However, a small delay might occur.
|
|
3237
3237
|
*/
|
|
3238
|
-
revokeSecurityGroupIngress(callback?: (err: AWSError, data:
|
|
3238
|
+
revokeSecurityGroupIngress(callback?: (err: AWSError, data: EC2.Types.RevokeSecurityGroupIngressResult) => void): Request<EC2.Types.RevokeSecurityGroupIngressResult, AWSError>;
|
|
3239
3239
|
/**
|
|
3240
3240
|
* Launches the specified number of instances using an AMI for which you have permissions. You can specify a number of options, or leave the default options. The following rules apply: [EC2-VPC] If you don't specify a subnet ID, we choose a default subnet from your default VPC for you. If you don't have a default VPC, you must specify a subnet ID in the request. [EC2-Classic] If don't specify an Availability Zone, we choose one for you. Some instance types must be launched into a VPC. If you do not have a default VPC, or if you do not specify a subnet ID, the request fails. For more information, see Instance types available only in a VPC. [EC2-VPC] All instances have a network interface with a primary private IPv4 address. If you don't specify this address, we choose one from the IPv4 range of your subnet. Not all instance types support IPv6 addresses. For more information, see Instance types. If you don't specify a security group ID, we use the default security group. For more information, see Security groups. If any of the AMIs have a product code attached for which the user has not subscribed, the request fails. You can create a launch template, which is a resource that contains the parameters to launch an instance. When you launch an instance using RunInstances, you can specify the launch template instead of specifying the launch parameters. To ensure faster instance launches, break up large requests into smaller batches. For example, create five separate launch requests for 100 instances each instead of one launch request for 500 instances. An instance is ready for you to use when it's in the running state. You can check the state of your instance using DescribeInstances. You can tag instances and EBS volumes during launch, after launch, or both. For more information, see CreateTags and Tagging your Amazon EC2 resources. Linux instances have access to the public key of the key pair at boot. You can use this key to provide secure access to the instance. Amazon EC2 public images use this feature to provide secure access without passwords. For more information, see Key pairs in the Amazon Elastic Compute Cloud User Guide. For troubleshooting, see What to do if an instance immediately terminates, and Troubleshooting connecting to your instance in the Amazon Elastic Compute Cloud User Guide.
|
|
3241
3241
|
*/
|
|
@@ -21763,6 +21763,16 @@ declare namespace EC2 {
|
|
|
21763
21763
|
*/
|
|
21764
21764
|
SourceSecurityGroupOwnerId?: String;
|
|
21765
21765
|
}
|
|
21766
|
+
export interface RevokeSecurityGroupEgressResult {
|
|
21767
|
+
/**
|
|
21768
|
+
* Returns true if the request succeeds; otherwise, returns an error.
|
|
21769
|
+
*/
|
|
21770
|
+
Return?: Boolean;
|
|
21771
|
+
/**
|
|
21772
|
+
* The outbound rules that were unknown to the service. In some cases, unknownIpPermissionSet might be in a different format from the request parameter.
|
|
21773
|
+
*/
|
|
21774
|
+
UnknownIpPermissions?: IpPermissionList;
|
|
21775
|
+
}
|
|
21766
21776
|
export interface RevokeSecurityGroupIngressRequest {
|
|
21767
21777
|
/**
|
|
21768
21778
|
* The CIDR IP address range. You can't specify this parameter when specifying a source security group.
|
|
@@ -21805,6 +21815,16 @@ declare namespace EC2 {
|
|
|
21805
21815
|
*/
|
|
21806
21816
|
DryRun?: Boolean;
|
|
21807
21817
|
}
|
|
21818
|
+
export interface RevokeSecurityGroupIngressResult {
|
|
21819
|
+
/**
|
|
21820
|
+
* Returns true if the request succeeds; otherwise, returns an error.
|
|
21821
|
+
*/
|
|
21822
|
+
Return?: Boolean;
|
|
21823
|
+
/**
|
|
21824
|
+
* The inbound rules that were unknown to the service. In some cases, unknownIpPermissionSet might be in a different format from the request parameter.
|
|
21825
|
+
*/
|
|
21826
|
+
UnknownIpPermissions?: IpPermissionList;
|
|
21827
|
+
}
|
|
21808
21828
|
export type RootDeviceType = "ebs"|"instance-store"|string;
|
|
21809
21829
|
export type RootDeviceTypeList = RootDeviceType[];
|
|
21810
21830
|
export interface Route {
|
package/clients/eks.d.ts
CHANGED
|
@@ -567,7 +567,7 @@ declare namespace EKS {
|
|
|
567
567
|
provider?: Provider;
|
|
568
568
|
}
|
|
569
569
|
export type EncryptionConfigList = EncryptionConfig[];
|
|
570
|
-
export type ErrorCode = "SubnetNotFound"|"SecurityGroupNotFound"|"EniLimitReached"|"IpNotAvailable"|"AccessDenied"|"OperationNotPermitted"|"VpcIdNotFound"|"Unknown"|"NodeCreationFailure"|"PodEvictionFailure"|"InsufficientFreeAddresses"|string;
|
|
570
|
+
export type ErrorCode = "SubnetNotFound"|"SecurityGroupNotFound"|"EniLimitReached"|"IpNotAvailable"|"AccessDenied"|"OperationNotPermitted"|"VpcIdNotFound"|"Unknown"|"NodeCreationFailure"|"PodEvictionFailure"|"InsufficientFreeAddresses"|"ClusterUnreachable"|string;
|
|
571
571
|
export interface ErrorDetail {
|
|
572
572
|
/**
|
|
573
573
|
* A brief description of the error. SubnetNotFound: We couldn't find one of the subnets associated with the cluster. SecurityGroupNotFound: We couldn't find one of the security groups associated with the cluster. EniLimitReached: You have reached the elastic network interface limit for your account. IpNotAvailable: A subnet associated with the cluster doesn't have any free IP addresses. AccessDenied: You don't have permissions to perform the specified operation. OperationNotPermitted: The service role associated with the cluster doesn't have the required access permissions for Amazon EKS. VpcIdNotFound: We couldn't find the VPC associated with the cluster.
|
|
@@ -900,7 +900,7 @@ declare namespace EKS {
|
|
|
900
900
|
*/
|
|
901
901
|
issues?: IssueList;
|
|
902
902
|
}
|
|
903
|
-
export type NodegroupIssueCode = "AutoScalingGroupNotFound"|"AutoScalingGroupInvalidConfiguration"|"Ec2SecurityGroupNotFound"|"Ec2SecurityGroupDeletionFailure"|"Ec2LaunchTemplateNotFound"|"Ec2LaunchTemplateVersionMismatch"|"Ec2SubnetNotFound"|"Ec2SubnetInvalidConfiguration"|"IamInstanceProfileNotFound"|"IamLimitExceeded"|"IamNodeRoleNotFound"|"NodeCreationFailure"|"AsgInstanceLaunchFailures"|"InstanceLimitExceeded"|"InsufficientFreeAddresses"|"AccessDenied"|"InternalFailure"|string;
|
|
903
|
+
export type NodegroupIssueCode = "AutoScalingGroupNotFound"|"AutoScalingGroupInvalidConfiguration"|"Ec2SecurityGroupNotFound"|"Ec2SecurityGroupDeletionFailure"|"Ec2LaunchTemplateNotFound"|"Ec2LaunchTemplateVersionMismatch"|"Ec2SubnetNotFound"|"Ec2SubnetInvalidConfiguration"|"IamInstanceProfileNotFound"|"IamLimitExceeded"|"IamNodeRoleNotFound"|"NodeCreationFailure"|"AsgInstanceLaunchFailures"|"InstanceLimitExceeded"|"InsufficientFreeAddresses"|"AccessDenied"|"InternalFailure"|"ClusterUnreachable"|string;
|
|
904
904
|
export interface NodegroupResources {
|
|
905
905
|
/**
|
|
906
906
|
* The Auto Scaling groups associated with the node group.
|