You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* release-1.45.18:
Bumping version to 1.45.18
Update changelog based on model updates
Fix parent reference warning (#10362)
Update restore-snapshot-from-recycle-bin.rst
"description": "Automated Reasoning checks - Added two build workflows for policies. Iterative Refine Policy uses AI to update policy definitions based on test results and feedback. Resolve Policy Ambiguities consolidates ambiguous variables in Automated Reasoning policies, a common source of ambiguous validation.",
5
+
"type": "api-change"
6
+
},
7
+
{
8
+
"category": "``bedrock-agentcore-control``",
9
+
"description": "Reference your own AWS Secrets Manager secrets when configuring credential providers, giving you control over encryption, rotation, and access policies instead of using service-managed secrets.",
10
+
"type": "api-change"
11
+
},
12
+
{
13
+
"category": "``groundstation``",
14
+
"description": "Adds support for Alpha-5 satellite number encoding in the Two-Line Element ephemeris format.",
15
+
"type": "api-change"
16
+
},
17
+
{
18
+
"category": "``omics``",
19
+
"description": "Add engineSettings to StartRun and GetRun. Add profiles and profileParameterTemplates to GetWorkflow and GetWorkflowVersion.",
20
+
"type": "api-change"
21
+
},
22
+
{
23
+
"category": "``quicksight``",
24
+
"description": "Adds support for creating, updating, describing, listing, and deleting an OAuthClientApplication resource, a new quicksight resource that allows customers to store OAuth configurations to connect to their databases via 3 Legged OAuth.",
25
+
"type": "api-change"
26
+
},
27
+
{
28
+
"category": "``rds-data``",
29
+
"description": "RDS Data API arrays (longValues, doubleValues, stringValues, booleanValues) in ExecuteStatement responses now correctly support null elements. Runtime change for JS v3 and .NET. Compile-time change for C plus plus, .NET, Kotlin, Rust. No impact for Java, Python, Ruby, PHP, Go.",
30
+
"type": "api-change"
31
+
},
32
+
{
33
+
"category": "``route53resolver``",
34
+
"description": "Added BatchCreateFirewallRule, BatchUpdateFirewallRule, BatchDeleteFirewallRule, and ListFirewallRuleTypes APIs. Added FirewallRuleType support to Firewall Rule APIs.",
35
+
"type": "api-change"
36
+
},
37
+
{
38
+
"category": "``sesv2``",
39
+
"description": "This release introduces support for Tenant Suppression Lists",
40
+
"type": "api-change"
41
+
},
42
+
{
43
+
"category": "s3",
44
+
"description": "Fix false negative in parent-directory escape detection that allowed keys like ``/../foo`` to bypass warning during downloads",
Copy file name to clipboardExpand all lines: CHANGELOG.rst
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,20 @@
2
2
CHANGELOG
3
3
=========
4
4
5
+
1.45.18
6
+
=======
7
+
8
+
* api-change:``bedrock``: Automated Reasoning checks - Added two build workflows for policies. Iterative Refine Policy uses AI to update policy definitions based on test results and feedback. Resolve Policy Ambiguities consolidates ambiguous variables in Automated Reasoning policies, a common source of ambiguous validation.
9
+
* api-change:``bedrock-agentcore-control``: Reference your own AWS Secrets Manager secrets when configuring credential providers, giving you control over encryption, rotation, and access policies instead of using service-managed secrets.
10
+
* api-change:``groundstation``: Adds support for Alpha-5 satellite number encoding in the Two-Line Element ephemeris format.
11
+
* api-change:``omics``: Add engineSettings to StartRun and GetRun. Add profiles and profileParameterTemplates to GetWorkflow and GetWorkflowVersion.
12
+
* api-change:``quicksight``: Adds support for creating, updating, describing, listing, and deleting an OAuthClientApplication resource, a new quicksight resource that allows customers to store OAuth configurations to connect to their databases via 3 Legged OAuth.
13
+
* api-change:``rds-data``: RDS Data API arrays (longValues, doubleValues, stringValues, booleanValues) in ExecuteStatement responses now correctly support null elements. Runtime change for JS v3 and .NET. Compile-time change for C plus plus, .NET, Kotlin, Rust. No impact for Java, Python, Ruby, PHP, Go.
14
+
* api-change:``route53resolver``: Added BatchCreateFirewallRule, BatchUpdateFirewallRule, BatchDeleteFirewallRule, and ListFirewallRuleTypes APIs. Added FirewallRuleType support to Firewall Rule APIs.
15
+
* api-change:``sesv2``: This release introduces support for Tenant Suppression Lists
16
+
* bugfix:s3: Fix false negative in parent-directory escape detection that allowed keys like ``/../foo`` to bypass warning during downloads
Copy file name to clipboardExpand all lines: awscli/examples/ec2/restore-snapshot-from-recycle-bin.rst
+13-1Lines changed: 13 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,18 @@ The following ``restore-snapshot-from-recycle-bin`` example restores a snapshot
5
5
aws ec2 restore-snapshot-from-recycle-bin \
6
6
--snapshot-id snap-01234567890abcdef
7
7
8
-
This command produces no output.
8
+
Output::
9
+
10
+
{
11
+
"SnapshotId": "snap-01234567890abcdef",
12
+
"Description": "Monthly data backup snapshot",
13
+
"Encrypted": false,
14
+
"OwnerId": "111122223333",
15
+
"Progress": "99%",
16
+
"StartTime": "2021-12-01T13:00:00.000000+00:00",
17
+
"State": "recovering",
18
+
"VolumeId": "vol-ffffffff",
19
+
"VolumeSize": 30
20
+
}
9
21
10
22
For more information about Recycle Bin, see `Recover deleted snapshots from the Recycle Bin <https://docs.aws.amazon.com/ebs/latest/userguide/recycle-bin-working-with-snaps.html>`__ in the *Amazon EBS User Guide*.
0 commit comments