Skip to content

Commit 98b098b

Browse files
author
awstools
committed
Updates SDK to v2.609.0
1 parent 3427cde commit 98b098b

16 files changed

+1426
-701
lines changed

.changes/2.609.0.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "IAM",
5+
"description": "This release enables the Identity and Access Management policy simulator to simulate permissions boundary policies."
6+
},
7+
{
8+
"type": "feature",
9+
"category": "RDS",
10+
"description": "This SDK release introduces APIs that automate the export of Amazon RDS snapshot data to Amazon S3. The new APIs include: StartExportTask, CancelExportTask, DescribeExportTasks. These APIs automate the extraction of data from an RDS snapshot and export it to an Amazon S3 bucket. The data is stored in a compressed, consistent, and query-able format. After the data is exported, you can query it directly using tools such as Amazon Athena or Redshift Spectrum. You can also consume the data as part of a data lake solution. If you archive the data in S3 Infrequent Access or Glacier, you can reduce long term data storage costs by applying data lifecycle policies."
11+
}
12+
]

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.608.0-->
2+
<!--LATEST=2.609.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.609.0
6+
* feature: IAM: This release enables the Identity and Access Management policy simulator to simulate permissions boundary policies.
7+
* feature: RDS: This SDK release introduces APIs that automate the export of Amazon RDS snapshot data to Amazon S3. The new APIs include: StartExportTask, CancelExportTask, DescribeExportTasks. These APIs automate the extraction of data from an RDS snapshot and export it to an Amazon S3 bucket. The data is stored in a compressed, consistent, and query-able format. After the data is exported, you can query it directly using tools such as Amazon Athena or Redshift Spectrum. You can also consume the data as part of a data lake solution. If you archive the data in S3 Infrequent Access or Glacier, you can reduce long term data storage costs by applying data lifecycle policies.
8+
59
## 2.608.0
610
* feature: CodePipeline: AWS CodePipeline enables an ability to stop pipeline executions.
711
* feature: EC2: Add an enum value to the result of DescribeByoipCidrs to support CIDRs that are not publicly advertisable.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ version.
2525
To use the SDK in the browser, simply add the following script tag to your
2626
HTML pages:
2727

28-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.608.0.min.js"></script>
28+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.609.0.min.js"></script>
2929

3030
You can also build a custom browser SDK with your specified set of AWS services.
3131
This can allow you to reduce the SDK's size, specify different API versions of

apis/iam-2010-05-08.min.json

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2830,6 +2830,9 @@
28302830
"PolicyInputList": {
28312831
"shape": "S4r"
28322832
},
2833+
"PermissionsBoundaryPolicyInputList": {
2834+
"shape": "S4r"
2835+
},
28332836
"ActionNames": {
28342837
"shape": "S9t"
28352838
},
@@ -2866,6 +2869,9 @@
28662869
"PolicyInputList": {
28672870
"shape": "S4r"
28682871
},
2872+
"PermissionsBoundaryPolicyInputList": {
2873+
"shape": "S4r"
2874+
},
28692875
"ActionNames": {
28702876
"shape": "S9t"
28712877
},
@@ -2930,7 +2936,7 @@
29302936
"members": {
29312937
"RoleName": {},
29322938
"TagKeys": {
2933-
"shape": "San"
2939+
"shape": "Sao"
29342940
}
29352941
}
29362942
}
@@ -2945,7 +2951,7 @@
29452951
"members": {
29462952
"UserName": {},
29472953
"TagKeys": {
2948-
"shape": "San"
2954+
"shape": "Sao"
29492955
}
29502956
}
29512957
}
@@ -3706,9 +3712,12 @@
37063712
}
37073713
}
37083714
},
3709-
"EvalDecisionDetails": {
3715+
"PermissionsBoundaryDecisionDetail": {
37103716
"shape": "Saf"
37113717
},
3718+
"EvalDecisionDetails": {
3719+
"shape": "Sag"
3720+
},
37123721
"ResourceSpecificResults": {
37133722
"type": "list",
37143723
"member": {
@@ -3727,6 +3736,9 @@
37273736
"shape": "S4t"
37283737
},
37293738
"EvalDecisionDetails": {
3739+
"shape": "Sag"
3740+
},
3741+
"PermissionsBoundaryDecisionDetail": {
37303742
"shape": "Saf"
37313743
}
37323744
}
@@ -3769,11 +3781,19 @@
37693781
}
37703782
},
37713783
"Saf": {
3784+
"type": "structure",
3785+
"members": {
3786+
"AllowedByPermissionsBoundary": {
3787+
"type": "boolean"
3788+
}
3789+
}
3790+
},
3791+
"Sag": {
37723792
"type": "map",
37733793
"key": {},
37743794
"value": {}
37753795
},
3776-
"San": {
3796+
"Sao": {
37773797
"type": "list",
37783798
"member": {}
37793799
}

0 commit comments

Comments
 (0)