Skip to content

Commit 38fea23

Browse files
4.1.751
1 parent a231ebc commit 38fea23

File tree

10 files changed

+828
-835
lines changed

10 files changed

+828
-835
lines changed

Include/sdk/_sdk-versions.json

Lines changed: 812 additions & 812 deletions
Large diffs are not rendered by default.

changelogs/CHANGELOG.2025.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
### 4.1.750 (2025-02-04 23:33Z)
1+
### 4.1.751 (2025-02-05 22:21Z)
2+
* AWS Tools for PowerShell now use AWS .NET SDK 3.7.976.1 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.
3+
4+
### 4.1.750 (2025-02-04 23:33Z)
25
* AWS Tools for PowerShell now use AWS .NET SDK 3.7.976.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.
36
* Amazon Database Migration Service
47
* Modified cmdlet Edit-DMSDataMigration: added parameter TargetDataSetting.

changelogs/CHANGELOG.ALL.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
### 4.1.750 (2025-02-04 23:33Z)
1+
### 4.1.751 (2025-02-05 22:21Z)
2+
* AWS Tools for PowerShell now use AWS .NET SDK 3.7.976.1 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.
3+
4+
### 4.1.750 (2025-02-04 23:33Z)
25
* AWS Tools for PowerShell now use AWS .NET SDK 3.7.976.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.
36
* Amazon Database Migration Service
47
* Modified cmdlet Edit-DMSDataMigration: added parameter TargetDataSetting.

modules/AWSPowerShell/Cmdlets/RDS/Basic/Edit-RDSDBProxyTargetGroup-Cmdlet.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ public partial class EditRDSDBProxyTargetGroupCmdlet : AmazonRDSClientCmdlet, IE
123123
/// <para>
124124
/// <para>The new name for the modified <c>DBProxyTarget</c>. An identifier must begin with
125125
/// a letter and must contain only ASCII letters, digits, and hyphens; it can't end with
126-
/// a hyphen or contain two consecutive hyphens.</para>
126+
/// a hyphen or contain two consecutive hyphens.</para><para>You can't rename the <c>default</c> target group.</para>
127127
/// </para>
128128
/// </summary>
129129
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]

modules/AWSPowerShell/Cmdlets/RDS/Basic/Edit-RDSIntegration-Cmdlet.cs

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,6 @@ namespace Amazon.PowerShell.Cmdlets.RDS
2929
{
3030
/// <summary>
3131
/// Modifies a zero-ETL integration with Amazon Redshift.
32-
///
33-
/// <note><para>
34-
/// Currently, you can only modify integrations that have Aurora MySQL source DB clusters.
35-
/// Integrations with Aurora PostgreSQL and RDS sources currently don't support modifying
36-
/// the integration.
37-
/// </para></note>
3832
/// </summary>
3933
[Cmdlet("Edit", "RDSIntegration", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Medium)]
4034
[OutputType("Amazon.RDS.Model.ModifyIntegrationResponse")]
@@ -51,7 +45,8 @@ public partial class EditRDSIntegrationCmdlet : AmazonRDSClientCmdlet, IExecutor
5145
/// <summary>
5246
/// <para>
5347
/// <para>A new data filter for the integration. For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Zero_ETL_Filtering.html">Data
54-
/// filtering for Aurora zero-ETL integrations with Amazon Redshift</a>.</para>
48+
/// filtering for Aurora zero-ETL integrations with Amazon Redshift</a> or <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/zero-etl.filtering.html">Data
49+
/// filtering for Amazon RDS zero-ETL integrations with Amazon Redshift</a>.</para>
5550
/// </para>
5651
/// </summary>
5752
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]

modules/AWSPowerShell/Cmdlets/RDS/Basic/New-RDSDBParameterGroup-Cmdlet.cs

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -41,17 +41,7 @@ namespace Amazon.PowerShell.Cmdlets.RDS
4141
/// DB parameter group and associated settings to take effect.
4242
/// </para><para>
4343
/// This command doesn't apply to RDS Custom.
44-
/// </para><important><para>
45-
/// After you create a DB parameter group, you should wait at least 5 minutes before creating
46-
/// your first DB instance that uses that DB parameter group as the default parameter
47-
/// group. This allows Amazon RDS to fully complete the create action before the parameter
48-
/// group is used as the default for a new DB instance. This is especially important for
49-
/// parameters that are critical when creating the default database for a DB instance,
50-
/// such as the character set for the default database defined by the <c>character_set_database</c>
51-
/// parameter. You can use the <i>Parameter Groups</i> option of the <a href="https://console.aws.amazon.com/rds/">Amazon
52-
/// RDS console</a> or the <i>DescribeDBParameters</i> command to verify that your DB
53-
/// parameter group has been created or modified.
54-
/// </para></important>
44+
/// </para>
5545
/// </summary>
5646
[Cmdlet("New", "RDSDBParameterGroup", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Medium)]
5747
[OutputType("Amazon.RDS.Model.DBParameterGroup")]

modules/AWSPowerShell/Cmdlets/RDS/Basic/New-RDSIntegration-Cmdlet.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ public partial class NewRDSIntegrationCmdlet : AmazonRDSClientCmdlet, IExecutor
5757
/// <summary>
5858
/// <para>
5959
/// <para>Data filtering options for the integration. For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/zero-etl.filtering.html">Data
60-
/// filtering for Aurora zero-ETL integrations with Amazon Redshift</a>. </para><para>Valid for: Integrations with Aurora MySQL source DB clusters only</para>
60+
/// filtering for Aurora zero-ETL integrations with Amazon Redshift</a> or <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/zero-etl.filtering.html">Data
61+
/// filtering for Amazon RDS zero-ETL integrations with Amazon Redshift</a>. </para>
6162
/// </para>
6263
/// </summary>
6364
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]

modules/AWSPowerShell/Cmdlets/RDS/Basic/Remove-RDSDBCluster-Cmdlet.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ public partial class RemoveRDSDBClusterCmdlet : AmazonRDSClientCmdlet, IExecutor
7878
/// <para>
7979
/// <para>Specifies whether to remove automated backups immediately after the DB cluster is
8080
/// deleted. This parameter isn't case-sensitive. The default is to remove automated backups
81-
/// immediately after the DB cluster is deleted.</para>
81+
/// immediately after the DB cluster is deleted, unless the Amazon Web Services Backup
82+
/// policy specifies a point-in-time restore rule.</para>
8283
/// </para>
8384
/// </summary>
8485
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
29 Bytes
Binary file not shown.
11 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)