Skip to content

Commit 1bdfb59

Browse files
4.1.741
1 parent 4af7d85 commit 1bdfb59

File tree

12 files changed

+858
-823
lines changed

12 files changed

+858
-823
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: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
### 4.1.740 (2025-01-21 22:24Z)
1+
### 4.1.741 (2025-01-22 21:58Z)
2+
* AWS Tools for PowerShell now use AWS .NET SDK 3.7.967.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.
3+
*
4+
* Added cmdlet Get-AWSSensitiveDataConfiguration.
5+
* Added cmdlet Set-AWSSensitiveDataConfiguration.
6+
* Amazon Bedrock Agent Runtime
7+
* Modified cmdlet Invoke-BARFlow: added parameter ExecutionId.
8+
9+
### 4.1.740 (2025-01-21 22:24Z)
210
* AWS Tools for PowerShell now use AWS .NET SDK 3.7.966.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.
311
* Amazon Connect Service
412
* Added cmdlet Remove-CONNContactFlowVersion leveraging the DeleteContactFlowVersion service API.

changelogs/CHANGELOG.ALL.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
### 4.1.740 (2025-01-21 22:24Z)
1+
### 4.1.741 (2025-01-22 21:58Z)
2+
* AWS Tools for PowerShell now use AWS .NET SDK 3.7.967.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.
3+
*
4+
* Added cmdlet Get-AWSSensitiveDataConfiguration.
5+
* Added cmdlet Set-AWSSensitiveDataConfiguration.
6+
* Amazon Bedrock Agent Runtime
7+
* Modified cmdlet Invoke-BARFlow: added parameter ExecutionId.
8+
9+
### 4.1.740 (2025-01-21 22:24Z)
210
* AWS Tools for PowerShell now use AWS .NET SDK 3.7.966.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.
311
* Amazon Connect Service
412
* Added cmdlet Remove-CONNContactFlowVersion leveraging the DeleteContactFlowVersion service API.

modules/AWSPowerShell/Cmdlets/BedrockAgentRuntime/Basic/Invoke-BARFlow-Cmdlet.cs

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,17 @@ public partial class InvokeBARFlowCmdlet : AmazonBedrockAgentRuntimeClientCmdlet
6464
public System.Boolean? EnableTrace { get; set; }
6565
#endregion
6666

