From af3413756476343c77ec02f27129e576f5e4d111 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Wed, 22 Jan 2025 19:12:07 +0000 Subject: [PATCH] Update to latest models --- .../api-change-bedrockagentruntime-29588.json | 5 ++ .../next-release/api-change-glue-2433.json | 5 ++ .../api-change-medialive-37666.json | 5 ++ ...api-change-workspacesthinclient-33638.json | 5 ++ .../2023-07-26/service-2.json | 68 ++++++++++++++++++- .../data/glue/2017-03-31/service-2.json | 14 ++-- .../data/medialive/2017-10-14/service-2.json | 58 ++++++++++++++++ .../2023-08-22/service-2.json | 8 +-- 8 files changed, 154 insertions(+), 14 deletions(-) create mode 100644 .changes/next-release/api-change-bedrockagentruntime-29588.json create mode 100644 .changes/next-release/api-change-glue-2433.json create mode 100644 .changes/next-release/api-change-medialive-37666.json create mode 100644 .changes/next-release/api-change-workspacesthinclient-33638.json diff --git a/.changes/next-release/api-change-bedrockagentruntime-29588.json b/.changes/next-release/api-change-bedrockagentruntime-29588.json new file mode 100644 index 000000000000..b2dba5647bd9 --- /dev/null +++ b/.changes/next-release/api-change-bedrockagentruntime-29588.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``bedrock-agent-runtime``", + "description": "Adds multi-turn input support for an Agent node in an Amazon Bedrock Flow" +} diff --git a/.changes/next-release/api-change-glue-2433.json b/.changes/next-release/api-change-glue-2433.json new file mode 100644 index 000000000000..0bf38c02dc64 --- /dev/null +++ b/.changes/next-release/api-change-glue-2433.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``glue``", + "description": "Docs Update for timeout changes" +} diff --git a/.changes/next-release/api-change-medialive-37666.json b/.changes/next-release/api-change-medialive-37666.json new file mode 100644 index 000000000000..72d0bb3e544c --- /dev/null +++ b/.changes/next-release/api-change-medialive-37666.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``medialive``", + "description": "AWS Elemental MediaLive adds a new feature, ID3 segment tagging, in CMAF Ingest output groups. It allows customers to insert ID3 tags into every output segment, controlled by a newly added channel schedule action Id3SegmentTagging." +} diff --git a/.changes/next-release/api-change-workspacesthinclient-33638.json b/.changes/next-release/api-change-workspacesthinclient-33638.json new file mode 100644 index 000000000000..47bd464ea069 --- /dev/null +++ b/.changes/next-release/api-change-workspacesthinclient-33638.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``workspaces-thin-client``", + "description": "Rename WorkSpaces Web to WorkSpaces Secure Browser" +} diff --git a/awscli/botocore/data/bedrock-agent-runtime/2023-07-26/service-2.json b/awscli/botocore/data/bedrock-agent-runtime/2023-07-26/service-2.json index 5f1192615eab..d7bcb3c2ec41 100644 --- a/awscli/botocore/data/bedrock-agent-runtime/2023-07-26/service-2.json +++ b/awscli/botocore/data/bedrock-agent-runtime/2023-07-26/service-2.json @@ -1314,7 +1314,16 @@ }, "FlowCompletionReason":{ "type":"string", - "enum":["SUCCESS"] + "enum":[ + "SUCCESS", + "INPUT_REQUIRED" + ] + }, + "FlowExecutionId":{ + "type":"string", + "max":100, + "min":2, + "pattern":"^[0-9a-zA-Z._:-]+$" }, "FlowIdentifier":{ "type":"string", @@ -1326,14 +1335,17 @@ "type":"structure", "required":[ "content", - "nodeName", - "nodeOutputName" + "nodeName" ], "members":{ "content":{ "shape":"FlowInputContent", "documentation":"

Contains information about an input into the prompt flow.

" }, + "nodeInputName":{ + "shape":"NodeInputName", + "documentation":"

The name of the input from the flow input node.

" + }, "nodeName":{ "shape":"NodeName", "documentation":"

The name of the flow input node that begins the prompt flow.

" @@ -1363,6 +1375,42 @@ "max":1, "min":1 }, + "FlowMultiTurnInputContent":{ + "type":"structure", + "members":{ + "document":{ + "shape":"Document", + "documentation":"

The requested additional input to send back to the multi-turn flow node.

" + } + }, + "documentation":"

The content structure containing input information for multi-turn flow interactions.

", + "union":true + }, + "FlowMultiTurnInputRequestEvent":{ + "type":"structure", + "required":[ + "content", + "nodeName", + "nodeType" + ], + "members":{ + "content":{ + "shape":"FlowMultiTurnInputContent", + "documentation":"

The content payload containing the input request details for the multi-turn interaction.

" + }, + "nodeName":{ + "shape":"NodeName", + "documentation":"

The name of the node in the flow that is requesting the input.

" + }, + "nodeType":{ + "shape":"NodeType", + "documentation":"

The type of the node in the flow that is requesting the input.

" + } + }, + "documentation":"

Response object from the flow multi-turn node requesting additional information.

", + "event":true, + "sensitive":true + }, "FlowOutputContent":{ "type":"structure", "members":{ @@ -1422,6 +1470,10 @@ "shape":"FlowCompletionEvent", "documentation":"

Contains information about why the flow completed.

" }, + "flowMultiTurnInputRequestEvent":{ + "shape":"FlowMultiTurnInputRequestEvent", + "documentation":"

The event stream containing the multi-turn input request information from the flow.

" + }, "flowOutputEvent":{ "shape":"FlowOutputEvent", "documentation":"

Contains information about an output from flow invocation.

" @@ -2805,6 +2857,10 @@ "shape":"Boolean", "documentation":"

Specifies whether to return the trace for the flow or not. Traces track inputs and outputs for nodes in the flow. For more information, see Track each step in your prompt flow by viewing its trace in Amazon Bedrock.

" }, + "executionId":{ + "shape":"FlowExecutionId", + "documentation":"

The unique identifier for the current flow execution. If you don't provide a value, Amazon Bedrock creates the identifier for you.

" + }, "flowAliasIdentifier":{ "shape":"FlowAliasIdentifier", "documentation":"

The unique identifier of the flow alias.

", @@ -2831,6 +2887,12 @@ "type":"structure", "required":["responseStream"], "members":{ + "executionId":{ + "shape":"FlowExecutionId", + "documentation":"

The unique identifier for the current flow execution.

", + "location":"header", + "locationName":"x-amz-bedrock-flow-execution-id" + }, "responseStream":{ "shape":"FlowResponseStream", "documentation":"

The output of the flow, returned as a stream. If there's an error, the error is returned.

" diff --git a/awscli/botocore/data/glue/2017-03-31/service-2.json b/awscli/botocore/data/glue/2017-03-31/service-2.json index eada834ebc44..1c3dbb89eca9 100644 --- a/awscli/botocore/data/glue/2017-03-31/service-2.json +++ b/awscli/botocore/data/glue/2017-03-31/service-2.json @@ -4342,7 +4342,7 @@ }, "Timeout":{ "shape":"Timeout", - "documentation":"

The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.

" + "documentation":"

The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. This overrides the timeout value set in the parent job.

Jobs must have timeout values less than 7 days or 10080 minutes. Otherwise, the jobs will throw an exception.

When the value is left blank, the timeout is defaulted to 2880 minutes.

Any existing Glue jobs that had a timeout value greater than 7 days will be defaulted to 7 days. For instance if you have specified a timeout of 20 days for a batch job, it will be stopped on the 7th day.

For streaming jobs, if you have set up a maintenance window, it will be restarted during the maintenance window after 7 days.

" }, "SecurityConfiguration":{ "shape":"NameString", @@ -9156,7 +9156,7 @@ }, "Timeout":{ "shape":"Timeout", - "documentation":"

The job timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours) for batch jobs.

Streaming jobs must have timeout values less than 7 days or 10080 minutes. When the value is left blank, the job will be restarted after 7 days based if you have not setup a maintenance window. If you have setup maintenance window, it will be restarted during the maintenance window after 7 days.

" + "documentation":"

The job timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status.

Jobs must have timeout values less than 7 days or 10080 minutes. Otherwise, the jobs will throw an exception.

When the value is left blank, the timeout is defaulted to 2880 minutes.

Any existing Glue jobs that had a timeout value greater than 7 days will be defaulted to 7 days. For instance if you have specified a timeout of 20 days for a batch job, it will be stopped on the 7th day.

For streaming jobs, if you have set up a maintenance window, it will be restarted during the maintenance window after 7 days.

" }, "MaxCapacity":{ "shape":"NullableDouble", @@ -9588,7 +9588,7 @@ }, "Timeout":{ "shape":"Timeout", - "documentation":"

The number of minutes before session times out. Default for Spark ETL jobs is 48 hours (2880 minutes), the maximum session lifetime for this job type. Consult the documentation for other job types.

" + "documentation":"

The number of minutes before session times out. Default for Spark ETL jobs is 48 hours (2880 minutes). Consult the documentation for other job types.

" }, "IdleTimeout":{ "shape":"Timeout", @@ -17256,7 +17256,7 @@ }, "Timeout":{ "shape":"Timeout", - "documentation":"

The job timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours) for batch jobs.

Streaming jobs must have timeout values less than 7 days or 10080 minutes. When the value is left blank, the job will be restarted after 7 days based if you have not setup a maintenance window. If you have setup maintenance window, it will be restarted during the maintenance window after 7 days.

" + "documentation":"

The job timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status.

Jobs must have timeout values less than 7 days or 10080 minutes. Otherwise, the jobs will throw an exception.

When the value is left blank, the timeout is defaulted to 2880 minutes.

Any existing Glue jobs that had a timeout value greater than 7 days will be defaulted to 7 days. For instance if you have specified a timeout of 20 days for a batch job, it will be stopped on the 7th day.

For streaming jobs, if you have set up a maintenance window, it will be restarted during the maintenance window after 7 days.

" }, "MaxCapacity":{ "shape":"NullableDouble", @@ -17480,7 +17480,7 @@ }, "Timeout":{ "shape":"Timeout", - "documentation":"

The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. This value overrides the timeout value set in the parent job.

Jobs must have timeout values less than 7 days or 10080 minutes. Otherwise, the jobs will throw an exception.

When the value is left blank, the timeout is defaulted to 2880 minutes.

Any existing Glue jobs that had a timeout value greater than 7 days will be defaulted to 7 days. For instance if you have specified a timeout of 20 days for a batch job, it will be stopped on the 7th day.

" + "documentation":"

The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. This value overrides the timeout value set in the parent job.

Jobs must have timeout values less than 7 days or 10080 minutes. Otherwise, the jobs will throw an exception.

When the value is left blank, the timeout is defaulted to 2880 minutes.

Any existing Glue jobs that had a timeout value greater than 7 days will be defaulted to 7 days. For instance if you have specified a timeout of 20 days for a batch job, it will be stopped on the 7th day.

For streaming jobs, if you have set up a maintenance window, it will be restarted during the maintenance window after 7 days.

" }, "MaxCapacity":{ "shape":"NullableDouble", @@ -17607,7 +17607,7 @@ }, "Timeout":{ "shape":"Timeout", - "documentation":"

The job timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours) for batch jobs.

