aws-sdk 2.976.0 → 2.980.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 +21 -1
- package/README.md +1 -1
- package/apis/cloudformation-2010-05-15.min.json +27 -1
- package/apis/compute-optimizer-2019-11-01.min.json +98 -25
- package/apis/ec2-2016-11-15.min.json +8 -1
- package/apis/elasticmapreduce-2009-03-31.min.json +84 -21
- package/apis/firehose-2015-08-04.min.json +104 -79
- package/apis/iot-2015-05-28.min.json +481 -232
- package/apis/iot-2015-05-28.paginators.json +12 -0
- package/apis/kms-2014-11-01.examples.json +100 -94
- package/apis/kms-2014-11-01.min.json +54 -34
- package/apis/rekognition-2016-06-27.min.json +134 -110
- package/apis/s3-2006-03-01.examples.json +162 -162
- package/clients/cloudformation.d.ts +116 -80
- package/clients/codebuild.d.ts +3 -3
- package/clients/computeoptimizer.d.ts +181 -81
- package/clients/ec2.d.ts +34 -22
- package/clients/emr.d.ts +78 -15
- package/clients/firehose.d.ts +39 -10
- package/clients/iot.d.ts +829 -506
- package/clients/kms.d.ts +293 -280
- package/clients/memorydb.d.ts +2 -2
- package/clients/polly.d.ts +2 -2
- package/clients/rekognition.d.ts +27 -7
- package/clients/s3.d.ts +6 -6
- package/clients/sqs.d.ts +4 -4
- package/clients/transcribeservice.d.ts +3 -3
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +14 -16
- package/dist/aws-sdk.js +907 -481
- package/dist/aws-sdk.min.js +85 -85
- package/dist/xml2js.js +2 -3
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/codebuild.d.ts
CHANGED
|
@@ -760,7 +760,7 @@ declare namespace CodeBuild {
|
|
|
760
760
|
*/
|
|
761
761
|
phaseType?: BuildBatchPhaseType;
|
|
762
762
|
/**
|
|
763
|
-
* The current status of the batch build phase. Valid values include: FAILED The build phase failed. FAULT The build phase faulted. IN_PROGRESS The build phase is still in progress.
|
|
763
|
+
* The current status of the batch build phase. Valid values include: FAILED The build phase failed. FAULT The build phase faulted. IN_PROGRESS The build phase is still in progress. STOPPED The build phase stopped. SUCCEEDED The build phase succeeded. TIMED_OUT The build phase timed out.
|
|
764
764
|
*/
|
|
765
765
|
phaseStatus?: StatusType;
|
|
766
766
|
/**
|
|
@@ -819,11 +819,11 @@ declare namespace CodeBuild {
|
|
|
819
819
|
}
|
|
820
820
|
export interface BuildPhase {
|
|
821
821
|
/**
|
|
822
|
-
* The name of the build phase. Valid values include:
|
|
822
|
+
* The name of the build phase. Valid values include: BUILD Core build activities typically occur in this build phase. COMPLETED The build has been completed. DOWNLOAD_SOURCE Source code is being downloaded in this build phase. FINALIZING The build process is completing in this build phase. INSTALL Installation activities typically occur in this build phase. POST_BUILD Post-build activities typically occur in this build phase. PRE_BUILD Pre-build activities typically occur in this build phase. PROVISIONING The build environment is being set up. QUEUED The build has been submitted and is queued behind other submitted builds. SUBMITTED The build has been submitted. UPLOAD_ARTIFACTS Build output artifacts are being uploaded to the output location.
|
|
823
823
|
*/
|
|
824
824
|
phaseType?: BuildPhaseType;
|
|
825
825
|
/**
|
|
826
|
-
* The current status of the build phase. Valid values include: FAILED The build phase failed. FAULT The build phase faulted. IN_PROGRESS The build phase is still in progress.
|
|
826
|
+
* The current status of the build phase. Valid values include: FAILED The build phase failed. FAULT The build phase faulted. IN_PROGRESS The build phase is still in progress. STOPPED The build phase stopped. SUCCEEDED The build phase succeeded. TIMED_OUT The build phase timed out.
|
|
827
827
|
*/
|
|
828
828
|
phaseStatus?: StatusType;
|
|
829
829
|
/**
|