67+
#region Parameter ExecutionId
68+
/// <summary>
69+
/// <para>
70+
/// <para>The unique identifier for the current flow execution. If you don't provide a value,
71+
/// Amazon Bedrock creates the identifier for you. </para>
72+
/// </para>
73+
/// </summary>
74+
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
75+
public System.String ExecutionId { get; set; }
76+
#endregion
77+
6778
#region Parameter FlowAliasIdentifier
6879
/// <summary>
6980
/// <para>
@@ -171,6 +182,7 @@ protected override void ProcessRecord()
171182
throw new System.ArgumentException("Invalid value for -Select parameter.", nameof(this.Select));
172183
}
173184
context.EnableTrace = this.EnableTrace;
185+
context.ExecutionId = this.ExecutionId;
174186
context.FlowAliasIdentifier = this.FlowAliasIdentifier;
175187
#if MODULAR
176188
if (this.FlowAliasIdentifier == null && ParameterWasBound(nameof(this.FlowAliasIdentifier)))
@@ -216,6 +228,10 @@ public object Execute(ExecutorContext context)
216228
{
217229
request.EnableTrace = cmdletContext.EnableTrace.Value;
218230
}
231+
if (cmdletContext.ExecutionId != null)
232+
{
233+
request.ExecutionId = cmdletContext.ExecutionId;
234+
}
219235
if (cmdletContext.FlowAliasIdentifier != null)
220236
{
221237
request.FlowAliasIdentifier = cmdletContext.FlowAliasIdentifier;
@@ -324,6 +340,7 @@ private Amazon.BedrockAgentRuntime.Model.InvokeFlowResponse CallAWSServiceOperat
324340
internal partial class CmdletContext : ExecutorContext
325341
{
326342
public System.Boolean? EnableTrace { get; set; }
343+
public System.String ExecutionId { get; set; }
327344
public System.String FlowAliasIdentifier { get; set; }
328345
public System.String FlowIdentifier { get; set; }
329346
public List<Amazon.BedrockAgentRuntime.Model.FlowInput> Input { get; set; }

modules/AWSPowerShell/Cmdlets/Glue/Basic/New-GLUEJob-Cmdlet.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -416,10 +416,10 @@ public partial class NewGLUEJobCmdlet : AmazonGlueClientCmdlet, IExecutor
416416
/// <summary>
417417
/// <para>
418418
/// <para>The job timeout in minutes. This is the maximum time that a job run can consume resources
419-
/// before it is terminated and enters <c>TIMEOUT</c> status. The default is 2,880 minutes
420-
/// (48 hours) for batch jobs.</para><para>Streaming jobs must have timeout values less than 7 days or 10080 minutes. When the
421-
/// value is left blank, the job will be restarted after 7 days based if you have not
422-
/// setup a maintenance window. If you have setup maintenance window, it will be restarted
419+
/// before it is terminated and enters <c>TIMEOUT</c> status.</para><para>Jobs must have timeout values less than 7 days or 10080 minutes. Otherwise, the jobs
420+
/// will throw an exception.</para><para>When the value is left blank, the timeout is defaulted to 2880 minutes.</para><para>Any existing Glue jobs that had a timeout value greater than 7 days will be defaulted
421+
/// to 7 days. For instance if you have specified a timeout of 20 days for a batch job,
422+
/// it will be stopped on the 7th day.</para><para>For streaming jobs, if you have set up a maintenance window, it will be restarted
423423
/// during the maintenance window after 7 days.</para>
424424
/// </para>
425425
/// </summary>

modules/AWSPowerShell/Cmdlets/Glue/Basic/New-GLUESession-Cmdlet.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,8 +209,7 @@ public partial class NewGLUESessionCmdlet : AmazonGlueClientCmdlet, IExecutor
209209
/// <summary>
210210
/// <para>
211211
/// <para> The number of minutes before session times out. Default for Spark ETL jobs is 48
212-
/// hours (2880 minutes), the maximum session lifetime for this job type. Consult the
213-
/// documentation for other job types. </para>
212+
/// hours (2880 minutes). Consult the documentation for other job types. </para>
214213
/// </para>
215214
/// </summary>
216215
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]

modules/AWSPowerShell/Cmdlets/Glue/Basic/Start-GLUEJobRun-Cmdlet.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,8 @@ public partial class StartGLUEJobRunCmdlet : AmazonGlueClientCmdlet, IExecutor
178178
/// overrides the timeout value set in the parent job. </para><para>Jobs must have timeout values less than 7 days or 10080 minutes. Otherwise, the jobs
179179
/// will throw an exception.</para><para>When the value is left blank, the timeout is defaulted to 2880 minutes.</para><para>Any existing Glue jobs that had a timeout value greater than 7 days will be defaulted
180180
/// to 7 days. For instance if you have specified a timeout of 20 days for a batch job,
181-
/// it will be stopped on the 7th day.</para>
181+
/// it will be stopped on the 7th day.</para><para>For streaming jobs, if you have set up a maintenance window, it will be restarted
182+
/// during the maintenance window after 7 days.</para>
182183
/// </para>
183184
/// </summary>
184185
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]

modules/AWSPowerShell/Cmdlets/WorkSpacesThinClient/Basic/New-WSTCEnvironment-Cmdlet.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public partial class NewWSTCEnvironmentCmdlet : AmazonWorkSpacesThinClientClient
8282
/// <summary>
8383
/// <para>
8484
/// <para>The Amazon Resource Name (ARN) of the desktop to stream from Amazon WorkSpaces, WorkSpaces
85-
/// Web, or AppStream 2.0.</para>
85+
/// Secure Browser, or AppStream 2.0.</para>
8686
/// </para>
8787
/// </summary>
8888
#if !MODULAR

modules/AWSPowerShell/Cmdlets/WorkSpacesThinClient/Basic/Update-WSTCEnvironment-Cmdlet.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public partial class UpdateWSTCEnvironmentCmdlet : AmazonWorkSpacesThinClientCli
8282
/// <summary>
8383
/// <para>
8484
/// <para>The Amazon Resource Name (ARN) of the desktop to stream from Amazon WorkSpaces, WorkSpaces
85-
/// Web, or AppStream 2.0.</para>
85+
/// Secure Browser, or AppStream 2.0.</para>
8686
/// </para>
8787
/// </summary>
8888
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
2 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)