Streaming jobs must have timeout values less than 7 days or 10080 minutes. When the value is left blank, the job will be restarted after 7 days based if you have not setup a maintenance window. If you have setup maintenance window, it will be restarted during the maintenance window after 7 days.

" + "documentation":"

The job timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status.

Jobs must have timeout values less than 7 days or 10080 minutes. Otherwise, the jobs will throw an exception.

When the value is left blank, the timeout is defaulted to 2880 minutes.

Any existing Glue jobs that had a timeout value greater than 7 days will be defaulted to 7 days. For instance if you have specified a timeout of 20 days for a batch job, it will be stopped on the 7th day.

For streaming jobs, if you have set up a maintenance window, it will be restarted during the maintenance window after 7 days.

" }, "MaxCapacity":{ "shape":"NullableDouble", @@ -23718,7 +23718,7 @@ }, "Timeout":{ "shape":"Timeout", - "documentation":"

The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. This value overrides the timeout value set in the parent job.

Jobs must have timeout values less than 7 days or 10080 minutes. Otherwise, the jobs will throw an exception.

When the value is left blank, the timeout is defaulted to 2880 minutes.

Any existing Glue jobs that had a timeout value greater than 7 days will be defaulted to 7 days. For instance if you have specified a timeout of 20 days for a batch job, it will be stopped on the 7th day.

