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
Copy file name to clipboardExpand all lines: changelogs/CHANGELOG.2025.md
+8-1Lines changed: 8 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,11 @@
1
-
### 5.0.43 (2025-08-28 21:26Z)
1
+
### 5.0.44 (2025-08-29 20:21Z)
2
+
* AWS Tools for PowerShell now use AWS .NET SDK 4.0.81.0 and leverage its new features and improvements. Please find a description of the changes at https://github.com/aws/aws-sdk-net/blob/main/changelogs/SDK.CHANGELOG.ALL.md.
* Modified cmdlet New-XRSamplingRule: added parameters SamplingRateBoost_CooldownWindowMinute and SamplingRateBoost_MaxRate.
6
+
* Modified cmdlet Update-XRSamplingRule: added parameters SamplingRateBoost_CooldownWindowMinute and SamplingRateBoost_MaxRate.
7
+
8
+
### 5.0.43 (2025-08-28 21:26Z)
2
9
* AWS Tools for PowerShell now use AWS .NET SDK 4.0.80.0 and leverage its new features and improvements. Please find a description of the changes at https://github.com/aws/aws-sdk-net/blob/main/changelogs/SDK.CHANGELOG.ALL.md.
Copy file name to clipboardExpand all lines: changelogs/CHANGELOG.ALL.md
+8-1Lines changed: 8 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,11 @@
1
-
### 5.0.43 (2025-08-28 21:26Z)
1
+
### 5.0.44 (2025-08-29 20:21Z)
2
+
* AWS Tools for PowerShell now use AWS .NET SDK 4.0.81.0 and leverage its new features and improvements. Please find a description of the changes at https://github.com/aws/aws-sdk-net/blob/main/changelogs/SDK.CHANGELOG.ALL.md.
* Modified cmdlet New-XRSamplingRule: added parameters SamplingRateBoost_CooldownWindowMinute and SamplingRateBoost_MaxRate.
6
+
* Modified cmdlet Update-XRSamplingRule: added parameters SamplingRateBoost_CooldownWindowMinute and SamplingRateBoost_MaxRate.
7
+
8
+
### 5.0.43 (2025-08-28 21:26Z)
2
9
* AWS Tools for PowerShell now use AWS .NET SDK 4.0.80.0 and leverage its new features and improvements. Please find a description of the changes at https://github.com/aws/aws-sdk-net/blob/main/changelogs/SDK.CHANGELOG.ALL.md.
Copy file name to clipboardExpand all lines: modules/AWSPowerShell/Cmdlets/EC2/Basic/Get-EC2VpcEndpointAssociation-Cmdlet.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ public partial class GetEC2VpcEndpointAssociationCmdlet : AmazonEC2ClientCmdlet,
65
65
/// is <c>accessible</c>, it returns <c>AVAILABLE</c>. When the state is <c>inaccessible</c>,
66
66
/// it returns <c>PENDING</c> or <c>FAILED</c>.</para></li><li><para><c>association-id</c> - The ID of the VPC endpoint association.</para></li><li><para><c>associated-resource-id</c> - The ID of the associated resource configuration.</para></li><li><para><c>service-network-arn</c> - The Amazon Resource Name (ARN) of the associated service
67
67
/// network. Only VPC endpoints of type service network will be returned.</para></li><li><para><c>resource-configuration-group-arn</c> - The Amazon Resource Name (ARN) of the resource
68
-
/// configuration of type GROUP.</para></li><li><para><c>service-network-resource-association-id</c> - The ID of the association.</para></li></ul><para />
68
+
/// configuration of type GROUP.</para></li></ul><para />
69
69
/// Starting with version 4 of the SDK this property will default to null. If no data for this property is returned
70
70
/// from the service the property will also be null. This was changed to improve performance and allow the SDK and caller
71
71
/// to distinguish between a property not set or a property being empty to clear out a value. To retain the previous
Copy file name to clipboardExpand all lines: modules/AWSPowerShell/Cmdlets/S3/Basic/Get-S3ObjectMetadata-Cmdlet.cs
+20-16Lines changed: 20 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -247,8 +247,10 @@ public partial class GetS3ObjectMetadataCmdlet : AmazonS3ClientCmdlet, IExecutor
247
247
#region Parameter ModifiedSinceDate
248
248
/// <summary>
249
249
/// <para>
250
-
/// Returns the object only if it has been modified since the specified time,
251
-
/// otherwise returns a PreconditionFailed.
250
+
/// <para>Return the object only if it has been modified since the specified time; otherwise,
251
+
/// return a 304 (not modified) error.</para><para>If both of the <c>If-None-Match</c> and <c>If-Modified-Since</c> headers are present
252
+
/// in the request as follows:</para><ul><li><para><c>If-None-Match</c> condition evaluates to <c>false</c>, and;</para></li><li><para><c>If-Modified-Since</c> condition evaluates to <c>true</c>;</para></li></ul><para>Then Amazon S3 returns the <c>304 Not Modified</c> response code.</para><para>For more information about conditional requests, see <a href="https://tools.ietf.org/html/rfc7232">RFC
@@ -390,8 +392,10 @@ public partial class GetS3ObjectMetadataCmdlet : AmazonS3ClientCmdlet, IExecutor
390
392
#region Parameter UnmodifiedSinceDate
391
393
/// <summary>
392
394
/// <para>
393
-
/// Returns the object only if it has not been modified since the specified time,
394
-
/// otherwise returns a PreconditionFailed.
395
+
/// <para>Return the object only if it has not been modified since the specified time; otherwise,
396
+
/// return a 412 (precondition failed) error.</para><para>If both of the <c>If-Match</c> and <c>If-Unmodified-Since</c> headers are present
397
+
/// in the request as follows:</para><ul><li><para><c>If-Match</c> condition evaluates to <c>true</c>, and;</para></li><li><para><c>If-Unmodified-Since</c> condition evaluates to <c>false</c>;</para></li></ul><para>Then Amazon S3 returns <c>200 OK</c> and the data requested.</para><para>For more information about conditional requests, see <a href="https://tools.ietf.org/html/rfc7232">RFC
WriteWarning("You are passing $null as a value for parameter Key which is marked as required. In case you believe this parameter was incorrectly marked as required, report this by opening an issue at https://github.com/aws/aws-tools-for-powershell/issues.");
/// This API does not initiate a retrieval job. To start a trace retrieval, use <c>StartTraceRetrieval</c>,
40
+
/// This API does not initiate a retrieval process. To start a trace retrieval, use <c>StartTraceRetrieval</c>,
41
41
/// which generates the required <c>RetrievalToken</c>.
42
42
/// </para><para>
43
43
/// When the <c>RetrievalStatus</c> is not <i>COMPLETE</i>, the API will return an empty
44
44
/// response. Retry the request once the retrieval has completed to access the full list
45
45
/// of traces.
46
46
/// </para><para>
47
47
/// For cross-account observability, this API can retrieve traces from linked accounts
48
-
/// when CloudWatch log is the destination across relevant accounts. For more details,
48
+
/// when CloudWatch log is set as the destination across relevant accounts. For more details,
49
49
/// see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Unified-Cross-Account.html">CloudWatch
50
50
/// cross-account observability</a>.
51
51
/// </para><para>
52
-
/// For retrieving data from X-Ray directly as opposed to the Transaction-Search Log group,
53
-
/// see <a href="https://docs.aws.amazon.com/xray/latest/api/API_BatchGetTraces.html">BatchGetTraces</a>.
52
+
/// For retrieving data from X-Ray directly as opposed to the TransactionSearch generated
53
+
/// log group, see <a href="https://docs.aws.amazon.com/xray/latest/api/API_BatchGetTraces.html">BatchGetTraces</a>.
54
54
/// </para><br/><br/>This cmdlet automatically pages all available results to the pipeline - parameters related to iteration are only needed if you want to manually control the paginated output. To disable autopagination, use -NoAutoIteration.
Copy file name to clipboardExpand all lines: modules/AWSPowerShell/Cmdlets/XRay/Basic/Get-XRTraceSegmentDestination-Cmdlet.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -30,9 +30,9 @@
30
30
namespaceAmazon.PowerShell.Cmdlets.XR
31
31
{
32
32
/// <summary>
33
-
/// Retrieves the current destination of data sent to <c>PutTraceSegments</c> and <i>OpenTelemetry</i>
34
-
/// API. The Transaction Search feature requires a CloudWatchLogs destination. For more
35
-
/// information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Transaction-Search.html">Transaction
33
+
/// Retrieves the current destination of data sent to <c>PutTraceSegments</c> and <i>OpenTelemetry
34
+
/// protocol (OTLP)</i> endpoint. The Transaction Search feature requires a CloudWatchLogs
35
+
/// destination. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Transaction-Search.html">Transaction
36
36
/// Search</a> and <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-OpenTelemetry-Sections.html">OpenTelemetry</a>.
0 commit comments