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
package/clients/eventbridge.d.ts
CHANGED
|
@@ -374,6 +374,12 @@ declare namespace EventBridge {
|
|
|
374
374
|
*/
|
|
375
375
|
Name: EventSourceName;
|
|
376
376
|
}
|
|
377
|
+
export interface DeadLetterConfig {
|
|
378
|
+
/**
|
|
379
|
+
* The ARN of the SQS queue specified as the target for the dead-letter queue.
|
|
380
|
+
*/
|
|
381
|
+
Arn?: ResourceArn;
|
|
382
|
+
}
|
|
377
383
|
export interface DeleteEventBusRequest {
|
|
378
384
|
/**
|
|
379
385
|
* The name of the event bus to delete.
|
|
@@ -850,6 +856,8 @@ declare namespace EventBridge {
|
|
|
850
856
|
NextToken?: NextToken;
|
|
851
857
|
}
|
|
852
858
|
export type ManagedBy = string;
|
|
859
|
+
export type MaximumEventAgeInSeconds = number;
|
|
860
|
+
export type MaximumRetryAttempts = number;
|
|
853
861
|
export type MessageGroupId = string;
|
|
854
862
|
export interface NetworkConfiguration {
|
|
855
863
|
/**
|
|
@@ -1189,6 +1197,17 @@ declare namespace EventBridge {
|
|
|
1189
1197
|
ErrorMessage?: ErrorMessage;
|
|
1190
1198
|
}
|
|
1191
1199
|
export type RemoveTargetsResultEntryList = RemoveTargetsResultEntry[];
|
|
1200
|
+
export type ResourceArn = string;
|
|
1201
|
+
export interface RetryPolicy {
|
|
1202
|
+
/**
|
|
1203
|
+
* The maximum number of retry attempts to make before the request fails. Retry attempts continue until either the maximum number of attempts is made or until the duration of the MaximumEventAgeInSeconds is met.
|
|
1204
|
+
*/
|
|
1205
|
+
MaximumRetryAttempts?: MaximumRetryAttempts;
|
|
1206
|
+
/**
|
|
1207
|
+
* The maximum amount of time, in seconds, to continue to make retry attempts.
|
|
1208
|
+
*/
|
|
1209
|
+
MaximumEventAgeInSeconds?: MaximumEventAgeInSeconds;
|
|
1210
|
+
}
|
|
1192
1211
|
export type RoleArn = string;
|
|
1193
1212
|
export interface Rule {
|
|
1194
1213
|
/**
|
|
@@ -1345,6 +1364,14 @@ declare namespace EventBridge {
|
|
|
1345
1364
|
* Contains the Redshift Data API parameters to use when the target is a Redshift cluster. If you specify a Redshift Cluster as a Target, you can use this to specify parameters to invoke the Redshift Data API ExecuteStatement based on EventBridge events.
|
|
1346
1365
|
*/
|
|
1347
1366
|
RedshiftDataParameters?: RedshiftDataParameters;
|
|
1367
|
+
/**
|
|
1368
|
+
* The DeadLetterConfig that defines the target queue to send dead-letter queue events to.
|
|
1369
|
+
*/
|
|
1370
|
+
DeadLetterConfig?: DeadLetterConfig;
|
|
1371
|
+
/**
|
|
1372
|
+
* The RetryPolicy object that contains the retry policy configuration to use for the dead-letter queue.
|
|
1373
|
+
*/
|
|
1374
|
+
RetryPolicy?: RetryPolicy;
|
|
1348
1375
|
}
|
|
1349
1376
|
export type TargetArn = string;
|
|
1350
1377
|
export type TargetId = string;
|
package/clients/glue.d.ts
CHANGED
|
@@ -4082,7 +4082,7 @@ declare namespace Glue {
|
|
|
4082
4082
|
*/
|
|
4083
4083
|
Language?: Language;
|
|
4084
4084
|
/**
|
|
4085
|
-
* A map to hold additional optional key-value parameters.
|
|
4085
|
+
* A map to hold additional optional key-value parameters. Currently, these key-value pairs are supported: inferSchema — Specifies whether to set inferSchema to true or false for the default script generated by an AWS Glue job. For example, to set inferSchema to true, pass the following key value pair: --additional-plan-options-map '{"inferSchema":"true"}'
|
|
4086
4086
|
*/
|
|
4087
4087
|
AdditionalPlanOptionsMap?: AdditionalPlanOptionsMap;
|
|
4088
4088
|
}
|
|
@@ -391,7 +391,7 @@ declare namespace GroundStation {
|
|
|
391
391
|
contactId?: String;
|
|
392
392
|
}
|
|
393
393
|
export type ContactList = ContactData[];
|
|
394
|
-
export type ContactStatus = "AVAILABLE"|"AWS_CANCELLED"|"CANCELLED"|"CANCELLING"|"COMPLETED"|"FAILED"|"FAILED_TO_SCHEDULE"|"PASS"|"POSTPASS"|"PREPASS"|"SCHEDULED"|"SCHEDULING"|string;
|
|
394
|
+
export type ContactStatus = "AVAILABLE"|"AWS_CANCELLED"|"AWS_FAILED"|"CANCELLED"|"CANCELLING"|"COMPLETED"|"FAILED"|"FAILED_TO_SCHEDULE"|"PASS"|"POSTPASS"|"PREPASS"|"SCHEDULED"|"SCHEDULING"|string;
|
|
395
395
|
export interface CreateConfigRequest {
|
|
396
396
|
/**
|
|
397
397
|
* Parameters of a Config.
|
|
@@ -449,6 +449,10 @@ declare namespace GroundStation {
|
|
|
449
449
|
export type Criticality = "PREFERRED"|"REMOVED"|"REQUIRED"|string;
|
|
450
450
|
export interface DataflowDetail {
|
|
451
451
|
destination?: Destination;
|
|
452
|
+
/**
|
|
453
|
+
* Error message for a dataflow.
|
|
454
|
+
*/
|
|
455
|
+
errorMessage?: String;
|
|
452
456
|
source?: Source;
|
|
453
457
|
}
|
|
454
458
|
export type DataflowEdge = ConfigArn[];
|
package/clients/iot.d.ts
CHANGED
|
@@ -3583,7 +3583,7 @@ declare namespace Iot {
|
|
|
3583
3583
|
*/
|
|
3584
3584
|
alertTargets?: AlertTargets;
|
|
3585
3585
|
/**
|
|
3586
|
-
* A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile's behaviors, but it is also retained for any metric specified here.
|
|
3586
|
+
* Please use CreateSecurityProfileRequest$additionalMetricsToRetainV2 instead. A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile's behaviors, but it is also retained for any metric specified here.
|
|
3587
3587
|
*/
|
|
3588
3588
|
additionalMetricsToRetain?: AdditionalMetricsToRetainList;
|
|
3589
3589
|
/**
|
|
@@ -4345,6 +4345,10 @@ declare namespace Iot {
|
|
|
4345
4345
|
* The type of the domain.
|
|
4346
4346
|
*/
|
|
4347
4347
|
domainType?: DomainType;
|
|
4348
|
+
/**
|
|
4349
|
+
* The date and time the domain configuration's status was last changed.
|
|
4350
|
+
*/
|
|
4351
|
+
lastStatusChangeDate?: DateType;
|
|
4348
4352
|
}
|
|
4349
4353
|
export interface DescribeEndpointRequest {
|
|
4350
4354
|
/**
|
|
@@ -4618,7 +4622,7 @@ declare namespace Iot {
|
|
|
4618
4622
|
*/
|
|
4619
4623
|
alertTargets?: AlertTargets;
|
|
4620
4624
|
/**
|
|
4621
|
-
* A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile's behaviors, but it is also retained for any metric specified here.
|
|
4625
|
+
* Please use DescribeSecurityProfileResponse$additionalMetricsToRetainV2 instead. A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile's behaviors, but it is also retained for any metric specified here.
|
|
4622
4626
|
*/
|
|
4623
4627
|
additionalMetricsToRetain?: AdditionalMetricsToRetainList;
|
|
4624
4628
|
/**
|
|
@@ -5060,11 +5064,11 @@ declare namespace Iot {
|
|
|
5060
5064
|
*/
|
|
5061
5065
|
baseRatePerMinute: RolloutRatePerMinute;
|
|
5062
5066
|
/**
|
|
5063
|
-
* The exponential factor to increase the rate of rollout for a job.
|
|
5067
|
+
* The exponential factor to increase the rate of rollout for a job. AWS IoT supports up to one digit after the decimal (for example, 1.5, but not 1.55).
|
|
5064
5068
|
*/
|
|
5065
5069
|
incrementFactor: IncrementFactor;
|
|
5066
5070
|
/**
|
|
5067
|
-
* The criteria to initiate the increase in rate of rollout for a job.
|
|
5071
|
+
* The criteria to initiate the increase in rate of rollout for a job.
|
|
5068
5072
|
*/
|
|
5069
5073
|
rateIncreaseCriteria: RateIncreaseCriteria;
|
|
5070
5074
|
}
|
|
@@ -9487,7 +9491,7 @@ declare namespace Iot {
|
|
|
9487
9491
|
*/
|
|
9488
9492
|
alertTargets?: AlertTargets;
|
|
9489
9493
|
/**
|
|
9490
|
-
* A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile's behaviors, but it is also retained for any metric specified here.
|
|
9494
|
+
* Please use UpdateSecurityProfileRequest$additionalMetricsToRetainV2 instead. A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile's behaviors, but it is also retained for any metric specified here.
|
|
9491
9495
|
*/
|
|
9492
9496
|
additionalMetricsToRetain?: AdditionalMetricsToRetainList;
|
|
9493
9497
|
/**
|
|
@@ -9533,7 +9537,7 @@ declare namespace Iot {
|
|
|
9533
9537
|
*/
|
|
9534
9538
|
alertTargets?: AlertTargets;
|
|
9535
9539
|
/**
|
|
9536
|
-
* A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the security profile's behaviors, but it is also retained for any metric specified here.
|
|
9540
|
+
* Please use UpdateSecurityProfileResponse$additionalMetricsToRetainV2 instead. A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the security profile's behaviors, but it is also retained for any metric specified here.
|
|
9537
9541
|
*/
|
|
9538
9542
|
additionalMetricsToRetain?: AdditionalMetricsToRetainList;
|
|
9539
9543
|
/**
|