" + "documentation":"

The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. This value overrides the timeout value set in the parent job.

Jobs must have timeout values less than 7 days or 10080 minutes. Otherwise, the jobs will throw an exception.

When the value is left blank, the timeout is defaulted to 2880 minutes.

Any existing Glue jobs that had a timeout value greater than 7 days will be defaulted to 7 days. For instance if you have specified a timeout of 20 days for a batch job, it will be stopped on the 7th day.

For streaming jobs, if you have set up a maintenance window, it will be restarted during the maintenance window after 7 days.

" }, "MaxCapacity":{ "shape":"NullableDouble", diff --git a/awscli/botocore/data/medialive/2017-10-14/service-2.json b/awscli/botocore/data/medialive/2017-10-14/service-2.json index 6d768f3cfda6..80578f2acb3a 100644 --- a/awscli/botocore/data/medialive/2017-10-14/service-2.json +++ b/awscli/botocore/data/medialive/2017-10-14/service-2.json @@ -16858,6 +16858,16 @@ "shape": "StaticImageOutputDeactivateScheduleActionSettings", "locationName": "staticImageOutputDeactivateSettings", "documentation": "Action to deactivate a static image overlay in one or more specified outputs" + }, + "Id3SegmentTaggingSettings": { + "shape": "Id3SegmentTaggingScheduleActionSettings", + "locationName": "id3SegmentTaggingSettings", + "documentation": "Action to insert ID3 metadata in every segment, in applicable output groups" + }, + "TimedMetadataSettings": { + "shape": "TimedMetadataScheduleActionSettings", + "locationName": "timedMetadataSettings", + "documentation": "Action to insert ID3 metadata once, in applicable output groups" } }, "documentation": "Holds the settings for a single schedule action." @@ -20760,6 +20770,16 @@ "shape": "__stringMax100", "locationName": "scte35NameModifier", "documentation": "Change the modifier that MediaLive automatically adds to the Streams() name for a SCTE 35 track. The default is \"scte\", which means the default name will be Streams(scte.cmfm). Any string you enter here will replace the \"scte\" string.\\nThe modifier can only contain: numbers, letters, plus (+), minus (-), underscore (_) and period (.) and has a maximum length of 100 characters." + }, + "Id3Behavior": { + "shape": "CmafId3Behavior", + "locationName": "id3Behavior", + "documentation": "Set to ENABLED to enable ID3 metadata insertion. To include metadata, you configure other parameters in the output group, or you add an ID3 action to the channel schedule." + }, + "Id3NameModifier": { + "shape": "__stringMax100", + "locationName": "id3NameModifier", + "documentation": "Change the modifier that MediaLive automatically adds to the Streams() name that identifies an ID3 track. The default is \"id3\", which means the default name will be Streams(id3.cmfm). Any string you enter here will replace the \"id3\" string.\\nThe modifier can only contain: numbers, letters, plus (+), minus (-), underscore (_) and period (.) and has a maximum length of 100 characters." } }, "documentation": "Cmaf Ingest Group Settings", @@ -28319,6 +28339,44 @@ "shape": "ChannelEngineVersionResponse" }, "documentation": "Placeholder documentation for __listOfChannelEngineVersionResponse" + }, + "CmafId3Behavior": { + "type": "string", + "documentation": "Cmaf Id3 Behavior", + "enum": [ + "DISABLED", + "ENABLED" + ] + }, + "Id3SegmentTaggingScheduleActionSettings": { + "type": "structure", + "members": { + "Id3": { + "shape": "__string", + "locationName": "id3", + "documentation": "Complete this parameter if you want to specify the entire ID3 metadata. Enter a base64 string that contains one or more fully formed ID3 tags, according to the ID3 specification: http://id3.org/id3v2.4.0-structure" + }, + "Tag": { + "shape": "__string", + "locationName": "tag", + "documentation": "Complete this parameter if you want to specify only the metadata, not the entire frame. MediaLive will insert the metadata in a TXXX frame. Enter the value as plain text. You can include standard MediaLive variable data such as the current segment number." + } + }, + "documentation": "Settings for the action to insert ID3 metadata in every segment, in applicable output groups." + }, + "TimedMetadataScheduleActionSettings": { + "type": "structure", + "members": { + "Id3": { + "shape": "__string", + "locationName": "id3", + "documentation": "Enter a base64 string that contains one or more fully formed ID3 tags.See the ID3 specification: http://id3.org/id3v2.4.0-structure" + } + }, + "documentation": "Settings for the action to insert ID3 metadata (as a one-time action) in applicable output groups.", + "required": [ + "Id3" + ] } }, "documentation": "API for AWS Elemental MediaLive" diff --git a/awscli/botocore/data/workspaces-thin-client/2023-08-22/service-2.json b/awscli/botocore/data/workspaces-thin-client/2023-08-22/service-2.json index 17834270b8d6..c35977dfe288 100644 --- a/awscli/botocore/data/workspaces-thin-client/2023-08-22/service-2.json +++ b/awscli/botocore/data/workspaces-thin-client/2023-08-22/service-2.json @@ -394,7 +394,7 @@ }, "desktopArn":{ "shape":"Arn", - "documentation":"

The Amazon Resource Name (ARN) of the desktop to stream from Amazon WorkSpaces, WorkSpaces Web, or AppStream 2.0.

" + "documentation":"

The Amazon Resource Name (ARN) of the desktop to stream from Amazon WorkSpaces, WorkSpaces Secure Browser, or AppStream 2.0.

" }, "desktopEndpoint":{ "shape":"DesktopEndpoint", @@ -770,7 +770,7 @@ }, "desktopArn":{ "shape":"Arn", - "documentation":"

The Amazon Resource Name (ARN) of the desktop to stream from Amazon WorkSpaces, WorkSpaces Web, or AppStream 2.0.

" + "documentation":"

The Amazon Resource Name (ARN) of the desktop to stream from Amazon WorkSpaces, WorkSpaces Secure Browser, or AppStream 2.0.

" }, "desktopEndpoint":{ "shape":"DesktopEndpoint", @@ -877,7 +877,7 @@ }, "desktopArn":{ "shape":"Arn", - "documentation":"

The Amazon Resource Name (ARN) of the desktop to stream from Amazon WorkSpaces, WorkSpaces Web, or AppStream 2.0.

" + "documentation":"

The Amazon Resource Name (ARN) of the desktop to stream from Amazon WorkSpaces, WorkSpaces Secure Browser, or AppStream 2.0.

" }, "desktopEndpoint":{ "shape":"DesktopEndpoint", @@ -1522,7 +1522,7 @@ }, "desktopArn":{ "shape":"Arn", - "documentation":"

The Amazon Resource Name (ARN) of the desktop to stream from Amazon WorkSpaces, WorkSpaces Web, or AppStream 2.0.

" + "documentation":"

The Amazon Resource Name (ARN) of the desktop to stream from Amazon WorkSpaces, WorkSpaces Secure Browser, or AppStream 2.0.

" }, "desktopEndpoint":{ "shape":"DesktopEndpoint",