From 8eed6b8a6826145d765b70380326e7880e647988 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 26 Sep 2025 18:55:34 +0000
Subject: [PATCH 101/121] Amazon Connect Service Update: Adds supports for
manual contact picking (WorkList) operations on Routing Profiles, Agent
Management and SearchContacts APIs.
---
.../feature-AmazonConnectService-59fe9fd.json | 6 +
.../codegen-resources/paginators-1.json | 10 +
.../codegen-resources/service-2.json | 338 +++++++++++++++++-
3 files changed, 345 insertions(+), 9 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonConnectService-59fe9fd.json
diff --git a/.changes/next-release/feature-AmazonConnectService-59fe9fd.json b/.changes/next-release/feature-AmazonConnectService-59fe9fd.json
new file mode 100644
index 000000000000..75edbd987dca
--- /dev/null
+++ b/.changes/next-release/feature-AmazonConnectService-59fe9fd.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Amazon Connect Service",
+ "contributor": "",
+ "description": "Adds supports for manual contact picking (WorkList) operations on Routing Profiles, Agent Management and SearchContacts APIs."
+}
diff --git a/services/connect/src/main/resources/codegen-resources/paginators-1.json b/services/connect/src/main/resources/codegen-resources/paginators-1.json
index 0015869326c2..fb423c472d86 100644
--- a/services/connect/src/main/resources/codegen-resources/paginators-1.json
+++ b/services/connect/src/main/resources/codegen-resources/paginators-1.json
@@ -199,6 +199,16 @@
"limit_key": "MaxResults",
"output_token": "NextToken"
},
+ "ListRoutingProfileManualAssignmentQueues": {
+ "input_token": "NextToken",
+ "limit_key": "MaxResults",
+ "non_aggregate_keys": [
+ "LastModifiedRegion",
+ "LastModifiedTime"
+ ],
+ "output_token": "NextToken",
+ "result_key": "RoutingProfileManualAssignmentQueueConfigSummaryList"
+ },
"ListRoutingProfileQueues": {
"input_token": "NextToken",
"limit_key": "MaxResults",
diff --git a/services/connect/src/main/resources/codegen-resources/service-2.json b/services/connect/src/main/resources/codegen-resources/service-2.json
index 36a3bf496abf..a1bb6c9fabaa 100644
--- a/services/connect/src/main/resources/codegen-resources/service-2.json
+++ b/services/connect/src/main/resources/codegen-resources/service-2.json
@@ -85,6 +85,24 @@
],
"documentation":"This API is in preview release for Amazon Connect and is subject to change.
Allows the specified Amazon Connect instance to access the specified Amazon Lex or Amazon Lex V2 bot.
"
},
+ "AssociateContactWithUser":{
+ "name":"AssociateContactWithUser",
+ "http":{
+ "method":"POST",
+ "requestUri":"/contacts/{InstanceId}/{ContactId}/associate-user"
+ },
+ "input":{"shape":"AssociateContactWithUserRequest"},
+ "output":{"shape":"AssociateContactWithUserResponse"},
+ "errors":[
+ {"shape":"InvalidRequestException"},
+ {"shape":"InvalidParameterException"},
+ {"shape":"AccessDeniedException"},
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"ThrottlingException"},
+ {"shape":"InternalServiceException"}
+ ],
+ "documentation":"Associates a queued contact with an agent.
Use cases
Following are common uses cases for this API:
-
Custom contact routing. You can build custom contact routing mechanisms beyond the default system routing in Amazon Connect. You can create tailored contact distribution logic that offers queued contacts directly to specific agents.
-
Manual contact assignment. You can programmatically assign queued contacts to available users. This provides flexibility to contact centers that require manual oversight or specialized routing workflows outside of standard queue management.
For information about how manual contact assignment works in the agent workspace, see the Access the Worklist app in the Amazon Connect agent workspace in the Amazon Connect Administrator Guide.
Important things to know
-
Use this API chat/SMS, email, and task contacts. It does not support voice contacts.
-
Use it to associate contacts with users regardless of their current state, including custom states. Ensure your application logic accounts for user availability before making associations.
-
It honors the IAM context key connect:PreferredUserArn to prevent unauthorized contact associations.
-
It respects the IAM context key connect:PreferredUserArn to enforce authorization controls and prevent unauthorized contact associations. Verify that your IAM policies are properly configured to support your intended use cases.
Endpoints: See Amazon Connect endpoints and quotas.
"
+ },
"AssociateDefaultVocabulary":{
"name":"AssociateDefaultVocabulary",
"http":{
@@ -2897,6 +2915,23 @@
],
"documentation":"Provides a list of analysis segments for a real-time chat analysis session. This API supports CHAT channels only.
This API does not support VOICE. If you attempt to use it for VOICE, an InvalidRequestException occurs.
"
},
+ "ListRoutingProfileManualAssignmentQueues":{
+ "name":"ListRoutingProfileManualAssignmentQueues",
+ "http":{
+ "method":"GET",
+ "requestUri":"/routing-profiles/{InstanceId}/{RoutingProfileId}/manual-assignment-queues"
+ },
+ "input":{"shape":"ListRoutingProfileManualAssignmentQueuesRequest"},
+ "output":{"shape":"ListRoutingProfileManualAssignmentQueuesResponse"},
+ "errors":[
+ {"shape":"InvalidRequestException"},
+ {"shape":"InvalidParameterException"},
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"ThrottlingException"},
+ {"shape":"InternalServiceException"}
+ ],
+ "documentation":"Lists the manual assignment queues associated with a routing profile.
Use cases
Following are common uses cases for this API:
-
This API returns list of queues where contacts can be manually assigned or picked. The user can additionally filter on queues, if they have access to those queues (otherwise a invalid request exception will be thrown).
For information about how manual contact assignment works in the agent workspace, see the Access the Worklist app in the Amazon Connect agent workspace in the Amazon Connect Administrator Guide.
Important things to know
Endpoints: See Amazon Connect endpoints and quotas.
"
+ },
"ListRoutingProfileQueues":{
"name":"ListRoutingProfileQueues",
"http":{
@@ -5679,6 +5714,36 @@
}
}
},
+ "AssociateContactWithUserRequest":{
+ "type":"structure",
+ "required":[
+ "InstanceId",
+ "ContactId",
+ "UserId"
+ ],
+ "members":{
+ "InstanceId":{
+ "shape":"InstanceId",
+ "documentation":"The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
",
+ "location":"uri",
+ "locationName":"InstanceId"
+ },
+ "ContactId":{
+ "shape":"ContactId",
+ "documentation":"The identifier of the contact in this instance of Amazon Connect.
",
+ "location":"uri",
+ "locationName":"ContactId"
+ },
+ "UserId":{
+ "shape":"AgentResourceId",
+ "documentation":"The identifier for the user. This can be the ID or the ARN of the user.
"
+ }
+ }
+ },
+ "AssociateContactWithUserResponse":{
+ "type":"structure",
+ "members":{}
+ },
"AssociateDefaultVocabularyRequest":{
"type":"structure",
"required":[
@@ -5881,8 +5946,7 @@
"type":"structure",
"required":[
"InstanceId",
- "RoutingProfileId",
- "QueueConfigs"
+ "RoutingProfileId"
],
"members":{
"InstanceId":{
@@ -5900,6 +5964,10 @@
"QueueConfigs":{
"shape":"RoutingProfileQueueConfigList",
"documentation":"The queues to associate with this routing profile.
"
+ },
+ "ManualAssignmentQueueConfigs":{
+ "shape":"RoutingProfileManualAssignmentQueueConfigList",
+ "documentation":"The manual assignment queues to associate with this routing profile.
"
}
}
},
@@ -7824,7 +7892,7 @@
"documentation":"The message.
"
}
},
- "documentation":"The contact with the specified ID is not active or does not exist. Applies to Voice calls only, not to Chat or Task contacts.
",
+ "documentation":"The contact with the specified ID is not active or does not exist.
",
"error":{"httpStatusCode":410},
"exception":true
},
@@ -7891,7 +7959,12 @@
"SegmentAttributes":{
"shape":"ContactSearchSummarySegmentAttributes",
"documentation":"Set of segment attributes for a contact.
"
- }
+ },
+ "Name":{
+ "shape":"Name",
+ "documentation":"Indicates name of the contact.
"
+ },
+ "RoutingCriteria":{"shape":"RoutingCriteria"}
},
"documentation":"Information of returned contact.
"
},
@@ -7929,6 +8002,10 @@
"ValueString":{
"shape":"SegmentAttributeValueString",
"documentation":"The value of a segment attribute represented as a string.
"
+ },
+ "ValueMap":{
+ "shape":"SegmentAttributeValueMap",
+ "documentation":"The key and value of a segment attribute.
"
}
},
"documentation":"The value of a segment attribute. This is structured as a map with a single key-value pair. The key 'valueString' indicates that the attribute type is a string, and its corresponding value is the actual string value of the segment attribute.
"
@@ -9014,6 +9091,10 @@
"shape":"RoutingProfileQueueConfigList",
"documentation":"The inbound queues associated with the routing profile. If no queue is added, the agent can make only outbound calls.
The limit of 10 array members applies to the maximum number of RoutingProfileQueueConfig objects that can be passed during a CreateRoutingProfile API request. It is different from the quota of 50 queues per routing profile per instance that is listed in Amazon Connect service quotas.
"
},
+ "ManualAssignmentQueueConfigs":{
+ "shape":"RoutingProfileManualAssignmentQueueConfigList",
+ "documentation":"The manual assignment queues associated with the routing profile. If no queue is added, agents and supervisors can't pick or assign any contacts from this routing profile. The limit of 10 array members applies to the maximum number of RoutingProfileManualAssignmentQueueConfig objects that can be passed during a CreateRoutingProfile API request. It is different from the quota of 50 queues per routing profile per instance that is listed in Amazon Connect service quotas.
"
+ },
"MediaConcurrencies":{
"shape":"MediaConcurrencies",
"documentation":"The channels that agents can handle in the Contact Control Panel (CCP) for this routing profile.
"
@@ -11783,8 +11864,7 @@
"type":"structure",
"required":[
"InstanceId",
- "RoutingProfileId",
- "QueueReferences"
+ "RoutingProfileId"
],
"members":{
"InstanceId":{
@@ -11802,6 +11882,10 @@
"QueueReferences":{
"shape":"RoutingProfileQueueReferenceList",
"documentation":"The queues to disassociate from this routing profile.
"
+ },
+ "ManualAssignmentQueueReferences":{
+ "shape":"RoutingProfileQueueReferenceList",
+ "documentation":"The manual assignment queues to disassociate with this routing profile.
"
}
}
},
@@ -17016,6 +17100,61 @@
}
}
},
+ "ListRoutingProfileManualAssignmentQueuesRequest":{
+ "type":"structure",
+ "required":[
+ "InstanceId",
+ "RoutingProfileId"
+ ],
+ "members":{
+ "InstanceId":{
+ "shape":"InstanceId",
+ "documentation":"The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
",
+ "location":"uri",
+ "locationName":"InstanceId"
+ },
+ "RoutingProfileId":{
+ "shape":"RoutingProfileId",
+ "documentation":"The identifier of the routing profile.
",
+ "location":"uri",
+ "locationName":"RoutingProfileId"
+ },
+ "NextToken":{
+ "shape":"NextToken",
+ "documentation":"The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
",
+ "location":"querystring",
+ "locationName":"nextToken"
+ },
+ "MaxResults":{
+ "shape":"MaxResult100",
+ "documentation":"The maximum number of results to return per page.
",
+ "box":true,
+ "location":"querystring",
+ "locationName":"maxResults"
+ }
+ }
+ },
+ "ListRoutingProfileManualAssignmentQueuesResponse":{
+ "type":"structure",
+ "members":{
+ "NextToken":{
+ "shape":"NextToken",
+ "documentation":"If there are additional results, this is the token for the next set of results.
"
+ },
+ "RoutingProfileManualAssignmentQueueConfigSummaryList":{
+ "shape":"RoutingProfileManualAssignmentQueueConfigSummaryList",
+ "documentation":"Information about the manual assignment queues associated with the routing profile.
"
+ },
+ "LastModifiedTime":{
+ "shape":"Timestamp",
+ "documentation":"The timestamp when this resource was last modified.
"
+ },
+ "LastModifiedRegion":{
+ "shape":"RegionName",
+ "documentation":"The Amazon Web Services Region where this resource was last modified.
"
+ }
+ }
+ },
"ListRoutingProfileQueuesRequest":{
"type":"structure",
"required":[
@@ -18121,6 +18260,24 @@
"min":1,
"pattern":"(^[\\S].*[\\S]$)|(^[\\S]$)"
},
+ "NameCriteria":{
+ "type":"structure",
+ "required":[
+ "SearchText",
+ "MatchType"
+ ],
+ "members":{
+ "SearchText":{
+ "shape":"SearchTextList",
+ "documentation":"The words or phrases used to match the contact name.
"
+ },
+ "MatchType":{
+ "shape":"SearchContactsMatchType",
+ "documentation":"The match type combining name search criteria using multiple search texts in a name criteria.
"
+ }
+ },
+ "documentation":"The search criteria based on the contact name
"
+ },
"Namespace":{
"type":"string",
"max":128,
@@ -20922,6 +21079,10 @@
"shape":"Long",
"documentation":"The number of associated queues in routing profile.
"
},
+ "NumberOfAssociatedManualAssignmentQueues":{
+ "shape":"Long",
+ "documentation":"The number of associated manual assignment queues in routing profile.
"
+ },
"NumberOfAssociatedUsers":{
"shape":"Long",
"documentation":"The number of associated users in routing profile.
"
@@ -20945,6 +21106,10 @@
"AssociatedQueueIds":{
"shape":"AssociatedQueueIdList",
"documentation":"The IDs of the associated queue.
"
+ },
+ "AssociatedManualAssignmentQueueIds":{
+ "shape":"AssociatedQueueIdList",
+ "documentation":"The IDs of the associated manual assignment queues.
"
}
},
"documentation":"Contains information about a routing profile.
"
@@ -20959,6 +21124,52 @@
"type":"list",
"member":{"shape":"RoutingProfile"}
},
+ "RoutingProfileManualAssignmentQueueConfig":{
+ "type":"structure",
+ "required":["QueueReference"],
+ "members":{
+ "QueueReference":{"shape":"RoutingProfileQueueReference"}
+ },
+ "documentation":"Contains information about the queue and channel for manual assignment behaviour can be enabled.
"
+ },
+ "RoutingProfileManualAssignmentQueueConfigList":{
+ "type":"list",
+ "member":{"shape":"RoutingProfileManualAssignmentQueueConfig"},
+ "max":10,
+ "min":1
+ },
+ "RoutingProfileManualAssignmentQueueConfigSummary":{
+ "type":"structure",
+ "required":[
+ "QueueId",
+ "QueueArn",
+ "QueueName",
+ "Channel"
+ ],
+ "members":{
+ "QueueId":{
+ "shape":"QueueId",
+ "documentation":"The identifier for the queue.
"
+ },
+ "QueueArn":{
+ "shape":"ARN",
+ "documentation":"The Amazon Resource Name (ARN) of the queue.
"
+ },
+ "QueueName":{
+ "shape":"QueueName",
+ "documentation":"The name of the queue.
"
+ },
+ "Channel":{
+ "shape":"Channel",
+ "documentation":"The channels this queue supports. Valid Values: CHAT | TASK | EMAIL
"
+ }
+ },
+ "documentation":"Contains summary information about a routing profile manual assignment queue.
"
+ },
+ "RoutingProfileManualAssignmentQueueConfigSummaryList":{
+ "type":"list",
+ "member":{"shape":"RoutingProfileManualAssignmentQueueConfigSummary"}
+ },
"RoutingProfileName":{
"type":"string",
"max":127,
@@ -21552,11 +21763,46 @@
}
}
},
+ "SearchContactsAdditionalTimeRange":{
+ "type":"structure",
+ "required":[
+ "Criteria",
+ "MatchType"
+ ],
+ "members":{
+ "Criteria":{
+ "shape":"SearchContactsAdditionalTimeRangeCriteriaList",
+ "documentation":"List of criteria of the time range to additionally filter on.
"
+ },
+ "MatchType":{
+ "shape":"SearchContactsMatchType",
+ "documentation":"The match type combining multiple time range filters.
"
+ }
+ },
+ "documentation":"Time range that you additionally want to filter on.
"
+ },
+ "SearchContactsAdditionalTimeRangeCriteria":{
+ "type":"structure",
+ "members":{
+ "TimeRange":{"shape":"SearchContactsTimeRange"},
+ "TimestampCondition":{
+ "shape":"SearchContactsTimestampCondition",
+ "documentation":"List of the timestamp conditions.
"
+ }
+ },
+ "documentation":"The criteria of the time range to additionally filter on.
"
+ },
+ "SearchContactsAdditionalTimeRangeCriteriaList":{
+ "type":"list",
+ "member":{"shape":"SearchContactsAdditionalTimeRangeCriteria"}
+ },
"SearchContactsMatchType":{
"type":"string",
"enum":[
"MATCH_ALL",
- "MATCH_ANY"
+ "MATCH_ANY",
+ "MATCH_EXACT",
+ "MATCH_NONE"
]
},
"SearchContactsRequest":{
@@ -21634,18 +21880,45 @@
},
"documentation":"A structure of time range that you want to search results.
"
},
+ "SearchContactsTimeRangeConditionType":{
+ "type":"string",
+ "enum":["NOT_EXISTS"]
+ },
"SearchContactsTimeRangeType":{
"type":"string",
"enum":[
"INITIATION_TIMESTAMP",
"SCHEDULED_TIMESTAMP",
"CONNECTED_TO_AGENT_TIMESTAMP",
- "DISCONNECT_TIMESTAMP"
+ "DISCONNECT_TIMESTAMP",
+ "ENQUEUE_TIMESTAMP"
]
},
+ "SearchContactsTimestampCondition":{
+ "type":"structure",
+ "required":[
+ "Type",
+ "ConditionType"
+ ],
+ "members":{
+ "Type":{
+ "shape":"SearchContactsTimeRangeType",
+ "documentation":"Type of the timestamps to use for the filter.
"
+ },
+ "ConditionType":{
+ "shape":"SearchContactsTimeRangeConditionType",
+ "documentation":"Condition of the timestamp on the contact.
"
+ }
+ },
+ "documentation":"The timestamp condition indicating which timestamp should be used and how it should be filtered.
"
+ },
"SearchCriteria":{
"type":"structure",
"members":{
+ "Name":{
+ "shape":"NameCriteria",
+ "documentation":"Name of the contact.
"
+ },
"AgentIds":{
"shape":"AgentResourceIdList",
"documentation":"The identifiers of agents who handled the contacts.
"
@@ -21670,6 +21943,14 @@
"shape":"QueueIdList",
"documentation":"The list of queue IDs associated with contacts.
"
},
+ "RoutingCriteria":{
+ "shape":"SearchableRoutingCriteria",
+ "documentation":"Routing criteria for the contact.
"
+ },
+ "AdditionalTimeRange":{
+ "shape":"SearchContactsAdditionalTimeRange",
+ "documentation":"Additional TimeRange used to filter contacts.
"
+ },
"SearchableContactAttributes":{
"shape":"SearchableContactAttributes",
"documentation":"The search criteria based on user-defined contact attributes that have been configured for contact search. For more information, see Search by custom contact attributes in the Amazon Connect Administrator Guide.
To use SearchableContactAttributes in a search request, the GetContactAttributes action is required to perform an API request. For more information, see https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonconnect.html#amazonconnect-actions-as-permissionsActions defined by Amazon Connect.
"
@@ -22250,6 +22531,20 @@
}
}
},
+ "SearchableAgentCriteriaStep":{
+ "type":"structure",
+ "members":{
+ "AgentIds":{
+ "shape":"AgentResourceIdList",
+ "documentation":"The identifiers of agents used in preferred agents matching.
"
+ },
+ "MatchType":{
+ "shape":"SearchContactsMatchType",
+ "documentation":"The match type combining multiple agent criteria steps.
"
+ }
+ },
+ "documentation":"The agent criteria to search for preferred agents on the routing criteria.
"
+ },
"SearchableContactAttributeKey":{
"type":"string",
"max":100,
@@ -22311,6 +22606,30 @@
"type":"string",
"enum":["STANDARD"]
},
+ "SearchableRoutingCriteria":{
+ "type":"structure",
+ "members":{
+ "Steps":{
+ "shape":"SearchableRoutingCriteriaStepList",
+ "documentation":"The list of Routing criteria steps of the contact routing.
"
+ }
+ },
+ "documentation":"Routing criteria of the contact to match on.
"
+ },
+ "SearchableRoutingCriteriaStep":{
+ "type":"structure",
+ "members":{
+ "AgentCriteria":{
+ "shape":"SearchableAgentCriteriaStep",
+ "documentation":"Agent matching the routing step of the routing criteria
"
+ }
+ },
+ "documentation":"Routing criteria of the contact to match on.
"
+ },
+ "SearchableRoutingCriteriaStepList":{
+ "type":"list",
+ "member":{"shape":"SearchableRoutingCriteriaStep"}
+ },
"SearchableSegmentAttributeKey":{
"type":"string",
"max":64,
@@ -22888,7 +23207,8 @@
"CONNECTED_TO_AGENT_TIMESTAMP",
"DISCONNECT_TIMESTAMP",
"INITIATION_METHOD",
- "CHANNEL"
+ "CHANNEL",
+ "EXPIRY_TIMESTAMP"
]
},
"SourceApplicationName":{
From 12cc49d369be7d46327fb4ed06d49e1853e0dfb9 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 26 Sep 2025 18:55:35 +0000
Subject: [PATCH 102/121] AWS Cost Explorer Service Update: Support for payer
account dimension and billing view health status.
---
...eature-AWSCostExplorerService-750ef36.json | 6 ++++
.../codegen-resources/service-2.json | 36 ++++++++++++++-----
2 files changed, 33 insertions(+), 9 deletions(-)
create mode 100644 .changes/next-release/feature-AWSCostExplorerService-750ef36.json
diff --git a/.changes/next-release/feature-AWSCostExplorerService-750ef36.json b/.changes/next-release/feature-AWSCostExplorerService-750ef36.json
new file mode 100644
index 000000000000..b5bdd4e8860f
--- /dev/null
+++ b/.changes/next-release/feature-AWSCostExplorerService-750ef36.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "AWS Cost Explorer Service",
+ "contributor": "",
+ "description": "Support for payer account dimension and billing view health status."
+}
diff --git a/services/costexplorer/src/main/resources/codegen-resources/service-2.json b/services/costexplorer/src/main/resources/codegen-resources/service-2.json
index e575acc1f781..ea5322482333 100644
--- a/services/costexplorer/src/main/resources/codegen-resources/service-2.json
+++ b/services/costexplorer/src/main/resources/codegen-resources/service-2.json
@@ -200,7 +200,8 @@
{"shape":"DataUnavailableException"},
{"shape":"InvalidNextTokenException"},
{"shape":"RequestChangedException"},
- {"shape":"ResourceNotFoundException"}
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"BillingViewHealthStatusException"}
],
"documentation":"Retrieves cost and usage metrics for your account. You can specify which cost and usage-related metric that you want the request to return. For example, you can specify BlendedCosts or UsageQuantity. You can also filter and group your data by various dimensions, such as SERVICE or AZ, in a specific time range. For a complete list of valid dimensions, see the GetDimensionValues operation. Management account in an organization in Organizations have access to all member accounts.
For information about filter limitations, see Quotas and restrictions in the Billing and Cost Management User Guide.
"
},
@@ -216,7 +217,8 @@
{"shape":"DataUnavailableException"},
{"shape":"InvalidNextTokenException"},
{"shape":"LimitExceededException"},
- {"shape":"ResourceNotFoundException"}
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"BillingViewHealthStatusException"}
],
"documentation":"Retrieves cost and usage comparisons for your account between two periods within the last 13 months. If you have enabled multi-year data at monthly granularity, you can go back up to 38 months.
"
},
@@ -234,7 +236,8 @@
{"shape":"BillExpirationException"},
{"shape":"InvalidNextTokenException"},
{"shape":"RequestChangedException"},
- {"shape":"ResourceNotFoundException"}
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"BillingViewHealthStatusException"}
],
"documentation":"Retrieves cost and usage metrics with resources for your account. You can specify which cost and usage-related metric, such as BlendedCosts or UsageQuantity, that you want the request to return. You can also filter and group your data by various dimensions, such as SERVICE or AZ, in a specific time range. For a complete list of valid dimensions, see the GetDimensionValues operation. Management account in an organization in Organizations have access to all member accounts.
Hourly granularity is only available for EC2-Instances (Elastic Compute Cloud) resource-level data. All other resource-level data is available at daily granularity.
This is an opt-in only feature. You can enable this feature from the Cost Explorer Settings page. For information about how to access the Settings page, see Controlling Access for Cost Explorer in the Billing and Cost Management User Guide.
"
},
@@ -252,7 +255,8 @@
{"shape":"DataUnavailableException"},
{"shape":"InvalidNextTokenException"},
{"shape":"RequestChangedException"},
- {"shape":"ResourceNotFoundException"}
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"BillingViewHealthStatusException"}
],
"documentation":"Retrieves an array of Cost Category names and values incurred cost.
If some Cost Category names and values are not associated with any cost, they will not be returned by this API.
"
},
@@ -268,7 +272,8 @@
{"shape":"DataUnavailableException"},
{"shape":"InvalidNextTokenException"},
{"shape":"LimitExceededException"},
- {"shape":"ResourceNotFoundException"}
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"BillingViewHealthStatusException"}
],
"documentation":"Retrieves key factors driving cost changes between two time periods within the last 13 months, such as usage changes, discount changes, and commitment-based savings. If you have enabled multi-year data at monthly granularity, you can go back up to 38 months.
"
},
@@ -283,7 +288,8 @@
"errors":[
{"shape":"LimitExceededException"},
{"shape":"DataUnavailableException"},
- {"shape":"ResourceNotFoundException"}
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"BillingViewHealthStatusException"}
],
"documentation":"Retrieves a forecast for how much Amazon Web Services predicts that you will spend over the forecast time period that you select, based on your past costs.
"
},
@@ -301,7 +307,8 @@
{"shape":"DataUnavailableException"},
{"shape":"InvalidNextTokenException"},
{"shape":"RequestChangedException"},
- {"shape":"ResourceNotFoundException"}
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"BillingViewHealthStatusException"}
],
"documentation":"Retrieves all available filter values for a specified filter over a period of time. You can search the dimension values for an arbitrary string.
"
},
@@ -450,7 +457,8 @@
{"shape":"DataUnavailableException"},
{"shape":"InvalidNextTokenException"},
{"shape":"RequestChangedException"},
- {"shape":"ResourceNotFoundException"}
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"BillingViewHealthStatusException"}
],
"documentation":"Queries for available tag keys and tag values for a specified period. You can search the tag values for an arbitrary string.
"
},
@@ -466,7 +474,8 @@
{"shape":"LimitExceededException"},
{"shape":"DataUnavailableException"},
{"shape":"UnresolvableUsageUnitException"},
- {"shape":"ResourceNotFoundException"}
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"BillingViewHealthStatusException"}
],
"documentation":"Retrieves a forecast for how much Amazon Web Services predicts that you will use over the forecast time period that you select, based on your past usage.
"
},
@@ -1045,6 +1054,14 @@
"min":20,
"pattern":"^arn:aws[a-z-]*:(billing)::[0-9]{12}:billingview/[-a-zA-Z0-9/:_+=.-@]{1,43}$"
},
+ "BillingViewHealthStatusException":{
+ "type":"structure",
+ "members":{
+ "Message":{"shape":"ErrorMessage"}
+ },
+ "documentation":" The billing view status must be HEALTHY to perform this action. Try again when the status is HEALTHY.
",
+ "exception":true
+ },
"CommitmentPurchaseAnalysisConfiguration":{
"type":"structure",
"members":{
@@ -1909,6 +1926,7 @@
"AZ",
"INSTANCE_TYPE",
"LINKED_ACCOUNT",
+ "PAYER_ACCOUNT",
"LINKED_ACCOUNT_NAME",
"OPERATION",
"PURCHASE_TYPE",
From c22bff6104b0095afd66771ecd06d1163e46d155 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 26 Sep 2025 18:55:37 +0000
Subject: [PATCH 103/121] Data Automation for Amazon Bedrock Update: Added
support for configurable Speaker Labeling and Channel Labeling features for
Audio modality.
---
...ataAutomationforAmazonBedrock-f99328a.json | 6 +++
.../codegen-resources/service-2.json | 43 ++++++++++++++++---
2 files changed, 42 insertions(+), 7 deletions(-)
create mode 100644 .changes/next-release/feature-DataAutomationforAmazonBedrock-f99328a.json
diff --git a/.changes/next-release/feature-DataAutomationforAmazonBedrock-f99328a.json b/.changes/next-release/feature-DataAutomationforAmazonBedrock-f99328a.json
new file mode 100644
index 000000000000..b50b6f3fac67
--- /dev/null
+++ b/.changes/next-release/feature-DataAutomationforAmazonBedrock-f99328a.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Data Automation for Amazon Bedrock",
+ "contributor": "",
+ "description": "Added support for configurable Speaker Labeling and Channel Labeling features for Audio modality."
+}
diff --git a/services/bedrockdataautomation/src/main/resources/codegen-resources/service-2.json b/services/bedrockdataautomation/src/main/resources/codegen-resources/service-2.json
index 5324676bac64..4e7ee19e2698 100644
--- a/services/bedrockdataautomation/src/main/resources/codegen-resources/service-2.json
+++ b/services/bedrockdataautomation/src/main/resources/codegen-resources/service-2.json
@@ -298,7 +298,8 @@
"required":["state"],
"members":{
"state":{"shape":"State"},
- "types":{"shape":"AudioExtractionCategoryTypes"}
+ "types":{"shape":"AudioExtractionCategoryTypes"},
+ "typeConfiguration":{"shape":"AudioExtractionCategoryTypeConfiguration"}
},
"documentation":"Category of Audio Extraction
"
},
@@ -310,6 +311,13 @@
"TOPIC_CONTENT_MODERATION"
]
},
+ "AudioExtractionCategoryTypeConfiguration":{
+ "type":"structure",
+ "members":{
+ "transcript":{"shape":"TranscriptConfiguration"}
+ },
+ "documentation":"Configuration for different audio extraction category types
"
+ },
"AudioExtractionCategoryTypes":{
"type":"list",
"member":{"shape":"AudioExtractionCategoryType"},
@@ -476,6 +484,14 @@
"member":{"shape":"BlueprintSummary"},
"documentation":"List of Blueprints
"
},
+ "ChannelLabelingConfiguration":{
+ "type":"structure",
+ "required":["state"],
+ "members":{
+ "state":{"shape":"State"}
+ },
+ "documentation":"Channel labeling configuration
"
+ },
"ClientToken":{
"type":"string",
"documentation":"Client specified token used for idempotency checks
",
@@ -715,8 +731,7 @@
},
"DeleteBlueprintResponse":{
"type":"structure",
- "members":{
- },
+ "members":{},
"documentation":"Delete Blueprint Response
"
},
"DeleteDataAutomationProjectRequest":{
@@ -1171,6 +1186,14 @@
},
"exception":true
},
+ "SpeakerLabelingConfiguration":{
+ "type":"structure",
+ "required":["state"],
+ "members":{
+ "state":{"shape":"State"}
+ },
+ "documentation":"Speaker labeling configuration
"
+ },
"SplitterConfiguration":{
"type":"structure",
"members":{
@@ -1241,8 +1264,7 @@
},
"TagResourceResponse":{
"type":"structure",
- "members":{
- }
+ "members":{}
},
"TagValue":{
"type":"string",
@@ -1269,6 +1291,14 @@
},
"exception":true
},
+ "TranscriptConfiguration":{
+ "type":"structure",
+ "members":{
+ "speakerLabeling":{"shape":"SpeakerLabelingConfiguration"},
+ "channelLabeling":{"shape":"ChannelLabelingConfiguration"}
+ },
+ "documentation":"Configuration for transcript related features
"
+ },
"Type":{
"type":"string",
"documentation":"Type
",
@@ -1292,8 +1322,7 @@
},
"UntagResourceResponse":{
"type":"structure",
- "members":{
- }
+ "members":{}
},
"UpdateBlueprintRequest":{
"type":"structure",
From 3fd3a6f7716b944af1a78c4ddf43f37c7278f627 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 26 Sep 2025 18:55:40 +0000
Subject: [PATCH 104/121] Agents for Amazon Bedrock Runtime Update: This
release enhances the information provided through Flow Traces. New
information includes source/next node tracking, execution chains for complex
nodes, dependency action (operation) details, and dependency traces.
---
...AgentsforAmazonBedrockRuntime-28e12e7.json | 6 +
.../codegen-resources/service-2.json | 3335 +++++++++--------
.../codegen-resources/waiters-2.json | 5 +
3 files changed, 1867 insertions(+), 1479 deletions(-)
create mode 100644 .changes/next-release/feature-AgentsforAmazonBedrockRuntime-28e12e7.json
create mode 100644 services/bedrockagentruntime/src/main/resources/codegen-resources/waiters-2.json
diff --git a/.changes/next-release/feature-AgentsforAmazonBedrockRuntime-28e12e7.json b/.changes/next-release/feature-AgentsforAmazonBedrockRuntime-28e12e7.json
new file mode 100644
index 000000000000..4ddc14f3d9dd
--- /dev/null
+++ b/.changes/next-release/feature-AgentsforAmazonBedrockRuntime-28e12e7.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Agents for Amazon Bedrock Runtime",
+ "contributor": "",
+ "description": "This release enhances the information provided through Flow Traces. New information includes source/next node tracking, execution chains for complex nodes, dependency action (operation) details, and dependency traces."
+}
diff --git a/services/bedrockagentruntime/src/main/resources/codegen-resources/service-2.json b/services/bedrockagentruntime/src/main/resources/codegen-resources/service-2.json
index e56955988f23..56d7ef914dfe 100644
--- a/services/bedrockagentruntime/src/main/resources/codegen-resources/service-2.json
+++ b/services/bedrockagentruntime/src/main/resources/codegen-resources/service-2.json
@@ -2,16 +2,15 @@
"version":"2.0",
"metadata":{
"apiVersion":"2023-07-26",
+ "auth":["aws.auth#sigv4"],
"endpointPrefix":"bedrock-agent-runtime",
- "jsonVersion":"1.1",
"protocol":"rest-json",
"protocols":["rest-json"],
"serviceFullName":"Agents for Amazon Bedrock Runtime",
"serviceId":"Bedrock Agent Runtime",
"signatureVersion":"v4",
"signingName":"bedrock",
- "uid":"bedrock-agent-runtime-2023-07-26",
- "auth":["aws.auth#sigv4"]
+ "uid":"bedrock-agent-runtime-2023-07-26"
},
"operations":{
"CreateInvocation":{
@@ -138,7 +137,8 @@
{"shape":"AccessDeniedException"},
{"shape":"ServiceQuotaExceededException"}
],
- "documentation":"Generates an SQL query from a natural language query. For more information, see Generate a query for structured data in the Amazon Bedrock User Guide.
"
+ "documentation":"Generates an SQL query from a natural language query. For more information, see Generate a query for structured data in the Amazon Bedrock User Guide.
",
+ "readonly":true
},
"GetAgentMemory":{
"name":"GetAgentMemory",
@@ -160,7 +160,8 @@
{"shape":"AccessDeniedException"},
{"shape":"ServiceQuotaExceededException"}
],
- "documentation":"Gets the sessions stored in the memory of the agent.
"
+ "documentation":"Gets the sessions stored in the memory of the agent.
",
+ "readonly":true
},
"GetExecutionFlowSnapshot":{
"name":"GetExecutionFlowSnapshot",
@@ -178,7 +179,8 @@
{"shape":"ThrottlingException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"Retrieves the flow definition snapshot used for a flow execution. The snapshot represents the flow metadata and definition as it existed at the time the execution was started. Note that even if the flow is edited after an execution starts, the snapshot connected to the execution remains unchanged.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
"
+ "documentation":"Retrieves the flow definition snapshot used for a flow execution. The snapshot represents the flow metadata and definition as it existed at the time the execution was started. Note that even if the flow is edited after an execution starts, the snapshot connected to the execution remains unchanged.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
+ "readonly":true
},
"GetFlowExecution":{
"name":"GetFlowExecution",
@@ -196,7 +198,8 @@
{"shape":"ThrottlingException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"Retrieves details about a specific flow execution, including its status, start and end times, and any errors that occurred during execution.
"
+ "documentation":"Retrieves details about a specific flow execution, including its status, start and end times, and any errors that occurred during execution.
",
+ "readonly":true
},
"GetInvocationStep":{
"name":"GetInvocationStep",
@@ -214,7 +217,8 @@
{"shape":"ThrottlingException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"Retrieves the details of a specific invocation step within an invocation in a session. For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.
"
+ "documentation":"Retrieves the details of a specific invocation step within an invocation in a session. For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.
",
+ "readonly":true
},
"GetSession":{
"name":"GetSession",
@@ -232,7 +236,8 @@
{"shape":"ThrottlingException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"Retrieves details about a specific session. For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.
"
+ "documentation":"Retrieves details about a specific session. For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.
",
+ "readonly":true
},
"InvokeAgent":{
"name":"InvokeAgent",
@@ -317,7 +322,8 @@
{"shape":"ThrottlingException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"Lists events that occurred during a flow execution. Events provide detailed information about the execution progress, including node inputs and outputs, flow inputs and outputs, condition results, and failure events.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
"
+ "documentation":"Lists events that occurred during a flow execution. Events provide detailed information about the execution progress, including node inputs and outputs, flow inputs and outputs, condition results, and failure events.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
+ "readonly":true
},
"ListFlowExecutions":{
"name":"ListFlowExecutions",
@@ -335,7 +341,8 @@
{"shape":"ThrottlingException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"Lists all executions of a flow. Results can be paginated and include summary information about each execution, such as status, start and end times, and the execution's Amazon Resource Name (ARN).
Flow executions is in preview release for Amazon Bedrock and is subject to change.
"
+ "documentation":"Lists all executions of a flow. Results can be paginated and include summary information about each execution, such as status, start and end times, and the execution's Amazon Resource Name (ARN).
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
+ "readonly":true
},
"ListInvocationSteps":{
"name":"ListInvocationSteps",
@@ -353,7 +360,8 @@
{"shape":"ThrottlingException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"Lists all invocation steps associated with a session and optionally, an invocation within the session. For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.
"
+ "documentation":"Lists all invocation steps associated with a session and optionally, an invocation within the session. For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.
",
+ "readonly":true
},
"ListInvocations":{
"name":"ListInvocations",
@@ -371,7 +379,8 @@
{"shape":"ThrottlingException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"Lists all invocations associated with a specific session. For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.
"
+ "documentation":"Lists all invocations associated with a specific session. For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.
",
+ "readonly":true
},
"ListSessions":{
"name":"ListSessions",
@@ -388,7 +397,8 @@
{"shape":"ThrottlingException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"Lists all sessions in your Amazon Web Services account. For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.
"
+ "documentation":"Lists all sessions in your Amazon Web Services account. For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.
",
+ "readonly":true
},
"ListTagsForResource":{
"name":"ListTagsForResource",
@@ -406,7 +416,8 @@
{"shape":"ThrottlingException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"List all the tags for the resource you specify.
"
+ "documentation":"List all the tags for the resource you specify.
",
+ "readonly":true
},
"OptimizePrompt":{
"name":"OptimizePrompt",
@@ -490,7 +501,8 @@
{"shape":"AccessDeniedException"},
{"shape":"ServiceQuotaExceededException"}
],
- "documentation":"Queries a knowledge base and retrieves information from it.
"
+ "documentation":"Queries a knowledge base and retrieves information from it.
",
+ "readonly":true
},
"RetrieveAndGenerate":{
"name":"RetrieveAndGenerate",
@@ -642,13 +654,13 @@
"APISchema":{
"type":"structure",
"members":{
- "payload":{
- "shape":"Payload",
- "documentation":" The JSON or YAML-formatted payload defining the OpenAPI schema for the action group.
"
- },
"s3":{
"shape":"S3Identifier",
"documentation":" Contains details about the S3 object containing the OpenAPI schema for the action group.
"
+ },
+ "payload":{
+ "shape":"Payload",
+ "documentation":" The JSON or YAML-formatted payload defining the OpenAPI schema for the action group.
"
}
},
"documentation":" Contains details about the OpenAPI schema for the action group. For more information, see Action group OpenAPI schemas. You can either include the schema directly in the payload field or you can upload it to an S3 bucket and specify the S3 bucket location in the s3 field.
",
@@ -658,7 +670,7 @@
"type":"string",
"max":2048,
"min":0,
- "pattern":"^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:agent/[0-9a-zA-Z]{10}$"
+ "pattern":"arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:agent/[0-9a-zA-Z]{10}"
},
"AccessDeniedException":{
"type":"structure",
@@ -675,13 +687,13 @@
"ActionGroupExecutor":{
"type":"structure",
"members":{
- "customControl":{
- "shape":"CustomControlMethod",
- "documentation":" To return the action group invocation results directly in the InvokeInlineAgent response, specify RETURN_CONTROL.
"
- },
"lambda":{
"shape":"LambdaResourceArn",
"documentation":" The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action.
"
+ },
+ "customControl":{
+ "shape":"CustomControlMethod",
+ "documentation":" To return the action group invocation results directly in the InvokeInlineAgent response, specify RETURN_CONTROL.
"
}
},
"documentation":" Contains details about the Lambda function containing the business logic that is carried out upon invoking the action or the custom control method for handling the information elicited from the user.
",
@@ -694,22 +706,14 @@
"shape":"ActionGroupName",
"documentation":"The name of the action group.
"
},
+ "verb":{
+ "shape":"Verb",
+ "documentation":"The API method being used, based off the action group.
"
+ },
"apiPath":{
"shape":"ApiPath",
"documentation":"The path to the API to call, based off the action group.
"
},
- "executionType":{
- "shape":"ExecutionType",
- "documentation":"How fulfillment of the action is handled. For more information, see Handling fulfillment of the action.
"
- },
- "function":{
- "shape":"Function",
- "documentation":"The function in the action group to call.
"
- },
- "invocationId":{
- "shape":"String",
- "documentation":"The unique identifier of the invocation. Only returned if the executionType is RETURN_CONTROL.
"
- },
"parameters":{
"shape":"Parameters",
"documentation":"The parameters in the Lambda input event.
"
@@ -718,9 +722,17 @@
"shape":"RequestBody",
"documentation":"The parameters in the request body for the Lambda input event.
"
},
- "verb":{
- "shape":"Verb",
- "documentation":"The API method being used, based off the action group.
"
+ "function":{
+ "shape":"Function",
+ "documentation":"The function in the action group to call.
"
+ },
+ "executionType":{
+ "shape":"ExecutionType",
+ "documentation":"How fulfillment of the action is handled. For more information, see Handling fulfillment of the action.
"
+ },
+ "invocationId":{
+ "shape":"String",
+ "documentation":"The unique identifier of the invocation. Only returned if the executionType is RETURN_CONTROL.
"
}
},
"documentation":"Contains information about the action group being invoked. For more information about the possible structures, see the InvocationInput tab in OrchestrationTrace in the Amazon Bedrock User Guide.
"
@@ -728,13 +740,13 @@
"ActionGroupInvocationOutput":{
"type":"structure",
"members":{
- "metadata":{
- "shape":"Metadata",
- "documentation":"Contains information about the action group output.
"
- },
"text":{
"shape":"ActionGroupOutputString",
"documentation":"The JSON-formatted string returned by the API invoked by the action group.
"
+ },
+ "metadata":{
+ "shape":"Metadata",
+ "documentation":"Contains information about the action group output.
"
}
},
"documentation":"Contains the JSON-formatted string returned by the API invoked by the action group.
"
@@ -792,38 +804,37 @@
},
"AdditionalModelRequestFieldsValue":{
"type":"structure",
- "members":{
- },
+ "members":{},
"document":true
},
"AgentActionGroup":{
"type":"structure",
"required":["actionGroupName"],
"members":{
- "actionGroupExecutor":{
- "shape":"ActionGroupExecutor",
- "documentation":" The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action or the custom control method for handling the information elicited from the user.
"
- },
"actionGroupName":{
"shape":"ResourceName",
"documentation":" The name of the action group.
"
},
- "apiSchema":{
- "shape":"APISchema",
- "documentation":" Contains either details about the S3 object containing the OpenAPI schema for the action group or the JSON or YAML-formatted payload defining the schema. For more information, see Action group OpenAPI schemas.
"
- },
"description":{
"shape":"ResourceDescription",
"documentation":" A description of the action group.
"
},
- "functionSchema":{
- "shape":"FunctionSchema",
- "documentation":" Contains details about the function schema for the action group or the JSON or YAML-formatted payload defining the schema.
"
- },
"parentActionGroupSignature":{
"shape":"ActionGroupSignature",
"documentation":"Specify a built-in or computer use action for this action group. If you specify a value, you must leave the description, apiSchema, and actionGroupExecutor fields empty for this action group.
-
To allow your agent to request the user for additional information when trying to complete a task, set this field to AMAZON.UserInput.
-
To allow your agent to generate, run, and troubleshoot code when trying to complete a task, set this field to AMAZON.CodeInterpreter.
-
To allow your agent to use an Anthropic computer use tool, specify one of the following values.
Computer use is a new Anthropic Claude model capability (in beta) available with Anthropic Claude 3.7 Sonnet and Claude 3.5 Sonnet v2 only. When operating computer use functionality, we recommend taking additional security precautions, such as executing computer actions in virtual environments with restricted data access and limited internet connectivity. For more information, see Configure an Amazon Bedrock Agent to complete tasks with computer use tools.
-
ANTHROPIC.Computer - Gives the agent permission to use the mouse and keyboard and take screenshots.
-
ANTHROPIC.TextEditor - Gives the agent permission to view, create and edit files.
-
ANTHROPIC.Bash - Gives the agent permission to run commands in a bash shell.
"
},
+ "actionGroupExecutor":{
+ "shape":"ActionGroupExecutor",
+ "documentation":" The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action or the custom control method for handling the information elicited from the user.
"
+ },
+ "apiSchema":{
+ "shape":"APISchema",
+ "documentation":" Contains either details about the S3 object containing the OpenAPI schema for the action group or the JSON or YAML-formatted payload defining the schema. For more information, see Action group OpenAPI schemas.
"
+ },
+ "functionSchema":{
+ "shape":"FunctionSchema",
+ "documentation":" Contains details about the function schema for the action group or the JSON or YAML-formatted payload defining the schema.
"
+ },
"parentActionGroupSignatureParams":{
"shape":"ActionGroupSignatureParams",
"documentation":" The configuration settings for a computer use action.
Computer use is a new Anthropic Claude model capability (in beta) available with Claude 3.7 Sonnet and Claude 3.5 Sonnet v2 only. For more information, see Configure an Amazon Bedrock Agent to complete tasks with computer use tools.
"
@@ -839,13 +850,13 @@
"type":"string",
"max":2048,
"min":0,
- "pattern":"^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:agent-alias/[0-9a-zA-Z]{10}/[0-9a-zA-Z]{10}$"
+ "pattern":"arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:agent-alias/[0-9a-zA-Z]{10}/[0-9a-zA-Z]{10}"
},
"AgentAliasId":{
"type":"string",
"max":10,
"min":0,
- "pattern":"^[0-9a-zA-Z]+$"
+ "pattern":"[0-9a-zA-Z]+"
},
"AgentCollaboration":{
"type":"string",
@@ -858,17 +869,17 @@
"AgentCollaboratorInputPayload":{
"type":"structure",
"members":{
- "returnControlResults":{
- "shape":"ReturnControlResults",
- "documentation":"An action invocation result.
"
+ "type":{
+ "shape":"PayloadType",
+ "documentation":"The input type.
"
},
"text":{
"shape":"AgentCollaboratorPayloadString",
"documentation":"Input text.
"
},
- "type":{
- "shape":"PayloadType",
- "documentation":"The input type.
"
+ "returnControlResults":{
+ "shape":"ReturnControlResults",
+ "documentation":"An action invocation result.
"
}
},
"documentation":"Input for an agent collaborator. The input can be text or an action invocation result.
"
@@ -876,14 +887,14 @@
"AgentCollaboratorInvocationInput":{
"type":"structure",
"members":{
- "agentCollaboratorAliasArn":{
- "shape":"AgentAliasArn",
- "documentation":"The collaborator's alias ARN.
"
- },
"agentCollaboratorName":{
"shape":"String",
"documentation":"The collaborator's name.
"
},
+ "agentCollaboratorAliasArn":{
+ "shape":"AgentAliasArn",
+ "documentation":"The collaborator's alias ARN.
"
+ },
"input":{
"shape":"AgentCollaboratorInputPayload",
"documentation":"Text or action invocation result input for the collaborator.
"
@@ -894,21 +905,21 @@
"AgentCollaboratorInvocationOutput":{
"type":"structure",
"members":{
- "agentCollaboratorAliasArn":{
- "shape":"AgentAliasArn",
- "documentation":"The output's agent collaborator alias ARN.
"
- },
"agentCollaboratorName":{
"shape":"String",
"documentation":"The output's agent collaborator name.
"
},
- "metadata":{
- "shape":"Metadata",
- "documentation":"Contains information about the output from the agent collaborator.
"
+ "agentCollaboratorAliasArn":{
+ "shape":"AgentAliasArn",
+ "documentation":"The output's agent collaborator alias ARN.
"
},
"output":{
"shape":"AgentCollaboratorOutputPayload",
"documentation":"The output's output.
"
+ },
+ "metadata":{
+ "shape":"Metadata",
+ "documentation":"Contains information about the output from the agent collaborator.
"
}
},
"documentation":"Output from an agent collaborator.
"
@@ -916,17 +927,17 @@
"AgentCollaboratorOutputPayload":{
"type":"structure",
"members":{
- "returnControlPayload":{
- "shape":"ReturnControlPayload",
- "documentation":"An action invocation result.
"
+ "type":{
+ "shape":"PayloadType",
+ "documentation":"The type of output.
"
},
"text":{
"shape":"AgentCollaboratorPayloadString",
"documentation":"Text output.
"
},
- "type":{
- "shape":"PayloadType",
- "documentation":"The type of output.
"
+ "returnControlPayload":{
+ "shape":"ReturnControlPayload",
+ "documentation":"An action invocation result.
"
}
},
"documentation":"Output from an agent collaborator. The output can be text or an action invocation result.
"
@@ -939,13 +950,17 @@
"type":"string",
"max":10,
"min":0,
- "pattern":"^[0-9a-zA-Z]+$"
+ "pattern":"[0-9a-zA-Z]+"
+ },
+ "AgentTraces":{
+ "type":"list",
+ "member":{"shape":"TracePart"}
},
"AgentVersion":{
"type":"string",
"max":5,
"min":1,
- "pattern":"^(DRAFT|[0-9]{0,4}[1-9][0-9]{0,4})$"
+ "pattern":"(DRAFT|[0-9]{0,4}[1-9][0-9]{0,4})"
},
"AnalyzePromptEvent":{
"type":"structure",
@@ -972,26 +987,14 @@
"shape":"String",
"documentation":"The action group that the API operation belongs to.
"
},
- "actionInvocationType":{
- "shape":"ActionInvocationType",
- "documentation":"Contains information about the API operation to invoke.
"
- },
- "agentId":{
+ "httpMethod":{
"shape":"String",
- "documentation":"The agent's ID.
"
+ "documentation":"The HTTP method of the API operation.
"
},
"apiPath":{
"shape":"ApiPath",
"documentation":"The path to the API operation.
"
},
- "collaboratorName":{
- "shape":"Name",
- "documentation":"The agent collaborator's name.
"
- },
- "httpMethod":{
- "shape":"String",
- "documentation":"The HTTP method of the API operation.
"
- },
"parameters":{
"shape":"ApiParameters",
"documentation":"The parameters to provide for the API request, as the agent elicited from the user.
"
@@ -999,6 +1002,18 @@
"requestBody":{
"shape":"ApiRequestBody",
"documentation":"The request body to provide for the API request, as the agent elicited from the user.
"
+ },
+ "actionInvocationType":{
+ "shape":"ActionInvocationType",
+ "documentation":"Contains information about the API operation to invoke.
"
+ },
+ "agentId":{
+ "shape":"String",
+ "documentation":"The agent's ID.
"
+ },
+ "collaboratorName":{
+ "shape":"Name",
+ "documentation":"The agent collaborator's name.
"
}
},
"documentation":"Contains information about the API operation that the agent predicts should be called.
This data type is used in the following API operations:
"
@@ -1047,9 +1062,9 @@
"shape":"String",
"documentation":"The action group that the API operation belongs to.
"
},
- "agentId":{
+ "httpMethod":{
"shape":"String",
- "documentation":"The agent's ID.
"
+ "documentation":"The HTTP method for the API operation.
"
},
"apiPath":{
"shape":"ApiPath",
@@ -1059,9 +1074,9 @@
"shape":"ConfirmationState",
"documentation":"Controls the API operations or functions to invoke based on the user confirmation.
"
},
- "httpMethod":{
- "shape":"String",
- "documentation":"The HTTP method for the API operation.
"
+ "responseState":{
+ "shape":"ResponseState",
+ "documentation":"Controls the final response state returned to end user when API/Function execution failed. When this state is FAILURE, the request would fail with dependency failure exception. When this state is REPROMPT, the API/function response will be sent to model for re-prompt
"
},
"httpStatusCode":{
"shape":"Integer",
@@ -1071,9 +1086,9 @@
"shape":"ResponseBody",
"documentation":"The response body from the API operation. The key of the object is the content type (currently, only TEXT is supported). The response may be returned directly or from the Lambda function.
"
},
- "responseState":{
- "shape":"ResponseState",
- "documentation":"Controls the final response state returned to end user when API/Function execution failed. When this state is FAILURE, the request would fail with dependency failure exception. When this state is REPROMPT, the API/function response will be sent to model for re-prompt
"
+ "agentId":{
+ "shape":"String",
+ "documentation":"The agent's ID.
"
}
},
"documentation":"Contains information about the API operation that was called from the action group and the response body that was returned.
This data type is used in the following API operations:
"
@@ -1121,7 +1136,7 @@
"type":"string",
"max":2048,
"min":1,
- "pattern":"^(arn:aws(-[^:]+)?:(bedrock|sagemaker):[a-z0-9-]{1,20}:([0-9]{12})?:([a-z-]+/)?)?([a-z0-9.-]{1,63}){0,2}(([:][a-z0-9-]{1,63}){0,2})?(/[a-z0-9]{1,12})?$"
+ "pattern":"(arn:aws(-[^:]+)?:(bedrock|sagemaker):[a-z0-9-]{1,20}:([0-9]{12})?:([a-z-]+/)?)?([a-z0-9.-]{1,63}){0,2}(([:][a-z0-9-]{1,63}){0,2})?(/[a-z0-9]{1,12})?"
},
"BedrockModelConfigurations":{
"type":"structure",
@@ -1137,13 +1152,13 @@
"type":"structure",
"required":["modelConfiguration"],
"members":{
- "modelConfiguration":{
- "shape":"BedrockRerankingModelConfiguration",
- "documentation":"Contains configurations for a reranker model.
"
- },
"numberOfResults":{
"shape":"BedrockRerankingConfigurationNumberOfResultsInteger",
"documentation":"The number of results to return after reranking.
"
+ },
+ "modelConfiguration":{
+ "shape":"BedrockRerankingModelConfiguration",
+ "documentation":"Contains configurations for a reranker model.
"
}
},
"documentation":"Contains configurations for an Amazon Bedrock reranker model.
"
@@ -1158,19 +1173,19 @@
"type":"string",
"max":2048,
"min":1,
- "pattern":"^(arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}::foundation-model/(.*))?$"
+ "pattern":"(arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}::foundation-model/(.*))?"
},
"BedrockRerankingModelConfiguration":{
"type":"structure",
"required":["modelArn"],
"members":{
- "additionalModelRequestFields":{
- "shape":"AdditionalModelRequestFields",
- "documentation":"A JSON object whose keys are request fields for the model and whose values are values for those fields.
"
- },
"modelArn":{
"shape":"BedrockModelArn",
"documentation":"The ARN of the reranker model.
"
+ },
+ "additionalModelRequestFields":{
+ "shape":"AdditionalModelRequestFields",
+ "documentation":"A JSON object whose keys are request fields for the model and whose values are values for those fields.
"
}
},
"documentation":"Contains configurations for a reranker model.
"
@@ -1178,13 +1193,13 @@
"BedrockSessionContentBlock":{
"type":"structure",
"members":{
- "image":{
- "shape":"ImageBlock",
- "documentation":"The image in the invocation step.
"
- },
"text":{
"shape":"BedrockSessionContentBlockTextString",
"documentation":"The text in the invocation step.
"
+ },
+ "image":{
+ "shape":"ImageBlock",
+ "documentation":"The image in the invocation step.
"
}
},
"documentation":"A block of content that you pass to, or receive from, a Amazon Bedrock session in an invocation step. You pass the content to a session in the payLoad of the PutInvocationStep API operation. You retrieve the content with the GetInvocationStep API operation.
For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.
",
@@ -1214,11 +1229,15 @@
"ByteContentDoc":{
"type":"structure",
"required":[
+ "identifier",
"contentType",
- "data",
- "identifier"
+ "data"
],
"members":{
+ "identifier":{
+ "shape":"Identifier",
+ "documentation":"The file name of the document contained in the wrapper object.
"
+ },
"contentType":{
"shape":"ContentType",
"documentation":"The MIME type of the document contained in the wrapper object.
"
@@ -1226,10 +1245,6 @@
"data":{
"shape":"ByteContentBlob",
"documentation":"The byte value of the file to upload, encoded as a Base-64 string.
"
- },
- "identifier":{
- "shape":"Identifier",
- "documentation":"The file name of the document contained in the wrapper object.
"
}
},
"documentation":"This property contains the document to chat with, along with its attributes.
"
@@ -1237,17 +1252,17 @@
"ByteContentFile":{
"type":"structure",
"required":[
- "data",
- "mediaType"
+ "mediaType",
+ "data"
],
"members":{
- "data":{
- "shape":"ByteContentBlob",
- "documentation":"The raw bytes of the file to attach. The maximum size of all files that is attached is 10MB. You can attach a maximum of 5 files.
"
- },
"mediaType":{
"shape":"MimeType",
"documentation":"The MIME type of data contained in the file used for chat.
"
+ },
+ "data":{
+ "shape":"ByteContentBlob",
+ "documentation":"The raw bytes of the file to attach. The maximum size of all files that is attached is 10MB. You can attach a maximum of 5 files.
"
}
},
"documentation":"The property contains the file to chat with, along with its attributes.
"
@@ -1288,7 +1303,8 @@
"shape":"Citation",
"documentation":"The citation.
",
"deprecated":true,
- "deprecatedMessage":"Citation is deprecated. Please use GeneratedResponsePart and RetrievedReferences for citation event."
+ "deprecatedMessage":"Citation is deprecated. Please use GeneratedResponsePart and RetrievedReferences for citation event.",
+ "deprecatedSince":"2024-12-17"
},
"generatedResponsePart":{
"shape":"GeneratedResponsePart",
@@ -1323,22 +1339,22 @@
"CodeInterpreterInvocationOutput":{
"type":"structure",
"members":{
- "executionError":{
- "shape":"String",
- "documentation":"Contains the error returned from code execution.
"
- },
"executionOutput":{
"shape":"String",
"documentation":"Contains the successful output returned from code execution
"
},
- "executionTimeout":{
- "shape":"Boolean",
- "documentation":"Indicates if the execution of the code timed out.
"
+ "executionError":{
+ "shape":"String",
+ "documentation":"Contains the error returned from code execution.
"
},
"files":{
"shape":"Files",
"documentation":"Contains output files, if generated by code execution.
"
},
+ "executionTimeout":{
+ "shape":"Boolean",
+ "documentation":"Indicates if the execution of the code timed out.
"
+ },
"metadata":{
"shape":"Metadata",
"documentation":"Contains information about the output from the code interpreter.
"
@@ -1359,22 +1375,6 @@
"instruction"
],
"members":{
- "actionGroups":{
- "shape":"AgentActionGroups",
- "documentation":" List of action groups with each action group defining tasks the inline collaborator agent needs to carry out.
"
- },
- "agentCollaboration":{
- "shape":"AgentCollaboration",
- "documentation":" Defines how the inline supervisor agent handles information across multiple collaborator agents to coordinate a final response.
"
- },
- "agentName":{
- "shape":"Name",
- "documentation":" Name of the inline collaborator agent which must be the same name as specified for collaboratorName.
"
- },
- "collaboratorConfigurations":{
- "shape":"CollaboratorConfigurations",
- "documentation":" Settings of the collaborator agent.
"
- },
"customerEncryptionKeyArn":{
"shape":"KmsKeyArn",
"documentation":" The Amazon Resource Name (ARN) of the AWS KMS key that encrypts the inline collaborator.
"
@@ -1383,25 +1383,41 @@
"shape":"ModelIdentifier",
"documentation":" The foundation model used by the inline collaborator agent.
"
},
- "guardrailConfiguration":{
- "shape":"GuardrailConfigurationWithArn",
- "documentation":" Details of the guardwrail associated with the inline collaborator.
"
+ "instruction":{
+ "shape":"Instruction",
+ "documentation":" Instruction that tell the inline collaborator agent what it should do and how it should interact with users.
"
},
"idleSessionTTLInSeconds":{
"shape":"SessionTTL",
"documentation":" The number of seconds for which the Amazon Bedrock keeps information about the user's conversation with the inline collaborator agent.
A user interaction remains active for the amount of time specified. If no conversation occurs during this time, the session expires and Amazon Bedrock deletes any data provided before the timeout.
"
},
- "instruction":{
- "shape":"Instruction",
- "documentation":" Instruction that tell the inline collaborator agent what it should do and how it should interact with users.
"
+ "actionGroups":{
+ "shape":"AgentActionGroups",
+ "documentation":" List of action groups with each action group defining tasks the inline collaborator agent needs to carry out.
"
},
"knowledgeBases":{
"shape":"KnowledgeBases",
"documentation":" Knowledge base associated with the inline collaborator agent.
"
},
- "promptOverrideConfiguration":{
- "shape":"PromptOverrideConfiguration",
+ "guardrailConfiguration":{
+ "shape":"GuardrailConfigurationWithArn",
+ "documentation":" Details of the guardwrail associated with the inline collaborator.
"
+ },
+ "promptOverrideConfiguration":{
+ "shape":"PromptOverrideConfiguration",
"documentation":" Contains configurations to override prompt templates in different parts of an inline collaborator sequence. For more information, see Advanced prompts.
"
+ },
+ "agentCollaboration":{
+ "shape":"AgentCollaboration",
+ "documentation":" Defines how the inline supervisor agent handles information across multiple collaborator agents to coordinate a final response.
"
+ },
+ "collaboratorConfigurations":{
+ "shape":"CollaboratorConfigurations",
+ "documentation":" Settings of the collaborator agent.
"
+ },
+ "agentName":{
+ "shape":"Name",
+ "documentation":" Name of the inline collaborator agent which must be the same name as specified for collaboratorName.
"
}
},
"documentation":" List of inline collaborators.
"
@@ -1409,21 +1425,21 @@
"CollaboratorConfiguration":{
"type":"structure",
"required":[
- "collaboratorInstruction",
- "collaboratorName"
+ "collaboratorName",
+ "collaboratorInstruction"
],
"members":{
- "agentAliasArn":{
- "shape":"AgentAliasArn",
- "documentation":" The Amazon Resource Name (ARN) of the inline collaborator agent.
"
+ "collaboratorName":{
+ "shape":"Name",
+ "documentation":" Name of the inline collaborator agent which must be the same name as specified for agentName.
"
},
"collaboratorInstruction":{
"shape":"CollaborationInstruction",
"documentation":" Instructions that tell the inline collaborator agent what it should do and how it should interact with users.
"
},
- "collaboratorName":{
- "shape":"Name",
- "documentation":" Name of the inline collaborator agent which must be the same name as specified for agentName.
"
+ "agentAliasArn":{
+ "shape":"AgentAliasArn",
+ "documentation":" The Amazon Resource Name (ARN) of the inline collaborator agent.
"
},
"relayConversationHistory":{
"shape":"RelayConversationHistory",
@@ -1444,21 +1460,21 @@
"type":"structure",
"required":[
"nodeName",
- "satisfiedConditions",
- "timestamp"
+ "timestamp",
+ "satisfiedConditions"
],
"members":{
"nodeName":{
"shape":"NodeName",
"documentation":"The name of the condition node that evaluated the conditions.
"
},
- "satisfiedConditions":{
- "shape":"SatisfiedConditions",
- "documentation":"A list of conditions that were satisfied during the evaluation.
"
- },
"timestamp":{
"shape":"DateTimestamp",
"documentation":"The timestamp when the condition evaluation occurred.
"
+ },
+ "satisfiedConditions":{
+ "shape":"SatisfiedConditions",
+ "documentation":"A list of conditions that were satisfied during the evaluation.
"
}
},
"documentation":"Contains information about a condition evaluation result during a flow execution. This event is generated when a condition node in the flow evaluates its conditions.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
@@ -1520,7 +1536,7 @@
},
"ContentType":{
"type":"string",
- "pattern":"[a-z]{1,20}/.{1,20}"
+ "pattern":".*[a-z]{1,20}/.{1,20}.*"
},
"ConversationHistory":{
"type":"structure",
@@ -1543,14 +1559,14 @@
"type":"structure",
"required":["sessionIdentifier"],
"members":{
- "description":{
- "shape":"InvocationDescription",
- "documentation":"A description for the interactions in the invocation. For example, \"User asking about weather in Seattle\".
"
- },
"invocationId":{
"shape":"Uuid",
"documentation":"A unique identifier for the invocation in UUID format.
"
},
+ "description":{
+ "shape":"InvocationDescription",
+ "documentation":"A description for the interactions in the invocation. For example, \"User asking about weather in Seattle\".
"
+ },
"sessionIdentifier":{
"shape":"SessionIdentifier",
"documentation":"The unique identifier for the associated session for the invocation. You can specify either the session's sessionId or its Amazon Resource Name (ARN).
",
@@ -1562,36 +1578,36 @@
"CreateInvocationResponse":{
"type":"structure",
"required":[
- "createdAt",
+ "sessionId",
"invocationId",
- "sessionId"
+ "createdAt"
],
"members":{
- "createdAt":{
- "shape":"DateTimestamp",
- "documentation":"The timestamp for when the invocation was created.
"
+ "sessionId":{
+ "shape":"Uuid",
+ "documentation":"The unique identifier for the session associated with the invocation.
"
},
"invocationId":{
"shape":"Uuid",
"documentation":"The unique identifier for the invocation.
"
},
- "sessionId":{
- "shape":"Uuid",
- "documentation":"The unique identifier for the session associated with the invocation.
"
+ "createdAt":{
+ "shape":"DateTimestamp",
+ "documentation":"The timestamp for when the invocation was created.
"
}
}
},
"CreateSessionRequest":{
"type":"structure",
"members":{
- "encryptionKeyArn":{
- "shape":"KmsKeyArn",
- "documentation":"The Amazon Resource Name (ARN) of the KMS key to use to encrypt the session data. The user or role creating the session must have permission to use the key. For more information, see Amazon Bedrock session encryption.
"
- },
"sessionMetadata":{
"shape":"SessionMetadataMap",
"documentation":"A map of key-value pairs containing attributes to be persisted across the session. For example, the user's ID, their language preference, and the type of device they are using.
"
},
+ "encryptionKeyArn":{
+ "shape":"KmsKeyArn",
+ "documentation":"The Amazon Resource Name (ARN) of the KMS key to use to encrypt the session data. The user or role creating the session must have permission to use the key. For more information, see Amazon Bedrock session encryption.
"
+ },
"tags":{
"shape":"TagsMap",
"documentation":"Specify the key-value pairs for the tags that you want to attach to the session.
"
@@ -1601,27 +1617,27 @@
"CreateSessionResponse":{
"type":"structure",
"required":[
- "createdAt",
- "sessionArn",
"sessionId",
- "sessionStatus"
+ "sessionArn",
+ "sessionStatus",
+ "createdAt"
],
"members":{
- "createdAt":{
- "shape":"DateTimestamp",
- "documentation":"The timestamp for when the session was created.
"
+ "sessionId":{
+ "shape":"Uuid",
+ "documentation":"The unique identifier for the session.
"
},
"sessionArn":{
"shape":"SessionArn",
"documentation":"The Amazon Resource Name (ARN) of the created session.
"
},
- "sessionId":{
- "shape":"Uuid",
- "documentation":"The unique identifier for the session.
"
- },
"sessionStatus":{
"shape":"SessionStatus",
"documentation":"The current status of the session.
"
+ },
+ "createdAt":{
+ "shape":"DateTimestamp",
+ "documentation":"The timestamp for when the session was created.
"
}
}
},
@@ -1649,13 +1665,13 @@
"CustomOrchestrationTrace":{
"type":"structure",
"members":{
- "event":{
- "shape":"CustomOrchestrationTraceEvent",
- "documentation":" The event details used with the custom orchestration.
"
- },
"traceId":{
"shape":"TraceId",
"documentation":" The unique identifier of the trace.
"
+ },
+ "event":{
+ "shape":"CustomOrchestrationTraceEvent",
+ "documentation":" The event details used with the custom orchestration.
"
}
},
"documentation":" The trace behavior for the custom orchestration.
",
@@ -1680,22 +1696,22 @@
"DeleteAgentMemoryRequest":{
"type":"structure",
"required":[
- "agentAliasId",
- "agentId"
+ "agentId",
+ "agentAliasId"
],
"members":{
- "agentAliasId":{
- "shape":"AgentAliasId",
- "documentation":"The unique identifier of an alias of an agent.
",
- "location":"uri",
- "locationName":"agentAliasId"
- },
"agentId":{
"shape":"AgentId",
"documentation":"The unique identifier of the agent to which the alias belongs.
",
"location":"uri",
"locationName":"agentId"
},
+ "agentAliasId":{
+ "shape":"AgentAliasId",
+ "documentation":"The unique identifier of an alias of an agent.
",
+ "location":"uri",
+ "locationName":"agentAliasId"
+ },
"memoryId":{
"shape":"MemoryId",
"documentation":"The unique identifier of the memory.
",
@@ -1712,8 +1728,7 @@
},
"DeleteAgentMemoryResponse":{
"type":"structure",
- "members":{
- }
+ "members":{}
},
"DeleteSessionRequest":{
"type":"structure",
@@ -1729,8 +1744,7 @@
},
"DeleteSessionResponse":{
"type":"structure",
- "members":{
- }
+ "members":{}
},
"DependencyFailedException":{
"type":"structure",
@@ -1750,8 +1764,7 @@
},
"Document":{
"type":"structure",
- "members":{
- },
+ "members":{},
"document":true
},
"Double":{
@@ -1773,19 +1786,19 @@
"EndSessionResponse":{
"type":"structure",
"required":[
- "sessionArn",
"sessionId",
+ "sessionArn",
"sessionStatus"
],
"members":{
- "sessionArn":{
- "shape":"SessionArn",
- "documentation":"The Amazon Resource Name (ARN) of the session you ended.
"
- },
"sessionId":{
"shape":"Uuid",
"documentation":"The unique identifier of the session you ended.
"
},
+ "sessionArn":{
+ "shape":"SessionArn",
+ "documentation":"The Amazon Resource Name (ARN) of the session you ended.
"
+ },
"sessionStatus":{
"shape":"SessionStatus",
"documentation":"The current status of the session you ended.
"
@@ -1803,17 +1816,17 @@
"type":"structure",
"required":["sourceType"],
"members":{
- "byteContent":{
- "shape":"ByteContentDoc",
- "documentation":"The identifier, contentType, and data of the external source wrapper object.
"
+ "sourceType":{
+ "shape":"ExternalSourceType",
+ "documentation":"The source type of the external source wrapper object.
"
},
"s3Location":{
"shape":"S3ObjectDoc",
"documentation":"The S3 location of the external source wrapper object.
"
},
- "sourceType":{
- "shape":"ExternalSourceType",
- "documentation":"The source type of the external source wrapper object.
"
+ "byteContent":{
+ "shape":"ByteContentDoc",
+ "documentation":"The identifier, contentType, and data of the external source wrapper object.
"
}
},
"documentation":"The unique external source of the content contained in the wrapper object.
"
@@ -1834,9 +1847,9 @@
"ExternalSourcesGenerationConfiguration":{
"type":"structure",
"members":{
- "additionalModelRequestFields":{
- "shape":"AdditionalModelRequestFields",
- "documentation":" Additional model parameters and their corresponding values not included in the textInferenceConfig structure for an external source. Takes in custom model parameters specific to the language model being used.
"
+ "promptTemplate":{
+ "shape":"PromptTemplate",
+ "documentation":"Contain the textPromptTemplate string for the external source wrapper object.
"
},
"guardrailConfiguration":{
"shape":"GuardrailConfiguration",
@@ -1846,13 +1859,13 @@
"shape":"InferenceConfig",
"documentation":" Configuration settings for inference when using RetrieveAndGenerate to generate responses while using an external source.
"
},
+ "additionalModelRequestFields":{
+ "shape":"AdditionalModelRequestFields",
+ "documentation":" Additional model parameters and their corresponding values not included in the textInferenceConfig structure for an external source. Takes in custom model parameters specific to the language model being used.
"
+ },
"performanceConfig":{
"shape":"PerformanceConfiguration",
"documentation":"The latency configuration for the model.
"
- },
- "promptTemplate":{
- "shape":"PromptTemplate",
- "documentation":"Contain the textPromptTemplate string for the external source wrapper object.
"
}
},
"documentation":"Contains the generation configuration of the external source wrapper object.
"
@@ -1864,10 +1877,6 @@
"sources"
],
"members":{
- "generationConfiguration":{
- "shape":"ExternalSourcesGenerationConfiguration",
- "documentation":"The prompt used with the external source wrapper object with the retrieveAndGenerate function.
"
- },
"modelArn":{
"shape":"BedrockModelArn",
"documentation":"The model Amazon Resource Name (ARN) for the external source wrapper object in the retrieveAndGenerate function.
"
@@ -1875,6 +1884,10 @@
"sources":{
"shape":"ExternalSources",
"documentation":"The document for the external source wrapper object in the retrieveAndGenerate function.
"
+ },
+ "generationConfiguration":{
+ "shape":"ExternalSourcesGenerationConfiguration",
+ "documentation":"The prompt used with the external source wrapper object with the retrieveAndGenerate function.
"
}
},
"documentation":"The configurations of the external source wrapper object in the retrieveAndGenerate function.
"
@@ -1886,21 +1899,21 @@
"FailureTrace":{
"type":"structure",
"members":{
- "failureCode":{
- "shape":"Integer",
- "documentation":"The failure code for the trace.
"
+ "traceId":{
+ "shape":"TraceId",
+ "documentation":"The unique identifier of the trace.
"
},
"failureReason":{
"shape":"FailureReasonString",
"documentation":"The reason the interaction failed.
"
},
+ "failureCode":{
+ "shape":"Integer",
+ "documentation":"The failure code for the trace.
"
+ },
"metadata":{
"shape":"Metadata",
"documentation":"Information about the failure that occurred.
"
- },
- "traceId":{
- "shape":"TraceId",
- "documentation":"The unique identifier of the trace.
"
}
},
"documentation":"Contains information about the failure of the interaction.
",
@@ -1950,17 +1963,17 @@
"type":"structure",
"required":["sourceType"],
"members":{
- "byteContent":{
- "shape":"ByteContentFile",
- "documentation":"The data and the text of the attached files.
"
+ "sourceType":{
+ "shape":"FileSourceType",
+ "documentation":"The source type of the files to attach.
"
},
"s3Location":{
"shape":"S3ObjectFile",
"documentation":"The s3 location of the files to attach.
"
},
- "sourceType":{
- "shape":"FileSourceType",
- "documentation":"The source type of the files to attach.
"
+ "byteContent":{
+ "shape":"ByteContentFile",
+ "documentation":"The data and the text of the attached files.
"
}
},
"documentation":"The source file of the content contained in the wrapper object.
"
@@ -2008,20 +2021,19 @@
},
"FilterValue":{
"type":"structure",
- "members":{
- },
+ "members":{},
"document":true
},
"FinalResponse":{
"type":"structure",
"members":{
- "metadata":{
- "shape":"Metadata",
- "documentation":"Contains information about the invoke agent operation.
"
- },
"text":{
"shape":"FinalResponseString",
"documentation":"The text in the response to the user.
"
+ },
+ "metadata":{
+ "shape":"Metadata",
+ "documentation":"Contains information about the invoke agent operation.
"
}
},
"documentation":"Contains details about the response to the user.
"
@@ -2038,7 +2050,7 @@
"type":"string",
"max":2048,
"min":0,
- "pattern":"^(arn:aws:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:flow/[0-9a-zA-Z]{10}/alias/[0-9a-zA-Z]{10})|(\\bTSTALIASID\\b|[0-9a-zA-Z]+)$"
+ "pattern":"(arn:aws:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:flow/[0-9a-zA-Z]{10}/alias/[0-9a-zA-Z]{10})|(\\bTSTALIASID\\b|[0-9a-zA-Z]+)"
},
"FlowCompletionEvent":{
"type":"structure",
@@ -2060,6 +2072,13 @@
"INPUT_REQUIRED"
]
},
+ "FlowControlNodeType":{
+ "type":"string",
+ "enum":[
+ "Iterator",
+ "Loop"
+ ]
+ },
"FlowErrorCode":{
"type":"string",
"enum":[
@@ -2083,6 +2102,10 @@
"FlowExecutionError":{
"type":"structure",
"members":{
+ "nodeName":{
+ "shape":"NodeName",
+ "documentation":"The name of the node in the flow where the error occurred (if applicable).
"
+ },
"error":{
"shape":"FlowExecutionErrorType",
"documentation":"The error code for the type of error that occurred.
"
@@ -2090,10 +2113,6 @@
"message":{
"shape":"String",
"documentation":"A descriptive message that provides details about the error.
"
- },
- "nodeName":{
- "shape":"NodeName",
- "documentation":"The name of the node in the flow where the error occurred (if applicable).
"
}
},
"documentation":"Contains information about an error that occurred during an flow execution.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
"
@@ -2109,14 +2128,6 @@
"FlowExecutionEvent":{
"type":"structure",
"members":{
- "conditionResultEvent":{
- "shape":"ConditionResultEvent",
- "documentation":"Contains information about a condition evaluation result during the flow execution. This event is generated when a condition node in the flow evaluates its conditions.
"
- },
- "flowFailureEvent":{
- "shape":"FlowFailureEvent",
- "documentation":"Contains information about a failure that occurred at the flow level during execution.
"
- },
"flowInputEvent":{
"shape":"FlowExecutionInputEvent",
"documentation":"Contains information about the inputs provided to the flow at the start of execution.
"
@@ -2125,10 +2136,6 @@
"shape":"FlowExecutionOutputEvent",
"documentation":"Contains information about the outputs produced by the flow at the end of execution.
"
},
- "nodeFailureEvent":{
- "shape":"NodeFailureEvent",
- "documentation":"Contains information about a failure that occurred at a specific node during execution.
"
- },
"nodeInputEvent":{
"shape":"NodeInputEvent",
"documentation":"Contains information about the inputs provided to a specific node during execution.
"
@@ -2136,6 +2143,26 @@
"nodeOutputEvent":{
"shape":"NodeOutputEvent",
"documentation":"Contains information about the outputs produced by a specific node during execution.
"
+ },
+ "conditionResultEvent":{
+ "shape":"ConditionResultEvent",
+ "documentation":"Contains information about a condition evaluation result during the flow execution. This event is generated when a condition node in the flow evaluates its conditions.
"
+ },
+ "nodeFailureEvent":{
+ "shape":"NodeFailureEvent",
+ "documentation":"Contains information about a failure that occurred at a specific node during execution.
"
+ },
+ "flowFailureEvent":{
+ "shape":"FlowFailureEvent",
+ "documentation":"Contains information about a failure that occurred at the flow level during execution.
"
+ },
+ "nodeActionEvent":{
+ "shape":"NodeActionEvent",
+ "documentation":"Contains information about an action (operation) called by a node during execution.
"
+ },
+ "nodeDependencyEvent":{
+ "shape":"NodeDependencyEvent",
+ "documentation":"Contains information about an internal trace of a specific node during execution.
"
}
},
"documentation":"Represents an event that occurred during an flow execution. This is a union type that can contain one of several event types, such as node input and output events; flow input and output events; condition node result events, or failure events.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
@@ -2158,26 +2185,22 @@
"type":"string",
"max":100,
"min":2,
- "pattern":"^[0-9a-zA-Z._:-]+$"
+ "pattern":"[0-9a-zA-Z._:-]+"
},
"FlowExecutionIdentifier":{
"type":"string",
"max":2048,
"min":0,
- "pattern":"^[a-zA-Z0-9-]{1,36}$|^(arn:aws:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:flow/[0-9a-zA-Z]{10}/alias/[0-9a-zA-Z]{10}/execution/[a-zA-Z0-9-]{1,36})$"
+ "pattern":"[a-zA-Z0-9-]{1,36}$|^(arn:aws:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:flow/[0-9a-zA-Z]{10}/alias/[0-9a-zA-Z]{10}/execution/[a-zA-Z0-9-]{1,36})"
},
"FlowExecutionInputEvent":{
"type":"structure",
"required":[
- "fields",
"nodeName",
- "timestamp"
+ "timestamp",
+ "fields"
],
"members":{
- "fields":{
- "shape":"FlowInputFields",
- "documentation":"A list of input fields provided to the flow.
"
- },
"nodeName":{
"shape":"NodeName",
"documentation":"The name of the node that receives the inputs.
"
@@ -2185,6 +2208,10 @@
"timestamp":{
"shape":"DateTimestamp",
"documentation":"The timestamp when the inputs are provided.
"
+ },
+ "fields":{
+ "shape":"FlowInputFields",
+ "documentation":"A list of input fields provided to the flow.
"
}
},
"documentation":"Contains information about the inputs provided to the flow at the start of a flow execution.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
@@ -2194,20 +2221,16 @@
"type":"string",
"max":36,
"min":0,
- "pattern":"^[a-zA-Z0-9-]{1,36}$"
+ "pattern":"[a-zA-Z0-9-]{1,36}"
},
"FlowExecutionOutputEvent":{
"type":"structure",
"required":[
- "fields",
"nodeName",
- "timestamp"
+ "timestamp",
+ "fields"
],
"members":{
- "fields":{
- "shape":"FlowOutputFields",
- "documentation":"A list of output fields produced by the flow.
"
- },
"nodeName":{
"shape":"NodeName",
"documentation":"The name of the node that produces the outputs.
"
@@ -2215,6 +2238,10 @@
"timestamp":{
"shape":"DateTimestamp",
"documentation":"The timestamp when the outputs are produced.
"
+ },
+ "fields":{
+ "shape":"FlowOutputFields",
+ "documentation":"A list of output fields produced by the flow.
"
}
},
"documentation":"Contains information about the outputs produced by the flow during a flow execution.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
@@ -2224,7 +2251,7 @@
"type":"string",
"max":2048,
"min":0,
- "pattern":"^arn:aws(-[^:]+)?:iam::([0-9]{12})?:role/(service-role/)?.+$"
+ "pattern":"arn:aws(-[^:]+)?:iam::([0-9]{12})?:role/(service-role/)?.+"
},
"FlowExecutionStatus":{
"type":"string",
@@ -2245,25 +2272,17 @@
"FlowExecutionSummary":{
"type":"structure",
"required":[
- "createdAt",
"executionArn",
"flowAliasIdentifier",
"flowIdentifier",
"flowVersion",
- "status"
+ "status",
+ "createdAt"
],
"members":{
- "createdAt":{
- "shape":"DateTimestamp",
- "documentation":"The timestamp when the flow execution was created.
"
- },
- "endedAt":{
- "shape":"DateTimestamp",
- "documentation":"The timestamp when the flow execution ended. This field is only populated when the execution has completed, failed, timed out, or been aborted.
"
- },
- "executionArn":{
- "shape":"FlowExecutionIdentifier",
- "documentation":"The Amazon Resource Name (ARN) that uniquely identifies the flow execution.
"
+ "executionArn":{
+ "shape":"FlowExecutionIdentifier",
+ "documentation":"The Amazon Resource Name (ARN) that uniquely identifies the flow execution.
"
},
"flowAliasIdentifier":{
"shape":"FlowAliasIdentifier",
@@ -2280,6 +2299,14 @@
"status":{
"shape":"FlowExecutionStatus",
"documentation":"The current status of the flow execution.
Flow executions time out after 24 hours.
"
+ },
+ "createdAt":{
+ "shape":"DateTimestamp",
+ "documentation":"The timestamp when the flow execution was created.
"
+ },
+ "endedAt":{
+ "shape":"DateTimestamp",
+ "documentation":"The timestamp when the flow execution ended. This field is only populated when the execution has completed, failed, timed out, or been aborted.
"
}
},
"documentation":"Contains summary information about a flow execution, including its status, timestamps, and identifiers.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
"
@@ -2287,11 +2314,15 @@
"FlowFailureEvent":{
"type":"structure",
"required":[
+ "timestamp",
"errorCode",
- "errorMessage",
- "timestamp"
+ "errorMessage"
],
"members":{
+ "timestamp":{
+ "shape":"DateTimestamp",
+ "documentation":"The timestamp when the failure occurred.
"
+ },
"errorCode":{
"shape":"FlowErrorCode",
"documentation":"The error code that identifies the type of failure that occurred.
"
@@ -2299,10 +2330,6 @@
"errorMessage":{
"shape":"String",
"documentation":"A descriptive message that provides details about the failure.
"
- },
- "timestamp":{
- "shape":"DateTimestamp",
- "documentation":"The timestamp when the failure occurred.
"
}
},
"documentation":"Contains information about a failure that occurred at the flow level during a flow execution.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
@@ -2312,23 +2339,15 @@
"type":"string",
"max":2048,
"min":0,
- "pattern":"^(arn:aws:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:flow/[0-9a-zA-Z]{10})|([0-9a-zA-Z]{10})$"
+ "pattern":"(arn:aws:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:flow/[0-9a-zA-Z]{10})|([0-9a-zA-Z]{10})"
},
"FlowInput":{
"type":"structure",
"required":[
- "content",
- "nodeName"
+ "nodeName",
+ "content"
],
"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.
"
@@ -2336,6 +2355,14 @@
"nodeOutputName":{
"shape":"NodeOutputName",
"documentation":"The name of the output from the flow input node that begins the prompt flow.
"
+ },
+ "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.
"
}
},
"documentation":"Contains information about an input into the prompt flow and where to send it.
"
@@ -2355,17 +2382,17 @@
"FlowInputField":{
"type":"structure",
"required":[
- "content",
- "name"
+ "name",
+ "content"
],
"members":{
- "content":{
- "shape":"FlowExecutionContent",
- "documentation":"The content of the input field, which can contain text or structured data.
"
- },
"name":{
"shape":"NodeInputName",
"documentation":"The name of the input field as defined in the flow's input schema.
"
+ },
+ "content":{
+ "shape":"FlowExecutionContent",
+ "documentation":"The content of the input field, which can contain text or structured data.
"
}
},
"documentation":"Represents an input field provided to a flow during a flow execution.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
@@ -2397,15 +2424,11 @@
"FlowMultiTurnInputRequestEvent":{
"type":"structure",
"required":[
- "content",
"nodeName",
- "nodeType"
+ "nodeType",
+ "content"
],
"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.
"
@@ -2413,12 +2436,48 @@
"nodeType":{
"shape":"NodeType",
"documentation":"The type of the node in the flow that is requesting the input.
"
+ },
+ "content":{
+ "shape":"FlowMultiTurnInputContent",
+ "documentation":"The content payload containing the input request details for the multi-turn interaction.
"
}
},
"documentation":"Response object from the flow multi-turn node requesting additional information.
",
"event":true,
"sensitive":true
},
+ "FlowNodeIODataType":{
+ "type":"string",
+ "enum":[
+ "String",
+ "Number",
+ "Boolean",
+ "Object",
+ "Array"
+ ]
+ },
+ "FlowNodeInputCategory":{
+ "type":"string",
+ "enum":[
+ "LoopCondition",
+ "ReturnValueToLoopStart",
+ "ExitLoop"
+ ]
+ },
+ "FlowNodeInputExpression":{
+ "type":"string",
+ "max":64,
+ "min":1,
+ "sensitive":true
+ },
+ "FlowNodeInputName":{
+ "type":"string",
+ "pattern":"[a-zA-Z]([_]?[0-9a-zA-Z]){1,50}"
+ },
+ "FlowNodeOutputName":{
+ "type":"string",
+ "pattern":"[a-zA-Z]([_]?[0-9a-zA-Z]){1,50}"
+ },
"FlowOutputContent":{
"type":"structure",
"members":{
@@ -2433,15 +2492,11 @@
"FlowOutputEvent":{
"type":"structure",
"required":[
- "content",
"nodeName",
- "nodeType"
+ "nodeType",
+ "content"
],
"members":{
- "content":{
- "shape":"FlowOutputContent",
- "documentation":"The content in the output.
"
- },
"nodeName":{
"shape":"NodeName",
"documentation":"The name of the flow output node that the output is from.
"
@@ -2449,6 +2504,10 @@
"nodeType":{
"shape":"NodeType",
"documentation":"The type of the node that the output is from.
"
+ },
+ "content":{
+ "shape":"FlowOutputContent",
+ "documentation":"The content in the output.
"
}
},
"documentation":"Contains information about an output from prompt flow invoction.
",
@@ -2458,17 +2517,17 @@
"FlowOutputField":{
"type":"structure",
"required":[
- "content",
- "name"
+ "name",
+ "content"
],
"members":{
- "content":{
- "shape":"FlowExecutionContent",
- "documentation":"The content of the output field, which can contain text or structured data.
"
- },
"name":{
"shape":"NodeOutputName",
"documentation":"The name of the output field as defined in the flow's output schema.
"
+ },
+ "content":{
+ "shape":"FlowExecutionContent",
+ "documentation":"The content of the output field, which can contain text or structured data.
"
}
},
"documentation":"Represents an output field produced by a flow during a flow execution.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
@@ -2483,34 +2542,14 @@
"FlowResponseStream":{
"type":"structure",
"members":{
- "accessDeniedException":{
- "shape":"AccessDeniedException",
- "documentation":"The request is denied because of missing access permissions. Check your permissions and retry your request.
"
- },
- "badGatewayException":{
- "shape":"BadGatewayException",
- "documentation":"There was an issue with a dependency due to a server issue. Retry your request.
"
- },
- "conflictException":{
- "shape":"ConflictException",
- "documentation":"There was a conflict performing an operation. Resolve the conflict and retry your request.
"
- },
- "dependencyFailedException":{
- "shape":"DependencyFailedException",
- "documentation":"There was an issue with a dependency. Check the resource configurations and retry the request.
"
+ "flowOutputEvent":{
+ "shape":"FlowOutputEvent",
+ "documentation":"Contains information about an output from flow invocation.
"
},
"flowCompletionEvent":{
"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.
"
- },
"flowTraceEvent":{
"shape":"FlowTraceEvent",
"documentation":"Contains information about a trace, which tracks an input or output for a node in the flow.
"
@@ -2519,6 +2558,10 @@
"shape":"InternalServerException",
"documentation":"An internal server error occurred. Retry your request.
"
},
+ "validationException":{
+ "shape":"ValidationException",
+ "documentation":"Input validation failed. Check your request parameters and retry the request.
"
+ },
"resourceNotFoundException":{
"shape":"ResourceNotFoundException",
"documentation":"The specified resource Amazon Resource Name (ARN) was not found. Check the Amazon Resource Name (ARN) and try your request again.
"
@@ -2531,9 +2574,25 @@
"shape":"ThrottlingException",
"documentation":"The number of requests exceeds the limit. Resubmit your request later.
"
},
- "validationException":{
- "shape":"ValidationException",
- "documentation":"Input validation failed. Check your request parameters and retry the request.
"
+ "accessDeniedException":{
+ "shape":"AccessDeniedException",
+ "documentation":"The request is denied because of missing access permissions. Check your permissions and retry your request.
"
+ },
+ "conflictException":{
+ "shape":"ConflictException",
+ "documentation":"There was a conflict performing an operation. Resolve the conflict and retry your request.
"
+ },
+ "dependencyFailedException":{
+ "shape":"DependencyFailedException",
+ "documentation":"There was an issue with a dependency. Check the resource configurations and retry the request.
"
+ },
+ "badGatewayException":{
+ "shape":"BadGatewayException",
+ "documentation":"There was an issue with a dependency due to a server issue. Retry your request.
"
+ },
+ "flowMultiTurnInputRequestEvent":{
+ "shape":"FlowMultiTurnInputRequestEvent",
+ "documentation":"The event stream containing the multi-turn input request information from the flow.
"
}
},
"documentation":"The output of the flow.
",
@@ -2542,14 +2601,6 @@
"FlowTrace":{
"type":"structure",
"members":{
- "conditionNodeResultTrace":{
- "shape":"FlowTraceConditionNodeResultEvent",
- "documentation":"Contains information about an output from a condition node.
"
- },
- "nodeActionTrace":{
- "shape":"FlowTraceNodeActionEvent",
- "documentation":"Contains information about an action (operation) called by a node. For more information, see Track each step in your prompt flow by viewing its trace in Amazon Bedrock.
"
- },
"nodeInputTrace":{
"shape":"FlowTraceNodeInputEvent",
"documentation":"Contains information about the input into a node.
"
@@ -2557,6 +2608,18 @@
"nodeOutputTrace":{
"shape":"FlowTraceNodeOutputEvent",
"documentation":"Contains information about the output from a node.
"
+ },
+ "conditionNodeResultTrace":{
+ "shape":"FlowTraceConditionNodeResultEvent",
+ "documentation":"Contains information about an output from a condition node.
"
+ },
+ "nodeActionTrace":{
+ "shape":"FlowTraceNodeActionEvent",
+ "documentation":"Contains information about an action (operation) called by a node.
"
+ },
+ "nodeDependencyTrace":{
+ "shape":"FlowTraceDependencyEvent",
+ "documentation":"Contains information about an internal trace of a node.
"
}
},
"documentation":"Contains information about an input or output for a node in the flow. For more information, see Track each step in your prompt flow by viewing its trace in Amazon Bedrock.
",
@@ -2579,21 +2642,21 @@
"type":"structure",
"required":[
"nodeName",
- "satisfiedConditions",
- "timestamp"
+ "timestamp",
+ "satisfiedConditions"
],
"members":{
"nodeName":{
"shape":"NodeName",
"documentation":"The name of the condition node.
"
},
- "satisfiedConditions":{
- "shape":"FlowTraceConditions",
- "documentation":"An array of objects containing information about the conditions that were satisfied.
"
- },
"timestamp":{
"shape":"DateTimestamp",
"documentation":"The date and time that the trace was returned.
"
+ },
+ "satisfiedConditions":{
+ "shape":"FlowTraceConditions",
+ "documentation":"An array of objects containing information about the conditions that were satisfied.
"
}
},
"documentation":"Contains information about an output from a condition node. For more information, see Track each step in your prompt flow by viewing its trace in Amazon Bedrock.
",
@@ -2605,6 +2668,30 @@
"max":5,
"min":1
},
+ "FlowTraceDependencyEvent":{
+ "type":"structure",
+ "required":[
+ "nodeName",
+ "timestamp",
+ "traceElements"
+ ],
+ "members":{
+ "nodeName":{
+ "shape":"NodeName",
+ "documentation":"The name of the node that generated the dependency trace.
"
+ },
+ "timestamp":{
+ "shape":"DateTimestamp",
+ "documentation":"The date and time that the dependency trace was generated.
"
+ },
+ "traceElements":{
+ "shape":"TraceElements",
+ "documentation":"The trace elements containing detailed information about the dependency.
"
+ }
+ },
+ "documentation":"Contains information about a dependency trace event in the flow.
",
+ "sensitive":true
+ },
"FlowTraceEvent":{
"type":"structure",
"required":["trace"],
@@ -2621,19 +2708,19 @@
"type":"structure",
"required":[
"nodeName",
- "operationName",
+ "timestamp",
"requestId",
"serviceName",
- "timestamp"
+ "operationName"
],
"members":{
"nodeName":{
"shape":"NodeName",
"documentation":"The name of the node that called the operation.
"
},
- "operationName":{
- "shape":"String",
- "documentation":"The name of the operation that the node called.
"
+ "timestamp":{
+ "shape":"DateTimestamp",
+ "documentation":"The date and time that the operation was called.
"
},
"requestId":{
"shape":"String",
@@ -2643,9 +2730,17 @@
"shape":"String",
"documentation":"The name of the service that the node called.
"
},
- "timestamp":{
- "shape":"DateTimestamp",
- "documentation":"The date and time that the operation was called.
"
+ "operationName":{
+ "shape":"String",
+ "documentation":"The name of the operation that the node called.
"
+ },
+ "operationRequest":{
+ "shape":"Document",
+ "documentation":"The request payload sent to the downstream service.
"
+ },
+ "operationResponse":{
+ "shape":"Document",
+ "documentation":"The response payload received from the downstream service.
"
}
},
"documentation":"Contains information about an action (operation) called by a node in an Amazon Bedrock flow. The service generates action events for calls made by prompt nodes, agent nodes, and Amazon Web Services Lambda nodes.
",
@@ -2666,15 +2761,11 @@
"FlowTraceNodeInputEvent":{
"type":"structure",
"required":[
- "fields",
"nodeName",
- "timestamp"
+ "timestamp",
+ "fields"
],
"members":{
- "fields":{
- "shape":"FlowTraceNodeInputFields",
- "documentation":"An array of objects containing information about each field in the input.
"
- },
"nodeName":{
"shape":"NodeName",
"documentation":"The name of the node that received the input.
"
@@ -2682,25 +2773,73 @@
"timestamp":{
"shape":"DateTimestamp",
"documentation":"The date and time that the trace was returned.
"
+ },
+ "fields":{
+ "shape":"FlowTraceNodeInputFields",
+ "documentation":"An array of objects containing information about each field in the input.
"
}
},
"documentation":"Contains information about the input into a node. For more information, see Track each step in your prompt flow by viewing its trace in Amazon Bedrock.
",
"sensitive":true
},
+ "FlowTraceNodeInputExecutionChain":{
+ "type":"list",
+ "member":{"shape":"FlowTraceNodeInputExecutionChainItem"},
+ "sensitive":true
+ },
+ "FlowTraceNodeInputExecutionChainItem":{
+ "type":"structure",
+ "required":[
+ "nodeName",
+ "type"
+ ],
+ "members":{
+ "nodeName":{
+ "shape":"NodeName",
+ "documentation":"The name of the node in the execution chain.
"
+ },
+ "index":{
+ "shape":"Integer",
+ "documentation":"The index position of this item in the execution chain.
"
+ },
+ "type":{
+ "shape":"FlowControlNodeType",
+ "documentation":"The type of execution chain item. Supported values are Iterator and Loop.
"
+ }
+ },
+ "documentation":"Represents an item in the execution chain for flow trace node input tracking.
",
+ "sensitive":true
+ },
"FlowTraceNodeInputField":{
"type":"structure",
"required":[
- "content",
- "nodeInputName"
+ "nodeInputName",
+ "content"
],
"members":{
+ "nodeInputName":{
+ "shape":"NodeInputName",
+ "documentation":"The name of the node input.
"
+ },
"content":{
"shape":"FlowTraceNodeInputContent",
"documentation":"The content of the node input.
"
},
- "nodeInputName":{
- "shape":"NodeInputName",
- "documentation":"The name of the node input.
"
+ "source":{
+ "shape":"FlowTraceNodeInputSource",
+ "documentation":"The source node that provides input data to this field.
"
+ },
+ "type":{
+ "shape":"FlowNodeIODataType",
+ "documentation":"The data type of the input field for compatibility validation.
"
+ },
+ "category":{
+ "shape":"FlowNodeInputCategory",
+ "documentation":"The category of the input field.
"
+ },
+ "executionChain":{
+ "shape":"FlowTraceNodeInputExecutionChain",
+ "documentation":"The execution path through nested nodes like iterators and loops.
"
}
},
"documentation":"Contains information about a field in the input into a node. For more information, see Track each step in your prompt flow by viewing its trace in Amazon Bedrock.
",
@@ -2712,6 +2851,30 @@
"max":5,
"min":1
},
+ "FlowTraceNodeInputSource":{
+ "type":"structure",
+ "required":[
+ "nodeName",
+ "outputFieldName",
+ "expression"
+ ],
+ "members":{
+ "nodeName":{
+ "shape":"NodeName",
+ "documentation":"The name of the source node that provides the input data.
"
+ },
+ "outputFieldName":{
+ "shape":"FlowNodeOutputName",
+ "documentation":"The name of the output field from the source node.
"
+ },
+ "expression":{
+ "shape":"FlowNodeInputExpression",
+ "documentation":"The expression used to extract data from the source.
"
+ }
+ },
+ "documentation":"Represents the source of input data for a flow trace node field.
",
+ "sensitive":true
+ },
"FlowTraceNodeOutputContent":{
"type":"structure",
"members":{
@@ -2726,15 +2889,11 @@
"FlowTraceNodeOutputEvent":{
"type":"structure",
"required":[
- "fields",
"nodeName",
- "timestamp"
+ "timestamp",
+ "fields"
],
"members":{
- "fields":{
- "shape":"FlowTraceNodeOutputFields",
- "documentation":"An array of objects containing information about each field in the output.
"
- },
"nodeName":{
"shape":"NodeName",
"documentation":"The name of the node that yielded the output.
"
@@ -2742,7 +2901,11 @@
"timestamp":{
"shape":"DateTimestamp",
"documentation":"The date and time that the trace was returned.
"
- }
+ },
+ "fields":{
+ "shape":"FlowTraceNodeOutputFields",
+ "documentation":"An array of objects containing information about each field in the output.
"
+ }
},
"documentation":"Contains information about the output from a node. For more information, see Track each step in your prompt flow by viewing its trace in Amazon Bedrock.
",
"sensitive":true
@@ -2750,17 +2913,25 @@
"FlowTraceNodeOutputField":{
"type":"structure",
"required":[
- "content",
- "nodeOutputName"
+ "nodeOutputName",
+ "content"
],
"members":{
+ "nodeOutputName":{
+ "shape":"NodeOutputName",
+ "documentation":"The name of the node output.
"
+ },
"content":{
"shape":"FlowTraceNodeOutputContent",
"documentation":"The content of the node output.
"
},
- "nodeOutputName":{
- "shape":"NodeOutputName",
- "documentation":"The name of the node output.
"
+ "next":{
+ "shape":"FlowTraceNodeOutputNextList",
+ "documentation":"The next node that receives output data from this field.
"
+ },
+ "type":{
+ "shape":"FlowNodeIODataType",
+ "documentation":"The data type of the output field for compatibility validation.
"
}
},
"documentation":"Contains information about a field in the output from a node. For more information, see Track each step in your prompt flow by viewing its trace in Amazon Bedrock.
",
@@ -2772,6 +2943,29 @@
"max":2,
"min":1
},
+ "FlowTraceNodeOutputNext":{
+ "type":"structure",
+ "required":[
+ "nodeName",
+ "inputFieldName"
+ ],
+ "members":{
+ "nodeName":{
+ "shape":"NodeName",
+ "documentation":"The name of the next node that receives the output data.
"
+ },
+ "inputFieldName":{
+ "shape":"FlowNodeInputName",
+ "documentation":"The name of the input field in the next node that receives the data.
"
+ }
+ },
+ "documentation":"Represents the next node that receives output data from a flow trace.
",
+ "sensitive":true
+ },
+ "FlowTraceNodeOutputNextList":{
+ "type":"list",
+ "member":{"shape":"FlowTraceNodeOutputNext"}
+ },
"Function":{
"type":"string",
"sensitive":true
@@ -2780,14 +2974,14 @@
"type":"structure",
"required":["name"],
"members":{
- "description":{
- "shape":"FunctionDescription",
- "documentation":" A description of the function and its purpose.
"
- },
"name":{
"shape":"ResourceName",
"documentation":" A name for the function.
"
},
+ "description":{
+ "shape":"FunctionDescription",
+ "documentation":" A description of the function and its purpose.
"
+ },
"parameters":{
"shape":"ParameterMap",
"documentation":" The parameters that the agent elicits from the user to fulfill the function.
"
@@ -2812,6 +3006,14 @@
"shape":"String",
"documentation":"The action group that the function belongs to.
"
},
+ "parameters":{
+ "shape":"FunctionParameters",
+ "documentation":"A list of parameters of the function.
"
+ },
+ "function":{
+ "shape":"String",
+ "documentation":"The name of the function.
"
+ },
"actionInvocationType":{
"shape":"ActionInvocationType",
"documentation":"Contains information about the function to invoke,
"
@@ -2823,14 +3025,6 @@
"collaboratorName":{
"shape":"Name",
"documentation":"The collaborator's name.
"
- },
- "function":{
- "shape":"String",
- "documentation":"The name of the function.
"
- },
- "parameters":{
- "shape":"FunctionParameters",
- "documentation":"A list of parameters of the function.
"
}
},
"documentation":"Contains information about the function that the agent predicts should be called.
This data type is used in the following API operations:
"
@@ -2865,10 +3059,6 @@
"shape":"String",
"documentation":"The action group that the function belongs to.
"
},
- "agentId":{
- "shape":"String",
- "documentation":"The agent's ID.
"
- },
"confirmationState":{
"shape":"ConfirmationState",
"documentation":"Contains the user confirmation information about the function that was called.
"
@@ -2884,6 +3074,10 @@
"responseState":{
"shape":"ResponseState",
"documentation":"Controls the final response state returned to end user when API/Function execution failed. When this state is FAILURE, the request would fail with dependency failure exception. When this state is REPROMPT, the API/function response will be sent to model for re-prompt
"
+ },
+ "agentId":{
+ "shape":"String",
+ "documentation":"The agent's ID.
"
}
},
"documentation":"Contains information about the function that was called from the action group and the response that was returned.
This data type is used in the following API operations:
"
@@ -2937,13 +3131,13 @@
"GeneratedQuery":{
"type":"structure",
"members":{
- "sql":{
- "shape":"String",
- "documentation":"An SQL query that corresponds to the natural language query.
"
- },
"type":{
"shape":"GeneratedQueryType",
"documentation":"The type of transformed query.
"
+ },
+ "sql":{
+ "shape":"String",
+ "documentation":"An SQL query that corresponds to the natural language query.
"
}
},
"documentation":"Contains information about a query generated for a natural language query.
",
@@ -2966,9 +3160,9 @@
"GenerationConfiguration":{
"type":"structure",
"members":{
- "additionalModelRequestFields":{
- "shape":"AdditionalModelRequestFields",
- "documentation":" Additional model parameters and corresponding values not included in the textInferenceConfig structure for a knowledge base. This allows users to provide custom model parameters specific to the language model being used.
"
+ "promptTemplate":{
+ "shape":"PromptTemplate",
+ "documentation":"Contains the template for the prompt that's sent to the model for response generation. Generation prompts must include the $search_results$ variable. For more information, see Use placeholder variables in the user guide.
"
},
"guardrailConfiguration":{
"shape":"GuardrailConfiguration",
@@ -2978,13 +3172,13 @@
"shape":"InferenceConfig",
"documentation":" Configuration settings for inference when using RetrieveAndGenerate to generate responses while using a knowledge base as a source.
"
},
+ "additionalModelRequestFields":{
+ "shape":"AdditionalModelRequestFields",
+ "documentation":" Additional model parameters and corresponding values not included in the textInferenceConfig structure for a knowledge base. This allows users to provide custom model parameters specific to the language model being used.
"
+ },
"performanceConfig":{
"shape":"PerformanceConfiguration",
"documentation":"The latency configuration for the model.
"
- },
- "promptTemplate":{
- "shape":"PromptTemplate",
- "documentation":"Contains the template for the prompt that's sent to the model for response generation. Generation prompts must include the $search_results$ variable. For more information, see Use placeholder variables in the user guide.
"
}
},
"documentation":"Contains configurations for response generation based on the knowledge base query results.
This data type is used in the following API operations:
"
@@ -2992,23 +3186,17 @@
"GetAgentMemoryRequest":{
"type":"structure",
"required":[
- "agentAliasId",
"agentId",
- "memoryId",
- "memoryType"
+ "agentAliasId",
+ "memoryType",
+ "memoryId"
],
"members":{
- "agentAliasId":{
- "shape":"AgentAliasId",
- "documentation":"The unique identifier of an alias of an agent.
",
- "location":"uri",
- "locationName":"agentAliasId"
- },
- "agentId":{
- "shape":"AgentId",
- "documentation":"The unique identifier of the agent to which the alias belongs.
",
- "location":"uri",
- "locationName":"agentId"
+ "nextToken":{
+ "shape":"NextToken",
+ "documentation":"If the total number of results is greater than the maxItems value provided in the request, enter the token returned in the nextToken field in the response in this field to return the next batch of results.
",
+ "location":"querystring",
+ "locationName":"nextToken"
},
"maxItems":{
"shape":"MaxResults",
@@ -3016,11 +3204,17 @@
"location":"querystring",
"locationName":"maxItems"
},
- "memoryId":{
- "shape":"MemoryId",
- "documentation":"The unique identifier of the memory.
",
- "location":"querystring",
- "locationName":"memoryId"
+ "agentId":{
+ "shape":"AgentId",
+ "documentation":"The unique identifier of the agent to which the alias belongs.
",
+ "location":"uri",
+ "locationName":"agentId"
+ },
+ "agentAliasId":{
+ "shape":"AgentAliasId",
+ "documentation":"The unique identifier of an alias of an agent.
",
+ "location":"uri",
+ "locationName":"agentAliasId"
},
"memoryType":{
"shape":"MemoryType",
@@ -3028,40 +3222,40 @@
"location":"querystring",
"locationName":"memoryType"
},
- "nextToken":{
- "shape":"NextToken",
- "documentation":"If the total number of results is greater than the maxItems value provided in the request, enter the token returned in the nextToken field in the response in this field to return the next batch of results.
",
+ "memoryId":{
+ "shape":"MemoryId",
+ "documentation":"The unique identifier of the memory.
",
"location":"querystring",
- "locationName":"nextToken"
+ "locationName":"memoryId"
}
}
},
"GetAgentMemoryResponse":{
"type":"structure",
"members":{
- "memoryContents":{
- "shape":"Memories",
- "documentation":"Contains details of the sessions stored in the memory
"
- },
"nextToken":{
"shape":"NextToken",
"documentation":"If the total number of results is greater than the maxItems value provided in the request, use this token when making another request in the nextToken field to return the next batch of results.
"
+ },
+ "memoryContents":{
+ "shape":"Memories",
+ "documentation":"Contains details of the sessions stored in the memory
"
}
}
},
"GetExecutionFlowSnapshotRequest":{
"type":"structure",
"required":[
- "executionIdentifier",
+ "flowIdentifier",
"flowAliasIdentifier",
- "flowIdentifier"
+ "executionIdentifier"
],
"members":{
- "executionIdentifier":{
- "shape":"FlowExecutionIdentifier",
- "documentation":"The unique identifier of the flow execution.
",
+ "flowIdentifier":{
+ "shape":"FlowIdentifier",
+ "documentation":"The unique identifier of the flow.
",
"location":"uri",
- "locationName":"executionIdentifier"
+ "locationName":"flowIdentifier"
},
"flowAliasIdentifier":{
"shape":"FlowAliasIdentifier",
@@ -3069,63 +3263,63 @@
"location":"uri",
"locationName":"flowAliasIdentifier"
},
- "flowIdentifier":{
- "shape":"FlowIdentifier",
- "documentation":"The unique identifier of the flow.
",
+ "executionIdentifier":{
+ "shape":"FlowExecutionIdentifier",
+ "documentation":"The unique identifier of the flow execution.
",
"location":"uri",
- "locationName":"flowIdentifier"
+ "locationName":"executionIdentifier"
}
}
},
"GetExecutionFlowSnapshotResponse":{
"type":"structure",
"required":[
- "definition",
- "executionRoleArn",
- "flowAliasIdentifier",
"flowIdentifier",
- "flowVersion"
+ "flowAliasIdentifier",
+ "flowVersion",
+ "executionRoleArn",
+ "definition"
],
"members":{
- "customerEncryptionKeyArn":{
- "shape":"KmsKeyArn",
- "documentation":"The Amazon Resource Name (ARN) of the customer managed KMS key that's used to encrypt the flow snapshot.
"
- },
- "definition":{
- "shape":"String",
- "documentation":"The flow definition used for the flow execution, including the nodes, connections, and configuration at the time when the execution started.
The definition returns as a string that follows the structure of a FlowDefinition object.
"
- },
- "executionRoleArn":{
- "shape":"FlowExecutionRoleArn",
- "documentation":"The Amazon Resource Name (ARN) of the IAM service role that's used by the flow execution.
"
+ "flowIdentifier":{
+ "shape":"FlowIdentifier",
+ "documentation":"The unique identifier of the flow.
"
},
"flowAliasIdentifier":{
"shape":"FlowAliasIdentifier",
"documentation":"The unique identifier of the flow alias used for the flow execution.
"
},
- "flowIdentifier":{
- "shape":"FlowIdentifier",
- "documentation":"The unique identifier of the flow.
"
- },
"flowVersion":{
"shape":"Version",
"documentation":"The version of the flow used for the flow execution.
"
+ },
+ "executionRoleArn":{
+ "shape":"FlowExecutionRoleArn",
+ "documentation":"The Amazon Resource Name (ARN) of the IAM service role that's used by the flow execution.
"
+ },
+ "definition":{
+ "shape":"String",
+ "documentation":"The flow definition used for the flow execution, including the nodes, connections, and configuration at the time when the execution started.
The definition returns as a string that follows the structure of a FlowDefinition object.
"
+ },
+ "customerEncryptionKeyArn":{
+ "shape":"KmsKeyArn",
+ "documentation":"The Amazon Resource Name (ARN) of the customer managed KMS key that's used to encrypt the flow snapshot.
"
}
}
},
"GetFlowExecutionRequest":{
"type":"structure",
"required":[
- "executionIdentifier",
+ "flowIdentifier",
"flowAliasIdentifier",
- "flowIdentifier"
+ "executionIdentifier"
],
"members":{
- "executionIdentifier":{
- "shape":"FlowExecutionIdentifier",
- "documentation":"The unique identifier of the flow execution to retrieve.
",
+ "flowIdentifier":{
+ "shape":"FlowIdentifier",
+ "documentation":"The unique identifier of the flow.
",
"location":"uri",
- "locationName":"executionIdentifier"
+ "locationName":"flowIdentifier"
},
"flowAliasIdentifier":{
"shape":"FlowAliasIdentifier",
@@ -3133,11 +3327,11 @@
"location":"uri",
"locationName":"flowAliasIdentifier"
},
- "flowIdentifier":{
- "shape":"FlowIdentifier",
- "documentation":"The unique identifier of the flow.
",
+ "executionIdentifier":{
+ "shape":"FlowExecutionIdentifier",
+ "documentation":"The unique identifier of the flow execution to retrieve.
",
"location":"uri",
- "locationName":"flowIdentifier"
+ "locationName":"executionIdentifier"
}
}
},
@@ -3145,13 +3339,25 @@
"type":"structure",
"required":[
"executionArn",
+ "status",
+ "startedAt",
"flowAliasIdentifier",
"flowIdentifier",
- "flowVersion",
- "startedAt",
- "status"
+ "flowVersion"
],
"members":{
+ "executionArn":{
+ "shape":"FlowExecutionIdentifier",
+ "documentation":"The Amazon Resource Name (ARN) that uniquely identifies the flow execution.
"
+ },
+ "status":{
+ "shape":"FlowExecutionStatus",
+ "documentation":"The current status of the flow execution.
Flow executions time out after 24 hours.
"
+ },
+ "startedAt":{
+ "shape":"DateTimestamp",
+ "documentation":"The timestamp when the flow execution started.
"
+ },
"endedAt":{
"shape":"DateTimestamp",
"documentation":"The timestamp when the flow execution ended. This field is only populated when the execution has completed, failed, timed out, or been aborted.
"
@@ -3160,10 +3366,6 @@
"shape":"FlowExecutionErrors",
"documentation":"A list of errors that occurred during the flow execution. Each error includes an error code, message, and the node where the error occurred, if applicable.
"
},
- "executionArn":{
- "shape":"FlowExecutionIdentifier",
- "documentation":"The Amazon Resource Name (ARN) that uniquely identifies the flow execution.
"
- },
"flowAliasIdentifier":{
"shape":"FlowAliasIdentifier",
"documentation":"The unique identifier of the flow alias used for the execution.
"
@@ -3175,14 +3377,6 @@
"flowVersion":{
"shape":"Version",
"documentation":"The version of the flow used for the execution.
"
- },
- "startedAt":{
- "shape":"DateTimestamp",
- "documentation":"The timestamp when the flow execution started.
"
- },
- "status":{
- "shape":"FlowExecutionStatus",
- "documentation":"The current status of the flow execution.
Flow executions time out after 24 hours.
"
}
}
},
@@ -3237,40 +3431,40 @@
"GetSessionResponse":{
"type":"structure",
"required":[
- "createdAt",
- "lastUpdatedAt",
- "sessionArn",
"sessionId",
- "sessionStatus"
+ "sessionArn",
+ "sessionStatus",
+ "createdAt",
+ "lastUpdatedAt"
],
"members":{
+ "sessionId":{
+ "shape":"Uuid",
+ "documentation":"The unique identifier for the session in UUID format.
"
+ },
+ "sessionArn":{
+ "shape":"SessionArn",
+ "documentation":"The Amazon Resource Name (ARN) of the session.
"
+ },
+ "sessionStatus":{
+ "shape":"SessionStatus",
+ "documentation":"The current status of the session.
"
+ },
"createdAt":{
"shape":"DateTimestamp",
"documentation":"The timestamp for when the session was created.
"
},
- "encryptionKeyArn":{
- "shape":"KmsKeyArn",
- "documentation":"The Amazon Resource Name (ARN) of the Key Management Service key used to encrypt the session data. For more information, see Amazon Bedrock session encryption.
"
- },
"lastUpdatedAt":{
"shape":"DateTimestamp",
"documentation":"The timestamp for when the session was last modified.
"
},
- "sessionArn":{
- "shape":"SessionArn",
- "documentation":"The Amazon Resource Name (ARN) of the session.
"
- },
- "sessionId":{
- "shape":"Uuid",
- "documentation":"The unique identifier for the session in UUID format.
"
- },
"sessionMetadata":{
"shape":"SessionMetadataMap",
"documentation":"A map of key-value pairs containing attributes persisted across the session.
"
},
- "sessionStatus":{
- "shape":"SessionStatus",
- "documentation":"The current status of the session.
"
+ "encryptionKeyArn":{
+ "shape":"KmsKeyArn",
+ "documentation":"The Amazon Resource Name (ARN) of the Key Management Service key used to encrypt the session data. For more information, see Amazon Bedrock session encryption.
"
}
}
},
@@ -3291,21 +3485,21 @@
"GuardrailAssessment":{
"type":"structure",
"members":{
- "contentPolicy":{
- "shape":"GuardrailContentPolicyAssessment",
- "documentation":"Content policy details of the Guardrail.
"
- },
- "sensitiveInformationPolicy":{
- "shape":"GuardrailSensitiveInformationPolicyAssessment",
- "documentation":"Sensitive Information policy details of Guardrail.
"
- },
"topicPolicy":{
"shape":"GuardrailTopicPolicyAssessment",
"documentation":"Topic policy details of the Guardrail.
"
},
+ "contentPolicy":{
+ "shape":"GuardrailContentPolicyAssessment",
+ "documentation":"Content policy details of the Guardrail.
"
+ },
"wordPolicy":{
"shape":"GuardrailWordPolicyAssessment",
"documentation":"Word policy details of the Guardrail.
"
+ },
+ "sensitiveInformationPolicy":{
+ "shape":"GuardrailSensitiveInformationPolicyAssessment",
+ "documentation":"Sensitive Information policy details of Guardrail.
"
}
},
"documentation":"Assessment details of the content analyzed by Guardrails.
",
@@ -3337,13 +3531,13 @@
"type":"string",
"max":64,
"min":0,
- "pattern":"^[a-z0-9]+$"
+ "pattern":"[a-z0-9]+"
},
"GuardrailConfigurationGuardrailVersionString":{
"type":"string",
"max":5,
"min":1,
- "pattern":"^(([1-9][0-9]{0,7})|(DRAFT))$"
+ "pattern":"(([1-9][0-9]{0,7})|(DRAFT))"
},
"GuardrailConfigurationWithArn":{
"type":"structure",
@@ -3366,17 +3560,17 @@
"GuardrailContentFilter":{
"type":"structure",
"members":{
- "action":{
- "shape":"GuardrailContentPolicyAction",
- "documentation":"The action placed on the content by the Guardrail filter.
"
+ "type":{
+ "shape":"GuardrailContentFilterType",
+ "documentation":"The type of content detected in the filter by the Guardrail.
"
},
"confidence":{
"shape":"GuardrailContentFilterConfidence",
"documentation":"The confidence level regarding the content detected in the filter by the Guardrail.
"
},
- "type":{
- "shape":"GuardrailContentFilterType",
- "documentation":"The type of content detected in the filter by the Guardrail.
"
+ "action":{
+ "shape":"GuardrailContentPolicyAction",
+ "documentation":"The action placed on the content by the Guardrail filter.
"
}
},
"documentation":"Details of the content filter used in the Guardrail.
",
@@ -3425,13 +3619,13 @@
"GuardrailCustomWord":{
"type":"structure",
"members":{
- "action":{
- "shape":"GuardrailWordPolicyAction",
- "documentation":"The action details for the custom word filter in the Guardrail.
"
- },
"match":{
"shape":"String",
"documentation":"The match details for the custom word filter in the Guardrail.
"
+ },
+ "action":{
+ "shape":"GuardrailWordPolicyAction",
+ "documentation":"The action details for the custom word filter in the Guardrail.
"
}
},
"documentation":"The custom word details for the filter in the Guardrail.
",
@@ -3457,15 +3651,11 @@
"type":"string",
"max":2048,
"min":0,
- "pattern":"^(([a-z0-9]+)|(arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:guardrail/[a-z0-9]+))$"
+ "pattern":"(([a-z0-9]+)|(arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:guardrail/[a-z0-9]+))"
},
"GuardrailManagedWord":{
"type":"structure",
"members":{
- "action":{
- "shape":"GuardrailWordPolicyAction",
- "documentation":"The action details for the managed word filter in the Guardrail.
"
- },
"match":{
"shape":"String",
"documentation":"The match details for the managed word filter in the Guardrail.
"
@@ -3473,6 +3663,10 @@
"type":{
"shape":"GuardrailManagedWordType",
"documentation":"The type details for the managed word filter in the Guardrail.
"
+ },
+ "action":{
+ "shape":"GuardrailWordPolicyAction",
+ "documentation":"The action details for the managed word filter in the Guardrail.
"
}
},
"documentation":"The managed word details for the filter in the Guardrail.
",
@@ -3490,17 +3684,17 @@
"GuardrailPiiEntityFilter":{
"type":"structure",
"members":{
- "action":{
- "shape":"GuardrailSensitiveInformationPolicyAction",
- "documentation":"The action of the Guardrail filter to identify and remove PII.
"
+ "type":{
+ "shape":"GuardrailPiiEntityType",
+ "documentation":"The type of PII the Guardrail filter has identified and removed.
"
},
"match":{
"shape":"String",
"documentation":"The match to settings in the Guardrail filter to identify and remove PII.
"
},
- "type":{
- "shape":"GuardrailPiiEntityType",
- "documentation":"The type of PII the Guardrail filter has identified and removed.
"
+ "action":{
+ "shape":"GuardrailSensitiveInformationPolicyAction",
+ "documentation":"The action of the Guardrail filter to identify and remove PII.
"
}
},
"documentation":"The Guardrail filter to identify and remove personally identifiable information (PII).
",
@@ -3550,14 +3744,6 @@
"GuardrailRegexFilter":{
"type":"structure",
"members":{
- "action":{
- "shape":"GuardrailSensitiveInformationPolicyAction",
- "documentation":"The action details for the regex filter used in the Guardrail.
"
- },
- "match":{
- "shape":"String",
- "documentation":"The match details for the regex filter used in the Guardrail.
"
- },
"name":{
"shape":"String",
"documentation":"The name details for the regex filter used in the Guardrail.
"
@@ -3565,6 +3751,14 @@
"regex":{
"shape":"String",
"documentation":"The regex details for the regex filter used in the Guardrail.
"
+ },
+ "match":{
+ "shape":"String",
+ "documentation":"The match details for the regex filter used in the Guardrail.
"
+ },
+ "action":{
+ "shape":"GuardrailSensitiveInformationPolicyAction",
+ "documentation":"The action details for the regex filter used in the Guardrail.
"
}
},
"documentation":"The details for the regex filter used in the Guardrail.
",
@@ -3600,10 +3794,6 @@
"GuardrailTopic":{
"type":"structure",
"members":{
- "action":{
- "shape":"GuardrailTopicPolicyAction",
- "documentation":"The action details on a specific topic in the Guardrail.
"
- },
"name":{
"shape":"String",
"documentation":"The name details on a specific topic in the Guardrail.
"
@@ -3611,6 +3801,10 @@
"type":{
"shape":"GuardrailTopicType",
"documentation":"The type details on a specific topic in the Guardrail.
"
+ },
+ "action":{
+ "shape":"GuardrailTopicPolicyAction",
+ "documentation":"The action details on a specific topic in the Guardrail.
"
}
},
"documentation":"The details for a specific topic defined in the Guardrail.
",
@@ -3647,21 +3841,21 @@
"shape":"GuardrailAction",
"documentation":"The trace action details used with the Guardrail.
"
},
+ "traceId":{
+ "shape":"TraceId",
+ "documentation":"The details of the trace Id used in the Guardrail Trace.
"
+ },
"inputAssessments":{
"shape":"GuardrailAssessmentList",
"documentation":"The details of the input assessments used in the Guardrail Trace.
"
},
- "metadata":{
- "shape":"Metadata",
- "documentation":"Contains information about the Guardrail output.
"
- },
"outputAssessments":{
"shape":"GuardrailAssessmentList",
"documentation":"The details of the output assessments used in the Guardrail Trace.
"
},
- "traceId":{
- "shape":"TraceId",
- "documentation":"The details of the trace Id used in the Guardrail Trace.
"
+ "metadata":{
+ "shape":"Metadata",
+ "documentation":"Contains information about the Guardrail output.
"
}
},
"documentation":"The trace details used in the Guardrail.
",
@@ -3671,7 +3865,7 @@
"type":"string",
"max":5,
"min":1,
- "pattern":"^(([1-9][0-9]{0,7})|(DRAFT))$"
+ "pattern":"(([1-9][0-9]{0,7})|(DRAFT))"
},
"GuardrailWordPolicyAction":{
"type":"string",
@@ -3821,25 +4015,25 @@
"InferenceConfiguration":{
"type":"structure",
"members":{
- "maximumLength":{
- "shape":"MaximumLength",
- "documentation":"The maximum number of tokens allowed in the generated response.
"
- },
- "stopSequences":{
- "shape":"StopSequences",
- "documentation":"A list of stop sequences. A stop sequence is a sequence of characters that causes the model to stop generating the response.
"
- },
"temperature":{
"shape":"Temperature",
"documentation":"The likelihood of the model selecting higher-probability options while generating a response. A lower value makes the model more likely to choose higher-probability options, while a higher value makes the model more likely to choose lower-probability options.
"
},
+ "topP":{
+ "shape":"TopP",
+ "documentation":"While generating a response, the model determines the probability of the following token at each point of generation. The value that you set for Top P determines the number of most-likely candidates from which the model chooses the next token in the sequence. For example, if you set topP to 0.8, the model only selects the next token from the top 80% of the probability distribution of next tokens.
"
+ },
"topK":{
"shape":"TopK",
"documentation":"While generating a response, the model determines the probability of the following token at each point of generation. The value that you set for topK is the number of most-likely candidates from which the model chooses the next token in the sequence. For example, if you set topK to 50, the model selects the next token from among the top 50 most likely choices.
"
},
- "topP":{
- "shape":"TopP",
- "documentation":"While generating a response, the model determines the probability of the following token at each point of generation. The value that you set for Top P determines the number of most-likely candidates from which the model chooses the next token in the sequence. For example, if you set topP to 0.8, the model only selects the next token from the top 80% of the probability distribution of next tokens.
"
+ "maximumLength":{
+ "shape":"MaximumLength",
+ "documentation":"The maximum number of tokens allowed in the generated response.
"
+ },
+ "stopSequences":{
+ "shape":"StopSequences",
+ "documentation":"A list of stop sequences. A stop sequence is a sequence of characters that causes the model to stop generating the response.
"
}
},
"documentation":"Specifications about the inference parameters that were provided alongside the prompt. These are specified in the PromptOverrideConfiguration object that was set when the agent was created or updated. For more information, see Inference parameters for foundation models.
"
@@ -3858,13 +4052,13 @@
"InlineAgentPayloadPart":{
"type":"structure",
"members":{
- "attribution":{
- "shape":"Attribution",
- "documentation":"Contains citations for a part of an agent response.
"
- },
"bytes":{
"shape":"PartBody",
"documentation":"A part of the agent response in bytes.
"
+ },
+ "attribution":{
+ "shape":"Attribution",
+ "documentation":"Contains citations for a part of an agent response.
"
}
},
"documentation":"Contains a part of an agent response and citations for it.
",
@@ -3874,42 +4068,30 @@
"InlineAgentResponseStream":{
"type":"structure",
"members":{
- "accessDeniedException":{
- "shape":"AccessDeniedException",
- "documentation":"The request is denied because of missing access permissions. Check your permissions and retry your request.
"
- },
- "badGatewayException":{
- "shape":"BadGatewayException",
- "documentation":"There was an issue with a dependency due to a server issue. Retry your request.
"
- },
"chunk":{
"shape":"InlineAgentPayloadPart",
"documentation":"Contains a part of an agent response and citations for it.
"
},
- "conflictException":{
- "shape":"ConflictException",
- "documentation":"There was a conflict performing an operation. Resolve the conflict and retry your request.
"
- },
- "dependencyFailedException":{
- "shape":"DependencyFailedException",
- "documentation":"There was an issue with a dependency. Check the resource configurations and retry the request.
"
+ "trace":{
+ "shape":"InlineAgentTracePart",
+ "documentation":"Contains information about the agent and session, alongside the agent's reasoning process and results from calling actions and querying knowledge bases and metadata about the trace. You can use the trace to understand how the agent arrived at the response it provided the customer. For more information, see Trace events.
"
},
- "files":{
- "shape":"InlineAgentFilePart",
- "documentation":"Contains intermediate response for code interpreter if any files have been generated.
"
+ "returnControl":{
+ "shape":"InlineAgentReturnControlPayload",
+ "documentation":"Contains the parameters and information that the agent elicited from the customer to carry out an action. This information is returned to the system and can be used in your own setup for fulfilling the action.
"
},
"internalServerException":{
"shape":"InternalServerException",
"documentation":"An internal server error occurred. Retry your request.
"
},
+ "validationException":{
+ "shape":"ValidationException",
+ "documentation":"Input validation failed. Check your request parameters and retry the request.
"
+ },
"resourceNotFoundException":{
"shape":"ResourceNotFoundException",
"documentation":"The specified resource Amazon Resource Name (ARN) was not found. Check the Amazon Resource Name (ARN) and try your request again.
"
},
- "returnControl":{
- "shape":"InlineAgentReturnControlPayload",
- "documentation":"Contains the parameters and information that the agent elicited from the customer to carry out an action. This information is returned to the system and can be used in your own setup for fulfilling the action.
"
- },
"serviceQuotaExceededException":{
"shape":"ServiceQuotaExceededException",
"documentation":"The number of requests exceeds the service quota. Resubmit your request later.
"
@@ -3918,13 +4100,25 @@
"shape":"ThrottlingException",
"documentation":"The number of requests exceeds the limit. Resubmit your request later.
"
},
- "trace":{
- "shape":"InlineAgentTracePart",
- "documentation":"Contains information about the agent and session, alongside the agent's reasoning process and results from calling actions and querying knowledge bases and metadata about the trace. You can use the trace to understand how the agent arrived at the response it provided the customer. For more information, see Trace events.
"
+ "accessDeniedException":{
+ "shape":"AccessDeniedException",
+ "documentation":"The request is denied because of missing access permissions. Check your permissions and retry your request.
"
},
- "validationException":{
- "shape":"ValidationException",
- "documentation":"Input validation failed. Check your request parameters and retry the request.
"
+ "conflictException":{
+ "shape":"ConflictException",
+ "documentation":"There was a conflict performing an operation. Resolve the conflict and retry your request.
"
+ },
+ "dependencyFailedException":{
+ "shape":"DependencyFailedException",
+ "documentation":"There was an issue with a dependency. Check the resource configurations and retry the request.
"
+ },
+ "badGatewayException":{
+ "shape":"BadGatewayException",
+ "documentation":"There was an issue with a dependency due to a server issue. Retry your request.
"
+ },
+ "files":{
+ "shape":"InlineAgentFilePart",
+ "documentation":"Contains intermediate response for code interpreter if any files have been generated.
"
}
},
"documentation":"The response from invoking the agent and associated citations and trace information.
",
@@ -3933,13 +4127,13 @@
"InlineAgentReturnControlPayload":{
"type":"structure",
"members":{
- "invocationId":{
- "shape":"String",
- "documentation":"The identifier of the action group invocation.
"
- },
"invocationInputs":{
"shape":"InvocationInputs",
"documentation":"A list of objects that contain information about the parameters and inputs that need to be sent into the API operation or function, based on what the agent determines from its session with the user.
"
+ },
+ "invocationId":{
+ "shape":"String",
+ "documentation":"The identifier of the action group invocation.
"
}
},
"documentation":"Contains information to return from the action group that the agent has predicted to invoke.
This data type is used in the InvokeAgent response API operation.
",
@@ -3949,25 +4143,25 @@
"InlineAgentTracePart":{
"type":"structure",
"members":{
+ "sessionId":{
+ "shape":"SessionId",
+ "documentation":"The unique identifier of the session with the agent.
"
+ },
+ "trace":{
+ "shape":"Trace",
+ "documentation":"Contains one part of the agent's reasoning process and results from calling API actions and querying knowledge bases. You can use the trace to understand how the agent arrived at the response it provided the customer. For more information, see Trace enablement.
"
+ },
"callerChain":{
"shape":"CallerChain",
"documentation":"The caller chain for the trace part.
"
},
- "collaboratorName":{
- "shape":"Name",
- "documentation":"The collaborator name for the trace part.
"
- },
"eventTime":{
"shape":"SyntheticTimestamp_date_time",
"documentation":"The time that trace occurred.
"
},
- "sessionId":{
- "shape":"SessionId",
- "documentation":"The unique identifier of the session with the agent.
"
- },
- "trace":{
- "shape":"Trace",
- "documentation":"Contains one part of the agent's reasoning process and results from calling API actions and querying knowledge bases. You can use the trace to understand how the agent arrived at the response it provided the customer. For more information, see Trace enablement.
"
+ "collaboratorName":{
+ "shape":"Name",
+ "documentation":"The collaborator name for the trace part.
"
}
},
"documentation":"Contains information about the agent and session, alongside the agent's reasoning process and results from calling API actions and querying knowledge bases and metadata about the trace. You can use the trace to understand how the agent arrived at the response it provided the customer. For more information, see Trace enablement.
",
@@ -3987,17 +4181,9 @@
"InlineSessionState":{
"type":"structure",
"members":{
- "conversationHistory":{
- "shape":"ConversationHistory",
- "documentation":" Contains the conversation history that persist across sessions.
"
- },
- "files":{
- "shape":"InputFiles",
- "documentation":" Contains information about the files used by code interpreter.
"
- },
- "invocationId":{
- "shape":"String",
- "documentation":" The identifier of the invocation of an action. This value must match the invocationId returned in the InvokeInlineAgent response for the action whose results are provided in the returnControlInvocationResults field. For more information, see Return control to the agent developer.
"
+ "sessionAttributes":{
+ "shape":"SessionAttributesMap",
+ "documentation":" Contains attributes that persist across a session and the values of those attributes.
"
},
"promptSessionAttributes":{
"shape":"PromptSessionAttributesMap",
@@ -4007,9 +4193,17 @@
"shape":"ReturnControlInvocationResults",
"documentation":" Contains information about the results from the action group invocation. For more information, see Return control to the agent developer.
If you include this field in the sessionState field, the inputText field will be ignored.
"
},
- "sessionAttributes":{
- "shape":"SessionAttributesMap",
- "documentation":" Contains attributes that persist across a session and the values of those attributes.
"
+ "invocationId":{
+ "shape":"String",
+ "documentation":" The identifier of the invocation of an action. This value must match the invocationId returned in the InvokeInlineAgent response for the action whose results are provided in the returnControlInvocationResults field. For more information, see Return control to the agent developer.
"
+ },
+ "files":{
+ "shape":"InputFiles",
+ "documentation":" Contains information about the files used by code interpreter.
"
+ },
+ "conversationHistory":{
+ "shape":"ConversationHistory",
+ "documentation":" Contains the conversation history that persist across sessions.
"
}
},
"documentation":" Contains parameters that specify various attributes that persist across a session or prompt. You can define session state attributes as key-value pairs when writing a Lambda function for an action group or pass them when making an InvokeInlineAgent request. Use session state attributes to control and provide conversational context for your inline agent and to help customize your agent's behavior. For more information, see Control session context
"
@@ -4092,34 +4286,34 @@
},
"InvocationIdentifier":{
"type":"string",
- "pattern":"^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$"
+ "pattern":"[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}"
},
"InvocationInput":{
"type":"structure",
"members":{
- "actionGroupInvocationInput":{
- "shape":"ActionGroupInvocationInput",
- "documentation":"Contains information about the action group to be invoked.
"
- },
- "agentCollaboratorInvocationInput":{
- "shape":"AgentCollaboratorInvocationInput",
- "documentation":"The collaborator's invocation input.
"
- },
- "codeInterpreterInvocationInput":{
- "shape":"CodeInterpreterInvocationInput",
- "documentation":"Contains information about the code interpreter to be invoked.
"
+ "traceId":{
+ "shape":"TraceId",
+ "documentation":"The unique identifier of the trace.
"
},
"invocationType":{
"shape":"InvocationType",
"documentation":"Specifies whether the agent is invoking an action group or a knowledge base.
"
},
+ "actionGroupInvocationInput":{
+ "shape":"ActionGroupInvocationInput",
+ "documentation":"Contains information about the action group to be invoked.
"
+ },
"knowledgeBaseLookupInput":{
"shape":"KnowledgeBaseLookupInput",
"documentation":"Contains details about the knowledge base to look up and the query to be made.
"
},
- "traceId":{
- "shape":"TraceId",
- "documentation":"The unique identifier of the trace.
"
+ "codeInterpreterInvocationInput":{
+ "shape":"CodeInterpreterInvocationInput",
+ "documentation":"Contains information about the code interpreter to be invoked.
"
+ },
+ "agentCollaboratorInvocationInput":{
+ "shape":"AgentCollaboratorInvocationInput",
+ "documentation":"The collaborator's invocation input.
"
}
},
"documentation":"Contains information pertaining to the action group or knowledge base that is being invoked.
",
@@ -4164,13 +4358,17 @@
"InvocationStep":{
"type":"structure",
"required":[
+ "sessionId",
"invocationId",
"invocationStepId",
"invocationStepTime",
- "payload",
- "sessionId"
+ "payload"
],
"members":{
+ "sessionId":{
+ "shape":"Uuid",
+ "documentation":"The unique identifier of the session containing the invocation step.
"
+ },
"invocationId":{
"shape":"Uuid",
"documentation":"The unique identifier (in UUID format) for the invocation that includes the invocation step.
"
@@ -4186,10 +4384,6 @@
"payload":{
"shape":"InvocationStepPayload",
"documentation":"Payload content, such as text and images, for the invocation step.
"
- },
- "sessionId":{
- "shape":"Uuid",
- "documentation":"The unique identifier of the session containing the invocation step.
"
}
},
"documentation":"Stores fine-grained state checkpoints, including text and images, for each interaction in an invocation in a session. For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.
"
@@ -4212,12 +4406,16 @@
"InvocationStepSummary":{
"type":"structure",
"required":[
+ "sessionId",
"invocationId",
"invocationStepId",
- "invocationStepTime",
- "sessionId"
+ "invocationStepTime"
],
"members":{
+ "sessionId":{
+ "shape":"Uuid",
+ "documentation":"The unique identifier for the session associated with the invocation step.
"
+ },
"invocationId":{
"shape":"Uuid",
"documentation":"A unique identifier for the invocation in UUID format.
"
@@ -4229,10 +4427,6 @@
"invocationStepTime":{
"shape":"DateTimestamp",
"documentation":"The timestamp for when the invocation step was created.
"
- },
- "sessionId":{
- "shape":"Uuid",
- "documentation":"The unique identifier for the session associated with the invocation step.
"
}
},
"documentation":"Contains details about an invocation step within an invocation in a session. For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.
"
@@ -4244,22 +4438,22 @@
"InvocationSummary":{
"type":"structure",
"required":[
- "createdAt",
+ "sessionId",
"invocationId",
- "sessionId"
+ "createdAt"
],
"members":{
- "createdAt":{
- "shape":"DateTimestamp",
- "documentation":"The timestamp for when the invocation was created.
"
+ "sessionId":{
+ "shape":"Uuid",
+ "documentation":"The unique identifier for the session associated with the invocation.
"
},
"invocationId":{
"shape":"Uuid",
"documentation":"A unique identifier for the invocation in UUID format.
"
},
- "sessionId":{
- "shape":"Uuid",
- "documentation":"The unique identifier for the session associated with the invocation.
"
+ "createdAt":{
+ "shape":"DateTimestamp",
+ "documentation":"The timestamp for when the invocation was created.
"
}
},
"documentation":"Contains details about an invocation in a session. For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.
"
@@ -4277,16 +4471,14 @@
"InvokeAgentRequest":{
"type":"structure",
"required":[
- "agentAliasId",
"agentId",
+ "agentAliasId",
"sessionId"
],
"members":{
- "agentAliasId":{
- "shape":"AgentAliasId",
- "documentation":"The alias of the agent to use.
",
- "location":"uri",
- "locationName":"agentAliasId"
+ "sessionState":{
+ "shape":"SessionState",
+ "documentation":"Contains parameters that specify various attributes of the session. For more information, see Control session context.
If you include returnControlInvocationResults in the sessionState field, the inputText field will be ignored.
"
},
"agentId":{
"shape":"AgentId",
@@ -4294,18 +4486,26 @@
"location":"uri",
"locationName":"agentId"
},
- "bedrockModelConfigurations":{
- "shape":"BedrockModelConfigurations",
- "documentation":"Model performance settings for the request.
"
+ "agentAliasId":{
+ "shape":"AgentAliasId",
+ "documentation":"The alias of the agent to use.
",
+ "location":"uri",
+ "locationName":"agentAliasId"
},
- "enableTrace":{
- "shape":"Boolean",
- "documentation":"Specifies whether to turn on the trace or not to track the agent's reasoning process. For more information, see Trace enablement.
"
+ "sessionId":{
+ "shape":"SessionId",
+ "documentation":"The unique identifier of the session. Use the same value across requests to continue the same conversation.
",
+ "location":"uri",
+ "locationName":"sessionId"
},
"endSession":{
"shape":"Boolean",
"documentation":"Specifies whether to end the session with the agent or not.
"
},
+ "enableTrace":{
+ "shape":"Boolean",
+ "documentation":"Specifies whether to turn on the trace or not to track the agent's reasoning process. For more information, see Trace enablement.
"
+ },
"inputText":{
"shape":"InputText",
"documentation":"The prompt text to send the agent.
If you include returnControlInvocationResults in the sessionState field, the inputText field will be ignored.
"
@@ -4314,29 +4514,23 @@
"shape":"MemoryId",
"documentation":"The unique identifier of the agent memory.
"
},
+ "bedrockModelConfigurations":{
+ "shape":"BedrockModelConfigurations",
+ "documentation":"Model performance settings for the request.
"
+ },
+ "streamingConfigurations":{
+ "shape":"StreamingConfigurations",
+ "documentation":" Specifies the configurations for streaming.
To use agent streaming, you need permissions to perform the bedrock:InvokeModelWithResponseStream action.
"
+ },
"promptCreationConfigurations":{
"shape":"PromptCreationConfigurations",
"documentation":"Specifies parameters that control how the service populates the agent prompt for an InvokeAgent request. You can control which aspects of previous invocations in the same agent session the service uses to populate the agent prompt. This gives you more granular control over the contextual history that is used to process the current request.
"
},
- "sessionId":{
- "shape":"SessionId",
- "documentation":"The unique identifier of the session. Use the same value across requests to continue the same conversation.
",
- "location":"uri",
- "locationName":"sessionId"
- },
- "sessionState":{
- "shape":"SessionState",
- "documentation":"Contains parameters that specify various attributes of the session. For more information, see Control session context.
If you include returnControlInvocationResults in the sessionState field, the inputText field will be ignored.
"
- },
"sourceArn":{
"shape":"AWSResourceARN",
"documentation":"The ARN of the resource making the request.
",
"location":"header",
"locationName":"x-amz-source-arn"
- },
- "streamingConfigurations":{
- "shape":"StreamingConfigurations",
- "documentation":" Specifies the configurations for streaming.
To use agent streaming, you need permissions to perform the bedrock:InvokeModelWithResponseStream action.
"
}
}
},
@@ -4358,17 +4552,17 @@
"location":"header",
"locationName":"x-amzn-bedrock-agent-content-type"
},
- "memoryId":{
- "shape":"MemoryId",
- "documentation":"The unique identifier of the agent memory.
",
- "location":"header",
- "locationName":"x-amz-bedrock-agent-memory-id"
- },
"sessionId":{
"shape":"SessionId",
"documentation":"The unique identifier of the session with the agent.
",
"location":"header",
"locationName":"x-amz-bedrock-agent-session-id"
+ },
+ "memoryId":{
+ "shape":"MemoryId",
+ "documentation":"The unique identifier of the agent memory.
",
+ "location":"header",
+ "locationName":"x-amz-bedrock-agent-memory-id"
}
},
"payload":"completion"
@@ -4376,18 +4570,16 @@
"InvokeFlowRequest":{
"type":"structure",
"required":[
- "flowAliasIdentifier",
"flowIdentifier",
+ "flowAliasIdentifier",
"inputs"
],
"members":{
- "enableTrace":{
- "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.
"
+ "flowIdentifier":{
+ "shape":"FlowIdentifier",
+ "documentation":"The unique identifier of the flow.
",
+ "location":"uri",
+ "locationName":"flowIdentifier"
},
"flowAliasIdentifier":{
"shape":"FlowAliasIdentifier",
@@ -4395,19 +4587,21 @@
"location":"uri",
"locationName":"flowAliasIdentifier"
},
- "flowIdentifier":{
- "shape":"FlowIdentifier",
- "documentation":"The unique identifier of the flow.
",
- "location":"uri",
- "locationName":"flowIdentifier"
- },
"inputs":{
"shape":"FlowInputs",
"documentation":"A list of objects, each containing information about an input into the flow.
"
},
+ "enableTrace":{
+ "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.
"
+ },
"modelPerformanceConfiguration":{
"shape":"ModelPerformanceConfiguration",
"documentation":"Model performance settings for the request.
"
+ },
+ "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.
"
}
}
},
@@ -4415,15 +4609,15 @@
"type":"structure",
"required":["responseStream"],
"members":{
+ "responseStream":{
+ "shape":"FlowResponseStream",
+ "documentation":"The output of the flow, returned as a stream. If there's an error, the error is returned.
"
+ },
"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.
"
}
},
"payload":"responseStream"
@@ -4436,95 +4630,95 @@
"sessionId"
],
"members":{
- "actionGroups":{
- "shape":"AgentActionGroups",
- "documentation":" A list of action groups with each action group defining the action the inline agent needs to carry out.
"
- },
- "agentCollaboration":{
- "shape":"AgentCollaboration",
- "documentation":" Defines how the inline collaborator agent handles information across multiple collaborator agents to coordinate a final response. The inline collaborator agent can also be the supervisor.
"
- },
- "agentName":{
- "shape":"Name",
- "documentation":"The name for the agent.
"
- },
- "bedrockModelConfigurations":{
- "shape":"InlineBedrockModelConfigurations",
- "documentation":"Model settings for the request.
"
- },
- "collaboratorConfigurations":{
- "shape":"CollaboratorConfigurations",
- "documentation":" Settings for an inline agent collaborator called with InvokeInlineAgent.
"
- },
- "collaborators":{
- "shape":"Collaborators",
- "documentation":" List of collaborator inline agents.
"
- },
- "customOrchestration":{
- "shape":"CustomOrchestration",
- "documentation":"Contains details of the custom orchestration configured for the agent.
"
- },
"customerEncryptionKeyArn":{
"shape":"KmsKeyArn",
"documentation":" The Amazon Resource Name (ARN) of the Amazon Web Services KMS key to use to encrypt your inline agent.
"
},
- "enableTrace":{
- "shape":"Boolean",
- "documentation":" Specifies whether to turn on the trace or not to track the agent's reasoning process. For more information, see Using trace.
"
- },
- "endSession":{
- "shape":"Boolean",
- "documentation":" Specifies whether to end the session with the inline agent or not.
"
- },
"foundationModel":{
"shape":"ModelIdentifier",
"documentation":" The model identifier (ID) of the model to use for orchestration by the inline agent. For example, meta.llama3-1-70b-instruct-v1:0.
"
},
- "guardrailConfiguration":{
- "shape":"GuardrailConfigurationWithArn",
- "documentation":" The guardrails to assign to the inline agent.
"
+ "instruction":{
+ "shape":"Instruction",
+ "documentation":" The instructions that tell the inline agent what it should do and how it should interact with users.
"
},
"idleSessionTTLInSeconds":{
"shape":"SessionTTL",
"documentation":" The number of seconds for which the inline agent should maintain session information. After this time expires, the subsequent InvokeInlineAgent request begins a new session.
A user interaction remains active for the amount of time specified. If no conversation occurs during this time, the session expires and the data provided before the timeout is deleted.
"
},
- "inlineSessionState":{
- "shape":"InlineSessionState",
- "documentation":" Parameters that specify the various attributes of a sessions. You can include attributes for the session or prompt or, if you configured an action group to return control, results from invocation of the action group. For more information, see Control session context.
If you include returnControlInvocationResults in the sessionState field, the inputText field will be ignored.
"
- },
- "inputText":{
- "shape":"InputText",
- "documentation":" The prompt text to send to the agent.
If you include returnControlInvocationResults in the sessionState field, the inputText field will be ignored.
"
- },
- "instruction":{
- "shape":"Instruction",
- "documentation":" The instructions that tell the inline agent what it should do and how it should interact with users.
"
+ "actionGroups":{
+ "shape":"AgentActionGroups",
+ "documentation":" A list of action groups with each action group defining the action the inline agent needs to carry out.
"
},
"knowledgeBases":{
"shape":"KnowledgeBases",
"documentation":" Contains information of the knowledge bases to associate with.
"
},
- "orchestrationType":{
- "shape":"OrchestrationType",
- "documentation":"Specifies the type of orchestration strategy for the agent. This is set to DEFAULT orchestration type, by default.
"
- },
- "promptCreationConfigurations":{
- "shape":"PromptCreationConfigurations",
- "documentation":"Specifies parameters that control how the service populates the agent prompt for an InvokeInlineAgent request. You can control which aspects of previous invocations in the same agent session the service uses to populate the agent prompt. This gives you more granular control over the contextual history that is used to process the current request.
"
+ "guardrailConfiguration":{
+ "shape":"GuardrailConfigurationWithArn",
+ "documentation":" The guardrails to assign to the inline agent.
"
},
"promptOverrideConfiguration":{
"shape":"PromptOverrideConfiguration",
"documentation":" Configurations for advanced prompts used to override the default prompts to enhance the accuracy of the inline agent.
"
},
+ "agentCollaboration":{
+ "shape":"AgentCollaboration",
+ "documentation":" Defines how the inline collaborator agent handles information across multiple collaborator agents to coordinate a final response. The inline collaborator agent can also be the supervisor.
"
+ },
+ "collaboratorConfigurations":{
+ "shape":"CollaboratorConfigurations",
+ "documentation":" Settings for an inline agent collaborator called with InvokeInlineAgent.
"
+ },
+ "agentName":{
+ "shape":"Name",
+ "documentation":"The name for the agent.
"
+ },
"sessionId":{
"shape":"SessionId",
"documentation":" The unique identifier of the session. Use the same value across requests to continue the same conversation.
",
"location":"uri",
"locationName":"sessionId"
},
+ "endSession":{
+ "shape":"Boolean",
+ "documentation":" Specifies whether to end the session with the inline agent or not.
"
+ },
+ "enableTrace":{
+ "shape":"Boolean",
+ "documentation":" Specifies whether to turn on the trace or not to track the agent's reasoning process. For more information, see Using trace.
"
+ },
+ "inputText":{
+ "shape":"InputText",
+ "documentation":" The prompt text to send to the agent.
If you include returnControlInvocationResults in the sessionState field, the inputText field will be ignored.
"
+ },
"streamingConfigurations":{
"shape":"StreamingConfigurations",
"documentation":" Specifies the configurations for streaming.
To use agent streaming, you need permissions to perform the bedrock:InvokeModelWithResponseStream action.
"
+ },
+ "promptCreationConfigurations":{
+ "shape":"PromptCreationConfigurations",
+ "documentation":"Specifies parameters that control how the service populates the agent prompt for an InvokeInlineAgent request. You can control which aspects of previous invocations in the same agent session the service uses to populate the agent prompt. This gives you more granular control over the contextual history that is used to process the current request.
"
+ },
+ "inlineSessionState":{
+ "shape":"InlineSessionState",
+ "documentation":" Parameters that specify the various attributes of a sessions. You can include attributes for the session or prompt or, if you configured an action group to return control, results from invocation of the action group. For more information, see Control session context.
If you include returnControlInvocationResults in the sessionState field, the inputText field will be ignored.
"
+ },
+ "collaborators":{
+ "shape":"Collaborators",
+ "documentation":" List of collaborator inline agents.
"
+ },
+ "bedrockModelConfigurations":{
+ "shape":"InlineBedrockModelConfigurations",
+ "documentation":"Model settings for the request.
"
+ },
+ "orchestrationType":{
+ "shape":"OrchestrationType",
+ "documentation":"Specifies the type of orchestration strategy for the agent. This is set to DEFAULT orchestration type, by default.
"
+ },
+ "customOrchestration":{
+ "shape":"CustomOrchestration",
+ "documentation":"Contains details of the custom orchestration configured for the agent.
"
}
}
},
@@ -4559,23 +4753,23 @@
"type":"string",
"max":2048,
"min":1,
- "pattern":"^arn:aws(|-cn|-us-gov):kms:[a-zA-Z0-9-]*:[0-9]{12}:key/[a-zA-Z0-9-]{36}$"
+ "pattern":"arn:aws(|-cn|-us-gov):kms:[a-zA-Z0-9-]*:[0-9]{12}:key/[a-zA-Z0-9-]{36}"
},
"KnowledgeBase":{
"type":"structure",
"required":[
- "description",
- "knowledgeBaseId"
+ "knowledgeBaseId",
+ "description"
],
"members":{
- "description":{
- "shape":"ResourceDescription",
- "documentation":" The description of the knowledge base associated with the inline agent.
"
- },
"knowledgeBaseId":{
"shape":"KnowledgeBaseId",
"documentation":" The unique identifier for a knowledge base associated with the inline agent.
"
},
+ "description":{
+ "shape":"ResourceDescription",
+ "documentation":" The description of the knowledge base associated with the inline agent.
"
+ },
"retrievalConfiguration":{
"shape":"KnowledgeBaseRetrievalConfiguration",
"documentation":" The configurations to apply to the knowledge base during query. For more information, see Query configurations.
"
@@ -4587,7 +4781,7 @@
"type":"string",
"max":128,
"min":0,
- "pattern":"^arn:aws(|-cn|-us-gov):bedrock:[a-zA-Z0-9-]*:[0-9]{12}:knowledge-base/[0-9a-zA-Z]+$"
+ "pattern":"arn:aws(|-cn|-us-gov):bedrock:[a-zA-Z0-9-]*:[0-9]{12}:knowledge-base/[0-9a-zA-Z]+"
},
"KnowledgeBaseConfiguration":{
"type":"structure",
@@ -4616,18 +4810,18 @@
"type":"string",
"max":10,
"min":0,
- "pattern":"^[0-9a-zA-Z]+$"
+ "pattern":"[0-9a-zA-Z]+"
},
"KnowledgeBaseLookupInput":{
"type":"structure",
"members":{
- "knowledgeBaseId":{
- "shape":"TraceKnowledgeBaseId",
- "documentation":"The unique identifier of the knowledge base to look up.
"
- },
"text":{
"shape":"KnowledgeBaseLookupInputString",
"documentation":"The query made to the knowledge base.
"
+ },
+ "knowledgeBaseId":{
+ "shape":"TraceKnowledgeBaseId",
+ "documentation":"The unique identifier of the knowledge base to look up.
"
}
},
"documentation":"Contains details about the knowledge base to look up and the query to be made.
"
@@ -4639,13 +4833,13 @@
"KnowledgeBaseLookupOutput":{
"type":"structure",
"members":{
- "metadata":{
- "shape":"Metadata",
- "documentation":"Contains information about the knowledge base output.
"
- },
"retrievedReferences":{
"shape":"RetrievedReferences",
"documentation":"Contains metadata about the sources cited for the generated response.
"
+ },
+ "metadata":{
+ "shape":"Metadata",
+ "documentation":"Contains information about the knowledge base output.
"
}
},
"documentation":"Contains details about the results from looking up the knowledge base.
"
@@ -4690,13 +4884,13 @@
"shape":"RetrievalResultLocation",
"documentation":"Contains information about the location of the data source.
"
},
- "metadata":{
- "shape":"RetrievalResultMetadata",
- "documentation":"Contains metadata attributes and their values for the file in the data source. For more information, see Metadata and filtering.
"
- },
"score":{
"shape":"Double",
"documentation":"The level of relevance of the result to the query.
"
+ },
+ "metadata":{
+ "shape":"RetrievalResultMetadata",
+ "documentation":"Contains metadata attributes and their values for the file in the data source. For more information, see Metadata and filtering.
"
}
},
"documentation":"Details about a result from querying the knowledge base.
This data type is used in the following API operations:
"
@@ -4713,10 +4907,6 @@
"modelArn"
],
"members":{
- "generationConfiguration":{
- "shape":"GenerationConfiguration",
- "documentation":"Contains configurations for response generation based on the knowledge base query results.
"
- },
"knowledgeBaseId":{
"shape":"KnowledgeBaseId",
"documentation":"The unique identifier of the knowledge base that is queried.
"
@@ -4725,13 +4915,17 @@
"shape":"BedrockModelArn",
"documentation":"The ARN of the foundation model or inference profile used to generate a response.
"
},
- "orchestrationConfiguration":{
- "shape":"OrchestrationConfiguration",
- "documentation":"Settings for how the model processes the prompt prior to retrieval and generation.
"
- },
"retrievalConfiguration":{
"shape":"KnowledgeBaseRetrievalConfiguration",
"documentation":"Contains configurations for how to retrieve and return the knowledge base query.
"
+ },
+ "generationConfiguration":{
+ "shape":"GenerationConfiguration",
+ "documentation":"Contains configurations for response generation based on the knowledge base query results.
"
+ },
+ "orchestrationConfiguration":{
+ "shape":"OrchestrationConfiguration",
+ "documentation":"Settings for how the model processes the prompt prior to retrieval and generation.
"
}
},
"documentation":"Contains details about the resource being queried.
This data type is used in the following API operations:
"
@@ -4739,14 +4933,6 @@
"KnowledgeBaseVectorSearchConfiguration":{
"type":"structure",
"members":{
- "filter":{
- "shape":"RetrievalFilter",
- "documentation":"Specifies the filters to use on the metadata in the knowledge base data sources before returning results. For more information, see Query configurations.
"
- },
- "implicitFilterConfiguration":{
- "shape":"ImplicitFilterConfiguration",
- "documentation":"Settings for implicit filtering.
"
- },
"numberOfResults":{
"shape":"KnowledgeBaseVectorSearchConfigurationNumberOfResultsInteger",
"documentation":"The number of source chunks to retrieve.
",
@@ -4756,9 +4942,17 @@
"shape":"SearchType",
"documentation":"By default, Amazon Bedrock decides a search strategy for you. If you're using an Amazon OpenSearch Serverless vector store that contains a filterable text field, you can specify whether to query the knowledge base with a HYBRID search using both vector embeddings and raw text, or SEMANTIC search using only vector embeddings. For other vector store configurations, only SEMANTIC search is available. For more information, see Test a knowledge base.
"
},
+ "filter":{
+ "shape":"RetrievalFilter",
+ "documentation":"Specifies the filters to use on the metadata in the knowledge base data sources before returning results. For more information, see Query configurations.
"
+ },
"rerankingConfiguration":{
"shape":"VectorSearchRerankingConfiguration",
"documentation":"Contains configurations for reranking the retrieved results. For more information, see Improve the relevance of query responses with a reranker model.
"
+ },
+ "implicitFilterConfiguration":{
+ "shape":"ImplicitFilterConfiguration",
+ "documentation":"Settings for implicit filtering.
"
}
},
"documentation":"Configurations for how to perform the search query and return results. For more information, see Query configurations.
This data type is used in the following API operations:
"
@@ -4778,28 +4972,22 @@
"type":"string",
"max":2048,
"min":0,
- "pattern":"^arn:(aws[a-zA-Z-]*)?:lambda:[a-z]{2}(-gov)?-[a-z]+-\\d{1}:\\d{12}:function:[a-zA-Z0-9-_\\.]+(:(\\$LATEST|[a-zA-Z0-9-_]+))?$"
+ "pattern":"arn:(aws[a-zA-Z-]*)?:lambda:[a-z]{2}(-gov)?-[a-z]+-\\d{1}:\\d{12}:function:[a-zA-Z0-9-_\\.]+(:(\\$LATEST|[a-zA-Z0-9-_]+))?"
},
"ListFlowExecutionEventsRequest":{
"type":"structure",
"required":[
- "eventType",
- "executionIdentifier",
+ "flowIdentifier",
"flowAliasIdentifier",
- "flowIdentifier"
+ "executionIdentifier",
+ "eventType"
],
"members":{
- "eventType":{
- "shape":"FlowExecutionEventType",
- "documentation":"The type of events to retrieve. Specify Node for node-level events or Flow for flow-level events.
",
- "location":"querystring",
- "locationName":"eventType"
- },
- "executionIdentifier":{
- "shape":"FlowExecutionIdentifier",
- "documentation":"The unique identifier of the flow execution.
",
+ "flowIdentifier":{
+ "shape":"FlowIdentifier",
+ "documentation":"The unique identifier of the flow.
",
"location":"uri",
- "locationName":"executionIdentifier"
+ "locationName":"flowIdentifier"
},
"flowAliasIdentifier":{
"shape":"FlowAliasIdentifier",
@@ -4807,11 +4995,11 @@
"location":"uri",
"locationName":"flowAliasIdentifier"
},
- "flowIdentifier":{
- "shape":"FlowIdentifier",
- "documentation":"The unique identifier of the flow.
",
+ "executionIdentifier":{
+ "shape":"FlowExecutionIdentifier",
+ "documentation":"The unique identifier of the flow execution.
",
"location":"uri",
- "locationName":"flowIdentifier"
+ "locationName":"executionIdentifier"
},
"maxResults":{
"shape":"MaxResults",
@@ -4824,6 +5012,12 @@
"documentation":"A token to retrieve the next set of results. This value is returned in the response if more results are available.
",
"location":"querystring",
"locationName":"nextToken"
+ },
+ "eventType":{
+ "shape":"FlowExecutionEventType",
+ "documentation":"The type of events to retrieve. Specify Node for node-level events or Flow for flow-level events.
",
+ "location":"querystring",
+ "locationName":"eventType"
}
}
},
@@ -4845,18 +5039,18 @@
"type":"structure",
"required":["flowIdentifier"],
"members":{
- "flowAliasIdentifier":{
- "shape":"FlowAliasIdentifier",
- "documentation":"The unique identifier of the flow alias to list executions for.
",
- "location":"querystring",
- "locationName":"flowAliasIdentifier"
- },
"flowIdentifier":{
"shape":"FlowIdentifier",
"documentation":"The unique identifier of the flow to list executions for.
",
"location":"uri",
"locationName":"flowIdentifier"
},
+ "flowAliasIdentifier":{
+ "shape":"FlowAliasIdentifier",
+ "documentation":"The unique identifier of the flow alias to list executions for.
",
+ "location":"querystring",
+ "locationName":"flowAliasIdentifier"
+ },
"maxResults":{
"shape":"MaxResults",
"documentation":"The maximum number of flow executions to return in a single response. If more executions exist than the specified maxResults value, a token is included in the response so that the remaining results can be retrieved.
",
@@ -4893,18 +5087,18 @@
"shape":"InvocationIdentifier",
"documentation":"The unique identifier (in UUID format) for the invocation to list invocation steps for.
"
},
- "maxResults":{
- "shape":"MaxResults",
- "documentation":"The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the nextToken field when making another request to return the next batch of results.
",
- "location":"querystring",
- "locationName":"maxResults"
- },
"nextToken":{
"shape":"NextToken",
"documentation":"If the total number of results is greater than the maxResults value provided in the request, enter the token returned in the nextToken field in the response in this field to return the next batch of results.
",
"location":"querystring",
"locationName":"nextToken"
},
+ "maxResults":{
+ "shape":"MaxResults",
+ "documentation":"The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the nextToken field when making another request to return the next batch of results.
",
+ "location":"querystring",
+ "locationName":"maxResults"
+ },
"sessionIdentifier":{
"shape":"SessionIdentifier",
"documentation":"The unique identifier for the session associated with the invocation steps. You can specify either the session's sessionId or its Amazon Resource Name (ARN).
",
@@ -4931,18 +5125,18 @@
"type":"structure",
"required":["sessionIdentifier"],
"members":{
- "maxResults":{
- "shape":"MaxResults",
- "documentation":"The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the nextToken field when making another request to return the next batch of results.
",
- "location":"querystring",
- "locationName":"maxResults"
- },
"nextToken":{
"shape":"NextToken",
"documentation":"If the total number of results is greater than the maxResults value provided in the request, enter the token returned in the nextToken field in the response in this field to return the next batch of results.
",
"location":"querystring",
"locationName":"nextToken"
},
+ "maxResults":{
+ "shape":"MaxResults",
+ "documentation":"The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the nextToken field when making another request to return the next batch of results.
",
+ "location":"querystring",
+ "locationName":"maxResults"
+ },
"sessionIdentifier":{
"shape":"SessionIdentifier",
"documentation":"The unique identifier for the session to list invocations for. You can specify either the session's sessionId or its Amazon Resource Name (ARN).
",
@@ -4986,13 +5180,13 @@
"type":"structure",
"required":["sessionSummaries"],
"members":{
- "nextToken":{
- "shape":"NextToken",
- "documentation":"If the total number of results is greater than the maxResults value provided in the request, use this token when making another request in the nextToken field to return the next batch of results.
"
- },
"sessionSummaries":{
"shape":"SessionSummaries",
"documentation":"A list of summaries for each session in your Amazon Web Services account.
"
+ },
+ "nextToken":{
+ "shape":"NextToken",
+ "documentation":"If the total number of results is greater than the maxResults value provided in the request, use this token when making another request in the nextToken field to return the next batch of results.
"
}
}
},
@@ -5059,7 +5253,7 @@
"type":"string",
"max":100,
"min":2,
- "pattern":"^[0-9a-zA-Z._:-]+$"
+ "pattern":"[0-9a-zA-Z._:-]+"
},
"MemorySessionSummary":{
"type":"structure",
@@ -5068,10 +5262,6 @@
"shape":"MemoryId",
"documentation":"The unique identifier of the memory where the session summary is stored.
"
},
- "sessionExpiryTime":{
- "shape":"DateTimestamp",
- "documentation":"The time when the memory duration for the session is set to end.
"
- },
"sessionId":{
"shape":"SessionId",
"documentation":"The identifier for this session.
"
@@ -5080,6 +5270,10 @@
"shape":"DateTimestamp",
"documentation":"The start time for this session.
"
},
+ "sessionExpiryTime":{
+ "shape":"DateTimestamp",
+ "documentation":"The time when the memory duration for the session is set to end.
"
+ },
"summaryText":{
"shape":"SummaryText",
"documentation":"The summarized text for this session.
"
@@ -5094,17 +5288,17 @@
"Message":{
"type":"structure",
"required":[
- "content",
- "role"
+ "role",
+ "content"
],
"members":{
- "content":{
- "shape":"ContentBlocks",
- "documentation":"The message's content.
"
- },
"role":{
"shape":"ConversationRole",
"documentation":"The message's role.
"
+ },
+ "content":{
+ "shape":"ContentBlocks",
+ "documentation":"The message's content.
"
}
},
"documentation":"Details about a message.
"
@@ -5116,25 +5310,25 @@
"Metadata":{
"type":"structure",
"members":{
- "clientRequestId":{
- "shape":"String",
- "documentation":"A unique identifier associated with the downstream invocation. This ID can be used for tracing, debugging, and identifying specific invocations in customer logs or systems.
"
+ "startTime":{
+ "shape":"SyntheticTimestamp_date_time",
+ "documentation":"In the final response, startTime is the start time of the agent invocation operation.
"
},
"endTime":{
"shape":"SyntheticTimestamp_date_time",
"documentation":"In the final response, endTime is the end time of the agent invocation operation.
"
},
+ "totalTimeMs":{
+ "shape":"Long",
+ "documentation":" The total execution time for the specific invocation being processed (model, knowledge base, guardrail, agent collaborator, or code interpreter). It represents how long the individual invocation took.
"
+ },
"operationTotalTimeMs":{
"shape":"Long",
"documentation":"The total time it took for the agent to complete execution. This field is only set for the final response.
"
},
- "startTime":{
- "shape":"SyntheticTimestamp_date_time",
- "documentation":"In the final response, startTime is the start time of the agent invocation operation.
"
- },
- "totalTimeMs":{
- "shape":"Long",
- "documentation":" The total execution time for the specific invocation being processed (model, knowledge base, guardrail, agent collaborator, or code interpreter). It represents how long the individual invocation took.
"
+ "clientRequestId":{
+ "shape":"String",
+ "documentation":"A unique identifier associated with the downstream invocation. This ID can be used for tracing, debugging, and identifying specific invocations in customer logs or systems.
"
},
"usage":{
"shape":"Usage",
@@ -5147,15 +5341,11 @@
"MetadataAttributeSchema":{
"type":"structure",
"required":[
- "description",
"key",
- "type"
+ "type",
+ "description"
],
"members":{
- "description":{
- "shape":"MetadataAttributeSchemaDescriptionString",
- "documentation":"The attribute's description.
"
- },
"key":{
"shape":"MetadataAttributeSchemaKeyString",
"documentation":"The attribute's key.
"
@@ -5163,6 +5353,10 @@
"type":{
"shape":"AttributeType",
"documentation":"The attribute's type.
"
+ },
+ "description":{
+ "shape":"MetadataAttributeSchemaDescriptionString",
+ "documentation":"The attribute's description.
"
}
},
"documentation":"Details about a metadata attribute.
",
@@ -5172,13 +5366,13 @@
"type":"string",
"max":1024,
"min":1,
- "pattern":"^[\\s\\S]+$"
+ "pattern":"[\\s\\S]+"
},
"MetadataAttributeSchemaKeyString":{
"type":"string",
"max":256,
"min":1,
- "pattern":"^[\\s\\S]+$"
+ "pattern":"[\\s\\S]+"
},
"MetadataAttributeSchemaList":{
"type":"list",
@@ -5206,42 +5400,42 @@
"type":"string",
"max":2048,
"min":1,
- "pattern":"(^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:(([0-9]{12}:custom-model/[a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}(([:][a-z0-9-]{1,63}){0,2})?/[a-z0-9]{12})|(:foundation-model/([a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.]?[a-z0-9-]{1,63})([:][a-z0-9-]{1,63}){0,2})))|(([a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.]?[a-z0-9-]{1,63})([:][a-z0-9-]{1,63}){0,2}))|(([0-9a-zA-Z][_-]?)+))$|(^arn:aws(|-us-gov|-cn|-iso|-iso-b):bedrock:(|[0-9a-z-]{1,20}):(|[0-9]{12}):inference-profile/[a-zA-Z0-9-:.]+)$"
+ "pattern":".*(^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:(([0-9]{12}:custom-model/[a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}(([:][a-z0-9-]{1,63}){0,2})?/[a-z0-9]{12})|(:foundation-model/([a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.]?[a-z0-9-]{1,63})([:][a-z0-9-]{1,63}){0,2})))|(([a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.]?[a-z0-9-]{1,63})([:][a-z0-9-]{1,63}){0,2}))|(([0-9a-zA-Z][_-]?)+))$|(^arn:aws(|-us-gov|-cn|-iso|-iso-b):bedrock:(|[0-9a-z-]{1,20}):(|[0-9]{12}):inference-profile/[a-zA-Z0-9-:.]+)"
},
"ModelInvocationInput":{
"type":"structure",
"members":{
- "foundationModel":{
- "shape":"ModelIdentifier",
- "documentation":"The identifier of a foundation model.
"
+ "traceId":{
+ "shape":"TraceId",
+ "documentation":"The unique identifier of the trace.
"
},
- "inferenceConfiguration":{
- "shape":"InferenceConfiguration",
- "documentation":"Specifications about the inference parameters that were provided alongside the prompt. These are specified in the PromptOverrideConfiguration object that was set when the agent was created or updated. For more information, see Inference parameters for foundation models.
"
+ "text":{
+ "shape":"PromptText",
+ "documentation":"The text that prompted the agent at this step.
"
+ },
+ "type":{
+ "shape":"PromptType",
+ "documentation":"The step in the agent sequence.
"
},
"overrideLambda":{
"shape":"LambdaArn",
"documentation":"The ARN of the Lambda function to use when parsing the raw foundation model output in parts of the agent sequence.
"
},
- "parserMode":{
- "shape":"CreationMode",
- "documentation":"Specifies whether to override the default parser Lambda function when parsing the raw foundation model output in the part of the agent sequence defined by the promptType.
"
- },
"promptCreationMode":{
"shape":"CreationMode",
"documentation":"Specifies whether the default prompt template was OVERRIDDEN. If it was, the basePromptTemplate that was set in the PromptOverrideConfiguration object when the agent was created or updated is used instead.
"
},
- "text":{
- "shape":"PromptText",
- "documentation":"The text that prompted the agent at this step.
"
+ "inferenceConfiguration":{
+ "shape":"InferenceConfiguration",
+ "documentation":"Specifications about the inference parameters that were provided alongside the prompt. These are specified in the PromptOverrideConfiguration object that was set when the agent was created or updated. For more information, see Inference parameters for foundation models.
"
},
- "traceId":{
- "shape":"TraceId",
- "documentation":"The unique identifier of the trace.
"
+ "parserMode":{
+ "shape":"CreationMode",
+ "documentation":"Specifies whether to override the default parser Lambda function when parsing the raw foundation model output in the part of the agent sequence defined by the promptType.
"
},
- "type":{
- "shape":"PromptType",
- "documentation":"The step in the agent sequence.
"
+ "foundationModel":{
+ "shape":"ModelIdentifier",
+ "documentation":"The identifier of a foundation model.
"
}
},
"documentation":"The input for the pre-processing step.
-
The type matches the agent step.
-
The text contains the prompt.
-
The inferenceConfiguration, parserMode, and overrideLambda values are set in the PromptOverrideConfiguration object that was set when the agent was created or updated.
",
@@ -5271,14 +5465,80 @@
},
"Name":{
"type":"string",
- "pattern":"^([0-9a-zA-Z][_-]?){1,100}$",
+ "pattern":"([0-9a-zA-Z][_-]?){1,100}",
"sensitive":true
},
"NextToken":{
"type":"string",
"max":2048,
"min":1,
- "pattern":"^\\S*$"
+ "pattern":"\\S*"
+ },
+ "NodeActionEvent":{
+ "type":"structure",
+ "required":[
+ "nodeName",
+ "timestamp",
+ "requestId",
+ "serviceName",
+ "operationName"
+ ],
+ "members":{
+ "nodeName":{
+ "shape":"NodeName",
+ "documentation":"The name of the node that called the operation.
"
+ },
+ "timestamp":{
+ "shape":"DateTimestamp",
+ "documentation":"The date and time that the operation was called.
"
+ },
+ "requestId":{
+ "shape":"String",
+ "documentation":"The ID of the request that the node made to the operation.
"
+ },
+ "serviceName":{
+ "shape":"String",
+ "documentation":"The name of the service that the node called.
"
+ },
+ "operationName":{
+ "shape":"String",
+ "documentation":"The name of the operation that the node called.
"
+ },
+ "operationRequest":{
+ "shape":"Document",
+ "documentation":"The request payload sent to the downstream service.
"
+ },
+ "operationResponse":{
+ "shape":"Document",
+ "documentation":"The response payload received from the downstream service.
"
+ }
+ },
+ "documentation":"Contains information about an action (operation) called by a node during execution.
",
+ "sensitive":true
+ },
+ "NodeDependencyEvent":{
+ "type":"structure",
+ "required":[
+ "nodeName",
+ "timestamp",
+ "traceElements"
+ ],
+ "members":{
+ "nodeName":{
+ "shape":"NodeName",
+ "documentation":"The name of the node that generated the dependency trace.
"
+ },
+ "timestamp":{
+ "shape":"DateTimestamp",
+ "documentation":"The date and time that the dependency trace was generated.
"
+ },
+ "traceElements":{
+ "shape":"NodeTraceElements",
+ "documentation":"The trace elements containing detailed information about the node execution.
"
+ }
+ },
+ "documentation":"Contains information about an internal trace of a specific node during execution.
",
+ "sensitive":true
},
"NodeErrorCode":{
"type":"string",
@@ -5304,12 +5564,20 @@
"NodeFailureEvent":{
"type":"structure",
"required":[
- "errorCode",
- "errorMessage",
"nodeName",
- "timestamp"
+ "timestamp",
+ "errorCode",
+ "errorMessage"
],
"members":{
+ "nodeName":{
+ "shape":"NodeName",
+ "documentation":"The name of the node where the failure occurred.
"
+ },
+ "timestamp":{
+ "shape":"DateTimestamp",
+ "documentation":"The timestamp when the node failure occurred.
"
+ },
"errorCode":{
"shape":"NodeErrorCode",
"documentation":"The error code that identifies the type of failure that occurred at the node.
"
@@ -5317,57 +5585,91 @@
"errorMessage":{
"shape":"String",
"documentation":"A descriptive message that provides details about the node failure.
"
- },
+ }
+ },
+ "documentation":"Contains information about a failure that occurred at a specific node during a flow execution.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
+ "sensitive":true
+ },
+ "NodeInputEvent":{
+ "type":"structure",
+ "required":[
+ "nodeName",
+ "timestamp",
+ "fields"
+ ],
+ "members":{
"nodeName":{
"shape":"NodeName",
- "documentation":"The name of the node where the failure occurred.
"
+ "documentation":"The name of the node that received the inputs.
"
},
"timestamp":{
"shape":"DateTimestamp",
- "documentation":"The timestamp when the node failure occurred.
"
+ "documentation":"The timestamp when the inputs were provided to the node.
"
+ },
+ "fields":{
+ "shape":"NodeInputFields",
+ "documentation":"A list of input fields provided to the node.
"
}
},
- "documentation":"Contains information about a failure that occurred at a specific node during a flow execution.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
+ "documentation":"Contains information about the inputs provided to a specific node during a flow execution.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
"sensitive":true
},
- "NodeInputEvent":{
+ "NodeInputExecutionChain":{
+ "type":"list",
+ "member":{"shape":"NodeInputExecutionChainItem"}
+ },
+ "NodeInputExecutionChainItem":{
"type":"structure",
"required":[
- "fields",
"nodeName",
- "timestamp"
+ "type"
],
"members":{
- "fields":{
- "shape":"NodeInputFields",
- "documentation":"A list of input fields provided to the node.
"
- },
"nodeName":{
"shape":"NodeName",
- "documentation":"The name of the node that received the inputs.
"
+ "documentation":"The name of the node in the execution chain.
"
},
- "timestamp":{
- "shape":"DateTimestamp",
- "documentation":"The timestamp when the inputs were provided to the node.
"
+ "index":{
+ "shape":"Integer",
+ "documentation":"The index position of this item in the execution chain.
"
+ },
+ "type":{
+ "shape":"FlowControlNodeType",
+ "documentation":"The type of execution chain item. Supported values are Iterator and Loop.
"
}
},
- "documentation":"Contains information about the inputs provided to a specific node during a flow execution.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
- "sensitive":true
+ "documentation":"Represents an item in the execution chain for node input tracking.
"
},
"NodeInputField":{
"type":"structure",
"required":[
- "content",
- "name"
+ "name",
+ "content"
],
"members":{
+ "name":{
+ "shape":"NodeInputName",
+ "documentation":"The name of the input field as defined in the node's input schema.
"
+ },
"content":{
"shape":"NodeExecutionContent",
"documentation":"The content of the input field, which can contain text or structured data.
"
},
- "name":{
- "shape":"NodeInputName",
- "documentation":"The name of the input field as defined in the node's input schema.
"
+ "source":{
+ "shape":"NodeInputSource",
+ "documentation":"The source node that provides input data to this field.
"
+ },
+ "type":{
+ "shape":"FlowNodeIODataType",
+ "documentation":"The data type of the input field for compatibility validation.
"
+ },
+ "category":{
+ "shape":"FlowNodeInputCategory",
+ "documentation":"The category of the input field.
"
+ },
+ "executionChain":{
+ "shape":"NodeInputExecutionChain",
+ "documentation":"The execution path through nested nodes like iterators and loops.
"
}
},
"documentation":"Represents an input field provided to a node during a flow execution.
",
@@ -5381,24 +5683,43 @@
},
"NodeInputName":{
"type":"string",
- "pattern":"^[a-zA-Z]([_]?[0-9a-zA-Z]){0,99}$"
+ "pattern":"[a-zA-Z]([_]?[0-9a-zA-Z]){0,99}"
+ },
+ "NodeInputSource":{
+ "type":"structure",
+ "required":[
+ "nodeName",
+ "outputFieldName",
+ "expression"
+ ],
+ "members":{
+ "nodeName":{
+ "shape":"NodeName",
+ "documentation":"The name of the source node that provides the input data.
"
+ },
+ "outputFieldName":{
+ "shape":"FlowNodeOutputName",
+ "documentation":"The name of the output field from the source node.
"
+ },
+ "expression":{
+ "shape":"FlowNodeInputExpression",
+ "documentation":"The expression used to extract data from the source.
"
+ }
+ },
+ "documentation":"Represents the source of input data for a node field.
"
},
"NodeName":{
"type":"string",
- "pattern":"^[a-zA-Z]([_]?[0-9a-zA-Z]){0,99}$"
+ "pattern":"[a-zA-Z]([_]?[0-9a-zA-Z]){0,99}"
},
"NodeOutputEvent":{
"type":"structure",
"required":[
- "fields",
"nodeName",
- "timestamp"
+ "timestamp",
+ "fields"
],
"members":{
- "fields":{
- "shape":"NodeOutputFields",
- "documentation":"A list of output fields produced by the node.
"
- },
"nodeName":{
"shape":"NodeName",
"documentation":"The name of the node that produced the outputs.
"
@@ -5406,6 +5727,10 @@
"timestamp":{
"shape":"DateTimestamp",
"documentation":"The timestamp when the outputs were produced by the node.
"
+ },
+ "fields":{
+ "shape":"NodeOutputFields",
+ "documentation":"A list of output fields produced by the node.
"
}
},
"documentation":"Contains information about the outputs produced by a specific node during a flow execution.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
@@ -5414,17 +5739,25 @@
"NodeOutputField":{
"type":"structure",
"required":[
- "content",
- "name"
+ "name",
+ "content"
],
"members":{
+ "name":{
+ "shape":"NodeOutputName",
+ "documentation":"The name of the output field as defined in the node's output schema.
"
+ },
"content":{
"shape":"NodeExecutionContent",
"documentation":"The content of the output field, which can contain text or structured data.
"
},
- "name":{
- "shape":"NodeOutputName",
- "documentation":"The name of the output field as defined in the node's output schema.
"
+ "next":{
+ "shape":"NodeOutputNextList",
+ "documentation":"The next node that receives output data from this field.
"
+ },
+ "type":{
+ "shape":"FlowNodeIODataType",
+ "documentation":"The data type of the output field for compatibility validation.
"
}
},
"documentation":"Represents an output field produced by a node during a flow execution.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
@@ -5438,7 +5771,42 @@
},
"NodeOutputName":{
"type":"string",
- "pattern":"^[a-zA-Z]([_]?[0-9a-zA-Z]){0,99}$"
+ "pattern":"[a-zA-Z]([_]?[0-9a-zA-Z]){0,99}"
+ },
+ "NodeOutputNext":{
+ "type":"structure",
+ "required":[
+ "nodeName",
+ "inputFieldName"
+ ],
+ "members":{
+ "nodeName":{
+ "shape":"NodeName",
+ "documentation":"The name of the next node that receives the output data.
"
+ },
+ "inputFieldName":{
+ "shape":"FlowNodeInputName",
+ "documentation":"The name of the input field in the next node that receives the data.
"
+ }
+ },
+ "documentation":"Represents the next node that receives output data.
",
+ "sensitive":true
+ },
+ "NodeOutputNextList":{
+ "type":"list",
+ "member":{"shape":"NodeOutputNext"}
+ },
+ "NodeTraceElements":{
+ "type":"structure",
+ "members":{
+ "agentTraces":{
+ "shape":"AgentTraces",
+ "documentation":"Agent trace information for the node execution.
"
+ }
+ },
+ "documentation":"Contains trace elements for node execution tracking.
",
+ "sensitive":true,
+ "union":true
},
"NodeType":{
"type":"string",
@@ -5454,11 +5822,19 @@
},
"NonBlankString":{
"type":"string",
- "pattern":"^[\\s\\S]*$"
+ "pattern":"[\\s\\S]*"
},
"Observation":{
"type":"structure",
"members":{
+ "traceId":{
+ "shape":"TraceId",
+ "documentation":"The unique identifier of the trace.
"
+ },
+ "type":{
+ "shape":"Type",
+ "documentation":"Specifies what kind of information the agent returns in the observation. The following values are possible.
-
ACTION_GROUP – The agent returns the result of an action group.
-
KNOWLEDGE_BASE – The agent returns information from a knowledge base.
-
FINISH – The agent returns a final response to the user with no follow-up.
-
ASK_USER – The agent asks the user a question.
-
REPROMPT – The agent prompts the user again for the same information.
"
+ },
"actionGroupInvocationOutput":{
"shape":"ActionGroupInvocationOutput",
"documentation":"Contains the JSON-formatted string returned by the API invoked by the action group.
"
@@ -5467,29 +5843,21 @@
"shape":"AgentCollaboratorInvocationOutput",
"documentation":"A collaborator's invocation output.
"
},
- "codeInterpreterInvocationOutput":{
- "shape":"CodeInterpreterInvocationOutput",
- "documentation":"Contains the JSON-formatted string returned by the API invoked by the code interpreter.
"
+ "knowledgeBaseLookupOutput":{
+ "shape":"KnowledgeBaseLookupOutput",
+ "documentation":"Contains details about the results from looking up the knowledge base.
"
},
"finalResponse":{
"shape":"FinalResponse",
"documentation":"Contains details about the response to the user.
"
},
- "knowledgeBaseLookupOutput":{
- "shape":"KnowledgeBaseLookupOutput",
- "documentation":"Contains details about the results from looking up the knowledge base.
"
- },
"repromptResponse":{
"shape":"RepromptResponse",
"documentation":"Contains details about the response to reprompt the input.
"
},
- "traceId":{
- "shape":"TraceId",
- "documentation":"The unique identifier of the trace.
"
- },
- "type":{
- "shape":"Type",
- "documentation":"Specifies what kind of information the agent returns in the observation. The following values are possible.
-
ACTION_GROUP – The agent returns the result of an action group.
-
KNOWLEDGE_BASE – The agent returns information from a knowledge base.
-
FINISH – The agent returns a final response to the user with no follow-up.
-
ASK_USER – The agent asks the user a question.
-
REPROMPT – The agent prompts the user again for the same information.
"
+ "codeInterpreterInvocationOutput":{
+ "shape":"CodeInterpreterInvocationOutput",
+ "documentation":"Contains the JSON-formatted string returned by the API invoked by the code interpreter.
"
}
},
"documentation":"Contains the result or output of an action group or knowledge base, or the response to the user.
",
@@ -5516,7 +5884,7 @@
"type":"string",
"max":2048,
"min":1,
- "pattern":"^(arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:(([0-9]{12}:custom-model/[a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}/[a-z0-9]{12})|(:foundation-model/[a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.:]?[a-z0-9-]{1,63}))|([0-9]{12}:provisioned-model/[a-z0-9]{12})))|([a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.:]?[a-z0-9-]{1,63}))|(([0-9a-zA-Z][_-]?)+)$"
+ "pattern":"(arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:(([0-9]{12}:custom-model/[a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}/[a-z0-9]{12})|(:foundation-model/[a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.:]?[a-z0-9-]{1,63}))|([0-9]{12}:provisioned-model/[a-z0-9]{12})))|([a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.:]?[a-z0-9-]{1,63}))|(([0-9a-zA-Z][_-]?)+)"
},
"OptimizePromptResponse":{
"type":"structure",
@@ -5555,30 +5923,18 @@
"OptimizedPromptStream":{
"type":"structure",
"members":{
- "accessDeniedException":{
- "shape":"AccessDeniedException",
- "documentation":"The request is denied because of missing access permissions. Check your permissions and retry your request.
"
+ "optimizedPromptEvent":{
+ "shape":"OptimizedPromptEvent",
+ "documentation":"An event in which the prompt was optimized.
"
},
"analyzePromptEvent":{
"shape":"AnalyzePromptEvent",
"documentation":"An event in which the prompt was analyzed in preparation for optimization.
"
},
- "badGatewayException":{
- "shape":"BadGatewayException",
- "documentation":"There was an issue with a dependency due to a server issue. Retry your request.
"
- },
- "dependencyFailedException":{
- "shape":"DependencyFailedException",
- "documentation":"There was an issue with a dependency. Check the resource configurations and retry the request.
"
- },
"internalServerException":{
"shape":"InternalServerException",
"documentation":"An internal server error occurred. Retry your request.
"
},
- "optimizedPromptEvent":{
- "shape":"OptimizedPromptEvent",
- "documentation":"An event in which the prompt was optimized.
"
- },
"throttlingException":{
"shape":"ThrottlingException",
"documentation":"Your request was throttled because of service-wide limitations. Resubmit your request later or in a different region. You can also purchase Provisioned Throughput to increase the rate or number of tokens you can process.
"
@@ -5586,6 +5942,18 @@
"validationException":{
"shape":"ValidationException",
"documentation":"Input validation failed. Check your request parameters and retry the request.
"
+ },
+ "dependencyFailedException":{
+ "shape":"DependencyFailedException",
+ "documentation":"There was an issue with a dependency. Check the resource configurations and retry the request.
"
+ },
+ "accessDeniedException":{
+ "shape":"AccessDeniedException",
+ "documentation":"The request is denied because of missing access permissions. Check your permissions and retry your request.
"
+ },
+ "badGatewayException":{
+ "shape":"BadGatewayException",
+ "documentation":"There was an issue with a dependency due to a server issue. Retry your request.
"
}
},
"documentation":"The stream containing events in the prompt optimization process.
",
@@ -5594,25 +5962,25 @@
"OrchestrationConfiguration":{
"type":"structure",
"members":{
- "additionalModelRequestFields":{
- "shape":"AdditionalModelRequestFields",
- "documentation":" Additional model parameters and corresponding values not included in the textInferenceConfig structure for a knowledge base. This allows users to provide custom model parameters specific to the language model being used.
"
+ "promptTemplate":{
+ "shape":"PromptTemplate",
+ "documentation":"Contains the template for the prompt that's sent to the model. Orchestration prompts must include the $conversation_history$ and $output_format_instructions$ variables. For more information, see Use placeholder variables in the user guide.
"
},
"inferenceConfig":{
"shape":"InferenceConfig",
"documentation":" Configuration settings for inference when using RetrieveAndGenerate to generate responses while using a knowledge base as a source.
"
},
- "performanceConfig":{
- "shape":"PerformanceConfiguration",
- "documentation":"The latency configuration for the model.
"
- },
- "promptTemplate":{
- "shape":"PromptTemplate",
- "documentation":"Contains the template for the prompt that's sent to the model. Orchestration prompts must include the $conversation_history$ and $output_format_instructions$ variables. For more information, see Use placeholder variables in the user guide.
"
+ "additionalModelRequestFields":{
+ "shape":"AdditionalModelRequestFields",
+ "documentation":" Additional model parameters and corresponding values not included in the textInferenceConfig structure for a knowledge base. This allows users to provide custom model parameters specific to the language model being used.
"
},
"queryTransformationConfiguration":{
"shape":"QueryTransformationConfiguration",
"documentation":"To split up the prompt and retrieve multiple sources, set the transformation type to QUERY_DECOMPOSITION.
"
+ },
+ "performanceConfig":{
+ "shape":"PerformanceConfiguration",
+ "documentation":"The latency configuration for the model.
"
}
},
"documentation":"Settings for how the model processes the prompt prior to retrieval and generation.
"
@@ -5631,21 +5999,21 @@
"OrchestrationModelInvocationOutput":{
"type":"structure",
"members":{
- "metadata":{
- "shape":"Metadata",
- "documentation":"Contains information about the foundation model output from the orchestration step.
"
+ "traceId":{
+ "shape":"TraceId",
+ "documentation":"The unique identifier of the trace.
"
},
"rawResponse":{
"shape":"RawResponse",
"documentation":"Contains details of the raw response from the foundation model output.
"
},
+ "metadata":{
+ "shape":"Metadata",
+ "documentation":"Contains information about the foundation model output from the orchestration step.
"
+ },
"reasoningContent":{
"shape":"ReasoningContentBlock",
"documentation":"Contains content about the reasoning that the model made during the orchestration step.
"
- },
- "traceId":{
- "shape":"TraceId",
- "documentation":"The unique identifier of the trace.
"
}
},
"documentation":"The foundation model output from the orchestration step.
",
@@ -5654,10 +6022,18 @@
"OrchestrationTrace":{
"type":"structure",
"members":{
+ "rationale":{
+ "shape":"Rationale",
+ "documentation":"Details about the reasoning, based on the input, that the agent uses to justify carrying out an action group or getting information from a knowledge base.
"
+ },
"invocationInput":{
"shape":"InvocationInput",
"documentation":"Contains information pertaining to the action group or knowledge base that is being invoked.
"
},
+ "observation":{
+ "shape":"Observation",
+ "documentation":"Details about the observation (the output of the action group Lambda or knowledge base) made by the agent.
"
+ },
"modelInvocationInput":{
"shape":"ModelInvocationInput",
"documentation":"The input for the orchestration step.
-
The type is ORCHESTRATION.
-
The text contains the prompt.
-
The inferenceConfiguration, parserMode, and overrideLambda values are set in the PromptOverrideConfiguration object that was set when the agent was created or updated.
"
@@ -5665,14 +6041,6 @@
"modelInvocationOutput":{
"shape":"OrchestrationModelInvocationOutput",
"documentation":"Contains information pertaining to the output from the foundation model that is being invoked.
"
- },
- "observation":{
- "shape":"Observation",
- "documentation":"Details about the observation (the output of the action group Lambda or knowledge base) made by the agent.
"
- },
- "rationale":{
- "shape":"Rationale",
- "documentation":"Details about the reasoning, based on the input, that the agent uses to justify carrying out an action group or getting information from a knowledge base.
"
}
},
"documentation":"Details about the orchestration step, in which the agent determines the order in which actions are executed and which knowledge bases are retrieved.
",
@@ -5689,10 +6057,6 @@
"OutputFile":{
"type":"structure",
"members":{
- "bytes":{
- "shape":"FileBody",
- "documentation":"The byte count of files that contains response from code interpreter.
"
- },
"name":{
"shape":"String",
"documentation":"The name of the file containing response from code interpreter.
"
@@ -5700,6 +6064,10 @@
"type":{
"shape":"MimeType",
"documentation":"The type of file that contains response from the code interpreter.
"
+ },
+ "bytes":{
+ "shape":"FileBody",
+ "documentation":"The byte count of files that contains response from code interpreter.
"
}
},
"documentation":"Contains details of the response from code interpreter.
",
@@ -5746,13 +6114,13 @@
"shape":"ParameterDescription",
"documentation":" A description of the parameter. Helps the foundation model determine how to elicit the parameters from the user.
"
},
- "required":{
- "shape":"Boolean",
- "documentation":" Whether the parameter is required for the agent to complete the function for action group invocation.
"
- },
"type":{
"shape":"ParameterType",
"documentation":" The data type of the parameter.
"
+ },
+ "required":{
+ "shape":"Boolean",
+ "documentation":" Whether the parameter is required for the agent to complete the function for action group invocation.
"
}
},
"documentation":" Contains details about a parameter in a function for an action group.
"
@@ -5768,7 +6136,7 @@
},
"ParameterName":{
"type":"string",
- "pattern":"^([0-9a-zA-Z][_-]?){1,100}$"
+ "pattern":"([0-9a-zA-Z][_-]?){1,100}"
},
"ParameterType":{
"type":"string",
@@ -5797,13 +6165,13 @@
"PayloadPart":{
"type":"structure",
"members":{
- "attribution":{
- "shape":"Attribution",
- "documentation":"Contains citations for a part of an agent response.
"
- },
"bytes":{
"shape":"PartBody",
"documentation":"A part of the agent response in bytes.
"
+ },
+ "attribution":{
+ "shape":"Attribution",
+ "documentation":"Contains citations for a part of an agent response.
"
}
},
"documentation":"Contains a part of an agent response and citations for it.
",
@@ -5837,9 +6205,9 @@
"PostProcessingModelInvocationOutput":{
"type":"structure",
"members":{
- "metadata":{
- "shape":"Metadata",
- "documentation":" Contains information about the foundation model output from the post-processing step.
"
+ "traceId":{
+ "shape":"TraceId",
+ "documentation":"The unique identifier of the trace.
"
},
"parsedResponse":{
"shape":"PostProcessingParsedResponse",
@@ -5849,13 +6217,13 @@
"shape":"RawResponse",
"documentation":" Details of the raw response from the foundation model output.
"
},
+ "metadata":{
+ "shape":"Metadata",
+ "documentation":" Contains information about the foundation model output from the post-processing step.
"
+ },
"reasoningContent":{
"shape":"ReasoningContentBlock",
"documentation":"Contains content about the reasoning that the model made during the post-processing step.
"
- },
- "traceId":{
- "shape":"TraceId",
- "documentation":"The unique identifier of the trace.
"
}
},
"documentation":"The foundation model output from the post-processing step.
",
@@ -5891,9 +6259,9 @@
"PreProcessingModelInvocationOutput":{
"type":"structure",
"members":{
- "metadata":{
- "shape":"Metadata",
- "documentation":" Contains information about the foundation model output from the pre-processing step.
"
+ "traceId":{
+ "shape":"TraceId",
+ "documentation":"The unique identifier of the trace.
"
},
"parsedResponse":{
"shape":"PreProcessingParsedResponse",
@@ -5903,28 +6271,28 @@
"shape":"RawResponse",
"documentation":" Details of the raw response from the foundation model output.
"
},
+ "metadata":{
+ "shape":"Metadata",
+ "documentation":" Contains information about the foundation model output from the pre-processing step.
"
+ },
"reasoningContent":{
"shape":"ReasoningContentBlock",
"documentation":"Contains content about the reasoning that the model made during the pre-processing step.
"
- },
- "traceId":{
- "shape":"TraceId",
- "documentation":"The unique identifier of the trace.
"
}
},
"documentation":"The foundation model output from the pre-processing step.
",
"sensitive":true
},
- "PreProcessingParsedResponse":{
- "type":"structure",
- "members":{
- "isValid":{
- "shape":"Boolean",
- "documentation":"Whether the user input is valid or not. If false, the agent doesn't proceed to orchestration.
"
- },
+ "PreProcessingParsedResponse":{
+ "type":"structure",
+ "members":{
"rationale":{
"shape":"RationaleString",
"documentation":"The text returned by the parsing of the pre-processing step, explaining the steps that the agent plans to take in orchestration, if the user input is valid.
"
+ },
+ "isValid":{
+ "shape":"Boolean",
+ "documentation":"Whether the user input is valid or not. If false, the agent doesn't proceed to orchestration.
"
}
},
"documentation":"Details about the response from the Lambda parsing of the output from the pre-processing step.
",
@@ -5949,18 +6317,22 @@
"PromptConfiguration":{
"type":"structure",
"members":{
- "additionalModelRequestFields":{
- "shape":"Document",
- "documentation":"If the Converse or ConverseStream operations support the model, additionalModelRequestFields contains additional inference parameters, beyond the base set of inference parameters in the inferenceConfiguration field.
For more information, see Inference request parameters and response fields for foundation models in the Amazon Bedrock user guide.
"
+ "promptType":{
+ "shape":"PromptType",
+ "documentation":" The step in the agent sequence that this prompt configuration applies to.
"
+ },
+ "promptCreationMode":{
+ "shape":"CreationMode",
+ "documentation":"Specifies whether to override the default prompt template for this promptType. Set this value to OVERRIDDEN to use the prompt that you provide in the basePromptTemplate. If you leave it as DEFAULT, the agent uses a default prompt template.
"
+ },
+ "promptState":{
+ "shape":"PromptState",
+ "documentation":"Specifies whether to allow the inline agent to carry out the step specified in the promptType. If you set this value to DISABLED, the agent skips that step. The default state for each promptType is as follows.
"
},
"basePromptTemplate":{
"shape":"BasePromptTemplate",
"documentation":"Defines the prompt template with which to replace the default prompt template. You can use placeholder variables in the base prompt template to customize the prompt. For more information, see Prompt template placeholder variables. For more information, see Configure the prompt templates.
"
},
- "foundationModel":{
- "shape":"ModelIdentifier",
- "documentation":" The foundation model to use.
"
- },
"inferenceConfiguration":{
"shape":"InferenceConfiguration",
"documentation":"Contains inference parameters to use when the agent invokes a foundation model in the part of the agent sequence defined by the promptType. For more information, see Inference parameters for foundation models.
"
@@ -5969,17 +6341,13 @@
"shape":"CreationMode",
"documentation":"Specifies whether to override the default parser Lambda function when parsing the raw foundation model output in the part of the agent sequence defined by the promptType. If you set the field as OVERRIDDEN, the overrideLambda field in the PromptOverrideConfiguration must be specified with the ARN of a Lambda function.
"
},
- "promptCreationMode":{
- "shape":"CreationMode",
- "documentation":"Specifies whether to override the default prompt template for this promptType. Set this value to OVERRIDDEN to use the prompt that you provide in the basePromptTemplate. If you leave it as DEFAULT, the agent uses a default prompt template.
"
- },
- "promptState":{
- "shape":"PromptState",
- "documentation":"Specifies whether to allow the inline agent to carry out the step specified in the promptType. If you set this value to DISABLED, the agent skips that step. The default state for each promptType is as follows.
"
+ "foundationModel":{
+ "shape":"ModelIdentifier",
+ "documentation":" The foundation model to use.
"
},
- "promptType":{
- "shape":"PromptType",
- "documentation":" The step in the agent sequence that this prompt configuration applies to.
"
+ "additionalModelRequestFields":{
+ "shape":"Document",
+ "documentation":"If the Converse or ConverseStream operations support the model, additionalModelRequestFields contains additional inference parameters, beyond the base set of inference parameters in the inferenceConfiguration field.
For more information, see Inference request parameters and response fields for foundation models in the Amazon Bedrock user guide.
"
}
},
"documentation":" Contains configurations to override a prompt template in one part of an agent sequence. For more information, see Advanced prompts.
"
@@ -5993,13 +6361,13 @@
"PromptCreationConfigurations":{
"type":"structure",
"members":{
- "excludePreviousThinkingSteps":{
- "shape":"Boolean",
- "documentation":"If true, the service removes any content between <thinking> tags from previous conversations in an agent session. The service will only remove content from already processed turns. This helps you remove content which might not be useful for current and subsequent invocations. This can reduce the input token count and potentially save costs. The default value is false.
"
- },
"previousConversationTurnsToInclude":{
"shape":"PromptCreationConfigurationsPreviousConversationTurnsToIncludeInteger",
"documentation":"The number of previous conversations from the ongoing agent session to include in the conversation history of the agent prompt, during the current invocation. This gives you more granular control over the context that the model is made aware of, and helps the model remove older context which is no longer useful during the ongoing agent session.
"
+ },
+ "excludePreviousThinkingSteps":{
+ "shape":"Boolean",
+ "documentation":"If true, the service removes any content between <thinking> tags from previous conversations in an agent session. The service will only remove content from already processed turns. This helps you remove content which might not be useful for current and subsequent invocations. This can reduce the input token count and potentially save costs. The default value is false.
"
}
},
"documentation":"Specifies parameters that control how the service populates the agent prompt for an InvokeAgent or InvokeInlineAgent request. You can control which aspects of previous invocations in the same agent session the service uses to populate the agent prompt. This gives you more granular control over the contextual history that is used to process the current request.
"
@@ -6013,13 +6381,13 @@
"type":"structure",
"required":["promptConfigurations"],
"members":{
- "overrideLambda":{
- "shape":"LambdaResourceArn",
- "documentation":"The ARN of the Lambda function to use when parsing the raw foundation model output in parts of the agent sequence. If you specify this field, at least one of the promptConfigurations must contain a parserMode value that is set to OVERRIDDEN. For more information, see Parser Lambda function in Amazon Bedrock Agents.
"
- },
"promptConfigurations":{
"shape":"PromptConfigurations",
"documentation":"Contains configurations to override a prompt template in one part of an agent sequence. For more information, see Advanced prompts.
"
+ },
+ "overrideLambda":{
+ "shape":"LambdaResourceArn",
+ "documentation":"The ARN of the Lambda function to use when parsing the raw foundation model output in parts of the agent sequence. If you specify this field, at least one of the promptConfigurations must contain a parserMode value that is set to OVERRIDDEN. For more information, see Parser Lambda function in Amazon Bedrock Agents.
"
}
},
"documentation":"Contains configurations to override prompts in different parts of an agent sequence. For more information, see Advanced prompts.
",
@@ -6074,20 +6442,22 @@
"PutInvocationStepRequest":{
"type":"structure",
"required":[
+ "sessionIdentifier",
"invocationIdentifier",
"invocationStepTime",
- "payload",
- "sessionIdentifier"
+ "payload"
],
"members":{
+ "sessionIdentifier":{
+ "shape":"SessionIdentifier",
+ "documentation":"The unique identifier for the session to add the invocation step to. You can specify either the session's sessionId or its Amazon Resource Name (ARN).
",
+ "location":"uri",
+ "locationName":"sessionIdentifier"
+ },
"invocationIdentifier":{
"shape":"InvocationIdentifier",
"documentation":"The unique identifier (in UUID format) of the invocation to add the invocation step to.
"
},
- "invocationStepId":{
- "shape":"Uuid",
- "documentation":"The unique identifier of the invocation step in UUID format.
"
- },
"invocationStepTime":{
"shape":"DateTimestamp",
"documentation":"The timestamp for when the invocation step occurred.
"
@@ -6096,11 +6466,9 @@
"shape":"InvocationStepPayload",
"documentation":"The payload for the invocation step, including text and images for the interaction.
"
},
- "sessionIdentifier":{
- "shape":"SessionIdentifier",
- "documentation":"The unique identifier for the session to add the invocation step to. You can specify either the session's sessionId or its Amazon Resource Name (ARN).
",
- "location":"uri",
- "locationName":"sessionIdentifier"
+ "invocationStepId":{
+ "shape":"Uuid",
+ "documentation":"The unique identifier of the invocation step in UUID format.
"
}
}
},
@@ -6117,17 +6485,17 @@
"QueryGenerationInput":{
"type":"structure",
"required":[
- "text",
- "type"
+ "type",
+ "text"
],
"members":{
- "text":{
- "shape":"QueryGenerationInputTextString",
- "documentation":"The text of the query.
"
- },
"type":{
"shape":"InputQueryType",
"documentation":"The type of the query.
"
+ },
+ "text":{
+ "shape":"QueryGenerationInputTextString",
+ "documentation":"The text of the query.
"
}
},
"documentation":"Contains information about a natural language query to transform into SQL.
",
@@ -6171,13 +6539,13 @@
"Rationale":{
"type":"structure",
"members":{
- "text":{
- "shape":"RationaleString",
- "documentation":"The reasoning or thought process of the agent, based on the input.
"
- },
"traceId":{
"shape":"TraceId",
"documentation":"The unique identifier of the trace step.
"
+ },
+ "text":{
+ "shape":"RationaleString",
+ "documentation":"The reasoning or thought process of the agent, based on the input.
"
}
},
"documentation":"Contains the reasoning, based on the input, that the agent uses to justify carrying out an action group or getting information from a knowledge base.
",
@@ -6218,13 +6586,13 @@
"type":"structure",
"required":["text"],
"members":{
- "signature":{
- "shape":"String",
- "documentation":"A hash of all the messages in the conversation to ensure that the content in the reasoning text block isn't tampered with. You must submit the signature in subsequent Converse requests, in addition to the previous messages. If the previous messages are tampered with, the response throws an error.
"
- },
"text":{
"shape":"String",
"documentation":"Text describing the reasoning that the model used to return the content in the content block.
"
+ },
+ "signature":{
+ "shape":"String",
+ "documentation":"A hash of all the messages in the conversation to ensure that the content in the reasoning text block isn't tampered with. You must submit the signature in subsequent Converse requests, in addition to the previous messages. If the previous messages are tampered with, the response throws an error.
"
}
},
"documentation":"Contains information about the reasoning that the model used to return the content in the content block.
",
@@ -6240,13 +6608,13 @@
"RepromptResponse":{
"type":"structure",
"members":{
- "source":{
- "shape":"Source",
- "documentation":"Specifies what output is prompting the agent to reprompt the input.
"
- },
"text":{
"shape":"String",
"documentation":"The text reprompting the input.
"
+ },
+ "source":{
+ "shape":"Source",
+ "documentation":"Specifies what output is prompting the agent to reprompt the input.
"
}
},
"documentation":"Contains details about the agent's response to reprompt the input.
",
@@ -6273,17 +6641,17 @@
"type":"structure",
"required":["type"],
"members":{
- "jsonDocument":{
- "shape":"Document",
- "documentation":"Contains a JSON document to rerank.
"
+ "type":{
+ "shape":"RerankDocumentType",
+ "documentation":"The type of document to rerank.
"
},
"textDocument":{
"shape":"RerankTextDocument",
"documentation":"Contains information about a text document to rerank.
"
},
- "type":{
- "shape":"RerankDocumentType",
- "documentation":"The type of document to rerank.
"
+ "jsonDocument":{
+ "shape":"Document",
+ "documentation":"Contains a JSON document to rerank.
"
}
},
"documentation":"Contains information about a document to rerank. Choose the type to define and include the field that corresponds to the type.
",
@@ -6306,17 +6674,17 @@
"RerankQuery":{
"type":"structure",
"required":[
- "textQuery",
- "type"
+ "type",
+ "textQuery"
],
"members":{
- "textQuery":{
- "shape":"RerankTextDocument",
- "documentation":"Contains information about a text query.
"
- },
"type":{
"shape":"RerankQueryContentType",
"documentation":"The type of the query.
"
+ },
+ "textQuery":{
+ "shape":"RerankTextDocument",
+ "documentation":"Contains information about a text query.
"
}
},
"documentation":"Contains information about a query to submit to the reranker model.
",
@@ -6330,25 +6698,25 @@
"type":"structure",
"required":[
"queries",
- "rerankingConfiguration",
- "sources"
+ "sources",
+ "rerankingConfiguration"
],
"members":{
- "nextToken":{
- "shape":"NextToken",
- "documentation":"If the total number of results was greater than could fit in a response, a token is returned in the nextToken field. You can enter that token in this field to return the next batch of results.
"
- },
"queries":{
"shape":"RerankQueriesList",
"documentation":"An array of objects, each of which contains information about a query to submit to the reranker model.
"
},
+ "sources":{
+ "shape":"RerankSourcesList",
+ "documentation":"An array of objects, each of which contains information about the sources to rerank.
"
+ },
"rerankingConfiguration":{
"shape":"RerankingConfiguration",
"documentation":"Contains configurations for reranking.
"
},
- "sources":{
- "shape":"RerankSourcesList",
- "documentation":"An array of objects, each of which contains information about the sources to rerank.
"
+ "nextToken":{
+ "shape":"NextToken",
+ "documentation":"If the total number of results was greater than could fit in a response, a token is returned in the nextToken field. You can enter that token in this field to return the next batch of results.
"
}
}
},
@@ -6356,13 +6724,13 @@
"type":"structure",
"required":["results"],
"members":{
- "nextToken":{
- "shape":"NextToken",
- "documentation":"If the total number of results is greater than can fit in the response, use this token in the nextToken field when making another request to return the next batch of results.
"
- },
"results":{
"shape":"RerankResultsList",
"documentation":"An array of objects, each of which contains information about the results of reranking.
"
+ },
+ "nextToken":{
+ "shape":"NextToken",
+ "documentation":"If the total number of results is greater than can fit in the response, use this token in the nextToken field when making another request to return the next batch of results.
"
}
}
},
@@ -6373,10 +6741,6 @@
"relevanceScore"
],
"members":{
- "document":{
- "shape":"RerankDocument",
- "documentation":"Contains information about the document.
"
- },
"index":{
"shape":"RerankResultIndexInteger",
"documentation":"The ranking of the document. The lower a number, the higher the document is ranked.
"
@@ -6384,6 +6748,10 @@
"relevanceScore":{
"shape":"Float",
"documentation":"The relevance score of the document.
"
+ },
+ "document":{
+ "shape":"RerankDocument",
+ "documentation":"Contains information about the document.
"
}
},
"documentation":"Contains information about a document that was reranked.
"
@@ -6401,17 +6769,17 @@
"RerankSource":{
"type":"structure",
"required":[
- "inlineDocumentSource",
- "type"
+ "type",
+ "inlineDocumentSource"
],
"members":{
- "inlineDocumentSource":{
- "shape":"RerankDocument",
- "documentation":"Contains an inline definition of a source for reranking.
"
- },
"type":{
"shape":"RerankSourceType",
"documentation":"The type of the source.
"
+ },
+ "inlineDocumentSource":{
+ "shape":"RerankDocument",
+ "documentation":"Contains an inline definition of a source for reranking.
"
}
},
"documentation":"Contains information about a source for reranking.
",
@@ -6447,17 +6815,17 @@
"RerankingConfiguration":{
"type":"structure",
"required":[
- "bedrockRerankingConfiguration",
- "type"
+ "type",
+ "bedrockRerankingConfiguration"
],
"members":{
- "bedrockRerankingConfiguration":{
- "shape":"BedrockRerankingConfiguration",
- "documentation":"Contains configurations for an Amazon Bedrock reranker.
"
- },
"type":{
"shape":"RerankingConfigurationType",
"documentation":"The type of reranker that the configurations apply to.
"
+ },
+ "bedrockRerankingConfiguration":{
+ "shape":"BedrockRerankingConfiguration",
+ "documentation":"Contains configurations for an Amazon Bedrock reranker.
"
}
},
"documentation":"Contains configurations for reranking.
"
@@ -6476,13 +6844,13 @@
"RerankingMetadataSelectiveModeConfiguration":{
"type":"structure",
"members":{
- "fieldsToExclude":{
- "shape":"FieldsForReranking",
- "documentation":"An array of objects, each of which specifies a metadata field to exclude from consideration when reranking.
"
- },
"fieldsToInclude":{
"shape":"FieldsForReranking",
"documentation":"An array of objects, each of which specifies a metadata field to include in consideration when reranking. The remaining metadata fields are ignored.
"
+ },
+ "fieldsToExclude":{
+ "shape":"FieldsForReranking",
+ "documentation":"An array of objects, each of which specifies a metadata field to exclude from consideration when reranking.
"
}
},
"documentation":"Contains configurations for the metadata fields to include or exclude when considering reranking. If you include the fieldsToExclude field, the reranker ignores all the metadata fields that you specify. If you include the fieldsToInclude field, the reranker uses only the metadata fields that you specify and ignores all others. You can include only one of these fields.
",
@@ -6497,7 +6865,7 @@
},
"ResourceName":{
"type":"string",
- "pattern":"^([0-9a-zA-Z][_-]?){1,100}$",
+ "pattern":"([0-9a-zA-Z][_-]?){1,100}",
"sensitive":true
},
"ResourceNotFoundException":{
@@ -6527,46 +6895,30 @@
"ResponseStream":{
"type":"structure",
"members":{
- "accessDeniedException":{
- "shape":"AccessDeniedException",
- "documentation":"The request is denied because of missing access permissions. Check your permissions and retry your request.
"
- },
- "badGatewayException":{
- "shape":"BadGatewayException",
- "documentation":"There was an issue with a dependency due to a server issue. Retry your request.
"
- },
"chunk":{
"shape":"PayloadPart",
"documentation":"Contains a part of an agent response and citations for it.
"
},
- "conflictException":{
- "shape":"ConflictException",
- "documentation":"There was a conflict performing an operation. Resolve the conflict and retry your request.
"
- },
- "dependencyFailedException":{
- "shape":"DependencyFailedException",
- "documentation":"There was an issue with a dependency. Check the resource configurations and retry the request.
"
+ "trace":{
+ "shape":"TracePart",
+ "documentation":"Contains information about the agent and session, alongside the agent's reasoning process and results from calling actions and querying knowledge bases and metadata about the trace. You can use the trace to understand how the agent arrived at the response it provided the customer. For more information, see Trace events.
"
},
- "files":{
- "shape":"FilePart",
- "documentation":"Contains intermediate response for code interpreter if any files have been generated.
"
+ "returnControl":{
+ "shape":"ReturnControlPayload",
+ "documentation":"Contains the parameters and information that the agent elicited from the customer to carry out an action. This information is returned to the system and can be used in your own setup for fulfilling the action.
"
},
"internalServerException":{
"shape":"InternalServerException",
"documentation":"An internal server error occurred. Retry your request.
"
},
- "modelNotReadyException":{
- "shape":"ModelNotReadyException",
- "documentation":" The model specified in the request is not ready to serve Inference requests. The AWS SDK will automatically retry the operation up to 5 times. For information about configuring automatic retries, see Retry behavior in the AWS SDKs and Tools reference guide.
"
+ "validationException":{
+ "shape":"ValidationException",
+ "documentation":"Input validation failed. Check your request parameters and retry the request.
"
},
"resourceNotFoundException":{
"shape":"ResourceNotFoundException",
"documentation":"The specified resource Amazon Resource Name (ARN) was not found. Check the Amazon Resource Name (ARN) and try your request again.
"
},
- "returnControl":{
- "shape":"ReturnControlPayload",
- "documentation":"Contains the parameters and information that the agent elicited from the customer to carry out an action. This information is returned to the system and can be used in your own setup for fulfilling the action.
"
- },
"serviceQuotaExceededException":{
"shape":"ServiceQuotaExceededException",
"documentation":"The number of requests exceeds the service quota. Resubmit your request later.
"
@@ -6575,13 +6927,29 @@
"shape":"ThrottlingException",
"documentation":"The number of requests exceeds the limit. Resubmit your request later.
"
},
- "trace":{
- "shape":"TracePart",
- "documentation":"Contains information about the agent and session, alongside the agent's reasoning process and results from calling actions and querying knowledge bases and metadata about the trace. You can use the trace to understand how the agent arrived at the response it provided the customer. For more information, see Trace events.
"
+ "accessDeniedException":{
+ "shape":"AccessDeniedException",
+ "documentation":"The request is denied because of missing access permissions. Check your permissions and retry your request.
"
},
- "validationException":{
- "shape":"ValidationException",
- "documentation":"Input validation failed. Check your request parameters and retry the request.
"
+ "conflictException":{
+ "shape":"ConflictException",
+ "documentation":"There was a conflict performing an operation. Resolve the conflict and retry your request.
"
+ },
+ "dependencyFailedException":{
+ "shape":"DependencyFailedException",
+ "documentation":"There was an issue with a dependency. Check the resource configurations and retry the request.
"
+ },
+ "badGatewayException":{
+ "shape":"BadGatewayException",
+ "documentation":"There was an issue with a dependency due to a server issue. Retry your request.
"
+ },
+ "modelNotReadyException":{
+ "shape":"ModelNotReadyException",
+ "documentation":" The model specified in the request is not ready to serve Inference requests. The AWS SDK will automatically retry the operation up to 5 times. For information about configuring automatic retries, see Retry behavior in the AWS SDKs and Tools reference guide.
"
+ },
+ "files":{
+ "shape":"FilePart",
+ "documentation":"Contains intermediate response for code interpreter if any files have been generated.
"
}
},
"documentation":"The response from invoking the agent and associated citations and trace information.
",
@@ -6590,14 +6958,14 @@
"RetrievalFilter":{
"type":"structure",
"members":{
- "andAll":{
- "shape":"RetrievalFilterList",
- "documentation":"Knowledge base data sources are returned if their metadata attributes fulfill all the filter conditions inside this list.
"
- },
"equals":{
"shape":"FilterAttribute",
"documentation":"Knowledge base data sources are returned if they contain a metadata attribute whose name matches the key and whose value matches the value in this object.
The following example would return data sources with an animal attribute whose value is cat:
\"equals\": { \"key\": \"animal\", \"value\": \"cat\" }
"
},
+ "notEquals":{
+ "shape":"FilterAttribute",
+ "documentation":"Knowledge base data sources are returned when:
The following example would return data sources that don't contain an animal attribute whose value is cat.
\"notEquals\": { \"key\": \"animal\", \"value\": \"cat\" }
"
+ },
"greaterThan":{
"shape":"FilterAttribute",
"documentation":"Knowledge base data sources are returned if they contain a metadata attribute whose name matches the key and whose value is greater than the value in this object.
The following example would return data sources with an year attribute whose value is greater than 1989:
\"greaterThan\": { \"key\": \"year\", \"value\": 1989 }
"
@@ -6606,10 +6974,6 @@
"shape":"FilterAttribute",
"documentation":"Knowledge base data sources are returned if they contain a metadata attribute whose name matches the key and whose value is greater than or equal to the value in this object.
The following example would return data sources with an year attribute whose value is greater than or equal to 1989:
\"greaterThanOrEquals\": { \"key\": \"year\", \"value\": 1989 }
"
},
- "in":{
- "shape":"FilterAttribute",
- "documentation":"Knowledge base data sources are returned if they contain a metadata attribute whose name matches the key and whose value is in the list specified in the value in this object.
The following example would return data sources with an animal attribute that is either cat or dog:
\"in\": { \"key\": \"animal\", \"value\": [\"cat\", \"dog\"] }
"
- },
"lessThan":{
"shape":"FilterAttribute",
"documentation":"Knowledge base data sources are returned if they contain a metadata attribute whose name matches the key and whose value is less than the value in this object.
The following example would return data sources with an year attribute whose value is less than to 1989.
\"lessThan\": { \"key\": \"year\", \"value\": 1989 }
"
@@ -6618,29 +6982,33 @@
"shape":"FilterAttribute",
"documentation":"Knowledge base data sources are returned if they contain a metadata attribute whose name matches the key and whose value is less than or equal to the value in this object.
The following example would return data sources with an year attribute whose value is less than or equal to 1989.
\"lessThanOrEquals\": { \"key\": \"year\", \"value\": 1989 }
"
},
- "listContains":{
- "shape":"FilterAttribute",
- "documentation":"Knowledge base data sources are returned if they contain a metadata attribute whose name matches the key and whose value is a list that contains the value as one of its members.
The following example would return data sources with an animals attribute that is a list containing a cat member (for example [\"dog\", \"cat\"]).
\"listContains\": { \"key\": \"animals\", \"value\": \"cat\" }
"
- },
- "notEquals":{
+ "in":{
"shape":"FilterAttribute",
- "documentation":"Knowledge base data sources are returned when:
The following example would return data sources that don't contain an animal attribute whose value is cat.
\"notEquals\": { \"key\": \"animal\", \"value\": \"cat\" }
"
+ "documentation":"Knowledge base data sources are returned if they contain a metadata attribute whose name matches the key and whose value is in the list specified in the value in this object.
The following example would return data sources with an animal attribute that is either cat or dog:
\"in\": { \"key\": \"animal\", \"value\": [\"cat\", \"dog\"] }
"
},
"notIn":{
"shape":"FilterAttribute",
"documentation":"Knowledge base data sources are returned if they contain a metadata attribute whose name matches the key and whose value isn't in the list specified in the value in this object.
The following example would return data sources whose animal attribute is neither cat nor dog.
\"notIn\": { \"key\": \"animal\", \"value\": [\"cat\", \"dog\"] }
"
},
- "orAll":{
- "shape":"RetrievalFilterList",
- "documentation":"Knowledge base data sources are returned if their metadata attributes fulfill at least one of the filter conditions inside this list.
"
- },
"startsWith":{
"shape":"FilterAttribute",
"documentation":"Knowledge base data sources are returned if they contain a metadata attribute whose name matches the key and whose value starts with the value in this object. This filter is currently only supported for Amazon OpenSearch Serverless vector stores.
The following example would return data sources with an animal attribute starts with ca (for example, cat or camel).
\"startsWith\": { \"key\": \"animal\", \"value\": \"ca\" }
"
},
+ "listContains":{
+ "shape":"FilterAttribute",
+ "documentation":"Knowledge base data sources are returned if they contain a metadata attribute whose name matches the key and whose value is a list that contains the value as one of its members.
The following example would return data sources with an animals attribute that is a list containing a cat member (for example [\"dog\", \"cat\"]).
\"listContains\": { \"key\": \"animals\", \"value\": \"cat\" }
"
+ },
"stringContains":{
"shape":"FilterAttribute",
"documentation":"Knowledge base data sources are returned if they contain a metadata attribute whose name matches the key and whose value is one of the following:
-
A string that contains the value as a substring. The following example would return data sources with an animal attribute that contains the substring at (for example cat).
\"stringContains\": { \"key\": \"animal\", \"value\": \"at\" }
-
A list with a member that contains the value as a substring. The following example would return data sources with an animals attribute that is a list containing a member that contains the substring at (for example [\"dog\", \"cat\"]).
\"stringContains\": { \"key\": \"animals\", \"value\": \"at\" }
"
+ },
+ "andAll":{
+ "shape":"RetrievalFilterList",
+ "documentation":"Knowledge base data sources are returned if their metadata attributes fulfill all the filter conditions inside this list.
"
+ },
+ "orAll":{
+ "shape":"RetrievalFilterList",
+ "documentation":"Knowledge base data sources are returned if their metadata attributes fulfill at least one of the filter conditions inside this list.
"
}
},
"documentation":"Specifies the filters to use on the metadata attributes in the knowledge base data sources before returning results. For more information, see Query configurations. See the examples below to see how to use these filters.
This data type is used in the following API operations:
",
@@ -6665,6 +7033,14 @@
"RetrievalResultContent":{
"type":"structure",
"members":{
+ "type":{
+ "shape":"RetrievalResultContentType",
+ "documentation":"The type of content in the retrieval result.
"
+ },
+ "text":{
+ "shape":"String",
+ "documentation":"The cited text from the data source.
"
+ },
"byteContent":{
"shape":"String",
"documentation":"A data URI with base64-encoded content from the data source. The URI is in the following format: returned in the following format: data:image/jpeg;base64,${base64-encoded string}.
"
@@ -6672,14 +7048,6 @@
"row":{
"shape":"RetrievalResultContentRow",
"documentation":"Specifies information about the rows with the cells to return in retrieval.
"
- },
- "text":{
- "shape":"String",
- "documentation":"The cited text from the data source.
"
- },
- "type":{
- "shape":"RetrievalResultContentType",
- "documentation":"The type of content in the retrieval result.
"
}
},
"documentation":"Contains information about a chunk of text from a data source in the knowledge base. If the result is from a structured data source, the cell in the database and the type of the value is also identified.
This data type is used in the following API operations:
",
@@ -6752,22 +7120,22 @@
"type":"structure",
"required":["type"],
"members":{
- "confluenceLocation":{
- "shape":"RetrievalResultConfluenceLocation",
- "documentation":"The Confluence data source location.
"
- },
- "customDocumentLocation":{
- "shape":"RetrievalResultCustomDocumentLocation",
- "documentation":"Specifies the location of a document in a custom data source.
"
- },
- "kendraDocumentLocation":{
- "shape":"RetrievalResultKendraDocumentLocation",
- "documentation":"The location of a document in Amazon Kendra.
"
+ "type":{
+ "shape":"RetrievalResultLocationType",
+ "documentation":"The type of data source location.
"
},
"s3Location":{
"shape":"RetrievalResultS3Location",
"documentation":"The S3 data source location.
"
},
+ "webLocation":{
+ "shape":"RetrievalResultWebLocation",
+ "documentation":"The web URL/URLs data source location.
"
+ },
+ "confluenceLocation":{
+ "shape":"RetrievalResultConfluenceLocation",
+ "documentation":"The Confluence data source location.
"
+ },
"salesforceLocation":{
"shape":"RetrievalResultSalesforceLocation",
"documentation":"The Salesforce data source location.
"
@@ -6776,17 +7144,17 @@
"shape":"RetrievalResultSharePointLocation",
"documentation":"The SharePoint data source location.
"
},
+ "customDocumentLocation":{
+ "shape":"RetrievalResultCustomDocumentLocation",
+ "documentation":"Specifies the location of a document in a custom data source.
"
+ },
+ "kendraDocumentLocation":{
+ "shape":"RetrievalResultKendraDocumentLocation",
+ "documentation":"The location of a document in Amazon Kendra.
"
+ },
"sqlLocation":{
"shape":"RetrievalResultSqlLocation",
"documentation":"Specifies information about the SQL query used to retrieve the result.
"
- },
- "type":{
- "shape":"RetrievalResultLocationType",
- "documentation":"The type of data source location.
"
- },
- "webLocation":{
- "shape":"RetrievalResultWebLocation",
- "documentation":"The web URL/URLs data source location.
"
}
},
"documentation":"Contains information about the data source location.
This data type is used in the following API operations:
",
@@ -6819,8 +7187,7 @@
},
"RetrievalResultMetadataValue":{
"type":"structure",
- "members":{
- },
+ "members":{},
"document":true
},
"RetrievalResultS3Location":{
@@ -6877,17 +7244,17 @@
"type":"structure",
"required":["type"],
"members":{
- "externalSourcesConfiguration":{
- "shape":"ExternalSourcesRetrieveAndGenerateConfiguration",
- "documentation":"The configuration for the external source wrapper object in the retrieveAndGenerate function.
"
+ "type":{
+ "shape":"RetrieveAndGenerateType",
+ "documentation":"The type of resource that contains your data for retrieving information and generating responses.
If you choose to use EXTERNAL_SOURCES, then currently only Anthropic Claude 3 Sonnet models for knowledge bases are supported.
"
},
"knowledgeBaseConfiguration":{
"shape":"KnowledgeBaseRetrieveAndGenerateConfiguration",
"documentation":"Contains details about the knowledge base for retrieving information and generating responses.
"
},
- "type":{
- "shape":"RetrieveAndGenerateType",
- "documentation":"The type of resource that contains your data for retrieving information and generating responses.
If you choose to use EXTERNAL_SOURCES, then currently only Anthropic Claude 3 Sonnet models for knowledge bases are supported.
"
+ "externalSourcesConfiguration":{
+ "shape":"ExternalSourcesRetrieveAndGenerateConfiguration",
+ "documentation":"The configuration for the external source wrapper object in the retrieveAndGenerate function.
"
}
},
"documentation":"Contains details about the resource being queried.
This data type is used in the following API operations:
"
@@ -6938,6 +7305,10 @@
"type":"structure",
"required":["input"],
"members":{
+ "sessionId":{
+ "shape":"SessionId",
+ "documentation":"The unique identifier of the session. When you first make a RetrieveAndGenerate request, Amazon Bedrock automatically generates this value. You must reuse this value for all subsequent requests in the same conversational session. This value allows Amazon Bedrock to maintain context and knowledge from previous interactions. You can't explicitly set the sessionId yourself.
"
+ },
"input":{
"shape":"RetrieveAndGenerateInput",
"documentation":"Contains the query to be made to the knowledge base.
"
@@ -6949,20 +7320,24 @@
"sessionConfiguration":{
"shape":"RetrieveAndGenerateSessionConfiguration",
"documentation":"Contains details about the session with the knowledge base.
"
- },
- "sessionId":{
- "shape":"SessionId",
- "documentation":"The unique identifier of the session. When you first make a RetrieveAndGenerate request, Amazon Bedrock automatically generates this value. You must reuse this value for all subsequent requests in the same conversational session. This value allows Amazon Bedrock to maintain context and knowledge from previous interactions. You can't explicitly set the sessionId yourself.
"
}
}
},
"RetrieveAndGenerateResponse":{
"type":"structure",
"required":[
- "output",
- "sessionId"
+ "sessionId",
+ "output"
],
"members":{
+ "sessionId":{
+ "shape":"SessionId",
+ "documentation":"The unique identifier of the session. When you first make a RetrieveAndGenerate request, Amazon Bedrock automatically generates this value. You must reuse this value for all subsequent requests in the same conversational session. This value allows Amazon Bedrock to maintain context and knowledge from previous interactions. You can't explicitly set the sessionId yourself.
"
+ },
+ "output":{
+ "shape":"RetrieveAndGenerateOutput",
+ "documentation":"Contains the response generated from querying the knowledge base.
"
+ },
"citations":{
"shape":"Citations",
"documentation":"A list of segments of the generated response that are based on sources in the knowledge base, alongside information about the sources.
"
@@ -6970,14 +7345,6 @@
"guardrailAction":{
"shape":"GuadrailAction",
"documentation":"Specifies if there is a guardrail intervention in the response.
"
- },
- "output":{
- "shape":"RetrieveAndGenerateOutput",
- "documentation":"Contains the response generated from querying the knowledge base.
"
- },
- "sessionId":{
- "shape":"SessionId",
- "documentation":"The unique identifier of the session. When you first make a RetrieveAndGenerate request, Amazon Bedrock automatically generates this value. You must reuse this value for all subsequent requests in the same conversational session. This value allows Amazon Bedrock to maintain context and knowledge from previous interactions. You can't explicitly set the sessionId yourself.
"
}
}
},
@@ -6996,6 +7363,10 @@
"type":"structure",
"required":["input"],
"members":{
+ "sessionId":{
+ "shape":"SessionId",
+ "documentation":"The unique identifier of the session. When you first make a RetrieveAndGenerate request, Amazon Bedrock automatically generates this value. You must reuse this value for all subsequent requests in the same conversational session. This value allows Amazon Bedrock to maintain context and knowledge from previous interactions. You can't explicitly set the sessionId yourself.
"
+ },
"input":{
"shape":"RetrieveAndGenerateInput",
"documentation":"Contains the query to be made to the knowledge base.
"
@@ -7007,29 +7378,25 @@
"sessionConfiguration":{
"shape":"RetrieveAndGenerateSessionConfiguration",
"documentation":"Contains details about the session with the knowledge base.
"
- },
- "sessionId":{
- "shape":"SessionId",
- "documentation":"The unique identifier of the session. When you first make a RetrieveAndGenerate request, Amazon Bedrock automatically generates this value. You must reuse this value for all subsequent requests in the same conversational session. This value allows Amazon Bedrock to maintain context and knowledge from previous interactions. You can't explicitly set the sessionId yourself.
"
}
}
},
"RetrieveAndGenerateStreamResponse":{
"type":"structure",
"required":[
- "sessionId",
- "stream"
+ "stream",
+ "sessionId"
],
"members":{
+ "stream":{
+ "shape":"RetrieveAndGenerateStreamResponseOutput",
+ "documentation":"A stream of events from the model.
"
+ },
"sessionId":{
"shape":"SessionId",
"documentation":"The session ID.
",
"location":"header",
"locationName":"x-amzn-bedrock-knowledge-base-session-id"
- },
- "stream":{
- "shape":"RetrieveAndGenerateStreamResponseOutput",
- "documentation":"A stream of events from the model.
"
}
},
"payload":"stream"
@@ -7037,26 +7404,14 @@
"RetrieveAndGenerateStreamResponseOutput":{
"type":"structure",
"members":{
- "accessDeniedException":{
- "shape":"AccessDeniedException",
- "documentation":"The request is denied because you do not have sufficient permissions to perform the requested action. For troubleshooting this error, see AccessDeniedException in the Amazon Bedrock User Guide.
"
- },
- "badGatewayException":{
- "shape":"BadGatewayException",
- "documentation":"The request failed due to a bad gateway error.
"
+ "output":{
+ "shape":"RetrieveAndGenerateOutputEvent",
+ "documentation":"An output event.
"
},
"citation":{
"shape":"CitationEvent",
"documentation":"A citation event.
"
},
- "conflictException":{
- "shape":"ConflictException",
- "documentation":"Error occurred because of a conflict while performing an operation.
"
- },
- "dependencyFailedException":{
- "shape":"DependencyFailedException",
- "documentation":"The request failed due to a dependency error.
"
- },
"guardrail":{
"shape":"GuardrailEvent",
"documentation":"A guardrail event.
"
@@ -7065,9 +7420,9 @@
"shape":"InternalServerException",
"documentation":"An internal server error occurred. Retry your request.
"
},
- "output":{
- "shape":"RetrieveAndGenerateOutputEvent",
- "documentation":"An output event.
"
+ "validationException":{
+ "shape":"ValidationException",
+ "documentation":"The input fails to satisfy the constraints specified by Amazon Bedrock. For troubleshooting this error, see ValidationError in the Amazon Bedrock User Guide.
"
},
"resourceNotFoundException":{
"shape":"ResourceNotFoundException",
@@ -7081,9 +7436,21 @@
"shape":"ThrottlingException",
"documentation":"Your request was denied due to exceeding the account quotas for Amazon Bedrock. For troubleshooting this error, see ThrottlingException in the Amazon Bedrock User Guide.
"
},
- "validationException":{
- "shape":"ValidationException",
- "documentation":"The input fails to satisfy the constraints specified by Amazon Bedrock. For troubleshooting this error, see ValidationError in the Amazon Bedrock User Guide.
"
+ "accessDeniedException":{
+ "shape":"AccessDeniedException",
+ "documentation":"The request is denied because you do not have sufficient permissions to perform the requested action. For troubleshooting this error, see AccessDeniedException in the Amazon Bedrock User Guide.
"
+ },
+ "conflictException":{
+ "shape":"ConflictException",
+ "documentation":"Error occurred because of a conflict while performing an operation.
"
+ },
+ "dependencyFailedException":{
+ "shape":"DependencyFailedException",
+ "documentation":"The request failed due to a dependency error.
"
+ },
+ "badGatewayException":{
+ "shape":"BadGatewayException",
+ "documentation":"The request failed due to a bad gateway error.
"
}
},
"documentation":"A retrieve and generate stream response output.
",
@@ -7103,27 +7470,27 @@
"retrievalQuery"
],
"members":{
- "guardrailConfiguration":{
- "shape":"GuardrailConfiguration",
- "documentation":"Guardrail settings.
"
- },
"knowledgeBaseId":{
"shape":"KnowledgeBaseId",
"documentation":"The unique identifier of the knowledge base to query.
",
"location":"uri",
"locationName":"knowledgeBaseId"
},
- "nextToken":{
- "shape":"NextToken",
- "documentation":"If there are more results than can fit in the response, the response returns a nextToken. Use this token in the nextToken field of another request to retrieve the next batch of results.
"
+ "retrievalQuery":{
+ "shape":"KnowledgeBaseQuery",
+ "documentation":"Contains the query to send the knowledge base.
"
},
"retrievalConfiguration":{
"shape":"KnowledgeBaseRetrievalConfiguration",
"documentation":"Contains configurations for the knowledge base query and retrieval process. For more information, see Query configurations.
"
},
- "retrievalQuery":{
- "shape":"KnowledgeBaseQuery",
- "documentation":"Contains the query to send the knowledge base.
"
+ "guardrailConfiguration":{
+ "shape":"GuardrailConfiguration",
+ "documentation":"Guardrail settings.
"
+ },
+ "nextToken":{
+ "shape":"NextToken",
+ "documentation":"If there are more results than can fit in the response, the response returns a nextToken. Use this token in the nextToken field of another request to retrieve the next batch of results.
"
}
}
},
@@ -7131,6 +7498,10 @@
"type":"structure",
"required":["retrievalResults"],
"members":{
+ "retrievalResults":{
+ "shape":"KnowledgeBaseRetrievalResults",
+ "documentation":"A list of results from querying the knowledge base.
"
+ },
"guardrailAction":{
"shape":"GuadrailAction",
"documentation":"Specifies if there is a guardrail intervention in the response.
"
@@ -7138,10 +7509,6 @@
"nextToken":{
"shape":"NextToken",
"documentation":"If there are more results than can fit in the response, the response returns a nextToken. Use this token in the nextToken field of another request to retrieve the next batch of results.
"
- },
- "retrievalResults":{
- "shape":"KnowledgeBaseRetrievalResults",
- "documentation":"A list of results from querying the knowledge base.
"
}
}
},
@@ -7176,13 +7543,13 @@
"ReturnControlPayload":{
"type":"structure",
"members":{
- "invocationId":{
- "shape":"String",
- "documentation":"The identifier of the action group invocation.
"
- },
"invocationInputs":{
"shape":"InvocationInputs",
"documentation":"A list of objects that contain information about the parameters and inputs that need to be sent into the API operation or function, based on what the agent determines from its session with the user.
"
+ },
+ "invocationId":{
+ "shape":"String",
+ "documentation":"The identifier of the action group invocation.
"
}
},
"documentation":"Contains information to return from the action group that the agent has predicted to invoke.
This data type is used in the following API operations:
",
@@ -7206,17 +7573,17 @@
"RoutingClassifierModelInvocationOutput":{
"type":"structure",
"members":{
- "metadata":{
- "shape":"Metadata",
- "documentation":"The invocation's metadata.
"
+ "traceId":{
+ "shape":"TraceId",
+ "documentation":"The invocation's trace ID.
"
},
"rawResponse":{
"shape":"RawResponse",
"documentation":"The invocation's raw response.
"
},
- "traceId":{
- "shape":"TraceId",
- "documentation":"The invocation's trace ID.
"
+ "metadata":{
+ "shape":"Metadata",
+ "documentation":"The invocation's metadata.
"
}
},
"documentation":"Invocation output from a routing classifier model.
",
@@ -7229,6 +7596,10 @@
"shape":"InvocationInput",
"documentation":"The classifier's invocation input.
"
},
+ "observation":{
+ "shape":"Observation",
+ "documentation":"The classifier's observation.
"
+ },
"modelInvocationInput":{
"shape":"ModelInvocationInput",
"documentation":"The classifier's model invocation input.
"
@@ -7236,10 +7607,6 @@
"modelInvocationOutput":{
"shape":"RoutingClassifierModelInvocationOutput",
"documentation":"The classifier's model invocation output.
"
- },
- "observation":{
- "shape":"Observation",
- "documentation":"The classifier's observation.
"
}
},
"documentation":"A trace for a routing classifier.
",
@@ -7250,7 +7617,7 @@
"type":"string",
"max":63,
"min":3,
- "pattern":"^[a-z0-9][\\.\\-a-z0-9]{1,61}[a-z0-9]$"
+ "pattern":"[a-z0-9][\\.\\-a-z0-9]{1,61}[a-z0-9]"
},
"S3Identifier":{
"type":"structure",
@@ -7303,13 +7670,13 @@
"type":"string",
"max":1024,
"min":1,
- "pattern":"^[\\.\\-\\!\\*\\_\\'\\(\\)a-zA-Z0-9][\\.\\-\\!\\*\\_\\'\\(\\)\\/a-zA-Z0-9]*$"
+ "pattern":"[\\.\\-\\!\\*\\_\\'\\(\\)a-zA-Z0-9][\\.\\-\\!\\*\\_\\'\\(\\)\\/a-zA-Z0-9]*"
},
"S3Uri":{
"type":"string",
"max":1024,
"min":1,
- "pattern":"^s3://[a-z0-9][a-z0-9.-]{1,61}[a-z0-9]/.{1,1024}$"
+ "pattern":"s3://[a-z0-9][a-z0-9.-]{1,61}[a-z0-9]/.{1,1024}"
},
"SatisfiedCondition":{
"type":"structure",
@@ -7350,7 +7717,7 @@
},
"SessionArn":{
"type":"string",
- "pattern":"^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]+:[0-9]{12}:session/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$"
+ "pattern":"arn:aws(-[^:]+)?:bedrock:[a-z0-9-]+:[0-9]{12}:session/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}"
},
"SessionAttributesMap":{
"type":"map",
@@ -7361,11 +7728,11 @@
"type":"string",
"max":100,
"min":2,
- "pattern":"^[0-9a-zA-Z._:-]+$"
+ "pattern":"[0-9a-zA-Z._:-]+"
},
"SessionIdentifier":{
"type":"string",
- "pattern":"^(arn:aws(-[^:]+)?:bedrock:[a-z0-9-]+:[0-9]{12}:session/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})|([a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})$"
+ "pattern":"(arn:aws(-[^:]+)?:bedrock:[a-z0-9-]+:[0-9]{12}:session/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})|([a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})"
},
"SessionMetadataKey":{
"type":"string",
@@ -7387,33 +7754,33 @@
"SessionState":{
"type":"structure",
"members":{
- "conversationHistory":{
- "shape":"ConversationHistory",
- "documentation":"The state's conversation history.
"
+ "sessionAttributes":{
+ "shape":"SessionAttributesMap",
+ "documentation":"Contains attributes that persist across a session and the values of those attributes. If sessionAttributes are passed to a supervisor agent in multi-agent collaboration, it will be forwarded to all agent collaborators.
"
},
- "files":{
- "shape":"InputFiles",
- "documentation":"Contains information about the files used by code interpreter.
"
+ "promptSessionAttributes":{
+ "shape":"PromptSessionAttributesMap",
+ "documentation":"Contains attributes that persist across a prompt and the values of those attributes.
-
In orchestration prompt template, these attributes replace the $prompt_session_attributes$ placeholder variable. For more information, see Prompt template placeholder variables.
-
In multi-agent collaboration, the promptSessionAttributes will only be used by supervisor agent when $prompt_session_attributes$ is present in prompt template.
"
+ },
+ "returnControlInvocationResults":{
+ "shape":"ReturnControlInvocationResults",
+ "documentation":"Contains information about the results from the action group invocation. For more information, see Return control to the agent developer and Control session context.
If you include this field, the inputText field will be ignored.
"
},
"invocationId":{
"shape":"String",
"documentation":"The identifier of the invocation of an action. This value must match the invocationId returned in the InvokeAgent response for the action whose results are provided in the returnControlInvocationResults field. For more information, see Return control to the agent developer and Control session context.
"
},
+ "files":{
+ "shape":"InputFiles",
+ "documentation":"Contains information about the files used by code interpreter.
"
+ },
"knowledgeBaseConfigurations":{
"shape":"KnowledgeBaseConfigurations",
"documentation":"An array of configurations, each of which applies to a knowledge base attached to the agent.
"
},
- "promptSessionAttributes":{
- "shape":"PromptSessionAttributesMap",
- "documentation":"Contains attributes that persist across a prompt and the values of those attributes.
-
In orchestration prompt template, these attributes replace the $prompt_session_attributes$ placeholder variable. For more information, see Prompt template placeholder variables.
-
In multi-agent collaboration, the promptSessionAttributes will only be used by supervisor agent when $prompt_session_attributes$ is present in prompt template.
"
- },
- "returnControlInvocationResults":{
- "shape":"ReturnControlInvocationResults",
- "documentation":"Contains information about the results from the action group invocation. For more information, see Return control to the agent developer and Control session context.
If you include this field, the inputText field will be ignored.
"
- },
- "sessionAttributes":{
- "shape":"SessionAttributesMap",
- "documentation":"Contains attributes that persist across a session and the values of those attributes. If sessionAttributes are passed to a supervisor agent in multi-agent collaboration, it will be forwarded to all agent collaborators.
"
+ "conversationHistory":{
+ "shape":"ConversationHistory",
+ "documentation":"The state's conversation history.
"
}
},
"documentation":"Contains parameters that specify various attributes that persist across a session or prompt. You can define session state attributes as key-value pairs when writing a Lambda function for an action group or pass them when making an InvokeAgent request. Use session state attributes to control and provide conversational context for your agent and to help customize your agent's behavior. For more information, see Control session context.
"
@@ -7433,32 +7800,32 @@
"SessionSummary":{
"type":"structure",
"required":[
- "createdAt",
- "lastUpdatedAt",
- "sessionArn",
"sessionId",
- "sessionStatus"
+ "sessionArn",
+ "sessionStatus",
+ "createdAt",
+ "lastUpdatedAt"
],
"members":{
- "createdAt":{
- "shape":"DateTimestamp",
- "documentation":"The timestamp for when the session was created.
"
- },
- "lastUpdatedAt":{
- "shape":"DateTimestamp",
- "documentation":"The timestamp for when the session was last modified.
"
+ "sessionId":{
+ "shape":"Uuid",
+ "documentation":"The unique identifier for the session.
"
},
"sessionArn":{
"shape":"SessionArn",
"documentation":"The Amazon Resource Name (ARN) of the session.
"
},
- "sessionId":{
- "shape":"Uuid",
- "documentation":"The unique identifier for the session.
"
- },
"sessionStatus":{
"shape":"SessionStatus",
"documentation":"The current status of the session.
"
+ },
+ "createdAt":{
+ "shape":"DateTimestamp",
+ "documentation":"The timestamp for when the session was created.
"
+ },
+ "lastUpdatedAt":{
+ "shape":"DateTimestamp",
+ "documentation":"The timestamp for when the session was last modified.
"
}
},
"documentation":"Contains details about a session. For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.
"
@@ -7481,13 +7848,13 @@
"Span":{
"type":"structure",
"members":{
- "end":{
- "shape":"SpanEndInteger",
- "documentation":"Where the text with a citation ends in the generated output.
"
- },
"start":{
"shape":"SpanStartInteger",
"documentation":"Where the text with a citation starts in the generated output.
"
+ },
+ "end":{
+ "shape":"SpanEndInteger",
+ "documentation":"Where the text with a citation ends in the generated output.
"
}
},
"documentation":"Contains information about where the text with a citation begins and ends in the generated output.
This data type is used in the following API operations:
"
@@ -7505,11 +7872,17 @@
"StartFlowExecutionRequest":{
"type":"structure",
"required":[
- "flowAliasIdentifier",
"flowIdentifier",
+ "flowAliasIdentifier",
"inputs"
],
"members":{
+ "flowIdentifier":{
+ "shape":"FlowIdentifier",
+ "documentation":"The unique identifier of the flow to execute.
",
+ "location":"uri",
+ "locationName":"flowIdentifier"
+ },
"flowAliasIdentifier":{
"shape":"FlowAliasIdentifier",
"documentation":"The unique identifier of the flow alias to use for the flow execution.
",
@@ -7520,12 +7893,6 @@
"shape":"FlowExecutionName",
"documentation":"The unique name for the flow execution. If you don't provide one, a system-generated name is used.
"
},
- "flowIdentifier":{
- "shape":"FlowIdentifier",
- "documentation":"The unique identifier of the flow to execute.
",
- "location":"uri",
- "locationName":"flowIdentifier"
- },
"inputs":{
"shape":"FlowInputs",
"documentation":"The input data required for the flow execution. This must match the input schema defined in the flow.
"
@@ -7548,16 +7915,16 @@
"StopFlowExecutionRequest":{
"type":"structure",
"required":[
- "executionIdentifier",
+ "flowIdentifier",
"flowAliasIdentifier",
- "flowIdentifier"
+ "executionIdentifier"
],
"members":{
- "executionIdentifier":{
- "shape":"FlowExecutionIdentifier",
- "documentation":"The unique identifier of the flow execution to stop.
",
+ "flowIdentifier":{
+ "shape":"FlowIdentifier",
+ "documentation":"The unique identifier of the flow.
",
"location":"uri",
- "locationName":"executionIdentifier"
+ "locationName":"flowIdentifier"
},
"flowAliasIdentifier":{
"shape":"FlowAliasIdentifier",
@@ -7565,11 +7932,11 @@
"location":"uri",
"locationName":"flowAliasIdentifier"
},
- "flowIdentifier":{
- "shape":"FlowIdentifier",
- "documentation":"The unique identifier of the flow.
",
+ "executionIdentifier":{
+ "shape":"FlowExecutionIdentifier",
+ "documentation":"The unique identifier of the flow execution to stop.
",
"location":"uri",
- "locationName":"flowIdentifier"
+ "locationName":"executionIdentifier"
}
}
},
@@ -7596,13 +7963,13 @@
"StreamingConfigurations":{
"type":"structure",
"members":{
- "applyGuardrailInterval":{
- "shape":"StreamingConfigurationsApplyGuardrailIntervalInteger",
- "documentation":" The guardrail interval to apply as response is generated. By default, the guardrail interval is set to 50 characters. If a larger interval is specified, the response will be generated in larger chunks with fewer ApplyGuardrail calls. The following examples show the response generated for Hello, I am an agent input string.
Example response in chunks: Interval set to 3 characters
'Hel', 'lo, ','I am', ' an', ' Age', 'nt'
Each chunk has at least 3 characters except for the last chunk
Example response in chunks: Interval set to 20 or more characters
Hello, I am an Agent
"
- },
"streamFinalResponse":{
"shape":"Boolean",
"documentation":" Specifies whether to enable streaming for the final response. This is set to false by default.
"
+ },
+ "applyGuardrailInterval":{
+ "shape":"StreamingConfigurationsApplyGuardrailIntervalInteger",
+ "documentation":" The guardrail interval to apply as response is generated. By default, the guardrail interval is set to 50 characters. If a larger interval is specified, the response will be generated in larger chunks with fewer ApplyGuardrail calls. The following examples show the response generated for Hello, I am an agent input string.
Example response in chunks: Interval set to 3 characters
'Hel', 'lo, ','I am', ' an', ' Age', 'nt'
Each chunk has at least 3 characters except for the last chunk
Example response in chunks: Interval set to 20 or more characters
Hello, I am an Agent
"
}
},
"documentation":"Configurations for streaming.
"
@@ -7627,7 +7994,7 @@
"documentation":"Key of a tag
",
"max":128,
"min":1,
- "pattern":"^[a-zA-Z0-9\\s._:/=+@-]*$"
+ "pattern":"[a-zA-Z0-9\\s._:/=+@-]*"
},
"TagKeyList":{
"type":"list",
@@ -7657,22 +8024,21 @@
},
"TagResourceResponse":{
"type":"structure",
- "members":{
- }
+ "members":{}
},
"TagValue":{
"type":"string",
"documentation":"Value of a tag
",
"max":256,
"min":0,
- "pattern":"^[a-zA-Z0-9\\s._:/=+@-]*$"
+ "pattern":"[a-zA-Z0-9\\s._:/=+@-]*"
},
"TaggableResourcesArn":{
"type":"string",
"documentation":"ARN of Taggable resources: [session]
",
"max":1011,
"min":20,
- "pattern":"(^arn:aws(-[^:]+)?:bedrock:[a-zA-Z0-9-]+:[0-9]{12}:(session)/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$)"
+ "pattern":".*(^arn:aws(-[^:]+)?:bedrock:[a-zA-Z0-9-]+:[0-9]{12}:(session)/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$).*"
},
"TagsMap":{
"type":"map",
@@ -7691,14 +8057,6 @@
"TextInferenceConfig":{
"type":"structure",
"members":{
- "maxTokens":{
- "shape":"MaxTokens",
- "documentation":"The maximum number of tokens to generate in the output text. Do not use the minimum of 0 or the maximum of 65536. The limit values described here are arbitary values, for actual values consult the limits defined by your specific model.
"
- },
- "stopSequences":{
- "shape":"RAGStopSequences",
- "documentation":"A list of sequences of characters that, if generated, will cause the model to stop generating further tokens. Do not use a minimum length of 1 or a maximum length of 1000. The limit values described here are arbitary values, for actual values consult the limits defined by your specific model.
"
- },
"temperature":{
"shape":"Temperature",
"documentation":" Controls the random-ness of text generated by the language model, influencing how much the model sticks to the most predictable next words versus exploring more surprising options. A lower temperature value (e.g. 0.2 or 0.3) makes model outputs more deterministic or predictable, while a higher temperature (e.g. 0.8 or 0.9) makes the outputs more creative or unpredictable.
"
@@ -7706,6 +8064,14 @@
"topP":{
"shape":"TopP",
"documentation":" A probability distribution threshold which controls what the model considers for the set of possible next tokens. The model will only consider the top p% of the probability distribution when generating the next token.
"
+ },
+ "maxTokens":{
+ "shape":"MaxTokens",
+ "documentation":"The maximum number of tokens to generate in the output text. Do not use the minimum of 0 or the maximum of 65536. The limit values described here are arbitary values, for actual values consult the limits defined by your specific model.
"
+ },
+ "stopSequences":{
+ "shape":"RAGStopSequences",
+ "documentation":"A list of sequences of characters that, if generated, will cause the model to stop generating further tokens. Do not use a minimum length of 1 or a maximum length of 1000. The limit values described here are arbitary values, for actual values consult the limits defined by your specific model.
"
}
},
"documentation":"Configuration settings for text generation using a language model via the RetrieveAndGenerate operation. Includes parameters like temperature, top-p, maximum token count, and stop sequences.
The valid range of maxTokens depends on the accepted values for your chosen model's inference parameters. To see the inference parameters for your model, see Inference parameters for foundation models.
"
@@ -7736,13 +8102,13 @@
"TextResponsePart":{
"type":"structure",
"members":{
- "span":{
- "shape":"Span",
- "documentation":"Contains information about where the text with a citation begins and ends in the generated output.
"
- },
"text":{
"shape":"String",
"documentation":"The part of the generated text that contains a citation.
"
+ },
+ "span":{
+ "shape":"Span",
+ "documentation":"Contains information about where the text with a citation begins and ends in the generated output.
"
}
},
"documentation":"Contains the part of the generated text that contains a citation, alongside where it begins and ends.
This data type is used in the following API operations:
",
@@ -7752,13 +8118,13 @@
"type":"structure",
"required":["type"],
"members":{
- "knowledgeBaseConfiguration":{
- "shape":"TextToSqlKnowledgeBaseConfiguration",
- "documentation":"Specifies configurations for a knowledge base to use in transformation.
"
- },
"type":{
"shape":"TextToSqlConfigurationType",
"documentation":"The type of resource to use in transformation.
"
+ },
+ "knowledgeBaseConfiguration":{
+ "shape":"TextToSqlKnowledgeBaseConfiguration",
+ "documentation":"Specifies configurations for a knowledge base to use in transformation.
"
}
},
"documentation":"Contains configurations for transforming text to SQL.
"
@@ -7805,18 +8171,14 @@
"Trace":{
"type":"structure",
"members":{
- "customOrchestrationTrace":{
- "shape":"CustomOrchestrationTrace",
- "documentation":" Details about the custom orchestration step in which the agent determines the order in which actions are executed.
"
- },
- "failureTrace":{
- "shape":"FailureTrace",
- "documentation":"Contains information about the failure of the interaction.
"
- },
"guardrailTrace":{
"shape":"GuardrailTrace",
"documentation":"The trace details for a trace defined in the Guardrail filter.
"
},
+ "preProcessingTrace":{
+ "shape":"PreProcessingTrace",
+ "documentation":"Details about the pre-processing step, in which the agent contextualizes and categorizes user inputs.
"
+ },
"orchestrationTrace":{
"shape":"OrchestrationTrace",
"documentation":"Details about the orchestration step, in which the agent determines the order in which actions are executed and which knowledge bases are retrieved.
"
@@ -7825,19 +8187,35 @@
"shape":"PostProcessingTrace",
"documentation":"Details about the post-processing step, in which the agent shapes the response..
"
},
- "preProcessingTrace":{
- "shape":"PreProcessingTrace",
- "documentation":"Details about the pre-processing step, in which the agent contextualizes and categorizes user inputs.
"
- },
"routingClassifierTrace":{
"shape":"RoutingClassifierTrace",
"documentation":"A routing classifier's trace.
"
+ },
+ "failureTrace":{
+ "shape":"FailureTrace",
+ "documentation":"Contains information about the failure of the interaction.
"
+ },
+ "customOrchestrationTrace":{
+ "shape":"CustomOrchestrationTrace",
+ "documentation":" Details about the custom orchestration step in which the agent determines the order in which actions are executed.
"
}
},
"documentation":"Contains one part of the agent's reasoning process and results from calling API actions and querying knowledge bases. You can use the trace to understand how the agent arrived at the response it provided the customer. For more information, see Trace enablement.
",
"sensitive":true,
"union":true
},
+ "TraceElements":{
+ "type":"structure",
+ "members":{
+ "agentTraces":{
+ "shape":"AgentTraces",
+ "documentation":"Agent trace information for the flow execution.
"
+ }
+ },
+ "documentation":"Contains trace elements for flow execution tracking.
",
+ "sensitive":true,
+ "union":true
+ },
"TraceId":{
"type":"string",
"max":16,
@@ -7850,37 +8228,37 @@
"TracePart":{
"type":"structure",
"members":{
- "agentAliasId":{
- "shape":"AgentAliasId",
- "documentation":"The unique identifier of the alias of the agent.
"
- },
- "agentId":{
- "shape":"AgentId",
- "documentation":"The unique identifier of the agent.
"
+ "sessionId":{
+ "shape":"SessionId",
+ "documentation":"The unique identifier of the session with the agent.
"
},
- "agentVersion":{
- "shape":"AgentVersion",
- "documentation":"The version of the agent.
"
+ "trace":{
+ "shape":"Trace",
+ "documentation":"Contains one part of the agent's reasoning process and results from calling API actions and querying knowledge bases. You can use the trace to understand how the agent arrived at the response it provided the customer. For more information, see Trace enablement.
"
},
"callerChain":{
"shape":"CallerChain",
"documentation":"The part's caller chain.
"
},
+ "eventTime":{
+ "shape":"SyntheticTimestamp_date_time",
+ "documentation":" The time of the trace.
"
+ },
"collaboratorName":{
"shape":"Name",
"documentation":"The part's collaborator name.
"
},
- "eventTime":{
- "shape":"SyntheticTimestamp_date_time",
- "documentation":" The time of the trace.
"
+ "agentId":{
+ "shape":"AgentId",
+ "documentation":"The unique identifier of the agent.
"
},
- "sessionId":{
- "shape":"SessionId",
- "documentation":"The unique identifier of the session with the agent.
"
+ "agentAliasId":{
+ "shape":"AgentAliasId",
+ "documentation":"The unique identifier of the alias of the agent.
"
},
- "trace":{
- "shape":"Trace",
- "documentation":"Contains one part of the agent's reasoning process and results from calling API actions and querying knowledge bases. You can use the trace to understand how the agent arrived at the response it provided the customer. For more information, see Trace enablement.
"
+ "agentVersion":{
+ "shape":"AgentVersion",
+ "documentation":"The version of the agent.
"
}
},
"documentation":"Contains information about the agent and session, alongside the agent's reasoning process and results from calling API actions and querying knowledge bases and metadata about the trace. You can use the trace to understand how the agent arrived at the response it provided the customer. For more information, see Trace enablement.
",
@@ -7936,54 +8314,53 @@
},
"UntagResourceResponse":{
"type":"structure",
- "members":{
- }
+ "members":{}
},
"UpdateSessionRequest":{
"type":"structure",
"required":["sessionIdentifier"],
"members":{
+ "sessionMetadata":{
+ "shape":"SessionMetadataMap",
+ "documentation":"A map of key-value pairs containing attributes to be persisted across the session. For example the user's ID, their language preference, and the type of device they are using.
"
+ },
"sessionIdentifier":{
"shape":"SessionIdentifier",
"documentation":"The unique identifier of the session to modify. You can specify either the session's sessionId or its Amazon Resource Name (ARN).
",
"location":"uri",
"locationName":"sessionIdentifier"
- },
- "sessionMetadata":{
- "shape":"SessionMetadataMap",
- "documentation":"A map of key-value pairs containing attributes to be persisted across the session. For example the user's ID, their language preference, and the type of device they are using.
"
}
}
},
"UpdateSessionResponse":{
"type":"structure",
"required":[
- "createdAt",
- "lastUpdatedAt",
- "sessionArn",
"sessionId",
- "sessionStatus"
+ "sessionArn",
+ "sessionStatus",
+ "createdAt",
+ "lastUpdatedAt"
],
"members":{
- "createdAt":{
- "shape":"DateTimestamp",
- "documentation":"The timestamp for when the session was created.
"
- },
- "lastUpdatedAt":{
- "shape":"DateTimestamp",
- "documentation":"The timestamp for when the session was last modified.
"
+ "sessionId":{
+ "shape":"Uuid",
+ "documentation":"The unique identifier of the session you updated.
"
},
"sessionArn":{
"shape":"SessionArn",
"documentation":"The Amazon Resource Name (ARN) of the session that was updated.
"
},
- "sessionId":{
- "shape":"Uuid",
- "documentation":"The unique identifier of the session you updated.
"
- },
"sessionStatus":{
"shape":"SessionStatus",
"documentation":"The status of the session you updated.
"
+ },
+ "createdAt":{
+ "shape":"DateTimestamp",
+ "documentation":"The timestamp for when the session was created.
"
+ },
+ "lastUpdatedAt":{
+ "shape":"DateTimestamp",
+ "documentation":"The timestamp for when the session was last modified.
"
}
}
},
@@ -8004,7 +8381,7 @@
},
"Uuid":{
"type":"string",
- "pattern":"^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$"
+ "pattern":"[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}"
},
"ValidationException":{
"type":"structure",
@@ -8022,10 +8399,6 @@
"type":"structure",
"required":["modelConfiguration"],
"members":{
- "metadataConfiguration":{
- "shape":"MetadataConfigurationForReranking",
- "documentation":"Contains configurations for the metadata to use in reranking.
"
- },
"modelConfiguration":{
"shape":"VectorSearchBedrockRerankingModelConfiguration",
"documentation":"Contains configurations for the reranker model.
"
@@ -8033,6 +8406,10 @@
"numberOfRerankedResults":{
"shape":"VectorSearchBedrockRerankingConfigurationNumberOfRerankedResultsInteger",
"documentation":"The number of results to return after reranking.
"
+ },
+ "metadataConfiguration":{
+ "shape":"MetadataConfigurationForReranking",
+ "documentation":"Contains configurations for the metadata to use in reranking.
"
}
},
"documentation":"Contains configurations for reranking with an Amazon Bedrock reranker model.
"
@@ -8047,13 +8424,13 @@
"type":"structure",
"required":["modelArn"],
"members":{
- "additionalModelRequestFields":{
- "shape":"AdditionalModelRequestFields",
- "documentation":"A JSON object whose keys are request fields for the model and whose values are values for those fields.
"
- },
"modelArn":{
"shape":"BedrockRerankingModelArn",
"documentation":"The ARN of the reranker model to use.
"
+ },
+ "additionalModelRequestFields":{
+ "shape":"AdditionalModelRequestFields",
+ "documentation":"A JSON object whose keys are request fields for the model and whose values are values for those fields.
"
}
},
"documentation":"Contains configurations for an Amazon Bedrock reranker model.
"
@@ -8062,13 +8439,13 @@
"type":"structure",
"required":["type"],
"members":{
- "bedrockRerankingConfiguration":{
- "shape":"VectorSearchBedrockRerankingConfiguration",
- "documentation":"Contains configurations for an Amazon Bedrock reranker model.
"
- },
"type":{
"shape":"VectorSearchRerankingConfigurationType",
"documentation":"The type of reranker model.
"
+ },
+ "bedrockRerankingConfiguration":{
+ "shape":"VectorSearchBedrockRerankingConfiguration",
+ "documentation":"Contains configurations for an Amazon Bedrock reranker model.
"
}
},
"documentation":"Contains configurations for reranking the retrieved results.
"
@@ -8085,7 +8462,7 @@
"type":"string",
"max":5,
"min":1,
- "pattern":"^(DRAFT|[0-9]{0,4}[1-9][0-9]{0,4})$"
+ "pattern":"(DRAFT|[0-9]{0,4}[1-9][0-9]{0,4})"
}
},
"documentation":"Contains APIs related to model invocation and querying of knowledge bases.
"
diff --git a/services/bedrockagentruntime/src/main/resources/codegen-resources/waiters-2.json b/services/bedrockagentruntime/src/main/resources/codegen-resources/waiters-2.json
new file mode 100644
index 000000000000..13f60ee66be6
--- /dev/null
+++ b/services/bedrockagentruntime/src/main/resources/codegen-resources/waiters-2.json
@@ -0,0 +1,5 @@
+{
+ "version": 2,
+ "waiters": {
+ }
+}
From b9bffd13fd683fd891dd246ca439339294d0607c Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 26 Sep 2025 18:55:38 +0000
Subject: [PATCH 105/121] Amazon DynamoDB Streams Update: Added support for
IPv6 compatible endpoints for DynamoDB Streams.
---
...feature-AmazonDynamoDBStreams-1b55421.json | 6 +
.../dynamodbstreams/endpoint-rule-set.json | 728 +++++++++++-------
.../dynamodbstreams/endpoint-tests.json | 436 ++---------
3 files changed, 528 insertions(+), 642 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonDynamoDBStreams-1b55421.json
diff --git a/.changes/next-release/feature-AmazonDynamoDBStreams-1b55421.json b/.changes/next-release/feature-AmazonDynamoDBStreams-1b55421.json
new file mode 100644
index 000000000000..93d8d59ee715
--- /dev/null
+++ b/.changes/next-release/feature-AmazonDynamoDBStreams-1b55421.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Amazon DynamoDB Streams",
+ "contributor": "",
+ "description": "Added support for IPv6 compatible endpoints for DynamoDB Streams."
+}
diff --git a/services/dynamodb/src/main/resources/codegen-resources/dynamodbstreams/endpoint-rule-set.json b/services/dynamodb/src/main/resources/codegen-resources/dynamodbstreams/endpoint-rule-set.json
index 62df4e073a64..014779c88b1e 100644
--- a/services/dynamodb/src/main/resources/codegen-resources/dynamodbstreams/endpoint-rule-set.json
+++ b/services/dynamodb/src/main/resources/codegen-resources/dynamodbstreams/endpoint-rule-set.json
@@ -1,12 +1,6 @@
{
"version": "1.0",
"parameters": {
- "Region": {
- "builtIn": "AWS::Region",
- "required": false,
- "documentation": "The AWS region used to dispatch the request.",
- "type": "String"
- },
"UseDualStack": {
"builtIn": "AWS::UseDualStack",
"required": true,
@@ -26,6 +20,12 @@
"required": false,
"documentation": "Override the endpoint used to send this request",
"type": "String"
+ },
+ "Region": {
+ "builtIn": "AWS::Region",
+ "required": false,
+ "documentation": "The AWS region used to dispatch the request.",
+ "type": "String"
}
},
"rules": [
@@ -57,152 +57,158 @@
"type": "error"
},
{
- "conditions": [
+ "conditions": [],
+ "rules": [
{
- "fn": "booleanEquals",
- "argv": [
+ "conditions": [
{
- "ref": "UseDualStack"
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "ref": "UseDualStack"
+ },
+ true
+ ]
+ }
+ ],
+ "error": "Invalid Configuration: Dualstack and custom endpoint are not supported",
+ "type": "error"
+ },
+ {
+ "conditions": [],
+ "endpoint": {
+ "url": {
+ "ref": "Endpoint"
},
- true
- ]
+ "properties": {},
+ "headers": {}
+ },
+ "type": "endpoint"
}
],
- "error": "Invalid Configuration: Dualstack and custom endpoint are not supported",
- "type": "error"
- },
- {
- "conditions": [],
- "endpoint": {
- "url": {
- "ref": "Endpoint"
- },
- "properties": {},
- "headers": {}
- },
- "type": "endpoint"
+ "type": "tree"
}
],
"type": "tree"
},
{
- "conditions": [
- {
- "fn": "isSet",
- "argv": [
- {
- "ref": "Region"
- }
- ]
- }
- ],
+ "conditions": [],
"rules": [
{
"conditions": [
{
- "fn": "aws.partition",
+ "fn": "isSet",
"argv": [
{
"ref": "Region"
}
- ],
- "assign": "PartitionResult"
+ ]
}
],
"rules": [
{
"conditions": [
{
- "fn": "booleanEquals",
+ "fn": "aws.partition",
"argv": [
{
- "ref": "UseFIPS"
- },
- true
- ]
- },
- {
- "fn": "booleanEquals",
- "argv": [
- {
- "ref": "UseDualStack"
- },
- true
- ]
+ "ref": "Region"
+ }
+ ],
+ "assign": "PartitionResult"
}
],
"rules": [
{
"conditions": [
{
- "fn": "booleanEquals",
+ "fn": "stringEquals",
"argv": [
- true,
{
"fn": "getAttr",
"argv": [
{
"ref": "PartitionResult"
},
- "supportsFIPS"
+ "name"
]
- }
+ },
+ "aws"
+ ]
+ },
+ {
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "ref": "UseFIPS"
+ },
+ false
]
},
{
"fn": "booleanEquals",
"argv": [
- true,
+ {
+ "ref": "UseDualStack"
+ },
+ true
+ ]
+ }
+ ],
+ "endpoint": {
+ "url": "https://streams-dynamodb.{Region}.{PartitionResult#dualStackDnsSuffix}",
+ "properties": {},
+ "headers": {}
+ },
+ "type": "endpoint"
+ },
+ {
+ "conditions": [
+ {
+ "fn": "stringEquals",
+ "argv": [
{
"fn": "getAttr",
"argv": [
{
"ref": "PartitionResult"
},
- "supportsDualStack"
+ "name"
]
- }
+ },
+ "aws"
]
- }
- ],
- "rules": [
+ },
{
- "conditions": [],
- "endpoint": {
- "url": "https://streams.dynamodb-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
- "properties": {},
- "headers": {}
- },
- "type": "endpoint"
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "ref": "UseFIPS"
+ },
+ true
+ ]
+ },
+ {
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "ref": "UseDualStack"
+ },
+ true
+ ]
}
],
- "type": "tree"
+ "endpoint": {
+ "url": "https://streams-dynamodb-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
+ "properties": {},
+ "headers": {}
+ },
+ "type": "endpoint"
},
- {
- "conditions": [],
- "error": "FIPS and DualStack are enabled, but this partition does not support one or both",
- "type": "error"
- }
- ],
- "type": "tree"
- },
- {
- "conditions": [
- {
- "fn": "booleanEquals",
- "argv": [
- {
- "ref": "UseFIPS"
- },
- true
- ]
- }
- ],
- "rules": [
{
"conditions": [
{
- "fn": "booleanEquals",
+ "fn": "stringEquals",
"argv": [
{
"fn": "getAttr",
@@ -210,282 +216,430 @@
{
"ref": "PartitionResult"
},
- "supportsFIPS"
+ "name"
]
},
+ "aws-cn"
+ ]
+ },
+ {
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "ref": "UseFIPS"
+ },
+ false
+ ]
+ },
+ {
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "ref": "UseDualStack"
+ },
true
]
}
],
- "rules": [
+ "endpoint": {
+ "url": "https://streams-dynamodb.{Region}.{PartitionResult#dualStackDnsSuffix}",
+ "properties": {},
+ "headers": {}
+ },
+ "type": "endpoint"
+ },
+ {
+ "conditions": [
{
- "conditions": [
+ "fn": "stringEquals",
+ "argv": [
{
- "fn": "stringEquals",
+ "fn": "getAttr",
"argv": [
{
- "fn": "getAttr",
- "argv": [
- {
- "ref": "PartitionResult"
- },
- "name"
- ]
+ "ref": "PartitionResult"
},
- "aws-us-gov"
+ "name"
]
- }
- ],
- "endpoint": {
- "url": "https://streams.dynamodb.{Region}.amazonaws.com",
- "properties": {},
- "headers": {}
- },
- "type": "endpoint"
+ },
+ "aws-cn"
+ ]
},
{
- "conditions": [],
- "endpoint": {
- "url": "https://streams.dynamodb-fips.{Region}.{PartitionResult#dnsSuffix}",
- "properties": {},
- "headers": {}
- },
- "type": "endpoint"
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "ref": "UseFIPS"
+ },
+ true
+ ]
+ },
+ {
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "ref": "UseDualStack"
+ },
+ true
+ ]
}
],
- "type": "tree"
+ "endpoint": {
+ "url": "https://streams-dynamodb-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
+ "properties": {},
+ "headers": {}
+ },
+ "type": "endpoint"
},
{
- "conditions": [],
- "error": "FIPS is enabled but this partition does not support FIPS",
- "type": "error"
- }
- ],
- "type": "tree"
- },
- {
- "conditions": [
- {
- "fn": "booleanEquals",
- "argv": [
+ "conditions": [
{
- "ref": "UseDualStack"
+ "fn": "stringEquals",
+ "argv": [
+ {
+ "fn": "getAttr",
+ "argv": [
+ {
+ "ref": "PartitionResult"
+ },
+ "name"
+ ]
+ },
+ "aws-us-gov"
+ ]
},
- true
- ]
- }
- ],
- "rules": [
+ {
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "ref": "UseFIPS"
+ },
+ false
+ ]
+ },
+ {
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "ref": "UseDualStack"
+ },
+ true
+ ]
+ }
+ ],
+ "endpoint": {
+ "url": "https://streams-dynamodb.{Region}.{PartitionResult#dualStackDnsSuffix}",
+ "properties": {},
+ "headers": {}
+ },
+ "type": "endpoint"
+ },
{
"conditions": [
{
- "fn": "booleanEquals",
+ "fn": "stringEquals",
"argv": [
- true,
{
"fn": "getAttr",
"argv": [
{
"ref": "PartitionResult"
},
- "supportsDualStack"
+ "name"
]
- }
+ },
+ "aws-us-gov"
]
- }
- ],
- "rules": [
+ },
{
- "conditions": [],
- "endpoint": {
- "url": "https://streams.dynamodb.{Region}.{PartitionResult#dualStackDnsSuffix}",
- "properties": {},
- "headers": {}
- },
- "type": "endpoint"
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "ref": "UseFIPS"
+ },
+ true
+ ]
+ },
+ {
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "ref": "UseDualStack"
+ },
+ true
+ ]
}
],
- "type": "tree"
+ "endpoint": {
+ "url": "https://streams-dynamodb-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
+ "properties": {},
+ "headers": {}
+ },
+ "type": "endpoint"
},
{
- "conditions": [],
- "error": "DualStack is enabled but this partition does not support DualStack",
- "type": "error"
- }
- ],
- "type": "tree"
- },
- {
- "conditions": [
- {
- "fn": "stringEquals",
- "argv": [
+ "conditions": [
{
- "ref": "Region"
+ "fn": "stringEquals",
+ "argv": [
+ {
+ "fn": "getAttr",
+ "argv": [
+ {
+ "ref": "PartitionResult"
+ },
+ "name"
+ ]
+ },
+ "aws-us-gov"
+ ]
},
- "local"
- ]
- }
- ],
- "endpoint": {
- "url": "http://localhost:8000",
- "properties": {
- "authSchemes": [
{
- "name": "sigv4",
- "signingName": "dynamodb",
- "signingRegion": "us-east-1"
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "ref": "UseFIPS"
+ },
+ true
+ ]
+ },
+ {
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "ref": "UseDualStack"
+ },
+ false
+ ]
}
- ]
+ ],
+ "endpoint": {
+ "url": "https://streams.dynamodb.{Region}.{PartitionResult#dnsSuffix}",
+ "properties": {},
+ "headers": {}
+ },
+ "type": "endpoint"
},
- "headers": {}
- },
- "type": "endpoint"
- },
- {
- "conditions": [
{
- "fn": "stringEquals",
- "argv": [
- "aws",
+ "conditions": [
{
- "fn": "getAttr",
+ "fn": "booleanEquals",
"argv": [
{
- "ref": "PartitionResult"
+ "ref": "UseFIPS"
},
- "name"
+ true
]
- }
- ]
- }
- ],
- "endpoint": {
- "url": "https://streams.dynamodb.{Region}.amazonaws.com",
- "properties": {},
- "headers": {}
- },
- "type": "endpoint"
- },
- {
- "conditions": [
- {
- "fn": "stringEquals",
- "argv": [
- "aws-cn",
+ },
{
- "fn": "getAttr",
+ "fn": "booleanEquals",
"argv": [
{
- "ref": "PartitionResult"
+ "ref": "UseDualStack"
},
- "name"
+ true
]
}
- ]
- }
- ],
- "endpoint": {
- "url": "https://streams.dynamodb.{Region}.amazonaws.com.cn",
- "properties": {},
- "headers": {}
- },
- "type": "endpoint"
- },
- {
- "conditions": [
+ ],
+ "rules": [
+ {
+ "conditions": [
+ {
+ "fn": "booleanEquals",
+ "argv": [
+ true,
+ {
+ "fn": "getAttr",
+ "argv": [
+ {
+ "ref": "PartitionResult"
+ },
+ "supportsFIPS"
+ ]
+ }
+ ]
+ },
+ {
+ "fn": "booleanEquals",
+ "argv": [
+ true,
+ {
+ "fn": "getAttr",
+ "argv": [
+ {
+ "ref": "PartitionResult"
+ },
+ "supportsDualStack"
+ ]
+ }
+ ]
+ }
+ ],
+ "rules": [
+ {
+ "conditions": [],
+ "endpoint": {
+ "url": "https://streams.dynamodb-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
+ "properties": {},
+ "headers": {}
+ },
+ "type": "endpoint"
+ }
+ ],
+ "type": "tree"
+ },
+ {
+ "conditions": [],
+ "error": "FIPS and DualStack are enabled, but this partition does not support one or both",
+ "type": "error"
+ }
+ ],
+ "type": "tree"
+ },
{
- "fn": "stringEquals",
- "argv": [
- "aws-us-gov",
+ "conditions": [
{
- "fn": "getAttr",
+ "fn": "booleanEquals",
"argv": [
{
- "ref": "PartitionResult"
+ "ref": "UseFIPS"
},
- "name"
+ true
]
- }
- ]
- }
- ],
- "endpoint": {
- "url": "https://streams.dynamodb.{Region}.amazonaws.com",
- "properties": {},
- "headers": {}
- },
- "type": "endpoint"
- },
- {
- "conditions": [
- {
- "fn": "stringEquals",
- "argv": [
- "aws-iso",
+ },
{
- "fn": "getAttr",
+ "fn": "booleanEquals",
"argv": [
{
- "ref": "PartitionResult"
+ "ref": "UseDualStack"
},
- "name"
+ false
]
}
- ]
- }
- ],
- "endpoint": {
- "url": "https://streams.dynamodb.{Region}.c2s.ic.gov",
- "properties": {},
- "headers": {}
- },
- "type": "endpoint"
- },
- {
- "conditions": [
+ ],
+ "rules": [
+ {
+ "conditions": [
+ {
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "fn": "getAttr",
+ "argv": [
+ {
+ "ref": "PartitionResult"
+ },
+ "supportsFIPS"
+ ]
+ },
+ true
+ ]
+ }
+ ],
+ "rules": [
+ {
+ "conditions": [],
+ "endpoint": {
+ "url": "https://streams.dynamodb-fips.{Region}.{PartitionResult#dnsSuffix}",
+ "properties": {},
+ "headers": {}
+ },
+ "type": "endpoint"
+ }
+ ],
+ "type": "tree"
+ },
+ {
+ "conditions": [],
+ "error": "FIPS is enabled but this partition does not support FIPS",
+ "type": "error"
+ }
+ ],
+ "type": "tree"
+ },
{
- "fn": "stringEquals",
- "argv": [
- "aws-iso-b",
+ "conditions": [
{
- "fn": "getAttr",
+ "fn": "booleanEquals",
"argv": [
{
- "ref": "PartitionResult"
+ "ref": "UseFIPS"
},
- "name"
+ false
+ ]
+ },
+ {
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "ref": "UseDualStack"
+ },
+ true
]
}
- ]
+ ],
+ "rules": [
+ {
+ "conditions": [
+ {
+ "fn": "booleanEquals",
+ "argv": [
+ true,
+ {
+ "fn": "getAttr",
+ "argv": [
+ {
+ "ref": "PartitionResult"
+ },
+ "supportsDualStack"
+ ]
+ }
+ ]
+ }
+ ],
+ "rules": [
+ {
+ "conditions": [],
+ "endpoint": {
+ "url": "https://streams.dynamodb.{Region}.{PartitionResult#dualStackDnsSuffix}",
+ "properties": {},
+ "headers": {}
+ },
+ "type": "endpoint"
+ }
+ ],
+ "type": "tree"
+ },
+ {
+ "conditions": [],
+ "error": "DualStack is enabled but this partition does not support DualStack",
+ "type": "error"
+ }
+ ],
+ "type": "tree"
+ },
+ {
+ "conditions": [],
+ "endpoint": {
+ "url": "https://streams.dynamodb.{Region}.{PartitionResult#dnsSuffix}",
+ "properties": {},
+ "headers": {}
+ },
+ "type": "endpoint"
}
],
- "endpoint": {
- "url": "https://streams.dynamodb.{Region}.sc2s.sgov.gov",
- "properties": {},
- "headers": {}
- },
- "type": "endpoint"
- },
- {
- "conditions": [],
- "endpoint": {
- "url": "https://streams.dynamodb.{Region}.{PartitionResult#dnsSuffix}",
- "properties": {},
- "headers": {}
- },
- "type": "endpoint"
+ "type": "tree"
}
],
"type": "tree"
+ },
+ {
+ "conditions": [],
+ "error": "Invalid Configuration: Missing Region",
+ "type": "error"
}
],
"type": "tree"
- },
- {
- "conditions": [],
- "error": "Invalid Configuration: Missing Region",
- "type": "error"
}
]
}
\ No newline at end of file
diff --git a/services/dynamodb/src/main/resources/codegen-resources/dynamodbstreams/endpoint-tests.json b/services/dynamodb/src/main/resources/codegen-resources/dynamodbstreams/endpoint-tests.json
index 736b34277519..0f8ba10a35ae 100644
--- a/services/dynamodb/src/main/resources/codegen-resources/dynamodbstreams/endpoint-tests.json
+++ b/services/dynamodb/src/main/resources/codegen-resources/dynamodbstreams/endpoint-tests.json
@@ -1,259 +1,75 @@
{
"testCases": [
{
- "documentation": "For region af-south-1 with FIPS disabled and DualStack disabled",
+ "documentation": "For custom endpoint with region not set and fips disabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb.af-south-1.amazonaws.com"
- }
- },
- "params": {
- "Region": "af-south-1",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region ap-east-1 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.ap-east-1.amazonaws.com"
- }
- },
- "params": {
- "Region": "ap-east-1",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region ap-northeast-1 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.ap-northeast-1.amazonaws.com"
- }
- },
- "params": {
- "Region": "ap-northeast-1",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region ap-northeast-2 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.ap-northeast-2.amazonaws.com"
- }
- },
- "params": {
- "Region": "ap-northeast-2",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region ap-northeast-3 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.ap-northeast-3.amazonaws.com"
- }
- },
- "params": {
- "Region": "ap-northeast-3",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region ap-south-1 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.ap-south-1.amazonaws.com"
- }
- },
- "params": {
- "Region": "ap-south-1",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region ap-southeast-1 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.ap-southeast-1.amazonaws.com"
- }
- },
- "params": {
- "Region": "ap-southeast-1",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region ap-southeast-2 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.ap-southeast-2.amazonaws.com"
- }
- },
- "params": {
- "Region": "ap-southeast-2",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region ap-southeast-3 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.ap-southeast-3.amazonaws.com"
- }
- },
- "params": {
- "Region": "ap-southeast-3",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region ca-central-1 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.ca-central-1.amazonaws.com"
- }
- },
- "params": {
- "Region": "ca-central-1",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region eu-central-1 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.eu-central-1.amazonaws.com"
- }
- },
- "params": {
- "Region": "eu-central-1",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region eu-north-1 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.eu-north-1.amazonaws.com"
- }
- },
- "params": {
- "Region": "eu-north-1",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region eu-south-1 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.eu-south-1.amazonaws.com"
- }
- },
- "params": {
- "Region": "eu-south-1",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region eu-west-1 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.eu-west-1.amazonaws.com"
+ "url": "https://example.com"
}
},
"params": {
- "Region": "eu-west-1",
- "UseFIPS": false,
- "UseDualStack": false
+ "Endpoint": "https://example.com",
+ "UseFIPS": false
}
},
{
- "documentation": "For region eu-west-2 with FIPS disabled and DualStack disabled",
+ "documentation": "For custom endpoint with fips enabled",
"expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.eu-west-2.amazonaws.com"
- }
+ "error": "Invalid Configuration: FIPS and custom endpoint are not supported"
},
"params": {
- "Region": "eu-west-2",
- "UseFIPS": false,
- "UseDualStack": false
+ "Endpoint": "https://example.com",
+ "UseFIPS": true
}
},
{
- "documentation": "For region eu-west-3 with FIPS disabled and DualStack disabled",
+ "documentation": "For custom endpoint with fips disabled and dualstack enabled",
"expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.eu-west-3.amazonaws.com"
- }
+ "error": "Invalid Configuration: Dualstack and custom endpoint are not supported"
},
"params": {
- "Region": "eu-west-3",
+ "Endpoint": "https://example.com",
"UseFIPS": false,
- "UseDualStack": false
+ "UseDualStack": true
}
},
{
- "documentation": "For region local with FIPS disabled and DualStack disabled",
+ "documentation": "For region us-east-1 with FIPS enabled and DualStack enabled",
"expect": {
"endpoint": {
- "properties": {
- "authSchemes": [
- {
- "name": "sigv4",
- "signingName": "dynamodb",
- "signingRegion": "us-east-1"
- }
- ]
- },
- "url": "http://localhost:8000"
+ "url": "https://streams-dynamodb-fips.us-east-1.api.aws"
}
},
"params": {
- "Region": "local",
- "UseFIPS": false,
- "UseDualStack": false
+ "Region": "us-east-1",
+ "UseFIPS": true,
+ "UseDualStack": true
}
},
{
- "documentation": "For region me-south-1 with FIPS disabled and DualStack disabled",
+ "documentation": "For region us-east-1 with FIPS enabled and DualStack disabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb.me-south-1.amazonaws.com"
+ "url": "https://streams.dynamodb-fips.us-east-1.amazonaws.com"
}
},
"params": {
- "Region": "me-south-1",
- "UseFIPS": false,
+ "Region": "us-east-1",
+ "UseFIPS": true,
"UseDualStack": false
}
},
{
- "documentation": "For region sa-east-1 with FIPS disabled and DualStack disabled",
+ "documentation": "For region us-east-1 with FIPS disabled and DualStack enabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb.sa-east-1.amazonaws.com"
+ "url": "https://streams-dynamodb.us-east-1.api.aws"
}
},
"params": {
- "Region": "sa-east-1",
+ "Region": "us-east-1",
"UseFIPS": false,
- "UseDualStack": false
+ "UseDualStack": true
}
},
{
@@ -270,96 +86,44 @@
}
},
{
- "documentation": "For region us-east-2 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.us-east-2.amazonaws.com"
- }
- },
- "params": {
- "Region": "us-east-2",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region us-west-1 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.us-west-1.amazonaws.com"
- }
- },
- "params": {
- "Region": "us-west-1",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region us-west-2 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.us-west-2.amazonaws.com"
- }
- },
- "params": {
- "Region": "us-west-2",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region us-east-1 with FIPS enabled and DualStack enabled",
+ "documentation": "For region cn-northwest-1 with FIPS enabled and DualStack enabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb-fips.us-east-1.api.aws"
+ "url": "https://streams-dynamodb-fips.cn-northwest-1.api.amazonwebservices.com.cn"
}
},
"params": {
- "Region": "us-east-1",
+ "Region": "cn-northwest-1",
"UseFIPS": true,
"UseDualStack": true
}
},
{
- "documentation": "For region us-east-1 with FIPS enabled and DualStack disabled",
+ "documentation": "For region cn-northwest-1 with FIPS enabled and DualStack disabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb-fips.us-east-1.amazonaws.com"
+ "url": "https://streams.dynamodb-fips.cn-northwest-1.amazonaws.com.cn"
}
},
"params": {
- "Region": "us-east-1",
+ "Region": "cn-northwest-1",
"UseFIPS": true,
"UseDualStack": false
}
},
{
- "documentation": "For region us-east-1 with FIPS disabled and DualStack enabled",
+ "documentation": "For region cn-northwest-1 with FIPS disabled and DualStack enabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb.us-east-1.api.aws"
+ "url": "https://streams-dynamodb.cn-northwest-1.api.amazonwebservices.com.cn"
}
},
"params": {
- "Region": "us-east-1",
+ "Region": "cn-northwest-1",
"UseFIPS": false,
"UseDualStack": true
}
},
- {
- "documentation": "For region cn-north-1 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.cn-north-1.amazonaws.com.cn"
- }
- },
- "params": {
- "Region": "cn-north-1",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
{
"documentation": "For region cn-northwest-1 with FIPS disabled and DualStack disabled",
"expect": {
@@ -374,223 +138,185 @@
}
},
{
- "documentation": "For region cn-north-1 with FIPS enabled and DualStack enabled",
+ "documentation": "For region us-gov-west-1 with FIPS enabled and DualStack enabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb-fips.cn-north-1.api.amazonwebservices.com.cn"
+ "url": "https://streams-dynamodb-fips.us-gov-west-1.api.aws"
}
},
"params": {
- "Region": "cn-north-1",
+ "Region": "us-gov-west-1",
"UseFIPS": true,
"UseDualStack": true
}
},
{
- "documentation": "For region cn-north-1 with FIPS enabled and DualStack disabled",
+ "documentation": "For region us-gov-west-1 with FIPS enabled and DualStack disabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb-fips.cn-north-1.amazonaws.com.cn"
+ "url": "https://streams.dynamodb.us-gov-west-1.amazonaws.com"
}
},
"params": {
- "Region": "cn-north-1",
+ "Region": "us-gov-west-1",
"UseFIPS": true,
"UseDualStack": false
}
},
{
- "documentation": "For region cn-north-1 with FIPS disabled and DualStack enabled",
+ "documentation": "For region us-gov-west-1 with FIPS disabled and DualStack enabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb.cn-north-1.api.amazonwebservices.com.cn"
+ "url": "https://streams-dynamodb.us-gov-west-1.api.aws"
}
},
"params": {
- "Region": "cn-north-1",
+ "Region": "us-gov-west-1",
"UseFIPS": false,
"UseDualStack": true
}
},
{
- "documentation": "For region us-gov-east-1 with FIPS disabled and DualStack disabled",
+ "documentation": "For region us-gov-west-1 with FIPS disabled and DualStack disabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb.us-gov-east-1.amazonaws.com"
+ "url": "https://streams.dynamodb.us-gov-west-1.amazonaws.com"
}
},
"params": {
- "Region": "us-gov-east-1",
+ "Region": "us-gov-west-1",
"UseFIPS": false,
"UseDualStack": false
}
},
{
- "documentation": "For region us-gov-east-1 with FIPS enabled and DualStack disabled",
+ "documentation": "For region us-iso-east-1 with FIPS enabled and DualStack disabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb.us-gov-east-1.amazonaws.com"
+ "url": "https://streams.dynamodb-fips.us-iso-east-1.c2s.ic.gov"
}
},
"params": {
- "Region": "us-gov-east-1",
+ "Region": "us-iso-east-1",
"UseFIPS": true,
"UseDualStack": false
}
},
{
- "documentation": "For region us-gov-west-1 with FIPS disabled and DualStack disabled",
+ "documentation": "For region us-iso-east-1 with FIPS disabled and DualStack disabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb.us-gov-west-1.amazonaws.com"
+ "url": "https://streams.dynamodb.us-iso-east-1.c2s.ic.gov"
}
},
"params": {
- "Region": "us-gov-west-1",
+ "Region": "us-iso-east-1",
"UseFIPS": false,
"UseDualStack": false
}
},
{
- "documentation": "For region us-gov-west-1 with FIPS enabled and DualStack disabled",
+ "documentation": "For region us-isob-east-1 with FIPS enabled and DualStack disabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb.us-gov-west-1.amazonaws.com"
+ "url": "https://streams.dynamodb-fips.us-isob-east-1.sc2s.sgov.gov"
}
},
"params": {
- "Region": "us-gov-west-1",
+ "Region": "us-isob-east-1",
"UseFIPS": true,
"UseDualStack": false
}
},
{
- "documentation": "For region us-gov-east-1 with FIPS enabled and DualStack enabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb-fips.us-gov-east-1.api.aws"
- }
- },
- "params": {
- "Region": "us-gov-east-1",
- "UseFIPS": true,
- "UseDualStack": true
- }
- },
- {
- "documentation": "For region us-gov-east-1 with FIPS disabled and DualStack enabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.us-gov-east-1.api.aws"
- }
- },
- "params": {
- "Region": "us-gov-east-1",
- "UseFIPS": false,
- "UseDualStack": true
- }
- },
- {
- "documentation": "For region us-iso-east-1 with FIPS disabled and DualStack disabled",
+ "documentation": "For region us-isob-east-1 with FIPS disabled and DualStack disabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb.us-iso-east-1.c2s.ic.gov"
+ "url": "https://streams.dynamodb.us-isob-east-1.sc2s.sgov.gov"
}
},
"params": {
- "Region": "us-iso-east-1",
+ "Region": "us-isob-east-1",
"UseFIPS": false,
"UseDualStack": false
}
},
{
- "documentation": "For region us-iso-east-1 with FIPS enabled and DualStack disabled",
+ "documentation": "For region eu-isoe-west-1 with FIPS enabled and DualStack disabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb-fips.us-iso-east-1.c2s.ic.gov"
+ "url": "https://streams.dynamodb-fips.eu-isoe-west-1.cloud.adc-e.uk"
}
},
"params": {
- "Region": "us-iso-east-1",
+ "Region": "eu-isoe-west-1",
"UseFIPS": true,
"UseDualStack": false
}
},
{
- "documentation": "For region us-isob-east-1 with FIPS disabled and DualStack disabled",
+ "documentation": "For region eu-isoe-west-1 with FIPS disabled and DualStack disabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb.us-isob-east-1.sc2s.sgov.gov"
+ "url": "https://streams.dynamodb.eu-isoe-west-1.cloud.adc-e.uk"
}
},
"params": {
- "Region": "us-isob-east-1",
+ "Region": "eu-isoe-west-1",
"UseFIPS": false,
"UseDualStack": false
}
},
{
- "documentation": "For region us-isob-east-1 with FIPS enabled and DualStack disabled",
+ "documentation": "For region us-isof-south-1 with FIPS enabled and DualStack disabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb-fips.us-isob-east-1.sc2s.sgov.gov"
+ "url": "https://streams.dynamodb-fips.us-isof-south-1.csp.hci.ic.gov"
}
},
"params": {
- "Region": "us-isob-east-1",
+ "Region": "us-isof-south-1",
"UseFIPS": true,
"UseDualStack": false
}
},
{
- "documentation": "For custom endpoint with region set and fips disabled and dualstack disabled",
+ "documentation": "For region us-isof-south-1 with FIPS disabled and DualStack disabled",
"expect": {
"endpoint": {
- "url": "https://example.com"
+ "url": "https://streams.dynamodb.us-isof-south-1.csp.hci.ic.gov"
}
},
"params": {
- "Region": "us-east-1",
+ "Region": "us-isof-south-1",
"UseFIPS": false,
- "UseDualStack": false,
- "Endpoint": "https://example.com"
+ "UseDualStack": false
}
},
{
- "documentation": "For custom endpoint with region not set and fips disabled and dualstack disabled",
+ "documentation": "For region eusc-de-east-1 with FIPS enabled and DualStack disabled",
"expect": {
"endpoint": {
- "url": "https://example.com"
+ "url": "https://streams.dynamodb-fips.eusc-de-east-1.amazonaws.eu"
}
},
"params": {
- "UseFIPS": false,
- "UseDualStack": false,
- "Endpoint": "https://example.com"
- }
- },
- {
- "documentation": "For custom endpoint with fips enabled and dualstack disabled",
- "expect": {
- "error": "Invalid Configuration: FIPS and custom endpoint are not supported"
- },
- "params": {
- "Region": "us-east-1",
+ "Region": "eusc-de-east-1",
"UseFIPS": true,
- "UseDualStack": false,
- "Endpoint": "https://example.com"
+ "UseDualStack": false
}
},
{
- "documentation": "For custom endpoint with fips disabled and dualstack enabled",
+ "documentation": "For region eusc-de-east-1 with FIPS disabled and DualStack disabled",
"expect": {
- "error": "Invalid Configuration: Dualstack and custom endpoint are not supported"
+ "endpoint": {
+ "url": "https://streams.dynamodb.eusc-de-east-1.amazonaws.eu"
+ }
},
"params": {
- "Region": "us-east-1",
+ "Region": "eusc-de-east-1",
"UseFIPS": false,
- "UseDualStack": true,
- "Endpoint": "https://example.com"
+ "UseDualStack": false
}
},
{
From da8f842e1ae08ea972e3d4088455ecaa9cbe6d21 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 26 Sep 2025 18:55:40 +0000
Subject: [PATCH 106/121] AWS Billing Update: Add ability to combine custom
billing views to create new consolidated views.
---
.../feature-AWSBilling-57fa3f6.json | 6 +
.../codegen-resources/service-2.json | 228 +++++++++++++++++-
2 files changed, 227 insertions(+), 7 deletions(-)
create mode 100644 .changes/next-release/feature-AWSBilling-57fa3f6.json
diff --git a/.changes/next-release/feature-AWSBilling-57fa3f6.json b/.changes/next-release/feature-AWSBilling-57fa3f6.json
new file mode 100644
index 000000000000..9580ab7e04af
--- /dev/null
+++ b/.changes/next-release/feature-AWSBilling-57fa3f6.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "AWS Billing",
+ "contributor": "",
+ "description": "Add ability to combine custom billing views to create new consolidated views."
+}
diff --git a/services/billing/src/main/resources/codegen-resources/service-2.json b/services/billing/src/main/resources/codegen-resources/service-2.json
index 96dc616bb655..3b6d27447b25 100644
--- a/services/billing/src/main/resources/codegen-resources/service-2.json
+++ b/services/billing/src/main/resources/codegen-resources/service-2.json
@@ -15,6 +15,27 @@
"uid":"billing-2023-09-07"
},
"operations":{
+ "AssociateSourceViews":{
+ "name":"AssociateSourceViews",
+ "http":{
+ "method":"POST",
+ "requestUri":"/"
+ },
+ "input":{"shape":"AssociateSourceViewsRequest"},
+ "output":{"shape":"AssociateSourceViewsResponse"},
+ "errors":[
+ {"shape":"BillingViewHealthStatusException"},
+ {"shape":"ServiceQuotaExceededException"},
+ {"shape":"ThrottlingException"},
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"AccessDeniedException"},
+ {"shape":"ConflictException"},
+ {"shape":"ValidationException"},
+ {"shape":"InternalServerException"}
+ ],
+ "documentation":" Associates one or more source billing views with an existing billing view. This allows creating aggregate billing views that combine data from multiple sources.
",
+ "idempotent":true
+ },
"CreateBillingView":{
"name":"CreateBillingView",
"http":{
@@ -24,8 +45,10 @@
"input":{"shape":"CreateBillingViewRequest"},
"output":{"shape":"CreateBillingViewResponse"},
"errors":[
+ {"shape":"BillingViewHealthStatusException"},
{"shape":"ServiceQuotaExceededException"},
{"shape":"ThrottlingException"},
+ {"shape":"ResourceNotFoundException"},
{"shape":"AccessDeniedException"},
{"shape":"ConflictException"},
{"shape":"ValidationException"},
@@ -52,6 +75,26 @@
"documentation":"Deletes the specified billing view.
",
"idempotent":true
},
+ "DisassociateSourceViews":{
+ "name":"DisassociateSourceViews",
+ "http":{
+ "method":"POST",
+ "requestUri":"/"
+ },
+ "input":{"shape":"DisassociateSourceViewsRequest"},
+ "output":{"shape":"DisassociateSourceViewsResponse"},
+ "errors":[
+ {"shape":"BillingViewHealthStatusException"},
+ {"shape":"ThrottlingException"},
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"AccessDeniedException"},
+ {"shape":"ConflictException"},
+ {"shape":"ValidationException"},
+ {"shape":"InternalServerException"}
+ ],
+ "documentation":" Removes the association between one or more source billing views and an existing billing view. This allows modifying the composition of aggregate billing views.
",
+ "idempotent":true
+ },
"GetBillingView":{
"name":"GetBillingView",
"http":{
@@ -67,7 +110,8 @@
{"shape":"ValidationException"},
{"shape":"InternalServerException"}
],
- "documentation":"Returns the metadata associated to the specified billing view ARN.
"
+ "documentation":"Returns the metadata associated to the specified billing view ARN.
",
+ "readonly":true
},
"GetResourcePolicy":{
"name":"GetResourcePolicy",
@@ -84,7 +128,8 @@
{"shape":"ValidationException"},
{"shape":"InternalServerException"}
],
- "documentation":"Returns the resource-based policy document attached to the resource in JSON format.
"
+ "documentation":"Returns the resource-based policy document attached to the resource in JSON format.
",
+ "readonly":true
},
"ListBillingViews":{
"name":"ListBillingViews",
@@ -100,7 +145,8 @@
{"shape":"ValidationException"},
{"shape":"InternalServerException"}
],
- "documentation":"Lists the billing views available for a given time period.
Every Amazon Web Services account has a unique PRIMARY billing view that represents the billing data available by default. Accounts that use Billing Conductor also have BILLING_GROUP billing views representing pro forma costs associated with each created billing group.
"
+ "documentation":"Lists the billing views available for a given time period.
Every Amazon Web Services account has a unique PRIMARY billing view that represents the billing data available by default. Accounts that use Billing Conductor also have BILLING_GROUP billing views representing pro forma costs associated with each created billing group.
",
+ "readonly":true
},
"ListSourceViewsForBillingView":{
"name":"ListSourceViewsForBillingView",
@@ -117,7 +163,8 @@
{"shape":"ValidationException"},
{"shape":"InternalServerException"}
],
- "documentation":"Lists the source views (managed Amazon Web Services billing views) associated with the billing view.
"
+ "documentation":"Lists the source views (managed Amazon Web Services billing views) associated with the billing view.
",
+ "readonly":true
},
"ListTagsForResource":{
"name":"ListTagsForResource",
@@ -134,7 +181,8 @@
{"shape":"ValidationException"},
{"shape":"InternalServerException"}
],
- "documentation":"Lists tags associated with the billing view resource.
"
+ "documentation":"Lists tags associated with the billing view resource.
",
+ "readonly":true
},
"TagResource":{
"name":"TagResource",
@@ -179,6 +227,7 @@
"input":{"shape":"UpdateBillingViewRequest"},
"output":{"shape":"UpdateBillingViewResponse"},
"errors":[
+ {"shape":"BillingViewHealthStatusException"},
{"shape":"ServiceQuotaExceededException"},
{"shape":"ThrottlingException"},
{"shape":"ResourceNotFoundException"},
@@ -223,9 +272,36 @@
},
"documentation":"A time range with a start and end time.
"
},
+ "AssociateSourceViewsRequest":{
+ "type":"structure",
+ "required":[
+ "arn",
+ "sourceViews"
+ ],
+ "members":{
+ "arn":{
+ "shape":"BillingViewArn",
+ "documentation":" The Amazon Resource Name (ARN) of the billing view to associate source views with.
"
+ },
+ "sourceViews":{
+ "shape":"BillingViewSourceViewsList",
+ "documentation":" A list of ARNs of the source billing views to associate.
"
+ }
+ }
+ },
+ "AssociateSourceViewsResponse":{
+ "type":"structure",
+ "required":["arn"],
+ "members":{
+ "arn":{
+ "shape":"BillingViewArn",
+ "documentation":" The ARN of the billing view that the source views were associated with.
"
+ }
+ }
+ },
"BillingViewArn":{
"type":"string",
- "pattern":"arn:aws[a-z-]*:(billing)::[0-9]{12}:billingview/[a-zA-Z0-9/:_\\+=\\.\\-@]{0,59}[a-zA-Z0-9]"
+ "pattern":"arn:aws[a-z-]*:(billing)::[0-9]{12}:billingview/[a-zA-Z0-9/:_\\+=\\.\\-@]{0,75}[a-zA-Z0-9]"
},
"BillingViewArnList":{
"type":"list",
@@ -263,6 +339,10 @@
"shape":"AccountId",
"documentation":"The account owner of the billing view.
"
},
+ "sourceAccountId":{
+ "shape":"AccountId",
+ "documentation":" The Amazon Web Services account ID that owns the source billing view, if this is a derived billing view.
"
+ },
"dataFilterExpression":{
"shape":"Expression",
"documentation":" See Expression. Billing view only supports LINKED_ACCOUNT and Tags.
"
@@ -274,10 +354,49 @@
"updatedAt":{
"shape":"Timestamp",
"documentation":"The time when the billing view was last updated.
"
+ },
+ "derivedViewCount":{
+ "shape":"Integer",
+ "documentation":" The number of billing views that use this billing view as a source.
"
+ },
+ "sourceViewCount":{
+ "shape":"Integer",
+ "documentation":" The number of source views associated with this billing view.
"
+ },
+ "viewDefinitionLastUpdatedAt":{
+ "shape":"Timestamp",
+ "documentation":" The timestamp of when the billing view definition was last updated.
"
+ },
+ "healthStatus":{
+ "shape":"BillingViewHealthStatus",
+ "documentation":" The current health status of the billing view.
"
}
},
"documentation":"The metadata associated to the billing view.
"
},
+ "BillingViewHealthStatus":{
+ "type":"structure",
+ "members":{
+ "statusCode":{
+ "shape":"BillingViewStatus",
+ "documentation":"The current health status code of the billing view.
"
+ },
+ "statusReasons":{
+ "shape":"BillingViewStatusReasons",
+ "documentation":"A list of reasons explaining the current health status, if applicable.
"
+ }
+ },
+ "documentation":" Represents the health status of a billing view, including a status code and optional reasons for the status.
"
+ },
+ "BillingViewHealthStatusException":{
+ "type":"structure",
+ "required":["message"],
+ "members":{
+ "message":{"shape":"ErrorMessage"}
+ },
+ "documentation":" Exception thrown when a billing view's health status prevents an operation from being performed. This may occur if the billing view is in a state other than HEALTHY.
",
+ "exception":true
+ },
"BillingViewList":{
"type":"list",
"member":{"shape":"BillingViewListElement"}
@@ -301,9 +420,17 @@
"shape":"AccountId",
"documentation":" The list of owners of the Billing view.
"
},
+ "sourceAccountId":{
+ "shape":"AccountId",
+ "documentation":" The Amazon Web Services account ID that owns the source billing view, if this is a derived billing view.
"
+ },
"billingViewType":{
"shape":"BillingViewType",
"documentation":"The type of billing view.
"
+ },
+ "healthStatus":{
+ "shape":"BillingViewHealthStatus",
+ "documentation":" The current health status of the billing view.
"
}
},
"documentation":"A representation of a billing view.
"
@@ -318,9 +445,35 @@
"BillingViewSourceViewsList":{
"type":"list",
"member":{"shape":"BillingViewArn"},
- "max":1,
+ "max":10,
"min":1
},
+ "BillingViewStatus":{
+ "type":"string",
+ "enum":[
+ "HEALTHY",
+ "UNHEALTHY",
+ "CREATING",
+ "UPDATING"
+ ]
+ },
+ "BillingViewStatusReason":{
+ "type":"string",
+ "enum":[
+ "SOURCE_VIEW_UNHEALTHY",
+ "SOURCE_VIEW_UPDATING",
+ "SOURCE_VIEW_ACCESS_DENIED",
+ "SOURCE_VIEW_NOT_FOUND",
+ "CYCLIC_DEPENDENCY",
+ "SOURCE_VIEW_DEPTH_EXCEEDED",
+ "AGGREGATE_SOURCE",
+ "VIEW_OWNER_NOT_MANAGEMENT_ACCOUNT"
+ ]
+ },
+ "BillingViewStatusReasons":{
+ "type":"list",
+ "member":{"shape":"BillingViewStatusReason"}
+ },
"BillingViewType":{
"type":"string",
"enum":[
@@ -339,6 +492,10 @@
"max":100,
"min":1
},
+ "Boolean":{
+ "type":"boolean",
+ "box":true
+ },
"ClientToken":{
"type":"string",
"pattern":"[a-zA-Z0-9-]+"
@@ -419,6 +576,10 @@
"arn":{
"shape":"BillingViewArn",
"documentation":" The Amazon Resource Name (ARN) that can be used to uniquely identify the billing view.
"
+ },
+ "force":{
+ "shape":"Boolean",
+ "documentation":" If set to true, forces deletion of the billing view even if it has derived resources (e.g. other billing views or budgets). Use with caution as this may break dependent resources.
"
}
}
},
@@ -454,6 +615,33 @@
},
"documentation":" The metadata that you can use to filter and group your results.
"
},
+ "DisassociateSourceViewsRequest":{
+ "type":"structure",
+ "required":[
+ "arn",
+ "sourceViews"
+ ],
+ "members":{
+ "arn":{
+ "shape":"BillingViewArn",
+ "documentation":" The Amazon Resource Name (ARN) of the billing view to disassociate source views from.
"
+ },
+ "sourceViews":{
+ "shape":"BillingViewSourceViewsList",
+ "documentation":" A list of ARNs of the source billing views to disassociate.
"
+ }
+ }
+ },
+ "DisassociateSourceViewsResponse":{
+ "type":"structure",
+ "required":["arn"],
+ "members":{
+ "arn":{
+ "shape":"BillingViewArn",
+ "documentation":" The ARN of the billing view that the source views were disassociated from.
"
+ }
+ }
+ },
"ErrorMessage":{
"type":"string",
"max":1024,
@@ -469,6 +657,10 @@
"tags":{
"shape":"TagValues",
"documentation":" The specific Tag to use for Expression.
"
+ },
+ "timeRange":{
+ "shape":"TimeRange",
+ "documentation":" Specifies a time range filter for the billing view data.
"
}
},
"documentation":" See Expression. Billing view only supports LINKED_ACCOUNT and Tags.
"
@@ -522,6 +714,10 @@
}
}
},
+ "Integer":{
+ "type":"integer",
+ "box":true
+ },
"InternalServerException":{
"type":"structure",
"required":["message"],
@@ -551,6 +747,10 @@
"shape":"AccountId",
"documentation":" The list of owners of the billing view.
"
},
+ "sourceAccountId":{
+ "shape":"AccountId",
+ "documentation":" Filters the results to include only billing views that use the specified account as a source.
"
+ },
"maxResults":{
"shape":"BillingViewsMaxResults",
"documentation":"The maximum number of billing views to retrieve. Default is 100.
"
@@ -799,6 +999,20 @@
"documentation":"The request was denied due to request throttling.
",
"exception":true
},
+ "TimeRange":{
+ "type":"structure",
+ "members":{
+ "beginDateInclusive":{
+ "shape":"Timestamp",
+ "documentation":" The inclusive start date of the time range.
"
+ },
+ "endDateInclusive":{
+ "shape":"Timestamp",
+ "documentation":" The inclusive end date of the time range.
"
+ }
+ },
+ "documentation":" Specifies a time range with inclusive begin and end dates.
"
+ },
"Timestamp":{"type":"timestamp"},
"UntagResourceRequest":{
"type":"structure",
From e3dd1887fc78f264c48a604b50fea7ebb350bdfe Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 26 Sep 2025 18:55:38 +0000
Subject: [PATCH 107/121] Amazon Redshift Update: Support tagging and tag
propagation to IAM Identity Center for Redshift Idc Applications
---
.../feature-AmazonRedshift-a258150.json | 6 ++++++
.../codegen-resources/service-2.json | 20 ++++++++++++++++++-
2 files changed, 25 insertions(+), 1 deletion(-)
create mode 100644 .changes/next-release/feature-AmazonRedshift-a258150.json
diff --git a/.changes/next-release/feature-AmazonRedshift-a258150.json b/.changes/next-release/feature-AmazonRedshift-a258150.json
new file mode 100644
index 000000000000..6429d0d7235f
--- /dev/null
+++ b/.changes/next-release/feature-AmazonRedshift-a258150.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Amazon Redshift",
+ "contributor": "",
+ "description": "Support tagging and tag propagation to IAM Identity Center for Redshift Idc Applications"
+}
diff --git a/services/redshift/src/main/resources/codegen-resources/service-2.json b/services/redshift/src/main/resources/codegen-resources/service-2.json
index 52a20f2572bb..345bf9db2b22 100644
--- a/services/redshift/src/main/resources/codegen-resources/service-2.json
+++ b/services/redshift/src/main/resources/codegen-resources/service-2.json
@@ -510,7 +510,9 @@
{"shape":"DependentServiceUnavailableFault"},
{"shape":"UnsupportedOperationFault"},
{"shape":"DependentServiceAccessDeniedFault"},
- {"shape":"RedshiftIdcApplicationQuotaExceededFault"}
+ {"shape":"RedshiftIdcApplicationQuotaExceededFault"},
+ {"shape":"TagLimitExceededFault"},
+ {"shape":"InvalidTagFault"}
],
"documentation":"Creates an Amazon Redshift application for use with IAM Identity Center.
"
},
@@ -4717,6 +4719,14 @@
"ServiceIntegrations":{
"shape":"ServiceIntegrationList",
"documentation":"A collection of service integrations for the Redshift IAM Identity Center application.
"
+ },
+ "Tags":{
+ "shape":"TagList",
+ "documentation":"A list of tags.
"
+ },
+ "SsoTagKeys":{
+ "shape":"TagKeyList",
+ "documentation":"A list of tags keys that Redshift Identity Center applications copy to IAM Identity Center. For each input key, the tag corresponding to the key-value pair is propagated.
"
}
}
},
@@ -9643,6 +9653,14 @@
"ServiceIntegrations":{
"shape":"ServiceIntegrationList",
"documentation":"A list of service integrations for the Redshift IAM Identity Center application.
"
+ },
+ "Tags":{
+ "shape":"TagList",
+ "documentation":"A list of tags.
"
+ },
+ "SsoTagKeys":{
+ "shape":"TagKeyList",
+ "documentation":"A list of tags keys that Redshift Identity Center applications copy to IAM Identity Center. For each input key, the tag corresponding to the key-value pair is propagated.
"
}
},
"documentation":"Contains properties for the Redshift IDC application.
",
From 79e74c2e0a301f0a411822b85e2730fac54a84c6 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 26 Sep 2025 18:55:41 +0000
Subject: [PATCH 108/121] Amazon Elastic Compute Cloud Update: This release
includes documentation updates for Amazon EBS General Purpose SSD (gp3)
volumes with larger size and higher IOPS and throughput.
---
...ure-AmazonElasticComputeCloud-ed60238.json | 6 +++
.../codegen-resources/service-2.json | 38 +++++++++----------
2 files changed, 25 insertions(+), 19 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-ed60238.json
diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-ed60238.json b/.changes/next-release/feature-AmazonElasticComputeCloud-ed60238.json
new file mode 100644
index 000000000000..29eea4454a4d
--- /dev/null
+++ b/.changes/next-release/feature-AmazonElasticComputeCloud-ed60238.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Amazon Elastic Compute Cloud",
+ "contributor": "",
+ "description": "This release includes documentation updates for Amazon EBS General Purpose SSD (gp3) volumes with larger size and higher IOPS and throughput."
+}
diff --git a/services/ec2/src/main/resources/codegen-resources/service-2.json b/services/ec2/src/main/resources/codegen-resources/service-2.json
index d30e6c8b05b5..5b551cb77c3a 100644
--- a/services/ec2/src/main/resources/codegen-resources/service-2.json
+++ b/services/ec2/src/main/resources/codegen-resources/service-2.json
@@ -18306,7 +18306,7 @@
},
"Iops":{
"shape":"Integer",
- "documentation":"The number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.
The following are the supported values for each volume type:
-
gp3: 3,000 - 16,000 IOPS
-
io1: 100 - 64,000 IOPS
-
io2: 100 - 256,000 IOPS
For io2 volumes, you can achieve up to 256,000 IOPS on instances built on the Nitro System. On other instances, you can achieve performance up to 32,000 IOPS.
This parameter is required for io1 and io2 volumes. The default for gp3 volumes is 3,000 IOPS. This parameter is not supported for gp2, st1, sc1, or standard volumes.
"
+ "documentation":"The number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.
The following are the supported values for each volume type:
-
gp3: 3,000 - 80,000 IOPS
-
io1: 100 - 64,000 IOPS
-
io2: 100 - 256,000 IOPS
For io2 volumes, you can achieve up to 256,000 IOPS on instances built on the Nitro System. On other instances, you can achieve performance up to 32,000 IOPS.
This parameter is required for io1 and io2 volumes. The default for gp3 volumes is 3,000 IOPS. This parameter is not supported for gp2, st1, sc1, or standard volumes.
"
},
"KmsKeyId":{
"shape":"KmsKeyId",
@@ -18318,7 +18318,7 @@
},
"Size":{
"shape":"Integer",
- "documentation":"The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. If you specify a snapshot, the default is the snapshot size. You can specify a volume size that is equal to or larger than the snapshot size.
The following are the supported volumes sizes for each volume type:
-
gp2 and gp3: 1 - 16,384 GiB
-
io1: 4 - 16,384 GiB
-
io2: 4 - 65,536 GiB
-
st1 and sc1: 125 - 16,384 GiB
-
standard: 1 - 1024 GiB
"
+ "documentation":"The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. If you specify a snapshot, the default is the snapshot size. You can specify a volume size that is equal to or larger than the snapshot size.
The following are the supported volumes sizes for each volume type:
"
},
"SnapshotId":{
"shape":"SnapshotId",
@@ -18339,7 +18339,7 @@
},
"Throughput":{
"shape":"Integer",
- "documentation":"The throughput to provision for a volume, with a maximum of 1,000 MiB/s.
This parameter is valid only for gp3 volumes.
Valid Range: Minimum value of 125. Maximum value of 1000.
"
+ "documentation":"The throughput to provision for a volume, with a maximum of 2,000 MiB/s.
This parameter is valid only for gp3 volumes.
Valid Range: Minimum value of 125. Maximum value of 2,000.
"
},
"ClientToken":{
"shape":"String",
@@ -31089,7 +31089,7 @@
},
"Iops":{
"shape":"Integer",
- "documentation":"The number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.
The following are the supported values for each volume type:
-
gp3: 3,000 - 16,000 IOPS
-
io1: 100 - 64,000 IOPS
-
io2: 100 - 256,000 IOPS
For io2 volumes, you can achieve up to 256,000 IOPS on instances built on the Nitro System. On other instances, you can achieve performance up to 32,000 IOPS.
This parameter is required for io1 and io2 volumes. The default for gp3 volumes is 3,000 IOPS.
",
+ "documentation":"The number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.
The following are the supported values for each volume type:
-
gp3: 3,000 - 80,000 IOPS
-
io1: 100 - 64,000 IOPS
-
io2: 100 - 256,000 IOPS
For io2 volumes, you can achieve up to 256,000 IOPS on instances built on the Nitro System. On other instances, you can achieve performance up to 32,000 IOPS.
This parameter is required for io1 and io2 volumes. The default for gp3 volumes is 3,000 IOPS.
",
"locationName":"iops"
},
"SnapshotId":{
@@ -31099,7 +31099,7 @@
},
"VolumeSize":{
"shape":"Integer",
- "documentation":"The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. If you specify a snapshot, the default is the snapshot size. You can specify a volume size that is equal to or larger than the snapshot size.
The following are the supported sizes for each volume type:
-
gp2 and gp3: 1 - 16,384 GiB
-
io1: 4 - 16,384 GiB
-
io2: 4 - 65,536 GiB
-
st1 and sc1: 125 - 16,384 GiB
-
standard: 1 - 1024 GiB
",
+ "documentation":"The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. If you specify a snapshot, the default is the snapshot size. You can specify a volume size that is equal to or larger than the snapshot size.
The following are the supported sizes for each volume type:
",
"locationName":"volumeSize"
},
"VolumeType":{
@@ -31114,7 +31114,7 @@
},
"Throughput":{
"shape":"Integer",
- "documentation":"The throughput that the volume supports, in MiB/s.
This parameter is valid only for gp3 volumes.
Valid Range: Minimum value of 125. Maximum value of 1000.
",
+ "documentation":"The throughput that the volume supports, in MiB/s.
This parameter is valid only for gp3 volumes.
Valid Range: Minimum value of 125. Maximum value of 2,000.
",
"locationName":"throughput"
},
"OutpostArn":{
@@ -33942,11 +33942,11 @@
},
"Iops":{
"shape":"Integer",
- "documentation":"The number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.
The following are the supported values for each volume type:
-
gp3: 3,000 - 16,000 IOPS
-
io1: 100 - 64,000 IOPS
-
io2: 100 - 256,000 IOPS
For io2 volumes, you can achieve up to 256,000 IOPS on instances built on the Nitro System. On other instances, you can achieve performance up to 32,000 IOPS.
This parameter is required for io1 and io2 volumes. The default for gp3 volumes is 3,000 IOPS.
"
+ "documentation":"The number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.
The following are the supported values for each volume type:
-
gp3: 3,000 - 80,000 IOPS
-
io1: 100 - 64,000 IOPS
-
io2: 100 - 256,000 IOPS
For io2 volumes, you can achieve up to 256,000 IOPS on instances built on the Nitro System. On other instances, you can achieve performance up to 32,000 IOPS.
This parameter is required for io1 and io2 volumes. The default for gp3 volumes is 3,000 IOPS.
"
},
"Throughput":{
"shape":"Integer",
- "documentation":"The throughput that the volume supports, in MiB/s.
This parameter is valid only for gp3 volumes.
Valid Range: Minimum value of 125. Maximum value of 1000.
"
+ "documentation":"The throughput that the volume supports, in MiB/s.
This parameter is valid only for gp3 volumes.
Valid Range: Minimum value of 125. Maximum value of 2,000.
"
},
"KmsKeyId":{
"shape":"KmsKeyId",
@@ -33958,7 +33958,7 @@
},
"VolumeSize":{
"shape":"Integer",
- "documentation":"The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. If you specify a snapshot, the default is the snapshot size. You can specify a volume size that is equal to or larger than the snapshot size.
The following are the supported sizes for each volume type:
-
gp2 and gp3: 1 - 16,384 GiB
-
io1: 4 - 16,384 GiB
-
io2: 4 - 65,536 GiB
-
st1 and sc1: 125 - 16,384 GiB
-
standard: 1 - 1024 GiB
"
+ "documentation":"The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. If you specify a snapshot, the default is the snapshot size. You can specify a volume size that is equal to or larger than the snapshot size.
The following are the supported sizes for each volume type:
"
},
"VolumeType":{
"shape":"VolumeType",
@@ -45423,7 +45423,7 @@
},
"Iops":{
"shape":"Integer",
- "documentation":"The number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.
The following are the supported values for each volume type:
-
gp3: 3,000 - 16,000 IOPS
-
io1: 100 - 64,000 IOPS
-
io2: 100 - 256,000 IOPS
For io2 volumes, you can achieve up to 256,000 IOPS on instances built on the Nitro System. On other instances, you can achieve performance up to 32,000 IOPS.
This parameter is supported for io1, io2, and gp3 volumes only.
"
+ "documentation":"The number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.
The following are the supported values for each volume type:
-
gp3: 3,000 - 80,000 IOPS
-
io1: 100 - 64,000 IOPS
-
io2: 100 - 256,000 IOPS
For io2 volumes, you can achieve up to 256,000 IOPS on instances built on the Nitro System. On other instances, you can achieve performance up to 32,000 IOPS.
This parameter is supported for io1, io2, and gp3 volumes only.
"
},
"KmsKeyId":{
"shape":"KmsKeyId",
@@ -45435,7 +45435,7 @@
},
"VolumeSize":{
"shape":"Integer",
- "documentation":"The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. The following are the supported volumes sizes for each volume type:
-
gp2 and gp3: 1 - 16,384 GiB
-
io1: 4 - 16,384 GiB
-
io2: 4 - 65,536 GiB
-
st1 and sc1: 125 - 16,384 GiB
-
standard: 1 - 1024 GiB
"
+ "documentation":"The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. The following are the supported volumes sizes for each volume type:
"
},
"VolumeType":{
"shape":"VolumeType",
@@ -45443,7 +45443,7 @@
},
"Throughput":{
"shape":"Integer",
- "documentation":"The throughput to provision for a gp3 volume, with a maximum of 1,000 MiB/s.
Valid Range: Minimum value of 125. Maximum value of 1000.
"
+ "documentation":"The throughput to provision for a gp3 volume, with a maximum of 2,000 MiB/s.
Valid Range: Minimum value of 125. Maximum value of 2,000.
"
},
"VolumeInitializationRate":{
"shape":"Integer",
@@ -45462,7 +45462,7 @@
},
"Count":{
"shape":"LaunchTemplateElasticInferenceAcceleratorCount",
- "documentation":" The number of elastic inference accelerators to attach to the instance.
Default: 1
"
+ "documentation":"The number of elastic inference accelerators to attach to the instance.
"
}
},
"documentation":" Amazon Elastic Inference is no longer available.
Describes an elastic inference accelerator.
"
@@ -45483,12 +45483,12 @@
"members":{
"Type":{
"shape":"String",
- "documentation":" The type of elastic inference accelerator. The possible values are eia1.medium, eia1.large, and eia1.xlarge.
",
+ "documentation":"The type of elastic inference accelerator. The possible values are eia1.medium, eia1.large, and eia1.xlarge.
",
"locationName":"type"
},
"Count":{
"shape":"Integer",
- "documentation":" The number of elastic inference accelerators to attach to the instance.
Default: 1
",
+ "documentation":"The number of elastic inference accelerators to attach to the instance.
",
"locationName":"count"
}
},
@@ -45699,7 +45699,7 @@
},
"HttpPutResponseHopLimit":{
"shape":"Integer",
- "documentation":"The desired HTTP PUT response hop limit for instance metadata requests. The larger the number, the further instance metadata requests can travel.
Default: 1
Possible values: Integers from 1 to 64
",
+ "documentation":"The desired HTTP PUT response hop limit for instance metadata requests. The larger the number, the further instance metadata requests can travel.
Possible values: Integers from 1 to 64
",
"locationName":"httpPutResponseHopLimit"
},
"HttpEndpoint":{
@@ -50576,7 +50576,7 @@
},
"Size":{
"shape":"Integer",
- "documentation":"The target size of the volume, in GiB. The target volume size must be greater than or equal to the existing size of the volume.
The following are the supported volumes sizes for each volume type:
-
gp2 and gp3: 1 - 16,384 GiB
-
io1: 4 - 16,384 GiB
-
io2: 4 - 65,536 GiB
-
st1 and sc1: 125 - 16,384 GiB
-
standard: 1 - 1024 GiB
Default: The existing size is retained.
"
+ "documentation":"The target size of the volume, in GiB. The target volume size must be greater than or equal to the existing size of the volume.
The following are the supported volumes sizes for each volume type:
Default: The existing size is retained.
"
},
"VolumeType":{
"shape":"VolumeType",
@@ -50584,11 +50584,11 @@
},
"Iops":{
"shape":"Integer",
- "documentation":"The target IOPS rate of the volume. This parameter is valid only for gp3, io1, and io2 volumes.
The following are the supported values for each volume type:
-
gp3: 3,000 - 16,000 IOPS
-
io1: 100 - 64,000 IOPS
-
io2: 100 - 256,000 IOPS
For io2 volumes, you can achieve up to 256,000 IOPS on instances built on the Nitro System. On other instances, you can achieve performance up to 32,000 IOPS.
Default: The existing value is retained if you keep the same volume type. If you change the volume type to io1, io2, or gp3, the default is 3,000.
"
+ "documentation":"The target IOPS rate of the volume. This parameter is valid only for gp3, io1, and io2 volumes.
The following are the supported values for each volume type:
-
gp3: 3,000 - 80,000 IOPS
-
io1: 100 - 64,000 IOPS
-
io2: 100 - 256,000 IOPS
For io2 volumes, you can achieve up to 256,000 IOPS on instances built on the Nitro System. On other instances, you can achieve performance up to 32,000 IOPS.
Default: The existing value is retained if you keep the same volume type. If you change the volume type to io1, io2, or gp3, the default is 3,000.
"
},
"Throughput":{
"shape":"Integer",
- "documentation":"The target throughput of the volume, in MiB/s. This parameter is valid only for gp3 volumes. The maximum value is 1,000.
Default: The existing value is retained if the source and target volume type is gp3. Otherwise, the default value is 125.
Valid Range: Minimum value of 125. Maximum value of 1000.
"
+ "documentation":"The target throughput of the volume, in MiB/s. This parameter is valid only for gp3 volumes. The maximum value is 2,000.
Default: The existing value is retained if the source and target volume type is gp3. Otherwise, the default value is 125.
Valid Range: Minimum value of 125. Maximum value of 2,000.
"
},
"MultiAttachEnabled":{
"shape":"Boolean",
From 379e8f3e939f1fe1a3b4b651cb4f3be5137419ce Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 26 Sep 2025 18:57:20 +0000
Subject: [PATCH 109/121] Updated endpoints.json and partitions.json.
---
.changes/next-release/feature-AWSSDKforJavav2-0443982.json | 6 ++++++
.../amazon/awssdk/regions/internal/region/endpoints.json | 5 +++++
2 files changed, 11 insertions(+)
create mode 100644 .changes/next-release/feature-AWSSDKforJavav2-0443982.json
diff --git a/.changes/next-release/feature-AWSSDKforJavav2-0443982.json b/.changes/next-release/feature-AWSSDKforJavav2-0443982.json
new file mode 100644
index 000000000000..e5b5ee3ca5e3
--- /dev/null
+++ b/.changes/next-release/feature-AWSSDKforJavav2-0443982.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "AWS SDK for Java v2",
+ "contributor": "",
+ "description": "Updated endpoint and partition metadata."
+}
diff --git a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json
index 923fbad68112..aae829424e19 100644
--- a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json
+++ b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json
@@ -37354,6 +37354,11 @@
"us-iso-east-1" : { }
}
},
+ "kinesisvideo" : {
+ "endpoints" : {
+ "us-iso-east-1" : { }
+ }
+ },
"kms" : {
"endpoints" : {
"ProdFips" : {
From da51e4528cd27fc5ec1eee24727302f645b9fe3d Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 26 Sep 2025 18:58:29 +0000
Subject: [PATCH 110/121] Release 2.34.5. Updated CHANGELOG.md, README.md and
all pom.xml.
---
.changes/2.34.5.json | 72 +++++++++++++++++++
...-AmazonDynamoDBEnhancedClient-18f50d7.json | 6 --
...gfix-AmazonSimpleQueueService-f9af949.json | 6 --
.../feature-AWSBilling-57fa3f6.json | 6 --
...eature-AWSCostExplorerService-750ef36.json | 6 --
.../feature-AWSSDKforJavav2-0443982.json | 6 --
...AgentsforAmazonBedrockRuntime-28e12e7.json | 6 --
.../feature-AmazonConnectService-59fe9fd.json | 6 --
...feature-AmazonDynamoDBStreams-1b55421.json | 6 --
...ure-AmazonElasticComputeCloud-ed60238.json | 6 --
.../feature-AmazonRedshift-a258150.json | 6 --
...ataAutomationforAmazonBedrock-f99328a.json | 6 --
CHANGELOG.md | 50 +++++++++++++
README.md | 8 +--
archetypes/archetype-app-quickstart/pom.xml | 2 +-
archetypes/archetype-lambda/pom.xml | 2 +-
archetypes/archetype-tools/pom.xml | 2 +-
archetypes/pom.xml | 2 +-
aws-sdk-java/pom.xml | 2 +-
bom-internal/pom.xml | 2 +-
bom/pom.xml | 2 +-
bundle-logging-bridge/pom.xml | 2 +-
bundle-sdk/pom.xml | 2 +-
bundle/pom.xml | 2 +-
codegen-lite-maven-plugin/pom.xml | 2 +-
codegen-lite/pom.xml | 2 +-
codegen-maven-plugin/pom.xml | 2 +-
codegen/pom.xml | 2 +-
core/annotations/pom.xml | 2 +-
core/arns/pom.xml | 2 +-
core/auth-crt/pom.xml | 2 +-
core/auth/pom.xml | 2 +-
core/aws-core/pom.xml | 2 +-
core/checksums-spi/pom.xml | 2 +-
core/checksums/pom.xml | 2 +-
core/crt-core/pom.xml | 2 +-
core/endpoints-spi/pom.xml | 2 +-
core/http-auth-aws-crt/pom.xml | 2 +-
core/http-auth-aws-eventstream/pom.xml | 2 +-
core/http-auth-aws/pom.xml | 2 +-
core/http-auth-spi/pom.xml | 2 +-
core/http-auth/pom.xml | 2 +-
core/identity-spi/pom.xml | 2 +-
core/imds/pom.xml | 2 +-
core/json-utils/pom.xml | 2 +-
core/metrics-spi/pom.xml | 2 +-
core/pom.xml | 2 +-
core/profiles/pom.xml | 2 +-
core/protocols/aws-cbor-protocol/pom.xml | 2 +-
core/protocols/aws-json-protocol/pom.xml | 2 +-
core/protocols/aws-query-protocol/pom.xml | 2 +-
core/protocols/aws-xml-protocol/pom.xml | 2 +-
core/protocols/pom.xml | 2 +-
core/protocols/protocol-core/pom.xml | 2 +-
core/protocols/smithy-rpcv2-protocol/pom.xml | 2 +-
core/regions/pom.xml | 2 +-
core/retries-spi/pom.xml | 2 +-
core/retries/pom.xml | 2 +-
core/sdk-core/pom.xml | 2 +-
http-client-spi/pom.xml | 2 +-
http-clients/apache-client/pom.xml | 2 +-
http-clients/apache5-client/pom.xml | 2 +-
http-clients/aws-crt-client/pom.xml | 2 +-
http-clients/netty-nio-client/pom.xml | 2 +-
http-clients/pom.xml | 2 +-
http-clients/url-connection-client/pom.xml | 2 +-
.../cloudwatch-metric-publisher/pom.xml | 2 +-
.../emf-metric-logging-publisher/pom.xml | 2 +-
metric-publishers/pom.xml | 2 +-
pom.xml | 2 +-
release-scripts/pom.xml | 2 +-
services-custom/dynamodb-enhanced/pom.xml | 2 +-
services-custom/iam-policy-builder/pom.xml | 2 +-
services-custom/pom.xml | 2 +-
.../s3-event-notifications/pom.xml | 2 +-
services-custom/s3-transfer-manager/pom.xml | 2 +-
services/accessanalyzer/pom.xml | 2 +-
services/account/pom.xml | 2 +-
services/acm/pom.xml | 2 +-
services/acmpca/pom.xml | 2 +-
services/aiops/pom.xml | 2 +-
services/amp/pom.xml | 2 +-
services/amplify/pom.xml | 2 +-
services/amplifybackend/pom.xml | 2 +-
services/amplifyuibuilder/pom.xml | 2 +-
services/apigateway/pom.xml | 2 +-
services/apigatewaymanagementapi/pom.xml | 2 +-
services/apigatewayv2/pom.xml | 2 +-
services/appconfig/pom.xml | 2 +-
services/appconfigdata/pom.xml | 2 +-
services/appfabric/pom.xml | 2 +-
services/appflow/pom.xml | 2 +-
services/appintegrations/pom.xml | 2 +-
services/applicationautoscaling/pom.xml | 2 +-
services/applicationcostprofiler/pom.xml | 2 +-
services/applicationdiscovery/pom.xml | 2 +-
services/applicationinsights/pom.xml | 2 +-
services/applicationsignals/pom.xml | 2 +-
services/appmesh/pom.xml | 2 +-
services/apprunner/pom.xml | 2 +-
services/appstream/pom.xml | 2 +-
services/appsync/pom.xml | 2 +-
services/apptest/pom.xml | 2 +-
services/arcregionswitch/pom.xml | 2 +-
services/arczonalshift/pom.xml | 2 +-
services/artifact/pom.xml | 2 +-
services/athena/pom.xml | 2 +-
services/auditmanager/pom.xml | 2 +-
services/autoscaling/pom.xml | 2 +-
services/autoscalingplans/pom.xml | 2 +-
services/b2bi/pom.xml | 2 +-
services/backup/pom.xml | 2 +-
services/backupgateway/pom.xml | 2 +-
services/backupsearch/pom.xml | 2 +-
services/batch/pom.xml | 2 +-
services/bcmdashboards/pom.xml | 2 +-
services/bcmdataexports/pom.xml | 2 +-
services/bcmpricingcalculator/pom.xml | 2 +-
services/bcmrecommendedactions/pom.xml | 2 +-
services/bedrock/pom.xml | 2 +-
services/bedrockagent/pom.xml | 2 +-
services/bedrockagentcore/pom.xml | 2 +-
services/bedrockagentcorecontrol/pom.xml | 2 +-
services/bedrockagentruntime/pom.xml | 2 +-
services/bedrockdataautomation/pom.xml | 2 +-
services/bedrockdataautomationruntime/pom.xml | 2 +-
services/bedrockruntime/pom.xml | 2 +-
services/billing/pom.xml | 2 +-
services/billingconductor/pom.xml | 2 +-
services/braket/pom.xml | 2 +-
services/budgets/pom.xml | 2 +-
services/chatbot/pom.xml | 2 +-
services/chime/pom.xml | 2 +-
services/chimesdkidentity/pom.xml | 2 +-
services/chimesdkmediapipelines/pom.xml | 2 +-
services/chimesdkmeetings/pom.xml | 2 +-
services/chimesdkmessaging/pom.xml | 2 +-
services/chimesdkvoice/pom.xml | 2 +-
services/cleanrooms/pom.xml | 2 +-
services/cleanroomsml/pom.xml | 2 +-
services/cloud9/pom.xml | 2 +-
services/cloudcontrol/pom.xml | 2 +-
services/clouddirectory/pom.xml | 2 +-
services/cloudformation/pom.xml | 2 +-
services/cloudfront/pom.xml | 2 +-
services/cloudfrontkeyvaluestore/pom.xml | 2 +-
services/cloudhsm/pom.xml | 2 +-
services/cloudhsmv2/pom.xml | 2 +-
services/cloudsearch/pom.xml | 2 +-
services/cloudsearchdomain/pom.xml | 2 +-
services/cloudtrail/pom.xml | 2 +-
services/cloudtraildata/pom.xml | 2 +-
services/cloudwatch/pom.xml | 2 +-
services/cloudwatchevents/pom.xml | 2 +-
services/cloudwatchlogs/pom.xml | 2 +-
services/codeartifact/pom.xml | 2 +-
services/codebuild/pom.xml | 2 +-
services/codecatalyst/pom.xml | 2 +-
services/codecommit/pom.xml | 2 +-
services/codeconnections/pom.xml | 2 +-
services/codedeploy/pom.xml | 2 +-
services/codeguruprofiler/pom.xml | 2 +-
services/codegurureviewer/pom.xml | 2 +-
services/codegurusecurity/pom.xml | 2 +-
services/codepipeline/pom.xml | 2 +-
services/codestarconnections/pom.xml | 2 +-
services/codestarnotifications/pom.xml | 2 +-
services/cognitoidentity/pom.xml | 2 +-
services/cognitoidentityprovider/pom.xml | 2 +-
services/cognitosync/pom.xml | 2 +-
services/comprehend/pom.xml | 2 +-
services/comprehendmedical/pom.xml | 2 +-
services/computeoptimizer/pom.xml | 2 +-
services/config/pom.xml | 2 +-
services/connect/pom.xml | 2 +-
services/connectcampaigns/pom.xml | 2 +-
services/connectcampaignsv2/pom.xml | 2 +-
services/connectcases/pom.xml | 2 +-
services/connectcontactlens/pom.xml | 2 +-
services/connectparticipant/pom.xml | 2 +-
services/controlcatalog/pom.xml | 2 +-
services/controltower/pom.xml | 2 +-
services/costandusagereport/pom.xml | 2 +-
services/costexplorer/pom.xml | 2 +-
services/costoptimizationhub/pom.xml | 2 +-
services/customerprofiles/pom.xml | 2 +-
services/databasemigration/pom.xml | 2 +-
services/databrew/pom.xml | 2 +-
services/dataexchange/pom.xml | 2 +-
services/datapipeline/pom.xml | 2 +-
services/datasync/pom.xml | 2 +-
services/datazone/pom.xml | 2 +-
services/dax/pom.xml | 2 +-
services/deadline/pom.xml | 2 +-
services/detective/pom.xml | 2 +-
services/devicefarm/pom.xml | 2 +-
services/devopsguru/pom.xml | 2 +-
services/directconnect/pom.xml | 2 +-
services/directory/pom.xml | 2 +-
services/directoryservicedata/pom.xml | 2 +-
services/dlm/pom.xml | 2 +-
services/docdb/pom.xml | 2 +-
services/docdbelastic/pom.xml | 2 +-
services/drs/pom.xml | 2 +-
services/dsql/pom.xml | 2 +-
services/dynamodb/pom.xml | 2 +-
services/ebs/pom.xml | 2 +-
services/ec2/pom.xml | 2 +-
services/ec2instanceconnect/pom.xml | 2 +-
services/ecr/pom.xml | 2 +-
services/ecrpublic/pom.xml | 2 +-
services/ecs/pom.xml | 2 +-
services/efs/pom.xml | 2 +-
services/eks/pom.xml | 2 +-
services/eksauth/pom.xml | 2 +-
services/elasticache/pom.xml | 2 +-
services/elasticbeanstalk/pom.xml | 2 +-
services/elasticloadbalancing/pom.xml | 2 +-
services/elasticloadbalancingv2/pom.xml | 2 +-
services/elasticsearch/pom.xml | 2 +-
services/elastictranscoder/pom.xml | 2 +-
services/emr/pom.xml | 2 +-
services/emrcontainers/pom.xml | 2 +-
services/emrserverless/pom.xml | 2 +-
services/entityresolution/pom.xml | 2 +-
services/eventbridge/pom.xml | 2 +-
services/evidently/pom.xml | 2 +-
services/evs/pom.xml | 2 +-
services/finspace/pom.xml | 2 +-
services/finspacedata/pom.xml | 2 +-
services/firehose/pom.xml | 2 +-
services/fis/pom.xml | 2 +-
services/fms/pom.xml | 2 +-
services/forecast/pom.xml | 2 +-
services/forecastquery/pom.xml | 2 +-
services/frauddetector/pom.xml | 2 +-
services/freetier/pom.xml | 2 +-
services/fsx/pom.xml | 2 +-
services/gamelift/pom.xml | 2 +-
services/gameliftstreams/pom.xml | 2 +-
services/geomaps/pom.xml | 2 +-
services/geoplaces/pom.xml | 2 +-
services/georoutes/pom.xml | 2 +-
services/glacier/pom.xml | 2 +-
services/globalaccelerator/pom.xml | 2 +-
services/glue/pom.xml | 2 +-
services/grafana/pom.xml | 2 +-
services/greengrass/pom.xml | 2 +-
services/greengrassv2/pom.xml | 2 +-
services/groundstation/pom.xml | 2 +-
services/guardduty/pom.xml | 2 +-
services/health/pom.xml | 2 +-
services/healthlake/pom.xml | 2 +-
services/iam/pom.xml | 2 +-
services/identitystore/pom.xml | 2 +-
services/imagebuilder/pom.xml | 2 +-
services/inspector/pom.xml | 2 +-
services/inspector2/pom.xml | 2 +-
services/inspectorscan/pom.xml | 2 +-
services/internetmonitor/pom.xml | 2 +-
services/invoicing/pom.xml | 2 +-
services/iot/pom.xml | 2 +-
services/iotanalytics/pom.xml | 2 +-
services/iotdataplane/pom.xml | 2 +-
services/iotdeviceadvisor/pom.xml | 2 +-
services/iotevents/pom.xml | 2 +-
services/ioteventsdata/pom.xml | 2 +-
services/iotfleethub/pom.xml | 2 +-
services/iotfleetwise/pom.xml | 2 +-
services/iotjobsdataplane/pom.xml | 2 +-
services/iotmanagedintegrations/pom.xml | 2 +-
services/iotsecuretunneling/pom.xml | 2 +-
services/iotsitewise/pom.xml | 2 +-
services/iotthingsgraph/pom.xml | 2 +-
services/iottwinmaker/pom.xml | 2 +-
services/iotwireless/pom.xml | 2 +-
services/ivs/pom.xml | 2 +-
services/ivschat/pom.xml | 2 +-
services/ivsrealtime/pom.xml | 2 +-
services/kafka/pom.xml | 2 +-
services/kafkaconnect/pom.xml | 2 +-
services/kendra/pom.xml | 2 +-
services/kendraranking/pom.xml | 2 +-
services/keyspaces/pom.xml | 2 +-
services/keyspacesstreams/pom.xml | 2 +-
services/kinesis/pom.xml | 2 +-
services/kinesisanalytics/pom.xml | 2 +-
services/kinesisanalyticsv2/pom.xml | 2 +-
services/kinesisvideo/pom.xml | 2 +-
services/kinesisvideoarchivedmedia/pom.xml | 2 +-
services/kinesisvideomedia/pom.xml | 2 +-
services/kinesisvideosignaling/pom.xml | 2 +-
services/kinesisvideowebrtcstorage/pom.xml | 2 +-
services/kms/pom.xml | 2 +-
services/lakeformation/pom.xml | 2 +-
services/lambda/pom.xml | 2 +-
services/launchwizard/pom.xml | 2 +-
services/lexmodelbuilding/pom.xml | 2 +-
services/lexmodelsv2/pom.xml | 2 +-
services/lexruntime/pom.xml | 2 +-
services/lexruntimev2/pom.xml | 2 +-
services/licensemanager/pom.xml | 2 +-
.../licensemanagerlinuxsubscriptions/pom.xml | 2 +-
.../licensemanagerusersubscriptions/pom.xml | 2 +-
services/lightsail/pom.xml | 2 +-
services/location/pom.xml | 2 +-
services/lookoutequipment/pom.xml | 2 +-
services/lookoutmetrics/pom.xml | 2 +-
services/lookoutvision/pom.xml | 2 +-
services/m2/pom.xml | 2 +-
services/machinelearning/pom.xml | 2 +-
services/macie2/pom.xml | 2 +-
services/mailmanager/pom.xml | 2 +-
services/managedblockchain/pom.xml | 2 +-
services/managedblockchainquery/pom.xml | 2 +-
services/marketplaceagreement/pom.xml | 2 +-
services/marketplacecatalog/pom.xml | 2 +-
services/marketplacecommerceanalytics/pom.xml | 2 +-
services/marketplacedeployment/pom.xml | 2 +-
services/marketplaceentitlement/pom.xml | 2 +-
services/marketplacemetering/pom.xml | 2 +-
services/marketplacereporting/pom.xml | 2 +-
services/mediaconnect/pom.xml | 2 +-
services/mediaconvert/pom.xml | 2 +-
services/medialive/pom.xml | 2 +-
services/mediapackage/pom.xml | 2 +-
services/mediapackagev2/pom.xml | 2 +-
services/mediapackagevod/pom.xml | 2 +-
services/mediastore/pom.xml | 2 +-
services/mediastoredata/pom.xml | 2 +-
services/mediatailor/pom.xml | 2 +-
services/medicalimaging/pom.xml | 2 +-
services/memorydb/pom.xml | 2 +-
services/mgn/pom.xml | 2 +-
services/migrationhub/pom.xml | 2 +-
services/migrationhubconfig/pom.xml | 2 +-
services/migrationhuborchestrator/pom.xml | 2 +-
services/migrationhubrefactorspaces/pom.xml | 2 +-
services/migrationhubstrategy/pom.xml | 2 +-
services/mpa/pom.xml | 2 +-
services/mq/pom.xml | 2 +-
services/mturk/pom.xml | 2 +-
services/mwaa/pom.xml | 2 +-
services/neptune/pom.xml | 2 +-
services/neptunedata/pom.xml | 2 +-
services/neptunegraph/pom.xml | 2 +-
services/networkfirewall/pom.xml | 2 +-
services/networkflowmonitor/pom.xml | 2 +-
services/networkmanager/pom.xml | 2 +-
services/networkmonitor/pom.xml | 2 +-
services/notifications/pom.xml | 2 +-
services/notificationscontacts/pom.xml | 2 +-
services/oam/pom.xml | 2 +-
services/observabilityadmin/pom.xml | 2 +-
services/odb/pom.xml | 2 +-
services/omics/pom.xml | 2 +-
services/opensearch/pom.xml | 2 +-
services/opensearchserverless/pom.xml | 2 +-
services/organizations/pom.xml | 2 +-
services/osis/pom.xml | 2 +-
services/outposts/pom.xml | 2 +-
services/panorama/pom.xml | 2 +-
services/partnercentralselling/pom.xml | 2 +-
services/paymentcryptography/pom.xml | 2 +-
services/paymentcryptographydata/pom.xml | 2 +-
services/pcaconnectorad/pom.xml | 2 +-
services/pcaconnectorscep/pom.xml | 2 +-
services/pcs/pom.xml | 2 +-
services/personalize/pom.xml | 2 +-
services/personalizeevents/pom.xml | 2 +-
services/personalizeruntime/pom.xml | 2 +-
services/pi/pom.xml | 2 +-
services/pinpoint/pom.xml | 2 +-
services/pinpointemail/pom.xml | 2 +-
services/pinpointsmsvoice/pom.xml | 2 +-
services/pinpointsmsvoicev2/pom.xml | 2 +-
services/pipes/pom.xml | 2 +-
services/polly/pom.xml | 2 +-
services/pom.xml | 2 +-
services/pricing/pom.xml | 2 +-
services/proton/pom.xml | 2 +-
services/qapps/pom.xml | 2 +-
services/qbusiness/pom.xml | 2 +-
services/qconnect/pom.xml | 2 +-
services/qldb/pom.xml | 2 +-
services/qldbsession/pom.xml | 2 +-
services/quicksight/pom.xml | 2 +-
services/ram/pom.xml | 2 +-
services/rbin/pom.xml | 2 +-
services/rds/pom.xml | 2 +-
services/rdsdata/pom.xml | 2 +-
services/redshift/pom.xml | 2 +-
services/redshiftdata/pom.xml | 2 +-
services/redshiftserverless/pom.xml | 2 +-
services/rekognition/pom.xml | 2 +-
services/repostspace/pom.xml | 2 +-
services/resiliencehub/pom.xml | 2 +-
services/resourceexplorer2/pom.xml | 2 +-
services/resourcegroups/pom.xml | 2 +-
services/resourcegroupstaggingapi/pom.xml | 2 +-
services/robomaker/pom.xml | 2 +-
services/rolesanywhere/pom.xml | 2 +-
services/route53/pom.xml | 2 +-
services/route53domains/pom.xml | 2 +-
services/route53profiles/pom.xml | 2 +-
services/route53recoverycluster/pom.xml | 2 +-
services/route53recoverycontrolconfig/pom.xml | 2 +-
services/route53recoveryreadiness/pom.xml | 2 +-
services/route53resolver/pom.xml | 2 +-
services/rum/pom.xml | 2 +-
services/s3/pom.xml | 2 +-
services/s3control/pom.xml | 2 +-
services/s3outposts/pom.xml | 2 +-
services/s3tables/pom.xml | 2 +-
services/s3vectors/pom.xml | 2 +-
services/sagemaker/pom.xml | 2 +-
services/sagemakera2iruntime/pom.xml | 2 +-
services/sagemakeredge/pom.xml | 2 +-
services/sagemakerfeaturestoreruntime/pom.xml | 2 +-
services/sagemakergeospatial/pom.xml | 2 +-
services/sagemakermetrics/pom.xml | 2 +-
services/sagemakerruntime/pom.xml | 2 +-
services/savingsplans/pom.xml | 2 +-
services/scheduler/pom.xml | 2 +-
services/schemas/pom.xml | 2 +-
services/secretsmanager/pom.xml | 2 +-
services/securityhub/pom.xml | 2 +-
services/securityir/pom.xml | 2 +-
services/securitylake/pom.xml | 2 +-
.../serverlessapplicationrepository/pom.xml | 2 +-
services/servicecatalog/pom.xml | 2 +-
services/servicecatalogappregistry/pom.xml | 2 +-
services/servicediscovery/pom.xml | 2 +-
services/servicequotas/pom.xml | 2 +-
services/ses/pom.xml | 2 +-
services/sesv2/pom.xml | 2 +-
services/sfn/pom.xml | 2 +-
services/shield/pom.xml | 2 +-
services/signer/pom.xml | 2 +-
services/simspaceweaver/pom.xml | 2 +-
services/snowball/pom.xml | 2 +-
services/snowdevicemanagement/pom.xml | 2 +-
services/sns/pom.xml | 2 +-
services/socialmessaging/pom.xml | 2 +-
services/sqs/pom.xml | 2 +-
services/ssm/pom.xml | 2 +-
services/ssmcontacts/pom.xml | 2 +-
services/ssmguiconnect/pom.xml | 2 +-
services/ssmincidents/pom.xml | 2 +-
services/ssmquicksetup/pom.xml | 2 +-
services/ssmsap/pom.xml | 2 +-
services/sso/pom.xml | 2 +-
services/ssoadmin/pom.xml | 2 +-
services/ssooidc/pom.xml | 2 +-
services/storagegateway/pom.xml | 2 +-
services/sts/pom.xml | 2 +-
services/supplychain/pom.xml | 2 +-
services/support/pom.xml | 2 +-
services/supportapp/pom.xml | 2 +-
services/swf/pom.xml | 2 +-
services/synthetics/pom.xml | 2 +-
services/taxsettings/pom.xml | 2 +-
services/textract/pom.xml | 2 +-
services/timestreaminfluxdb/pom.xml | 2 +-
services/timestreamquery/pom.xml | 2 +-
services/timestreamwrite/pom.xml | 2 +-
services/tnb/pom.xml | 2 +-
services/transcribe/pom.xml | 2 +-
services/transcribestreaming/pom.xml | 2 +-
services/transfer/pom.xml | 2 +-
services/translate/pom.xml | 2 +-
services/trustedadvisor/pom.xml | 2 +-
services/verifiedpermissions/pom.xml | 2 +-
services/voiceid/pom.xml | 2 +-
services/vpclattice/pom.xml | 2 +-
services/waf/pom.xml | 2 +-
services/wafv2/pom.xml | 2 +-
services/wellarchitected/pom.xml | 2 +-
services/wisdom/pom.xml | 2 +-
services/workdocs/pom.xml | 2 +-
services/workmail/pom.xml | 2 +-
services/workmailmessageflow/pom.xml | 2 +-
services/workspaces/pom.xml | 2 +-
services/workspacesinstances/pom.xml | 2 +-
services/workspacesthinclient/pom.xml | 2 +-
services/workspacesweb/pom.xml | 2 +-
services/xray/pom.xml | 2 +-
test/architecture-tests/pom.xml | 2 +-
test/auth-tests/pom.xml | 2 +-
.../pom.xml | 2 +-
test/bundle-shading-tests/pom.xml | 2 +-
test/codegen-generated-classes-test/pom.xml | 2 +-
test/crt-unavailable-tests/pom.xml | 2 +-
test/http-client-benchmarks/pom.xml | 2 +-
test/http-client-tests/pom.xml | 2 +-
test/module-path-tests/pom.xml | 2 +-
.../pom.xml | 2 +-
test/protocol-tests-core/pom.xml | 2 +-
test/protocol-tests/pom.xml | 2 +-
test/region-testing/pom.xml | 2 +-
test/ruleset-testing-core/pom.xml | 2 +-
test/s3-benchmarks/pom.xml | 2 +-
test/s3-tests/pom.xml | 2 +-
test/sdk-benchmarks/pom.xml | 2 +-
test/sdk-native-image-test/pom.xml | 2 +-
test/service-test-utils/pom.xml | 2 +-
test/stability-tests/pom.xml | 2 +-
test/test-utils/pom.xml | 2 +-
test/tests-coverage-reporting/pom.xml | 2 +-
test/v2-migration-tests/pom.xml | 2 +-
third-party/pom.xml | 2 +-
third-party/third-party-jackson-core/pom.xml | 2 +-
.../pom.xml | 2 +-
third-party/third-party-slf4j-api/pom.xml | 2 +-
utils-lite/pom.xml | 2 +-
utils/pom.xml | 2 +-
v2-migration/pom.xml | 2 +-
517 files changed, 629 insertions(+), 573 deletions(-)
create mode 100644 .changes/2.34.5.json
delete mode 100644 .changes/next-release/bugfix-AmazonDynamoDBEnhancedClient-18f50d7.json
delete mode 100644 .changes/next-release/bugfix-AmazonSimpleQueueService-f9af949.json
delete mode 100644 .changes/next-release/feature-AWSBilling-57fa3f6.json
delete mode 100644 .changes/next-release/feature-AWSCostExplorerService-750ef36.json
delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-0443982.json
delete mode 100644 .changes/next-release/feature-AgentsforAmazonBedrockRuntime-28e12e7.json
delete mode 100644 .changes/next-release/feature-AmazonConnectService-59fe9fd.json
delete mode 100644 .changes/next-release/feature-AmazonDynamoDBStreams-1b55421.json
delete mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-ed60238.json
delete mode 100644 .changes/next-release/feature-AmazonRedshift-a258150.json
delete mode 100644 .changes/next-release/feature-DataAutomationforAmazonBedrock-f99328a.json
diff --git a/.changes/2.34.5.json b/.changes/2.34.5.json
new file mode 100644
index 000000000000..19aabeed1ffa
--- /dev/null
+++ b/.changes/2.34.5.json
@@ -0,0 +1,72 @@
+{
+ "version": "2.34.5",
+ "date": "2025-09-26",
+ "entries": [
+ {
+ "type": "bugfix",
+ "category": "Amazon DynamoDB Enhanced Client",
+ "contributor": "",
+ "description": "Optimizations for DDB EnhancedDocument.toJson()"
+ },
+ {
+ "type": "bugfix",
+ "category": "Amazon Simple Queue Service",
+ "contributor": "thornhillcody",
+ "description": "Fix SqsAsyncBatchManager excessive batch flushing under heavy load. Fixes [#6374](https://github.com/aws/aws-sdk-java-v2/issues/6374)."
+ },
+ {
+ "type": "feature",
+ "category": "AWS Billing",
+ "contributor": "",
+ "description": "Add ability to combine custom billing views to create new consolidated views."
+ },
+ {
+ "type": "feature",
+ "category": "AWS Cost Explorer Service",
+ "contributor": "",
+ "description": "Support for payer account dimension and billing view health status."
+ },
+ {
+ "type": "feature",
+ "category": "Agents for Amazon Bedrock Runtime",
+ "contributor": "",
+ "description": "This release enhances the information provided through Flow Traces. New information includes source/next node tracking, execution chains for complex nodes, dependency action (operation) details, and dependency traces."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon Connect Service",
+ "contributor": "",
+ "description": "Adds supports for manual contact picking (WorkList) operations on Routing Profiles, Agent Management and SearchContacts APIs."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon DynamoDB Streams",
+ "contributor": "",
+ "description": "Added support for IPv6 compatible endpoints for DynamoDB Streams."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon Elastic Compute Cloud",
+ "contributor": "",
+ "description": "This release includes documentation updates for Amazon EBS General Purpose SSD (gp3) volumes with larger size and higher IOPS and throughput."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon Redshift",
+ "contributor": "",
+ "description": "Support tagging and tag propagation to IAM Identity Center for Redshift Idc Applications"
+ },
+ {
+ "type": "feature",
+ "category": "Data Automation for Amazon Bedrock",
+ "contributor": "",
+ "description": "Added support for configurable Speaker Labeling and Channel Labeling features for Audio modality."
+ },
+ {
+ "type": "feature",
+ "category": "AWS SDK for Java v2",
+ "contributor": "",
+ "description": "Updated endpoint and partition metadata."
+ }
+ ]
+}
\ No newline at end of file
diff --git a/.changes/next-release/bugfix-AmazonDynamoDBEnhancedClient-18f50d7.json b/.changes/next-release/bugfix-AmazonDynamoDBEnhancedClient-18f50d7.json
deleted file mode 100644
index 09ab79defe42..000000000000
--- a/.changes/next-release/bugfix-AmazonDynamoDBEnhancedClient-18f50d7.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "bugfix",
- "category": "Amazon DynamoDB Enhanced Client",
- "contributor": "",
- "description": "Optimizations for DDB EnhancedDocument.toJson()"
-}
diff --git a/.changes/next-release/bugfix-AmazonSimpleQueueService-f9af949.json b/.changes/next-release/bugfix-AmazonSimpleQueueService-f9af949.json
deleted file mode 100644
index 8f54960c30c8..000000000000
--- a/.changes/next-release/bugfix-AmazonSimpleQueueService-f9af949.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "bugfix",
- "category": "Amazon Simple Queue Service",
- "contributor": "thornhillcody",
- "description": "Fix SqsAsyncBatchManager excessive batch flushing under heavy load. Fixes [#6374](https://github.com/aws/aws-sdk-java-v2/issues/6374)."
-}
diff --git a/.changes/next-release/feature-AWSBilling-57fa3f6.json b/.changes/next-release/feature-AWSBilling-57fa3f6.json
deleted file mode 100644
index 9580ab7e04af..000000000000
--- a/.changes/next-release/feature-AWSBilling-57fa3f6.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "AWS Billing",
- "contributor": "",
- "description": "Add ability to combine custom billing views to create new consolidated views."
-}
diff --git a/.changes/next-release/feature-AWSCostExplorerService-750ef36.json b/.changes/next-release/feature-AWSCostExplorerService-750ef36.json
deleted file mode 100644
index b5bdd4e8860f..000000000000
--- a/.changes/next-release/feature-AWSCostExplorerService-750ef36.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "AWS Cost Explorer Service",
- "contributor": "",
- "description": "Support for payer account dimension and billing view health status."
-}
diff --git a/.changes/next-release/feature-AWSSDKforJavav2-0443982.json b/.changes/next-release/feature-AWSSDKforJavav2-0443982.json
deleted file mode 100644
index e5b5ee3ca5e3..000000000000
--- a/.changes/next-release/feature-AWSSDKforJavav2-0443982.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "AWS SDK for Java v2",
- "contributor": "",
- "description": "Updated endpoint and partition metadata."
-}
diff --git a/.changes/next-release/feature-AgentsforAmazonBedrockRuntime-28e12e7.json b/.changes/next-release/feature-AgentsforAmazonBedrockRuntime-28e12e7.json
deleted file mode 100644
index 4ddc14f3d9dd..000000000000
--- a/.changes/next-release/feature-AgentsforAmazonBedrockRuntime-28e12e7.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Agents for Amazon Bedrock Runtime",
- "contributor": "",
- "description": "This release enhances the information provided through Flow Traces. New information includes source/next node tracking, execution chains for complex nodes, dependency action (operation) details, and dependency traces."
-}
diff --git a/.changes/next-release/feature-AmazonConnectService-59fe9fd.json b/.changes/next-release/feature-AmazonConnectService-59fe9fd.json
deleted file mode 100644
index 75edbd987dca..000000000000
--- a/.changes/next-release/feature-AmazonConnectService-59fe9fd.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon Connect Service",
- "contributor": "",
- "description": "Adds supports for manual contact picking (WorkList) operations on Routing Profiles, Agent Management and SearchContacts APIs."
-}
diff --git a/.changes/next-release/feature-AmazonDynamoDBStreams-1b55421.json b/.changes/next-release/feature-AmazonDynamoDBStreams-1b55421.json
deleted file mode 100644
index 93d8d59ee715..000000000000
--- a/.changes/next-release/feature-AmazonDynamoDBStreams-1b55421.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon DynamoDB Streams",
- "contributor": "",
- "description": "Added support for IPv6 compatible endpoints for DynamoDB Streams."
-}
diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-ed60238.json b/.changes/next-release/feature-AmazonElasticComputeCloud-ed60238.json
deleted file mode 100644
index 29eea4454a4d..000000000000
--- a/.changes/next-release/feature-AmazonElasticComputeCloud-ed60238.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon Elastic Compute Cloud",
- "contributor": "",
- "description": "This release includes documentation updates for Amazon EBS General Purpose SSD (gp3) volumes with larger size and higher IOPS and throughput."
-}
diff --git a/.changes/next-release/feature-AmazonRedshift-a258150.json b/.changes/next-release/feature-AmazonRedshift-a258150.json
deleted file mode 100644
index 6429d0d7235f..000000000000
--- a/.changes/next-release/feature-AmazonRedshift-a258150.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon Redshift",
- "contributor": "",
- "description": "Support tagging and tag propagation to IAM Identity Center for Redshift Idc Applications"
-}
diff --git a/.changes/next-release/feature-DataAutomationforAmazonBedrock-f99328a.json b/.changes/next-release/feature-DataAutomationforAmazonBedrock-f99328a.json
deleted file mode 100644
index b50b6f3fac67..000000000000
--- a/.changes/next-release/feature-DataAutomationforAmazonBedrock-f99328a.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Data Automation for Amazon Bedrock",
- "contributor": "",
- "description": "Added support for configurable Speaker Labeling and Channel Labeling features for Audio modality."
-}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8ba381771fa1..3ada4ee02745 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,54 @@
#### 👋 _Looking for changelogs for older versions? You can find them in the [changelogs](./changelogs) directory._
+# __2.34.5__ __2025-09-26__
+## __AWS Billing__
+ - ### Features
+ - Add ability to combine custom billing views to create new consolidated views.
+
+## __AWS Cost Explorer Service__
+ - ### Features
+ - Support for payer account dimension and billing view health status.
+
+## __AWS SDK for Java v2__
+ - ### Features
+ - Updated endpoint and partition metadata.
+
+## __Agents for Amazon Bedrock Runtime__
+ - ### Features
+ - This release enhances the information provided through Flow Traces. New information includes source/next node tracking, execution chains for complex nodes, dependency action (operation) details, and dependency traces.
+
+## __Amazon Connect Service__
+ - ### Features
+ - Adds supports for manual contact picking (WorkList) operations on Routing Profiles, Agent Management and SearchContacts APIs.
+
+## __Amazon DynamoDB Enhanced Client__
+ - ### Bugfixes
+ - Optimizations for DDB EnhancedDocument.toJson()
+
+## __Amazon DynamoDB Streams__
+ - ### Features
+ - Added support for IPv6 compatible endpoints for DynamoDB Streams.
+
+## __Amazon Elastic Compute Cloud__
+ - ### Features
+ - This release includes documentation updates for Amazon EBS General Purpose SSD (gp3) volumes with larger size and higher IOPS and throughput.
+
+## __Amazon Redshift__
+ - ### Features
+ - Support tagging and tag propagation to IAM Identity Center for Redshift Idc Applications
+
+## __Amazon Simple Queue Service__
+ - ### Bugfixes
+ - Fix SqsAsyncBatchManager excessive batch flushing under heavy load. Fixes [#6374](https://github.com/aws/aws-sdk-java-v2/issues/6374).
+ - Contributed by: [@thornhillcody](https://github.com/thornhillcody)
+
+## __Data Automation for Amazon Bedrock__
+ - ### Features
+ - Added support for configurable Speaker Labeling and Channel Labeling features for Audio modality.
+
+## __Contributors__
+Special thanks to the following contributors to this release:
+
+[@thornhillcody](https://github.com/thornhillcody)
# __2.34.4__ __2025-09-25__
## __AWS Glue__
- ### Features
diff --git a/README.md b/README.md
index eddd05c95ce7..6f8a8acc27a9 100644
--- a/README.md
+++ b/README.md
@@ -51,7 +51,7 @@ To automatically manage module versions (currently all modules have the same ver
software.amazon.awssdk
bom
- 2.34.4
+ 2.34.5
pom
import
@@ -85,12 +85,12 @@ Alternatively you can add dependencies for the specific services you use only:
software.amazon.awssdk
ec2
- 2.34.4
+ 2.34.5
software.amazon.awssdk
s3
- 2.34.4
+ 2.34.5
```
@@ -102,7 +102,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please
software.amazon.awssdk
aws-sdk-java
- 2.34.4
+ 2.34.5
```
diff --git a/archetypes/archetype-app-quickstart/pom.xml b/archetypes/archetype-app-quickstart/pom.xml
index 02e8b3f93fbd..a48ae606b29d 100644
--- a/archetypes/archetype-app-quickstart/pom.xml
+++ b/archetypes/archetype-app-quickstart/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml
index 3d99554bc935..e9cb412358e0 100644
--- a/archetypes/archetype-lambda/pom.xml
+++ b/archetypes/archetype-lambda/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
archetype-lambda
diff --git a/archetypes/archetype-tools/pom.xml b/archetypes/archetype-tools/pom.xml
index a74677a2c91e..8cab57cb310a 100644
--- a/archetypes/archetype-tools/pom.xml
+++ b/archetypes/archetype-tools/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/archetypes/pom.xml b/archetypes/pom.xml
index f318a094a014..6fa43c54d988 100644
--- a/archetypes/pom.xml
+++ b/archetypes/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
archetypes
diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml
index 07455fd3f2c6..cb01e64f3d52 100644
--- a/aws-sdk-java/pom.xml
+++ b/aws-sdk-java/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
../pom.xml
aws-sdk-java
diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml
index 0692525b82e7..433c6842c5f2 100644
--- a/bom-internal/pom.xml
+++ b/bom-internal/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/bom/pom.xml b/bom/pom.xml
index fb6edc3dabfe..46fe8ceaff91 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
../pom.xml
bom
diff --git a/bundle-logging-bridge/pom.xml b/bundle-logging-bridge/pom.xml
index 3c61afcfd370..67d66a2e2ec0 100644
--- a/bundle-logging-bridge/pom.xml
+++ b/bundle-logging-bridge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
bundle-logging-bridge
jar
diff --git a/bundle-sdk/pom.xml b/bundle-sdk/pom.xml
index 84d844c7b2c4..920634ab0325 100644
--- a/bundle-sdk/pom.xml
+++ b/bundle-sdk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
bundle-sdk
jar
diff --git a/bundle/pom.xml b/bundle/pom.xml
index 36af0cbf053f..cf5b0a17c64c 100644
--- a/bundle/pom.xml
+++ b/bundle/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
bundle
jar
diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml
index 4c905389b835..4ee3c7c7900a 100644
--- a/codegen-lite-maven-plugin/pom.xml
+++ b/codegen-lite-maven-plugin/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
../pom.xml
codegen-lite-maven-plugin
diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml
index a710e8d7ecef..3b45a5b06419 100644
--- a/codegen-lite/pom.xml
+++ b/codegen-lite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
codegen-lite
AWS Java SDK :: Code Generator Lite
diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml
index 155c6c3000ce..f05d75f147f7 100644
--- a/codegen-maven-plugin/pom.xml
+++ b/codegen-maven-plugin/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
../pom.xml
codegen-maven-plugin
diff --git a/codegen/pom.xml b/codegen/pom.xml
index a3725536bd3a..c9250a97f043 100644
--- a/codegen/pom.xml
+++ b/codegen/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
codegen
AWS Java SDK :: Code Generator
diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml
index ae4146a4c3be..316f523cd834 100644
--- a/core/annotations/pom.xml
+++ b/core/annotations/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/core/arns/pom.xml b/core/arns/pom.xml
index 5182f7505ed7..aafa2ec6d57e 100644
--- a/core/arns/pom.xml
+++ b/core/arns/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/core/auth-crt/pom.xml b/core/auth-crt/pom.xml
index d824c15223cc..bf553dc813db 100644
--- a/core/auth-crt/pom.xml
+++ b/core/auth-crt/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5-SNAPSHOT
+ 2.34.5
auth-crt
diff --git a/core/auth/pom.xml b/core/auth/pom.xml
index 1a35a3141127..684b49cf00bb 100644
--- a/core/auth/pom.xml
+++ b/core/auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5-SNAPSHOT
+ 2.34.5
auth
diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml
index cc58983c32b9..7578d76c92d8 100644
--- a/core/aws-core/pom.xml
+++ b/core/aws-core/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5-SNAPSHOT
+ 2.34.5
aws-core
diff --git a/core/checksums-spi/pom.xml b/core/checksums-spi/pom.xml
index 37452307c621..daa00c32753e 100644
--- a/core/checksums-spi/pom.xml
+++ b/core/checksums-spi/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5-SNAPSHOT
+ 2.34.5
checksums-spi
diff --git a/core/checksums/pom.xml b/core/checksums/pom.xml
index 6639e198f9d7..7437261d2240 100644
--- a/core/checksums/pom.xml
+++ b/core/checksums/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5-SNAPSHOT
+ 2.34.5
checksums
diff --git a/core/crt-core/pom.xml b/core/crt-core/pom.xml
index db7b02e4dbed..69d177e1c3e4 100644
--- a/core/crt-core/pom.xml
+++ b/core/crt-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.34.5-SNAPSHOT
+ 2.34.5
crt-core
diff --git a/core/endpoints-spi/pom.xml b/core/endpoints-spi/pom.xml
index d7fdd2e97939..a5ee05bfdb76 100644
--- a/core/endpoints-spi/pom.xml
+++ b/core/endpoints-spi/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/core/http-auth-aws-crt/pom.xml b/core/http-auth-aws-crt/pom.xml
index 88aff428e327..3af0b053a109 100644
--- a/core/http-auth-aws-crt/pom.xml
+++ b/core/http-auth-aws-crt/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5-SNAPSHOT
+ 2.34.5
http-auth-aws-crt
diff --git a/core/http-auth-aws-eventstream/pom.xml b/core/http-auth-aws-eventstream/pom.xml
index a1b0ec0786df..b26ad2599db6 100644
--- a/core/http-auth-aws-eventstream/pom.xml
+++ b/core/http-auth-aws-eventstream/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5-SNAPSHOT
+ 2.34.5
http-auth-aws-eventstream
diff --git a/core/http-auth-aws/pom.xml b/core/http-auth-aws/pom.xml
index cbabb367a747..1263d75b5dd7 100644
--- a/core/http-auth-aws/pom.xml
+++ b/core/http-auth-aws/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5-SNAPSHOT
+ 2.34.5
http-auth-aws
diff --git a/core/http-auth-spi/pom.xml b/core/http-auth-spi/pom.xml
index 630f5e6904fe..b8c733924b7e 100644
--- a/core/http-auth-spi/pom.xml
+++ b/core/http-auth-spi/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5-SNAPSHOT
+ 2.34.5
http-auth-spi
diff --git a/core/http-auth/pom.xml b/core/http-auth/pom.xml
index 74956aba3e14..3f02c04b15a6 100644
--- a/core/http-auth/pom.xml
+++ b/core/http-auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5-SNAPSHOT
+ 2.34.5
http-auth
diff --git a/core/identity-spi/pom.xml b/core/identity-spi/pom.xml
index 33926379f977..fdf346093403 100644
--- a/core/identity-spi/pom.xml
+++ b/core/identity-spi/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5-SNAPSHOT
+ 2.34.5
identity-spi
diff --git a/core/imds/pom.xml b/core/imds/pom.xml
index 128cd91acabc..2fdce4465ada 100644
--- a/core/imds/pom.xml
+++ b/core/imds/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
imds
diff --git a/core/json-utils/pom.xml b/core/json-utils/pom.xml
index 2523d30faaf7..cf0103007ec1 100644
--- a/core/json-utils/pom.xml
+++ b/core/json-utils/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml
index 5d7093db7146..d6cac8beac1e 100644
--- a/core/metrics-spi/pom.xml
+++ b/core/metrics-spi/pom.xml
@@ -5,7 +5,7 @@
core
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/core/pom.xml b/core/pom.xml
index d039a5eb9048..3c26c99cd341 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
core
diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml
index 1cca5dba7d6b..eb0db327b082 100644
--- a/core/profiles/pom.xml
+++ b/core/profiles/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5-SNAPSHOT
+ 2.34.5
profiles
diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml
index 637c3a58c28b..4c238cfdbb3e 100644
--- a/core/protocols/aws-cbor-protocol/pom.xml
+++ b/core/protocols/aws-cbor-protocol/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml
index bb16a42cc6e0..81f4e03d025e 100644
--- a/core/protocols/aws-json-protocol/pom.xml
+++ b/core/protocols/aws-json-protocol/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml
index adce037a729c..90ba98a7523a 100644
--- a/core/protocols/aws-query-protocol/pom.xml
+++ b/core/protocols/aws-query-protocol/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml
index 3d3137f79941..8f9aaee67682 100644
--- a/core/protocols/aws-xml-protocol/pom.xml
+++ b/core/protocols/aws-xml-protocol/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml
index c2a4f525772a..524c87f7e05f 100644
--- a/core/protocols/pom.xml
+++ b/core/protocols/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml
index 26061da667e7..c5ab19fb0fdc 100644
--- a/core/protocols/protocol-core/pom.xml
+++ b/core/protocols/protocol-core/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/core/protocols/smithy-rpcv2-protocol/pom.xml b/core/protocols/smithy-rpcv2-protocol/pom.xml
index dc63705937fb..a460287a6dc5 100644
--- a/core/protocols/smithy-rpcv2-protocol/pom.xml
+++ b/core/protocols/smithy-rpcv2-protocol/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/core/regions/pom.xml b/core/regions/pom.xml
index e2b6f225c08f..85b315b95fc9 100644
--- a/core/regions/pom.xml
+++ b/core/regions/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5-SNAPSHOT
+ 2.34.5
regions
diff --git a/core/retries-spi/pom.xml b/core/retries-spi/pom.xml
index f90321f4085a..491ad3d2c6a5 100644
--- a/core/retries-spi/pom.xml
+++ b/core/retries-spi/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/core/retries/pom.xml b/core/retries/pom.xml
index f4fb397b94f6..425547286725 100644
--- a/core/retries/pom.xml
+++ b/core/retries/pom.xml
@@ -21,7 +21,7 @@
core
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml
index 9b87f8b7c059..abf70bbef2ad 100644
--- a/core/sdk-core/pom.xml
+++ b/core/sdk-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.34.5-SNAPSHOT
+ 2.34.5
sdk-core
AWS Java SDK :: SDK Core
diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml
index 2bc325080e2f..f1db8fb51e4b 100644
--- a/http-client-spi/pom.xml
+++ b/http-client-spi/pom.xml
@@ -22,7 +22,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
http-client-spi
AWS Java SDK :: HTTP Client Interface
diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml
index d526a0f0fed0..d995584568de 100644
--- a/http-clients/apache-client/pom.xml
+++ b/http-clients/apache-client/pom.xml
@@ -21,7 +21,7 @@
http-clients
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
apache-client
diff --git a/http-clients/apache5-client/pom.xml b/http-clients/apache5-client/pom.xml
index ae87e2a21d80..5b818df31c6a 100644
--- a/http-clients/apache5-client/pom.xml
+++ b/http-clients/apache5-client/pom.xml
@@ -21,7 +21,7 @@
http-clients
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
apache5-client
diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml
index 10c0a649723b..7db2c97a0a04 100644
--- a/http-clients/aws-crt-client/pom.xml
+++ b/http-clients/aws-crt-client/pom.xml
@@ -21,7 +21,7 @@
http-clients
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml
index c8858e3ef57b..3e5e0b2c4c86 100644
--- a/http-clients/netty-nio-client/pom.xml
+++ b/http-clients/netty-nio-client/pom.xml
@@ -20,7 +20,7 @@
http-clients
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/http-clients/pom.xml b/http-clients/pom.xml
index 16f1bd4447c0..bf1fc347dc10 100644
--- a/http-clients/pom.xml
+++ b/http-clients/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml
index 6eb6742a4a0f..c3abe7a6e0b2 100644
--- a/http-clients/url-connection-client/pom.xml
+++ b/http-clients/url-connection-client/pom.xml
@@ -20,7 +20,7 @@
http-clients
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml
index 67ffab943211..f1688a1edca8 100644
--- a/metric-publishers/cloudwatch-metric-publisher/pom.xml
+++ b/metric-publishers/cloudwatch-metric-publisher/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
metric-publishers
- 2.34.5-SNAPSHOT
+ 2.34.5
cloudwatch-metric-publisher
diff --git a/metric-publishers/emf-metric-logging-publisher/pom.xml b/metric-publishers/emf-metric-logging-publisher/pom.xml
index 29c11bd337fd..e7e5372538bb 100644
--- a/metric-publishers/emf-metric-logging-publisher/pom.xml
+++ b/metric-publishers/emf-metric-logging-publisher/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
metric-publishers
- 2.34.5-SNAPSHOT
+ 2.34.5
emf-metric-logging-publisher
diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml
index 34a1d94b9be9..7fe0d9a4bb40 100644
--- a/metric-publishers/pom.xml
+++ b/metric-publishers/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
metric-publishers
diff --git a/pom.xml b/pom.xml
index 4f51cd31cb42..2d86f37cec82 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
4.0.0
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
pom
AWS Java SDK :: Parent
The Amazon Web Services SDK for Java provides Java APIs
diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml
index 1d4c0e574559..ed00e1e7c969 100644
--- a/release-scripts/pom.xml
+++ b/release-scripts/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
../pom.xml
release-scripts
diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml
index 19cd7feaeddd..689ddc10042d 100644
--- a/services-custom/dynamodb-enhanced/pom.xml
+++ b/services-custom/dynamodb-enhanced/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services-custom
- 2.34.5-SNAPSHOT
+ 2.34.5
dynamodb-enhanced
AWS Java SDK :: DynamoDB :: Enhanced Client
diff --git a/services-custom/iam-policy-builder/pom.xml b/services-custom/iam-policy-builder/pom.xml
index 2cb10190c669..732c749df809 100644
--- a/services-custom/iam-policy-builder/pom.xml
+++ b/services-custom/iam-policy-builder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
iam-policy-builder
diff --git a/services-custom/pom.xml b/services-custom/pom.xml
index 8fc810d5034a..3f313edbcddc 100644
--- a/services-custom/pom.xml
+++ b/services-custom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
services-custom
AWS Java SDK :: Custom Services
diff --git a/services-custom/s3-event-notifications/pom.xml b/services-custom/s3-event-notifications/pom.xml
index e2315bfa9ee1..ed9c7538b397 100644
--- a/services-custom/s3-event-notifications/pom.xml
+++ b/services-custom/s3-event-notifications/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
s3-event-notifications
diff --git a/services-custom/s3-transfer-manager/pom.xml b/services-custom/s3-transfer-manager/pom.xml
index 18fb81fb915c..89a315c112eb 100644
--- a/services-custom/s3-transfer-manager/pom.xml
+++ b/services-custom/s3-transfer-manager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
s3-transfer-manager
diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml
index e6bef63bb51b..2f35fca16a68 100644
--- a/services/accessanalyzer/pom.xml
+++ b/services/accessanalyzer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
accessanalyzer
AWS Java SDK :: Services :: AccessAnalyzer
diff --git a/services/account/pom.xml b/services/account/pom.xml
index 8f52af5fd9e2..366d84b85d96 100644
--- a/services/account/pom.xml
+++ b/services/account/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
account
AWS Java SDK :: Services :: Account
diff --git a/services/acm/pom.xml b/services/acm/pom.xml
index 9f0b96af85c1..2cf2cd85df32 100644
--- a/services/acm/pom.xml
+++ b/services/acm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
acm
AWS Java SDK :: Services :: AWS Certificate Manager
diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml
index 1faeefc91851..293fe869f297 100644
--- a/services/acmpca/pom.xml
+++ b/services/acmpca/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
acmpca
AWS Java SDK :: Services :: ACM PCA
diff --git a/services/aiops/pom.xml b/services/aiops/pom.xml
index c93e0719b176..6ab960b913ab 100644
--- a/services/aiops/pom.xml
+++ b/services/aiops/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
aiops
AWS Java SDK :: Services :: AI Ops
diff --git a/services/amp/pom.xml b/services/amp/pom.xml
index eac387e8d526..b483176905c5 100644
--- a/services/amp/pom.xml
+++ b/services/amp/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
amp
AWS Java SDK :: Services :: Amp
diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml
index 96b484e1b4f5..115e78057380 100644
--- a/services/amplify/pom.xml
+++ b/services/amplify/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
amplify
AWS Java SDK :: Services :: Amplify
diff --git a/services/amplifybackend/pom.xml b/services/amplifybackend/pom.xml
index 996f28ad4fae..da94a0d28f62 100644
--- a/services/amplifybackend/pom.xml
+++ b/services/amplifybackend/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
amplifybackend
AWS Java SDK :: Services :: Amplify Backend
diff --git a/services/amplifyuibuilder/pom.xml b/services/amplifyuibuilder/pom.xml
index 16ca36703e23..1b1cb4054767 100644
--- a/services/amplifyuibuilder/pom.xml
+++ b/services/amplifyuibuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
amplifyuibuilder
AWS Java SDK :: Services :: Amplify UI Builder
diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml
index aa990b228282..47c714762ea5 100644
--- a/services/apigateway/pom.xml
+++ b/services/apigateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
apigateway
AWS Java SDK :: Services :: Amazon API Gateway
diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml
index 4e5ce2bf3fff..e67e93b68b78 100644
--- a/services/apigatewaymanagementapi/pom.xml
+++ b/services/apigatewaymanagementapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
apigatewaymanagementapi
AWS Java SDK :: Services :: ApiGatewayManagementApi
diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml
index f05fc68b280b..ccf0b3b10958 100644
--- a/services/apigatewayv2/pom.xml
+++ b/services/apigatewayv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
apigatewayv2
AWS Java SDK :: Services :: ApiGatewayV2
diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml
index bb17364e6f8c..b901d7fbff27 100644
--- a/services/appconfig/pom.xml
+++ b/services/appconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
appconfig
AWS Java SDK :: Services :: AppConfig
diff --git a/services/appconfigdata/pom.xml b/services/appconfigdata/pom.xml
index a07030ae6780..1c9654920f70 100644
--- a/services/appconfigdata/pom.xml
+++ b/services/appconfigdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
appconfigdata
AWS Java SDK :: Services :: App Config Data
diff --git a/services/appfabric/pom.xml b/services/appfabric/pom.xml
index 200f34331650..0536b0abc73e 100644
--- a/services/appfabric/pom.xml
+++ b/services/appfabric/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
appfabric
AWS Java SDK :: Services :: App Fabric
diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml
index da965fbb132b..dee2670be0c6 100644
--- a/services/appflow/pom.xml
+++ b/services/appflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
appflow
AWS Java SDK :: Services :: Appflow
diff --git a/services/appintegrations/pom.xml b/services/appintegrations/pom.xml
index 7b41b648720b..c7e86c2cbb5f 100644
--- a/services/appintegrations/pom.xml
+++ b/services/appintegrations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
appintegrations
AWS Java SDK :: Services :: App Integrations
diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml
index a9b6a446ec8e..d90c6b8fc618 100644
--- a/services/applicationautoscaling/pom.xml
+++ b/services/applicationautoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
applicationautoscaling
AWS Java SDK :: Services :: AWS Application Auto Scaling
diff --git a/services/applicationcostprofiler/pom.xml b/services/applicationcostprofiler/pom.xml
index 575a9d412672..4c4f686274ef 100644
--- a/services/applicationcostprofiler/pom.xml
+++ b/services/applicationcostprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
applicationcostprofiler
AWS Java SDK :: Services :: Application Cost Profiler
diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml
index 3619e70e7f8a..0a400fb946c0 100644
--- a/services/applicationdiscovery/pom.xml
+++ b/services/applicationdiscovery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
applicationdiscovery
AWS Java SDK :: Services :: AWS Application Discovery Service
diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml
index c0ca25469dae..94cb9c9535a4 100644
--- a/services/applicationinsights/pom.xml
+++ b/services/applicationinsights/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
applicationinsights
AWS Java SDK :: Services :: Application Insights
diff --git a/services/applicationsignals/pom.xml b/services/applicationsignals/pom.xml
index 5229093d6815..a7a8d771efda 100644
--- a/services/applicationsignals/pom.xml
+++ b/services/applicationsignals/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
applicationsignals
AWS Java SDK :: Services :: Application Signals
diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml
index 790f3adf82a7..f4b8912886de 100644
--- a/services/appmesh/pom.xml
+++ b/services/appmesh/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
appmesh
AWS Java SDK :: Services :: App Mesh
diff --git a/services/apprunner/pom.xml b/services/apprunner/pom.xml
index 8ce648cb6ab8..dd0277368ae8 100644
--- a/services/apprunner/pom.xml
+++ b/services/apprunner/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
apprunner
AWS Java SDK :: Services :: App Runner
diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml
index c02c06b54c2e..c26e6056ed5c 100644
--- a/services/appstream/pom.xml
+++ b/services/appstream/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
appstream
AWS Java SDK :: Services :: Amazon AppStream
diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml
index f26a4cf72f23..695f53a25dd9 100644
--- a/services/appsync/pom.xml
+++ b/services/appsync/pom.xml
@@ -21,7 +21,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
appsync
diff --git a/services/apptest/pom.xml b/services/apptest/pom.xml
index e3f448902d3b..a5c4499c0424 100644
--- a/services/apptest/pom.xml
+++ b/services/apptest/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
apptest
AWS Java SDK :: Services :: App Test
diff --git a/services/arcregionswitch/pom.xml b/services/arcregionswitch/pom.xml
index 30f1e6a269b2..92901062f076 100644
--- a/services/arcregionswitch/pom.xml
+++ b/services/arcregionswitch/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
arcregionswitch
AWS Java SDK :: Services :: ARC Region Switch
diff --git a/services/arczonalshift/pom.xml b/services/arczonalshift/pom.xml
index eb316608bc4d..2abeb08bfea9 100644
--- a/services/arczonalshift/pom.xml
+++ b/services/arczonalshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
arczonalshift
AWS Java SDK :: Services :: ARC Zonal Shift
diff --git a/services/artifact/pom.xml b/services/artifact/pom.xml
index 550582fdecc1..a5a5253896cf 100644
--- a/services/artifact/pom.xml
+++ b/services/artifact/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
artifact
AWS Java SDK :: Services :: Artifact
diff --git a/services/athena/pom.xml b/services/athena/pom.xml
index f4dac422eefc..71023e0d2d76 100644
--- a/services/athena/pom.xml
+++ b/services/athena/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
athena
AWS Java SDK :: Services :: Amazon Athena
diff --git a/services/auditmanager/pom.xml b/services/auditmanager/pom.xml
index 6dcc23558a50..3de45d94a0fd 100644
--- a/services/auditmanager/pom.xml
+++ b/services/auditmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
auditmanager
AWS Java SDK :: Services :: Audit Manager
diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml
index 82ce79b7654c..a36ad080bc7d 100644
--- a/services/autoscaling/pom.xml
+++ b/services/autoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
autoscaling
AWS Java SDK :: Services :: Auto Scaling
diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml
index 57ff25ffa7d9..ac2674d4393f 100644
--- a/services/autoscalingplans/pom.xml
+++ b/services/autoscalingplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
autoscalingplans
AWS Java SDK :: Services :: Auto Scaling Plans
diff --git a/services/b2bi/pom.xml b/services/b2bi/pom.xml
index a5c12ae7d73f..dbf3f2a3c4e6 100644
--- a/services/b2bi/pom.xml
+++ b/services/b2bi/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
b2bi
AWS Java SDK :: Services :: B2 Bi
diff --git a/services/backup/pom.xml b/services/backup/pom.xml
index a838ff7952c9..1c0f05ff47d0 100644
--- a/services/backup/pom.xml
+++ b/services/backup/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
backup
AWS Java SDK :: Services :: Backup
diff --git a/services/backupgateway/pom.xml b/services/backupgateway/pom.xml
index adca3cf07ee8..36339af1b472 100644
--- a/services/backupgateway/pom.xml
+++ b/services/backupgateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
backupgateway
AWS Java SDK :: Services :: Backup Gateway
diff --git a/services/backupsearch/pom.xml b/services/backupsearch/pom.xml
index dcdee9af03ae..93b3dc698fa7 100644
--- a/services/backupsearch/pom.xml
+++ b/services/backupsearch/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
backupsearch
AWS Java SDK :: Services :: Backup Search
diff --git a/services/batch/pom.xml b/services/batch/pom.xml
index 8982844eb38f..c30ddc9d728d 100644
--- a/services/batch/pom.xml
+++ b/services/batch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
batch
AWS Java SDK :: Services :: AWS Batch
diff --git a/services/bcmdashboards/pom.xml b/services/bcmdashboards/pom.xml
index 2fe9ec848af3..85d09847ecb1 100644
--- a/services/bcmdashboards/pom.xml
+++ b/services/bcmdashboards/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
bcmdashboards
AWS Java SDK :: Services :: BCM Dashboards
diff --git a/services/bcmdataexports/pom.xml b/services/bcmdataexports/pom.xml
index 931a755c00b8..3057d01f7060 100644
--- a/services/bcmdataexports/pom.xml
+++ b/services/bcmdataexports/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
bcmdataexports
AWS Java SDK :: Services :: BCM Data Exports
diff --git a/services/bcmpricingcalculator/pom.xml b/services/bcmpricingcalculator/pom.xml
index 7782f5fa1ee1..cb182fb944c8 100644
--- a/services/bcmpricingcalculator/pom.xml
+++ b/services/bcmpricingcalculator/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
bcmpricingcalculator
AWS Java SDK :: Services :: BCM Pricing Calculator
diff --git a/services/bcmrecommendedactions/pom.xml b/services/bcmrecommendedactions/pom.xml
index 5229ccf37ea9..1ff17e6147a9 100644
--- a/services/bcmrecommendedactions/pom.xml
+++ b/services/bcmrecommendedactions/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
bcmrecommendedactions
AWS Java SDK :: Services :: BCM Recommended Actions
diff --git a/services/bedrock/pom.xml b/services/bedrock/pom.xml
index cdb1303c460d..7169455ae9e0 100644
--- a/services/bedrock/pom.xml
+++ b/services/bedrock/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
bedrock
AWS Java SDK :: Services :: Bedrock
diff --git a/services/bedrockagent/pom.xml b/services/bedrockagent/pom.xml
index 547cb20f39c6..de61f8f6740c 100644
--- a/services/bedrockagent/pom.xml
+++ b/services/bedrockagent/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
bedrockagent
AWS Java SDK :: Services :: Bedrock Agent
diff --git a/services/bedrockagentcore/pom.xml b/services/bedrockagentcore/pom.xml
index 3b03b99eddad..b756023dba10 100644
--- a/services/bedrockagentcore/pom.xml
+++ b/services/bedrockagentcore/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
bedrockagentcore
AWS Java SDK :: Services :: Bedrock Agent Core
diff --git a/services/bedrockagentcorecontrol/pom.xml b/services/bedrockagentcorecontrol/pom.xml
index 50315f901d07..fe70b9782b07 100644
--- a/services/bedrockagentcorecontrol/pom.xml
+++ b/services/bedrockagentcorecontrol/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
bedrockagentcorecontrol
AWS Java SDK :: Services :: Bedrock Agent Core Control
diff --git a/services/bedrockagentruntime/pom.xml b/services/bedrockagentruntime/pom.xml
index 8d82fa58dcd4..e414ac721e1a 100644
--- a/services/bedrockagentruntime/pom.xml
+++ b/services/bedrockagentruntime/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
bedrockagentruntime
AWS Java SDK :: Services :: Bedrock Agent Runtime
diff --git a/services/bedrockdataautomation/pom.xml b/services/bedrockdataautomation/pom.xml
index cff5fd8e994b..05a30bfca322 100644
--- a/services/bedrockdataautomation/pom.xml
+++ b/services/bedrockdataautomation/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
bedrockdataautomation
AWS Java SDK :: Services :: Bedrock Data Automation
diff --git a/services/bedrockdataautomationruntime/pom.xml b/services/bedrockdataautomationruntime/pom.xml
index 9685cae8ae0d..e5f78b4294b0 100644
--- a/services/bedrockdataautomationruntime/pom.xml
+++ b/services/bedrockdataautomationruntime/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
bedrockdataautomationruntime
AWS Java SDK :: Services :: Bedrock Data Automation Runtime
diff --git a/services/bedrockruntime/pom.xml b/services/bedrockruntime/pom.xml
index 7f0a1902574c..ba0fa1a1b99d 100644
--- a/services/bedrockruntime/pom.xml
+++ b/services/bedrockruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
bedrockruntime
AWS Java SDK :: Services :: Bedrock Runtime
diff --git a/services/billing/pom.xml b/services/billing/pom.xml
index c045a51e01c6..c3260f1cd16a 100644
--- a/services/billing/pom.xml
+++ b/services/billing/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
billing
AWS Java SDK :: Services :: Billing
diff --git a/services/billingconductor/pom.xml b/services/billingconductor/pom.xml
index af160d77205a..f123619c0103 100644
--- a/services/billingconductor/pom.xml
+++ b/services/billingconductor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
billingconductor
AWS Java SDK :: Services :: Billingconductor
diff --git a/services/braket/pom.xml b/services/braket/pom.xml
index afcc081ec649..9e6c0dc6a9f2 100644
--- a/services/braket/pom.xml
+++ b/services/braket/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
braket
AWS Java SDK :: Services :: Braket
diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml
index 685eaafd526c..6d277fc39faf 100644
--- a/services/budgets/pom.xml
+++ b/services/budgets/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
budgets
AWS Java SDK :: Services :: AWS Budgets
diff --git a/services/chatbot/pom.xml b/services/chatbot/pom.xml
index 4259117a87f6..ccfc4ae4872e 100644
--- a/services/chatbot/pom.xml
+++ b/services/chatbot/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
chatbot
AWS Java SDK :: Services :: Chatbot
diff --git a/services/chime/pom.xml b/services/chime/pom.xml
index cbf9d06c4011..9ec2337989de 100644
--- a/services/chime/pom.xml
+++ b/services/chime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
chime
AWS Java SDK :: Services :: Chime
diff --git a/services/chimesdkidentity/pom.xml b/services/chimesdkidentity/pom.xml
index 063e08462bee..aec491566026 100644
--- a/services/chimesdkidentity/pom.xml
+++ b/services/chimesdkidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
chimesdkidentity
AWS Java SDK :: Services :: Chime SDK Identity
diff --git a/services/chimesdkmediapipelines/pom.xml b/services/chimesdkmediapipelines/pom.xml
index 72bd2d527967..6153b9a4fe70 100644
--- a/services/chimesdkmediapipelines/pom.xml
+++ b/services/chimesdkmediapipelines/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
chimesdkmediapipelines
AWS Java SDK :: Services :: Chime SDK Media Pipelines
diff --git a/services/chimesdkmeetings/pom.xml b/services/chimesdkmeetings/pom.xml
index 3f4e23e4d5e0..29cceae80b80 100644
--- a/services/chimesdkmeetings/pom.xml
+++ b/services/chimesdkmeetings/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
chimesdkmeetings
AWS Java SDK :: Services :: Chime SDK Meetings
diff --git a/services/chimesdkmessaging/pom.xml b/services/chimesdkmessaging/pom.xml
index a82be1741595..5bb84a0e8e9b 100644
--- a/services/chimesdkmessaging/pom.xml
+++ b/services/chimesdkmessaging/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
chimesdkmessaging
AWS Java SDK :: Services :: Chime SDK Messaging
diff --git a/services/chimesdkvoice/pom.xml b/services/chimesdkvoice/pom.xml
index ec8a1435f4c8..e40758fd3ab0 100644
--- a/services/chimesdkvoice/pom.xml
+++ b/services/chimesdkvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
chimesdkvoice
AWS Java SDK :: Services :: Chime SDK Voice
diff --git a/services/cleanrooms/pom.xml b/services/cleanrooms/pom.xml
index 480fcff193fc..cc6b76757dfd 100644
--- a/services/cleanrooms/pom.xml
+++ b/services/cleanrooms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cleanrooms
AWS Java SDK :: Services :: Clean Rooms
diff --git a/services/cleanroomsml/pom.xml b/services/cleanroomsml/pom.xml
index 5f9ead9b17e9..55797f1bfb14 100644
--- a/services/cleanroomsml/pom.xml
+++ b/services/cleanroomsml/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cleanroomsml
AWS Java SDK :: Services :: Clean Rooms ML
diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml
index 39133cade01e..4761118b758f 100644
--- a/services/cloud9/pom.xml
+++ b/services/cloud9/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
cloud9
diff --git a/services/cloudcontrol/pom.xml b/services/cloudcontrol/pom.xml
index 345b75ca9afc..10706ce023af 100644
--- a/services/cloudcontrol/pom.xml
+++ b/services/cloudcontrol/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cloudcontrol
AWS Java SDK :: Services :: Cloud Control
diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml
index d2bb303ee9e3..5642d98547f5 100644
--- a/services/clouddirectory/pom.xml
+++ b/services/clouddirectory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
clouddirectory
AWS Java SDK :: Services :: Amazon CloudDirectory
diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml
index 706572fb4bb9..74a1cabe0ae8 100644
--- a/services/cloudformation/pom.xml
+++ b/services/cloudformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cloudformation
AWS Java SDK :: Services :: AWS CloudFormation
diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml
index 2fe866ab3479..2c8732625e4c 100644
--- a/services/cloudfront/pom.xml
+++ b/services/cloudfront/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cloudfront
AWS Java SDK :: Services :: Amazon CloudFront
diff --git a/services/cloudfrontkeyvaluestore/pom.xml b/services/cloudfrontkeyvaluestore/pom.xml
index 828fb5e1e6ce..6ce6c4ae8206 100644
--- a/services/cloudfrontkeyvaluestore/pom.xml
+++ b/services/cloudfrontkeyvaluestore/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cloudfrontkeyvaluestore
AWS Java SDK :: Services :: Cloud Front Key Value Store
diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml
index d7690095a80d..797bbe0d4bab 100644
--- a/services/cloudhsm/pom.xml
+++ b/services/cloudhsm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cloudhsm
AWS Java SDK :: Services :: AWS CloudHSM
diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml
index 4878ee959ad4..a54f56c1b54c 100644
--- a/services/cloudhsmv2/pom.xml
+++ b/services/cloudhsmv2/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
cloudhsmv2
diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml
index 47f8954c124f..8a76738df0ca 100644
--- a/services/cloudsearch/pom.xml
+++ b/services/cloudsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cloudsearch
AWS Java SDK :: Services :: Amazon CloudSearch
diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml
index 77971a1ecdbf..cfc311f8eb57 100644
--- a/services/cloudsearchdomain/pom.xml
+++ b/services/cloudsearchdomain/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cloudsearchdomain
AWS Java SDK :: Services :: Amazon CloudSearch Domain
diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml
index 24c6e12456a3..f996b5d26f41 100644
--- a/services/cloudtrail/pom.xml
+++ b/services/cloudtrail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cloudtrail
AWS Java SDK :: Services :: AWS CloudTrail
diff --git a/services/cloudtraildata/pom.xml b/services/cloudtraildata/pom.xml
index 5e774551d818..aa73a8352a8d 100644
--- a/services/cloudtraildata/pom.xml
+++ b/services/cloudtraildata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cloudtraildata
AWS Java SDK :: Services :: Cloud Trail Data
diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml
index 09e2d47b688c..0cef14c29da8 100644
--- a/services/cloudwatch/pom.xml
+++ b/services/cloudwatch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cloudwatch
AWS Java SDK :: Services :: Amazon CloudWatch
diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml
index 06931bf88565..4486c868fe62 100644
--- a/services/cloudwatchevents/pom.xml
+++ b/services/cloudwatchevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cloudwatchevents
AWS Java SDK :: Services :: Amazon CloudWatch Events
diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml
index a9a338b86491..812489d85fd0 100644
--- a/services/cloudwatchlogs/pom.xml
+++ b/services/cloudwatchlogs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cloudwatchlogs
AWS Java SDK :: Services :: Amazon CloudWatch Logs
diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml
index c1fe38fcd761..6a7be65294c3 100644
--- a/services/codeartifact/pom.xml
+++ b/services/codeartifact/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
codeartifact
AWS Java SDK :: Services :: Codeartifact
diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml
index 87df25187ad8..5f7640efefbf 100644
--- a/services/codebuild/pom.xml
+++ b/services/codebuild/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
codebuild
AWS Java SDK :: Services :: AWS Code Build
diff --git a/services/codecatalyst/pom.xml b/services/codecatalyst/pom.xml
index c0fceb9981d4..3c4b1aa709ad 100644
--- a/services/codecatalyst/pom.xml
+++ b/services/codecatalyst/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
codecatalyst
AWS Java SDK :: Services :: Code Catalyst
diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml
index 4e1e9f85c03a..e577f811b114 100644
--- a/services/codecommit/pom.xml
+++ b/services/codecommit/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
codecommit
AWS Java SDK :: Services :: AWS CodeCommit
diff --git a/services/codeconnections/pom.xml b/services/codeconnections/pom.xml
index 65f4ffb0cc9c..2e970a75a0bd 100644
--- a/services/codeconnections/pom.xml
+++ b/services/codeconnections/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
codeconnections
AWS Java SDK :: Services :: Code Connections
diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml
index 67cb8b8cdfac..d21d6174152b 100644
--- a/services/codedeploy/pom.xml
+++ b/services/codedeploy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
codedeploy
AWS Java SDK :: Services :: AWS CodeDeploy
diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml
index aa0396b577fc..78c1282819ca 100644
--- a/services/codeguruprofiler/pom.xml
+++ b/services/codeguruprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
codeguruprofiler
AWS Java SDK :: Services :: CodeGuruProfiler
diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml
index c5e1b018775a..a5a8747dceb3 100644
--- a/services/codegurureviewer/pom.xml
+++ b/services/codegurureviewer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
codegurureviewer
AWS Java SDK :: Services :: CodeGuru Reviewer
diff --git a/services/codegurusecurity/pom.xml b/services/codegurusecurity/pom.xml
index 5d72ff6f12da..eeea045e828b 100644
--- a/services/codegurusecurity/pom.xml
+++ b/services/codegurusecurity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
codegurusecurity
AWS Java SDK :: Services :: Code Guru Security
diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml
index 85cb6a588cb8..73f9c027f7cf 100644
--- a/services/codepipeline/pom.xml
+++ b/services/codepipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
codepipeline
AWS Java SDK :: Services :: AWS CodePipeline
diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml
index 3a1a946b95f2..636683293280 100644
--- a/services/codestarconnections/pom.xml
+++ b/services/codestarconnections/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
codestarconnections
AWS Java SDK :: Services :: CodeStar connections
diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml
index b7e6d1e478bc..6196e88dcb60 100644
--- a/services/codestarnotifications/pom.xml
+++ b/services/codestarnotifications/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
codestarnotifications
AWS Java SDK :: Services :: Codestar Notifications
diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml
index ff286e387f0d..1e14c68b8890 100644
--- a/services/cognitoidentity/pom.xml
+++ b/services/cognitoidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cognitoidentity
AWS Java SDK :: Services :: Amazon Cognito Identity
diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml
index ff4dd6052f30..388d4fa9a49f 100644
--- a/services/cognitoidentityprovider/pom.xml
+++ b/services/cognitoidentityprovider/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cognitoidentityprovider
AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service
diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml
index 7b3b4bd515b0..21d1707fe679 100644
--- a/services/cognitosync/pom.xml
+++ b/services/cognitosync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cognitosync
AWS Java SDK :: Services :: Amazon Cognito Sync
diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml
index 55468aeb6356..6cd9f9a08c95 100644
--- a/services/comprehend/pom.xml
+++ b/services/comprehend/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
comprehend
diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml
index b00a5519d0e4..66ddedd0c325 100644
--- a/services/comprehendmedical/pom.xml
+++ b/services/comprehendmedical/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
comprehendmedical
AWS Java SDK :: Services :: ComprehendMedical
diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml
index 53577b46e8f8..38329efc625d 100644
--- a/services/computeoptimizer/pom.xml
+++ b/services/computeoptimizer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
computeoptimizer
AWS Java SDK :: Services :: Compute Optimizer
diff --git a/services/config/pom.xml b/services/config/pom.xml
index 0903bee77183..a923c9e65aea 100644
--- a/services/config/pom.xml
+++ b/services/config/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
config
AWS Java SDK :: Services :: AWS Config
diff --git a/services/connect/pom.xml b/services/connect/pom.xml
index 1a1ed3bcfe26..eae3f821cf3b 100644
--- a/services/connect/pom.xml
+++ b/services/connect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
connect
AWS Java SDK :: Services :: Connect
diff --git a/services/connectcampaigns/pom.xml b/services/connectcampaigns/pom.xml
index 8139174c53d6..e97d557b5984 100644
--- a/services/connectcampaigns/pom.xml
+++ b/services/connectcampaigns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
connectcampaigns
AWS Java SDK :: Services :: Connect Campaigns
diff --git a/services/connectcampaignsv2/pom.xml b/services/connectcampaignsv2/pom.xml
index 014a32046623..bf8de2d4be3f 100644
--- a/services/connectcampaignsv2/pom.xml
+++ b/services/connectcampaignsv2/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
connectcampaignsv2
AWS Java SDK :: Services :: Connect Campaigns V2
diff --git a/services/connectcases/pom.xml b/services/connectcases/pom.xml
index 1548b2c2c4ec..1738fe3f3bee 100644
--- a/services/connectcases/pom.xml
+++ b/services/connectcases/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
connectcases
AWS Java SDK :: Services :: Connect Cases
diff --git a/services/connectcontactlens/pom.xml b/services/connectcontactlens/pom.xml
index 977127a1e022..4e0819dae1aa 100644
--- a/services/connectcontactlens/pom.xml
+++ b/services/connectcontactlens/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
connectcontactlens
AWS Java SDK :: Services :: Connect Contact Lens
diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml
index d1df7d1ab98a..0a61715a8fbc 100644
--- a/services/connectparticipant/pom.xml
+++ b/services/connectparticipant/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
connectparticipant
AWS Java SDK :: Services :: ConnectParticipant
diff --git a/services/controlcatalog/pom.xml b/services/controlcatalog/pom.xml
index 6a81ed9c5077..9950459fdf5a 100644
--- a/services/controlcatalog/pom.xml
+++ b/services/controlcatalog/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
controlcatalog
AWS Java SDK :: Services :: Control Catalog
diff --git a/services/controltower/pom.xml b/services/controltower/pom.xml
index 30868970fc24..7f44039fc0f7 100644
--- a/services/controltower/pom.xml
+++ b/services/controltower/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
controltower
AWS Java SDK :: Services :: Control Tower
diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml
index 3438b362d446..852815033b5f 100644
--- a/services/costandusagereport/pom.xml
+++ b/services/costandusagereport/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
costandusagereport
AWS Java SDK :: Services :: AWS Cost and Usage Report
diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml
index 422520f78bea..e4e6f50dfd27 100644
--- a/services/costexplorer/pom.xml
+++ b/services/costexplorer/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
costexplorer
diff --git a/services/costoptimizationhub/pom.xml b/services/costoptimizationhub/pom.xml
index 7f6bac114e01..1feb9f3534c2 100644
--- a/services/costoptimizationhub/pom.xml
+++ b/services/costoptimizationhub/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
costoptimizationhub
AWS Java SDK :: Services :: Cost Optimization Hub
diff --git a/services/customerprofiles/pom.xml b/services/customerprofiles/pom.xml
index d643a4da0f79..6f5141db2905 100644
--- a/services/customerprofiles/pom.xml
+++ b/services/customerprofiles/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
customerprofiles
AWS Java SDK :: Services :: Customer Profiles
diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml
index ae82483b333f..c4c743101f71 100644
--- a/services/databasemigration/pom.xml
+++ b/services/databasemigration/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
databasemigration
AWS Java SDK :: Services :: AWS Database Migration Service
diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml
index d5a1a2531eea..5333ef264ef7 100644
--- a/services/databrew/pom.xml
+++ b/services/databrew/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
databrew
AWS Java SDK :: Services :: Data Brew
diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml
index 9288987fce4c..633d1f386eb2 100644
--- a/services/dataexchange/pom.xml
+++ b/services/dataexchange/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
dataexchange
AWS Java SDK :: Services :: DataExchange
diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml
index 24fa3eca7fc7..9a58bffa227d 100644
--- a/services/datapipeline/pom.xml
+++ b/services/datapipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
datapipeline
AWS Java SDK :: Services :: AWS Data Pipeline
diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml
index f92354ced808..ae9c152573dc 100644
--- a/services/datasync/pom.xml
+++ b/services/datasync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
datasync
AWS Java SDK :: Services :: DataSync
diff --git a/services/datazone/pom.xml b/services/datazone/pom.xml
index 4c909da69f16..12cc4ba97978 100644
--- a/services/datazone/pom.xml
+++ b/services/datazone/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
datazone
AWS Java SDK :: Services :: Data Zone
diff --git a/services/dax/pom.xml b/services/dax/pom.xml
index 5973e429c186..ee33314378db 100644
--- a/services/dax/pom.xml
+++ b/services/dax/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
dax
AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX)
diff --git a/services/deadline/pom.xml b/services/deadline/pom.xml
index 891688e1238e..0b0a46f42e04 100644
--- a/services/deadline/pom.xml
+++ b/services/deadline/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
deadline
AWS Java SDK :: Services :: Deadline
diff --git a/services/detective/pom.xml b/services/detective/pom.xml
index 86f72bb27718..6d7a51c115f8 100644
--- a/services/detective/pom.xml
+++ b/services/detective/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
detective
AWS Java SDK :: Services :: Detective
diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml
index 40f422f64a49..037dbc505da2 100644
--- a/services/devicefarm/pom.xml
+++ b/services/devicefarm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
devicefarm
AWS Java SDK :: Services :: AWS Device Farm
diff --git a/services/devopsguru/pom.xml b/services/devopsguru/pom.xml
index 4da2e15f55b4..fce69be01fa7 100644
--- a/services/devopsguru/pom.xml
+++ b/services/devopsguru/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
devopsguru
AWS Java SDK :: Services :: Dev Ops Guru
diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml
index 97b753c741c7..2b6575aedc39 100644
--- a/services/directconnect/pom.xml
+++ b/services/directconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
directconnect
AWS Java SDK :: Services :: AWS Direct Connect
diff --git a/services/directory/pom.xml b/services/directory/pom.xml
index 53c0fa19dd16..9ceaed2aeff9 100644
--- a/services/directory/pom.xml
+++ b/services/directory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
directory
AWS Java SDK :: Services :: AWS Directory Service
diff --git a/services/directoryservicedata/pom.xml b/services/directoryservicedata/pom.xml
index 534f0e24b42a..7b18518427c1 100644
--- a/services/directoryservicedata/pom.xml
+++ b/services/directoryservicedata/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
directoryservicedata
AWS Java SDK :: Services :: Directory Service Data
diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml
index 5fe66d45558b..3600cbbe3911 100644
--- a/services/dlm/pom.xml
+++ b/services/dlm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
dlm
AWS Java SDK :: Services :: DLM
diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml
index 5287a483760a..08834cc723d3 100644
--- a/services/docdb/pom.xml
+++ b/services/docdb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
docdb
AWS Java SDK :: Services :: DocDB
diff --git a/services/docdbelastic/pom.xml b/services/docdbelastic/pom.xml
index 10b150777af2..ddcfc974e19c 100644
--- a/services/docdbelastic/pom.xml
+++ b/services/docdbelastic/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
docdbelastic
AWS Java SDK :: Services :: Doc DB Elastic
diff --git a/services/drs/pom.xml b/services/drs/pom.xml
index 0f2292f89b24..6d28f8ef8ea7 100644
--- a/services/drs/pom.xml
+++ b/services/drs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
drs
AWS Java SDK :: Services :: Drs
diff --git a/services/dsql/pom.xml b/services/dsql/pom.xml
index 272e02c171cf..96afd1a53fd0 100644
--- a/services/dsql/pom.xml
+++ b/services/dsql/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
dsql
AWS Java SDK :: Services :: DSQL
diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml
index f9741dd55f81..0d9d8c8bfde3 100644
--- a/services/dynamodb/pom.xml
+++ b/services/dynamodb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
dynamodb
AWS Java SDK :: Services :: Amazon DynamoDB
diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml
index ec734e101cc4..e12a8ac903ec 100644
--- a/services/ebs/pom.xml
+++ b/services/ebs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ebs
AWS Java SDK :: Services :: EBS
diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml
index d540b805c82d..36b24ed096d5 100644
--- a/services/ec2/pom.xml
+++ b/services/ec2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ec2
AWS Java SDK :: Services :: Amazon EC2
diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml
index 74459ca8626d..56b6cad1c430 100644
--- a/services/ec2instanceconnect/pom.xml
+++ b/services/ec2instanceconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ec2instanceconnect
AWS Java SDK :: Services :: EC2 Instance Connect
diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml
index 758b003c6737..d07f3b64753e 100644
--- a/services/ecr/pom.xml
+++ b/services/ecr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ecr
AWS Java SDK :: Services :: Amazon EC2 Container Registry
diff --git a/services/ecrpublic/pom.xml b/services/ecrpublic/pom.xml
index f4ebf76662b3..030f2dc99510 100644
--- a/services/ecrpublic/pom.xml
+++ b/services/ecrpublic/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ecrpublic
AWS Java SDK :: Services :: ECR PUBLIC
diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml
index 1f986a290c89..710ea7c1c1e5 100644
--- a/services/ecs/pom.xml
+++ b/services/ecs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ecs
AWS Java SDK :: Services :: Amazon EC2 Container Service
diff --git a/services/efs/pom.xml b/services/efs/pom.xml
index dce347ddba45..bc85cb09f338 100644
--- a/services/efs/pom.xml
+++ b/services/efs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
efs
AWS Java SDK :: Services :: Amazon Elastic File System
diff --git a/services/eks/pom.xml b/services/eks/pom.xml
index 521c62a306cb..8a17751d158e 100644
--- a/services/eks/pom.xml
+++ b/services/eks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
eks
AWS Java SDK :: Services :: EKS
diff --git a/services/eksauth/pom.xml b/services/eksauth/pom.xml
index 1278318a9246..0c5f2a735332 100644
--- a/services/eksauth/pom.xml
+++ b/services/eksauth/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
eksauth
AWS Java SDK :: Services :: EKS Auth
diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml
index 7b21059cd3c0..7e958888a3c4 100644
--- a/services/elasticache/pom.xml
+++ b/services/elasticache/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
elasticache
AWS Java SDK :: Services :: Amazon ElastiCache
diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml
index 3dcaba8149f4..8bb50b745321 100644
--- a/services/elasticbeanstalk/pom.xml
+++ b/services/elasticbeanstalk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
elasticbeanstalk
AWS Java SDK :: Services :: AWS Elastic Beanstalk
diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml
index 7b7d0bee20d9..c58d031e77e3 100644
--- a/services/elasticloadbalancing/pom.xml
+++ b/services/elasticloadbalancing/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
elasticloadbalancing
AWS Java SDK :: Services :: Elastic Load Balancing
diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml
index 989d757ae008..99fce0642716 100644
--- a/services/elasticloadbalancingv2/pom.xml
+++ b/services/elasticloadbalancingv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
elasticloadbalancingv2
AWS Java SDK :: Services :: Elastic Load Balancing V2
diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml
index 38f01774561a..fc53aa290ef7 100644
--- a/services/elasticsearch/pom.xml
+++ b/services/elasticsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
elasticsearch
AWS Java SDK :: Services :: Amazon Elasticsearch Service
diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml
index 05319149c4f6..d580a62bb19f 100644
--- a/services/elastictranscoder/pom.xml
+++ b/services/elastictranscoder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
elastictranscoder
AWS Java SDK :: Services :: Amazon Elastic Transcoder
diff --git a/services/emr/pom.xml b/services/emr/pom.xml
index 61672e1ab66d..e77c29a17390 100644
--- a/services/emr/pom.xml
+++ b/services/emr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
emr
AWS Java SDK :: Services :: Amazon EMR
diff --git a/services/emrcontainers/pom.xml b/services/emrcontainers/pom.xml
index d3a26d316907..6c6ae795ba43 100644
--- a/services/emrcontainers/pom.xml
+++ b/services/emrcontainers/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
emrcontainers
AWS Java SDK :: Services :: EMR Containers
diff --git a/services/emrserverless/pom.xml b/services/emrserverless/pom.xml
index 309f6d35fb69..87b8e0294974 100644
--- a/services/emrserverless/pom.xml
+++ b/services/emrserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
emrserverless
AWS Java SDK :: Services :: EMR Serverless
diff --git a/services/entityresolution/pom.xml b/services/entityresolution/pom.xml
index 9aee895ff2be..b14c0dec374a 100644
--- a/services/entityresolution/pom.xml
+++ b/services/entityresolution/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
entityresolution
AWS Java SDK :: Services :: Entity Resolution
diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml
index 6f9e6021d933..1d6f2e72f634 100644
--- a/services/eventbridge/pom.xml
+++ b/services/eventbridge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
eventbridge
AWS Java SDK :: Services :: EventBridge
diff --git a/services/evidently/pom.xml b/services/evidently/pom.xml
index 30c006ef0cb5..680255927cc6 100644
--- a/services/evidently/pom.xml
+++ b/services/evidently/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
evidently
AWS Java SDK :: Services :: Evidently
diff --git a/services/evs/pom.xml b/services/evs/pom.xml
index 1dc20ab2a122..399f11199cd9 100644
--- a/services/evs/pom.xml
+++ b/services/evs/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
evs
AWS Java SDK :: Services :: Evs
diff --git a/services/finspace/pom.xml b/services/finspace/pom.xml
index 2f7aefc227bb..61567a0cfcbe 100644
--- a/services/finspace/pom.xml
+++ b/services/finspace/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
finspace
AWS Java SDK :: Services :: Finspace
diff --git a/services/finspacedata/pom.xml b/services/finspacedata/pom.xml
index 2ffe3fed0536..859dc583fadf 100644
--- a/services/finspacedata/pom.xml
+++ b/services/finspacedata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
finspacedata
AWS Java SDK :: Services :: Finspace Data
diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml
index 726d185c9657..30419479b5f5 100644
--- a/services/firehose/pom.xml
+++ b/services/firehose/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
firehose
AWS Java SDK :: Services :: Amazon Kinesis Firehose
diff --git a/services/fis/pom.xml b/services/fis/pom.xml
index 4d8fc70f773a..65e6b4b5c700 100644
--- a/services/fis/pom.xml
+++ b/services/fis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
fis
AWS Java SDK :: Services :: Fis
diff --git a/services/fms/pom.xml b/services/fms/pom.xml
index 6b8a40f305d5..8b81904d8ca4 100644
--- a/services/fms/pom.xml
+++ b/services/fms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
fms
AWS Java SDK :: Services :: FMS
diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml
index d9cc65a95e69..fd7c405e5e70 100644
--- a/services/forecast/pom.xml
+++ b/services/forecast/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
forecast
AWS Java SDK :: Services :: Forecast
diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml
index 10a2c825b15c..1e0f9afad69c 100644
--- a/services/forecastquery/pom.xml
+++ b/services/forecastquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
forecastquery
AWS Java SDK :: Services :: Forecastquery
diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml
index 13efafcd1802..430e203c1514 100644
--- a/services/frauddetector/pom.xml
+++ b/services/frauddetector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
frauddetector
AWS Java SDK :: Services :: FraudDetector
diff --git a/services/freetier/pom.xml b/services/freetier/pom.xml
index c57e5b2004e1..abebb3d67df3 100644
--- a/services/freetier/pom.xml
+++ b/services/freetier/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
freetier
AWS Java SDK :: Services :: Free Tier
diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml
index ab04afaf0384..dc6696d9c04a 100644
--- a/services/fsx/pom.xml
+++ b/services/fsx/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
fsx
AWS Java SDK :: Services :: FSx
diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml
index 3c59b095e326..ceecf45b6eb4 100644
--- a/services/gamelift/pom.xml
+++ b/services/gamelift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
gamelift
AWS Java SDK :: Services :: AWS GameLift
diff --git a/services/gameliftstreams/pom.xml b/services/gameliftstreams/pom.xml
index 0ec3c9c6040e..f3e91c0a1e84 100644
--- a/services/gameliftstreams/pom.xml
+++ b/services/gameliftstreams/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
gameliftstreams
AWS Java SDK :: Services :: Game Lift Streams
diff --git a/services/geomaps/pom.xml b/services/geomaps/pom.xml
index 132025a873f0..edd23ad0bce4 100644
--- a/services/geomaps/pom.xml
+++ b/services/geomaps/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
geomaps
AWS Java SDK :: Services :: Geo Maps
diff --git a/services/geoplaces/pom.xml b/services/geoplaces/pom.xml
index 152468faa6e7..5652cea57340 100644
--- a/services/geoplaces/pom.xml
+++ b/services/geoplaces/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
geoplaces
AWS Java SDK :: Services :: Geo Places
diff --git a/services/georoutes/pom.xml b/services/georoutes/pom.xml
index efac45b9a1f6..1f79bc7303df 100644
--- a/services/georoutes/pom.xml
+++ b/services/georoutes/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
georoutes
AWS Java SDK :: Services :: Geo Routes
diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml
index f9095ae53944..7bfd35f87808 100644
--- a/services/glacier/pom.xml
+++ b/services/glacier/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
glacier
AWS Java SDK :: Services :: Amazon Glacier
diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml
index b3f6562d7a24..3cbe913cc475 100644
--- a/services/globalaccelerator/pom.xml
+++ b/services/globalaccelerator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
globalaccelerator
AWS Java SDK :: Services :: Global Accelerator
diff --git a/services/glue/pom.xml b/services/glue/pom.xml
index 2941aac110f7..3f22b5da7127 100644
--- a/services/glue/pom.xml
+++ b/services/glue/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
glue
diff --git a/services/grafana/pom.xml b/services/grafana/pom.xml
index f22de3e6b52b..74403ce7cb6e 100644
--- a/services/grafana/pom.xml
+++ b/services/grafana/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
grafana
AWS Java SDK :: Services :: Grafana
diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml
index 800d60a900d3..3d3ed619eb47 100644
--- a/services/greengrass/pom.xml
+++ b/services/greengrass/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
greengrass
AWS Java SDK :: Services :: AWS Greengrass
diff --git a/services/greengrassv2/pom.xml b/services/greengrassv2/pom.xml
index f656565ab644..9e350ff4b66e 100644
--- a/services/greengrassv2/pom.xml
+++ b/services/greengrassv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
greengrassv2
AWS Java SDK :: Services :: Greengrass V2
diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml
index e8745f3ec242..ed5df2f3e7ce 100644
--- a/services/groundstation/pom.xml
+++ b/services/groundstation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
groundstation
AWS Java SDK :: Services :: GroundStation
diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml
index 56c60acd10bd..570bd4f1ea4d 100644
--- a/services/guardduty/pom.xml
+++ b/services/guardduty/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
guardduty
diff --git a/services/health/pom.xml b/services/health/pom.xml
index fddbfcdacfd7..70b98856eea7 100644
--- a/services/health/pom.xml
+++ b/services/health/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
health
AWS Java SDK :: Services :: AWS Health APIs and Notifications
diff --git a/services/healthlake/pom.xml b/services/healthlake/pom.xml
index 0876c0ec89ad..667d694bc772 100644
--- a/services/healthlake/pom.xml
+++ b/services/healthlake/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
healthlake
AWS Java SDK :: Services :: Health Lake
diff --git a/services/iam/pom.xml b/services/iam/pom.xml
index 4e5bc07d04f5..dde654033b51 100644
--- a/services/iam/pom.xml
+++ b/services/iam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
iam
AWS Java SDK :: Services :: AWS IAM
diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml
index 50028e022145..95b95bc94084 100644
--- a/services/identitystore/pom.xml
+++ b/services/identitystore/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
identitystore
AWS Java SDK :: Services :: Identitystore
diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml
index 61f57a9b355b..9ca17e409c35 100644
--- a/services/imagebuilder/pom.xml
+++ b/services/imagebuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
imagebuilder
AWS Java SDK :: Services :: Imagebuilder
diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml
index bbaaf6b01995..2065917b9aab 100644
--- a/services/inspector/pom.xml
+++ b/services/inspector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
inspector
AWS Java SDK :: Services :: Amazon Inspector Service
diff --git a/services/inspector2/pom.xml b/services/inspector2/pom.xml
index 0e38f2214398..2b6650a0e275 100644
--- a/services/inspector2/pom.xml
+++ b/services/inspector2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
inspector2
AWS Java SDK :: Services :: Inspector2
diff --git a/services/inspectorscan/pom.xml b/services/inspectorscan/pom.xml
index 547fb5a57c72..5a24ae996d8d 100644
--- a/services/inspectorscan/pom.xml
+++ b/services/inspectorscan/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
inspectorscan
AWS Java SDK :: Services :: Inspector Scan
diff --git a/services/internetmonitor/pom.xml b/services/internetmonitor/pom.xml
index 2e99fc0056f2..7894a6db1c22 100644
--- a/services/internetmonitor/pom.xml
+++ b/services/internetmonitor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
internetmonitor
AWS Java SDK :: Services :: Internet Monitor
diff --git a/services/invoicing/pom.xml b/services/invoicing/pom.xml
index 0a9ed24ca8c5..5f2bfe7f036d 100644
--- a/services/invoicing/pom.xml
+++ b/services/invoicing/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
invoicing
AWS Java SDK :: Services :: Invoicing
diff --git a/services/iot/pom.xml b/services/iot/pom.xml
index ce6cfb1fbc7c..d892d73541b2 100644
--- a/services/iot/pom.xml
+++ b/services/iot/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
iot
AWS Java SDK :: Services :: AWS IoT
diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml
index 0a7b5f985203..7f377de64f91 100644
--- a/services/iotanalytics/pom.xml
+++ b/services/iotanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
iotanalytics
AWS Java SDK :: Services :: IoTAnalytics
diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml
index c4e00ccdcb1e..bd1aa4a14940 100644
--- a/services/iotdataplane/pom.xml
+++ b/services/iotdataplane/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
iotdataplane
AWS Java SDK :: Services :: AWS IoT Data Plane
diff --git a/services/iotdeviceadvisor/pom.xml b/services/iotdeviceadvisor/pom.xml
index 6f23829c9619..a9b00cf5d57a 100644
--- a/services/iotdeviceadvisor/pom.xml
+++ b/services/iotdeviceadvisor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
iotdeviceadvisor
AWS Java SDK :: Services :: Iot Device Advisor
diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml
index 809a3a02ee9c..5f43403f1594 100644
--- a/services/iotevents/pom.xml
+++ b/services/iotevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
iotevents
AWS Java SDK :: Services :: IoT Events
diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml
index 4f0075345d1f..5cd9cb5981ec 100644
--- a/services/ioteventsdata/pom.xml
+++ b/services/ioteventsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ioteventsdata
AWS Java SDK :: Services :: IoT Events Data
diff --git a/services/iotfleethub/pom.xml b/services/iotfleethub/pom.xml
index ee9552e6705e..d6e46fea2044 100644
--- a/services/iotfleethub/pom.xml
+++ b/services/iotfleethub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
iotfleethub
AWS Java SDK :: Services :: Io T Fleet Hub
diff --git a/services/iotfleetwise/pom.xml b/services/iotfleetwise/pom.xml
index ac43ef2f70a7..50f86e1696f0 100644
--- a/services/iotfleetwise/pom.xml
+++ b/services/iotfleetwise/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
iotfleetwise
AWS Java SDK :: Services :: Io T Fleet Wise
diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml
index 17acf7fc519c..1d15c818082f 100644
--- a/services/iotjobsdataplane/pom.xml
+++ b/services/iotjobsdataplane/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
iotjobsdataplane
AWS Java SDK :: Services :: IoT Jobs Data Plane
diff --git a/services/iotmanagedintegrations/pom.xml b/services/iotmanagedintegrations/pom.xml
index 2a63515897d1..8e157fa2812d 100644
--- a/services/iotmanagedintegrations/pom.xml
+++ b/services/iotmanagedintegrations/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
iotmanagedintegrations
AWS Java SDK :: Services :: IoT Managed Integrations
diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml
index e3e03288d4c7..f6d8c482603b 100644
--- a/services/iotsecuretunneling/pom.xml
+++ b/services/iotsecuretunneling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
iotsecuretunneling
AWS Java SDK :: Services :: IoTSecureTunneling
diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml
index 89d34212fb72..bc1a59e2792f 100644
--- a/services/iotsitewise/pom.xml
+++ b/services/iotsitewise/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
iotsitewise
AWS Java SDK :: Services :: Io T Site Wise
diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml
index 4cecdfaf19dc..eb72c9e360bc 100644
--- a/services/iotthingsgraph/pom.xml
+++ b/services/iotthingsgraph/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
iotthingsgraph
AWS Java SDK :: Services :: IoTThingsGraph
diff --git a/services/iottwinmaker/pom.xml b/services/iottwinmaker/pom.xml
index a31273b13ed0..28c2c0e376af 100644
--- a/services/iottwinmaker/pom.xml
+++ b/services/iottwinmaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
iottwinmaker
AWS Java SDK :: Services :: Io T Twin Maker
diff --git a/services/iotwireless/pom.xml b/services/iotwireless/pom.xml
index bc277431777c..d42e15f7e062 100644
--- a/services/iotwireless/pom.xml
+++ b/services/iotwireless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
iotwireless
AWS Java SDK :: Services :: IoT Wireless
diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml
index 38e8329e4b5a..091422e18a72 100644
--- a/services/ivs/pom.xml
+++ b/services/ivs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ivs
AWS Java SDK :: Services :: Ivs
diff --git a/services/ivschat/pom.xml b/services/ivschat/pom.xml
index 0d0c226623bd..5b5166878a06 100644
--- a/services/ivschat/pom.xml
+++ b/services/ivschat/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ivschat
AWS Java SDK :: Services :: Ivschat
diff --git a/services/ivsrealtime/pom.xml b/services/ivsrealtime/pom.xml
index 4a711542a153..d8f43d4a0176 100644
--- a/services/ivsrealtime/pom.xml
+++ b/services/ivsrealtime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ivsrealtime
AWS Java SDK :: Services :: IVS Real Time
diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml
index 903d893d7d8e..da1b604c55c2 100644
--- a/services/kafka/pom.xml
+++ b/services/kafka/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
kafka
AWS Java SDK :: Services :: Kafka
diff --git a/services/kafkaconnect/pom.xml b/services/kafkaconnect/pom.xml
index efc489dee5d8..40cc5750d963 100644
--- a/services/kafkaconnect/pom.xml
+++ b/services/kafkaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
kafkaconnect
AWS Java SDK :: Services :: Kafka Connect
diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml
index bc1d1a2ac107..8190d8c3c74f 100644
--- a/services/kendra/pom.xml
+++ b/services/kendra/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
kendra
AWS Java SDK :: Services :: Kendra
diff --git a/services/kendraranking/pom.xml b/services/kendraranking/pom.xml
index 96fcee134ded..eba041c3acb1 100644
--- a/services/kendraranking/pom.xml
+++ b/services/kendraranking/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
kendraranking
AWS Java SDK :: Services :: Kendra Ranking
diff --git a/services/keyspaces/pom.xml b/services/keyspaces/pom.xml
index 1a26022f0a34..d7e5a133d931 100644
--- a/services/keyspaces/pom.xml
+++ b/services/keyspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
keyspaces
AWS Java SDK :: Services :: Keyspaces
diff --git a/services/keyspacesstreams/pom.xml b/services/keyspacesstreams/pom.xml
index de4bf68ce477..ff029c9db959 100644
--- a/services/keyspacesstreams/pom.xml
+++ b/services/keyspacesstreams/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
keyspacesstreams
AWS Java SDK :: Services :: Keyspaces Streams
diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml
index d5534c52f6be..1c54cf050024 100644
--- a/services/kinesis/pom.xml
+++ b/services/kinesis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
kinesis
AWS Java SDK :: Services :: Amazon Kinesis
diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml
index 563ff21cfd1a..9b0498fd5841 100644
--- a/services/kinesisanalytics/pom.xml
+++ b/services/kinesisanalytics/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
kinesisanalytics
AWS Java SDK :: Services :: Amazon Kinesis Analytics
diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml
index 33f2f17c169b..7570b536f3c9 100644
--- a/services/kinesisanalyticsv2/pom.xml
+++ b/services/kinesisanalyticsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
kinesisanalyticsv2
AWS Java SDK :: Services :: Kinesis Analytics V2
diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml
index a62af90f3a94..6fe7b62df63c 100644
--- a/services/kinesisvideo/pom.xml
+++ b/services/kinesisvideo/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
kinesisvideo
diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml
index 60a6d1d7c1ea..96e9b70a4324 100644
--- a/services/kinesisvideoarchivedmedia/pom.xml
+++ b/services/kinesisvideoarchivedmedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
kinesisvideoarchivedmedia
AWS Java SDK :: Services :: Kinesis Video Archived Media
diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml
index db7029229ae6..111a6add43cd 100644
--- a/services/kinesisvideomedia/pom.xml
+++ b/services/kinesisvideomedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
kinesisvideomedia
AWS Java SDK :: Services :: Kinesis Video Media
diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml
index 73341d450f50..73d2162844ad 100644
--- a/services/kinesisvideosignaling/pom.xml
+++ b/services/kinesisvideosignaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
kinesisvideosignaling
AWS Java SDK :: Services :: Kinesis Video Signaling
diff --git a/services/kinesisvideowebrtcstorage/pom.xml b/services/kinesisvideowebrtcstorage/pom.xml
index 58604a128544..a9a012e1e0e2 100644
--- a/services/kinesisvideowebrtcstorage/pom.xml
+++ b/services/kinesisvideowebrtcstorage/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
kinesisvideowebrtcstorage
AWS Java SDK :: Services :: Kinesis Video Web RTC Storage
diff --git a/services/kms/pom.xml b/services/kms/pom.xml
index 190825b2295c..290cc5bb0ef2 100644
--- a/services/kms/pom.xml
+++ b/services/kms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
kms
AWS Java SDK :: Services :: AWS KMS
diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml
index 192b77d5fe16..5d0ee61fd5db 100644
--- a/services/lakeformation/pom.xml
+++ b/services/lakeformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
lakeformation
AWS Java SDK :: Services :: LakeFormation
diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml
index ea35255f62c3..99298b5207e2 100644
--- a/services/lambda/pom.xml
+++ b/services/lambda/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
lambda
AWS Java SDK :: Services :: AWS Lambda
diff --git a/services/launchwizard/pom.xml b/services/launchwizard/pom.xml
index 0dd97ad4d429..a125d118e53c 100644
--- a/services/launchwizard/pom.xml
+++ b/services/launchwizard/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
launchwizard
AWS Java SDK :: Services :: Launch Wizard
diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml
index 961a1ef397f0..b50edbf0196f 100644
--- a/services/lexmodelbuilding/pom.xml
+++ b/services/lexmodelbuilding/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
lexmodelbuilding
AWS Java SDK :: Services :: Amazon Lex Model Building
diff --git a/services/lexmodelsv2/pom.xml b/services/lexmodelsv2/pom.xml
index 9913b5debc2b..c39e295f1103 100644
--- a/services/lexmodelsv2/pom.xml
+++ b/services/lexmodelsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
lexmodelsv2
AWS Java SDK :: Services :: Lex Models V2
diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml
index fda7d84ad5ed..97f5e31ceefa 100644
--- a/services/lexruntime/pom.xml
+++ b/services/lexruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
lexruntime
AWS Java SDK :: Services :: Amazon Lex Runtime
diff --git a/services/lexruntimev2/pom.xml b/services/lexruntimev2/pom.xml
index 01ea757cf076..3eb25d1b6b25 100644
--- a/services/lexruntimev2/pom.xml
+++ b/services/lexruntimev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
lexruntimev2
AWS Java SDK :: Services :: Lex Runtime V2
diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml
index 77abc46d3b10..771c98f3f8dd 100644
--- a/services/licensemanager/pom.xml
+++ b/services/licensemanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
licensemanager
AWS Java SDK :: Services :: License Manager
diff --git a/services/licensemanagerlinuxsubscriptions/pom.xml b/services/licensemanagerlinuxsubscriptions/pom.xml
index a4ae7888872d..1ab46979c939 100644
--- a/services/licensemanagerlinuxsubscriptions/pom.xml
+++ b/services/licensemanagerlinuxsubscriptions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
licensemanagerlinuxsubscriptions
AWS Java SDK :: Services :: License Manager Linux Subscriptions
diff --git a/services/licensemanagerusersubscriptions/pom.xml b/services/licensemanagerusersubscriptions/pom.xml
index 306db82d1607..bfed6530d822 100644
--- a/services/licensemanagerusersubscriptions/pom.xml
+++ b/services/licensemanagerusersubscriptions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
licensemanagerusersubscriptions
AWS Java SDK :: Services :: License Manager User Subscriptions
diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml
index a101a484f433..5ebb4fa340eb 100644
--- a/services/lightsail/pom.xml
+++ b/services/lightsail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
lightsail
AWS Java SDK :: Services :: Amazon Lightsail
diff --git a/services/location/pom.xml b/services/location/pom.xml
index d7630368ba5f..204398bc3b6d 100644
--- a/services/location/pom.xml
+++ b/services/location/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
location
AWS Java SDK :: Services :: Location
diff --git a/services/lookoutequipment/pom.xml b/services/lookoutequipment/pom.xml
index afc347326274..48af40c21814 100644
--- a/services/lookoutequipment/pom.xml
+++ b/services/lookoutequipment/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
lookoutequipment
AWS Java SDK :: Services :: Lookout Equipment
diff --git a/services/lookoutmetrics/pom.xml b/services/lookoutmetrics/pom.xml
index 4c614f4b7029..adb2c41cb3ed 100644
--- a/services/lookoutmetrics/pom.xml
+++ b/services/lookoutmetrics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
lookoutmetrics
AWS Java SDK :: Services :: Lookout Metrics
diff --git a/services/lookoutvision/pom.xml b/services/lookoutvision/pom.xml
index c842a955338d..ffe9a0d805d1 100644
--- a/services/lookoutvision/pom.xml
+++ b/services/lookoutvision/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
lookoutvision
AWS Java SDK :: Services :: Lookout Vision
diff --git a/services/m2/pom.xml b/services/m2/pom.xml
index 5a7f453089eb..95cad47b498a 100644
--- a/services/m2/pom.xml
+++ b/services/m2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
m2
AWS Java SDK :: Services :: M2
diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml
index b92e8e6dbe08..1eb9dd307464 100644
--- a/services/machinelearning/pom.xml
+++ b/services/machinelearning/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
machinelearning
AWS Java SDK :: Services :: Amazon Machine Learning
diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml
index dd441c38c504..7762e1771914 100644
--- a/services/macie2/pom.xml
+++ b/services/macie2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
macie2
AWS Java SDK :: Services :: Macie2
diff --git a/services/mailmanager/pom.xml b/services/mailmanager/pom.xml
index 89eec514939a..5326273cb17d 100644
--- a/services/mailmanager/pom.xml
+++ b/services/mailmanager/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
mailmanager
AWS Java SDK :: Services :: Mail Manager
diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml
index 0c1059a070cf..dfe8b861bcd1 100644
--- a/services/managedblockchain/pom.xml
+++ b/services/managedblockchain/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
managedblockchain
AWS Java SDK :: Services :: ManagedBlockchain
diff --git a/services/managedblockchainquery/pom.xml b/services/managedblockchainquery/pom.xml
index 3c32219e2312..9dc403cfbea5 100644
--- a/services/managedblockchainquery/pom.xml
+++ b/services/managedblockchainquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
managedblockchainquery
AWS Java SDK :: Services :: Managed Blockchain Query
diff --git a/services/marketplaceagreement/pom.xml b/services/marketplaceagreement/pom.xml
index 040d49152b33..898fdf2a6b0f 100644
--- a/services/marketplaceagreement/pom.xml
+++ b/services/marketplaceagreement/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
marketplaceagreement
AWS Java SDK :: Services :: Marketplace Agreement
diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml
index cee7cac5713b..7e31f1b4d342 100644
--- a/services/marketplacecatalog/pom.xml
+++ b/services/marketplacecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
marketplacecatalog
AWS Java SDK :: Services :: Marketplace Catalog
diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml
index 3fab0d6d8cdd..f00a70779b5a 100644
--- a/services/marketplacecommerceanalytics/pom.xml
+++ b/services/marketplacecommerceanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
marketplacecommerceanalytics
AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics
diff --git a/services/marketplacedeployment/pom.xml b/services/marketplacedeployment/pom.xml
index 47229628e399..01086f110b89 100644
--- a/services/marketplacedeployment/pom.xml
+++ b/services/marketplacedeployment/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
marketplacedeployment
AWS Java SDK :: Services :: Marketplace Deployment
diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml
index 44cd2368221e..6b9e44e421df 100644
--- a/services/marketplaceentitlement/pom.xml
+++ b/services/marketplaceentitlement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
marketplaceentitlement
AWS Java SDK :: Services :: AWS Marketplace Entitlement
diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml
index 9ae3b1b06a2f..0aee2b3d4b70 100644
--- a/services/marketplacemetering/pom.xml
+++ b/services/marketplacemetering/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
marketplacemetering
AWS Java SDK :: Services :: AWS Marketplace Metering Service
diff --git a/services/marketplacereporting/pom.xml b/services/marketplacereporting/pom.xml
index 2744356d5a75..a1c3160dc1cc 100644
--- a/services/marketplacereporting/pom.xml
+++ b/services/marketplacereporting/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
marketplacereporting
AWS Java SDK :: Services :: Marketplace Reporting
diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml
index 48ac4ba34b9c..a3cba6982356 100644
--- a/services/mediaconnect/pom.xml
+++ b/services/mediaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
mediaconnect
AWS Java SDK :: Services :: MediaConnect
diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml
index 25bc74d55bf9..6147cd532b97 100644
--- a/services/mediaconvert/pom.xml
+++ b/services/mediaconvert/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
mediaconvert
diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml
index 4f2ad6b52b48..74f62cc85fa6 100644
--- a/services/medialive/pom.xml
+++ b/services/medialive/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
medialive
diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml
index 0f83ae82f481..185584f31059 100644
--- a/services/mediapackage/pom.xml
+++ b/services/mediapackage/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
mediapackage
diff --git a/services/mediapackagev2/pom.xml b/services/mediapackagev2/pom.xml
index 25cbaef13016..aae8d8d06280 100644
--- a/services/mediapackagev2/pom.xml
+++ b/services/mediapackagev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
mediapackagev2
AWS Java SDK :: Services :: Media Package V2
diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml
index 01ab8875048b..3a2618f658d7 100644
--- a/services/mediapackagevod/pom.xml
+++ b/services/mediapackagevod/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
mediapackagevod
AWS Java SDK :: Services :: MediaPackage Vod
diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml
index f16e3dc6daef..693af5013791 100644
--- a/services/mediastore/pom.xml
+++ b/services/mediastore/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
mediastore
diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml
index ed4b445d7dff..21ffb5da0488 100644
--- a/services/mediastoredata/pom.xml
+++ b/services/mediastoredata/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
mediastoredata
diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml
index 6ff3f348f369..00fc40eadc55 100644
--- a/services/mediatailor/pom.xml
+++ b/services/mediatailor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
mediatailor
AWS Java SDK :: Services :: MediaTailor
diff --git a/services/medicalimaging/pom.xml b/services/medicalimaging/pom.xml
index e26645d8dc95..352a0e745d6d 100644
--- a/services/medicalimaging/pom.xml
+++ b/services/medicalimaging/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
medicalimaging
AWS Java SDK :: Services :: Medical Imaging
diff --git a/services/memorydb/pom.xml b/services/memorydb/pom.xml
index 52a90eeb8859..9be8c670134d 100644
--- a/services/memorydb/pom.xml
+++ b/services/memorydb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
memorydb
AWS Java SDK :: Services :: Memory DB
diff --git a/services/mgn/pom.xml b/services/mgn/pom.xml
index 4c6f2d8586c2..f95e620deb76 100644
--- a/services/mgn/pom.xml
+++ b/services/mgn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
mgn
AWS Java SDK :: Services :: Mgn
diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml
index 3f64cb840a66..95fe814f2d8f 100644
--- a/services/migrationhub/pom.xml
+++ b/services/migrationhub/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
migrationhub
diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml
index c0c31db01f5d..396a73890bb1 100644
--- a/services/migrationhubconfig/pom.xml
+++ b/services/migrationhubconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
migrationhubconfig
AWS Java SDK :: Services :: MigrationHub Config
diff --git a/services/migrationhuborchestrator/pom.xml b/services/migrationhuborchestrator/pom.xml
index da1714933073..904496860694 100644
--- a/services/migrationhuborchestrator/pom.xml
+++ b/services/migrationhuborchestrator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
migrationhuborchestrator
AWS Java SDK :: Services :: Migration Hub Orchestrator
diff --git a/services/migrationhubrefactorspaces/pom.xml b/services/migrationhubrefactorspaces/pom.xml
index d1a15dbb622d..cb65cec5cf9e 100644
--- a/services/migrationhubrefactorspaces/pom.xml
+++ b/services/migrationhubrefactorspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
migrationhubrefactorspaces
AWS Java SDK :: Services :: Migration Hub Refactor Spaces
diff --git a/services/migrationhubstrategy/pom.xml b/services/migrationhubstrategy/pom.xml
index 31fac785ee14..6ce48862e58c 100644
--- a/services/migrationhubstrategy/pom.xml
+++ b/services/migrationhubstrategy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
migrationhubstrategy
AWS Java SDK :: Services :: Migration Hub Strategy
diff --git a/services/mpa/pom.xml b/services/mpa/pom.xml
index 933d32fb85b7..7977f54d83e6 100644
--- a/services/mpa/pom.xml
+++ b/services/mpa/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
mpa
AWS Java SDK :: Services :: MPA
diff --git a/services/mq/pom.xml b/services/mq/pom.xml
index 9363bbfd523f..2da72985aa28 100644
--- a/services/mq/pom.xml
+++ b/services/mq/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
mq
diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml
index c944632cc16e..167cac3f1627 100644
--- a/services/mturk/pom.xml
+++ b/services/mturk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
mturk
AWS Java SDK :: Services :: Amazon Mechanical Turk Requester
diff --git a/services/mwaa/pom.xml b/services/mwaa/pom.xml
index 3065af09d3b0..0df620d38e80 100644
--- a/services/mwaa/pom.xml
+++ b/services/mwaa/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
mwaa
AWS Java SDK :: Services :: MWAA
diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml
index 487251658c0e..32f53d20af61 100644
--- a/services/neptune/pom.xml
+++ b/services/neptune/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
neptune
AWS Java SDK :: Services :: Neptune
diff --git a/services/neptunedata/pom.xml b/services/neptunedata/pom.xml
index b1edb52dd532..c7801e2b6e6f 100644
--- a/services/neptunedata/pom.xml
+++ b/services/neptunedata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
neptunedata
AWS Java SDK :: Services :: Neptunedata
diff --git a/services/neptunegraph/pom.xml b/services/neptunegraph/pom.xml
index e663cc1be8fe..6ec8901d6fc1 100644
--- a/services/neptunegraph/pom.xml
+++ b/services/neptunegraph/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
neptunegraph
AWS Java SDK :: Services :: Neptune Graph
diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml
index bb8ce4a0311b..d9692b9b0ec1 100644
--- a/services/networkfirewall/pom.xml
+++ b/services/networkfirewall/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
networkfirewall
AWS Java SDK :: Services :: Network Firewall
diff --git a/services/networkflowmonitor/pom.xml b/services/networkflowmonitor/pom.xml
index db40e52c51be..50fdf7a9c255 100644
--- a/services/networkflowmonitor/pom.xml
+++ b/services/networkflowmonitor/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
networkflowmonitor
AWS Java SDK :: Services :: Network Flow Monitor
diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml
index 3b22b4f73224..902e4ce94448 100644
--- a/services/networkmanager/pom.xml
+++ b/services/networkmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
networkmanager
AWS Java SDK :: Services :: NetworkManager
diff --git a/services/networkmonitor/pom.xml b/services/networkmonitor/pom.xml
index c4994f65742a..411678fa6863 100644
--- a/services/networkmonitor/pom.xml
+++ b/services/networkmonitor/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
networkmonitor
AWS Java SDK :: Services :: Network Monitor
diff --git a/services/notifications/pom.xml b/services/notifications/pom.xml
index 99a82a2e23da..0f18f1797c89 100644
--- a/services/notifications/pom.xml
+++ b/services/notifications/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
notifications
AWS Java SDK :: Services :: Notifications
diff --git a/services/notificationscontacts/pom.xml b/services/notificationscontacts/pom.xml
index 1a716c433ec4..7641ba8920cd 100644
--- a/services/notificationscontacts/pom.xml
+++ b/services/notificationscontacts/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
notificationscontacts
AWS Java SDK :: Services :: Notifications Contacts
diff --git a/services/oam/pom.xml b/services/oam/pom.xml
index b9593eccbccb..d7c5e2853f5a 100644
--- a/services/oam/pom.xml
+++ b/services/oam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
oam
AWS Java SDK :: Services :: OAM
diff --git a/services/observabilityadmin/pom.xml b/services/observabilityadmin/pom.xml
index 75b304607111..07b33f747d3c 100644
--- a/services/observabilityadmin/pom.xml
+++ b/services/observabilityadmin/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
observabilityadmin
AWS Java SDK :: Services :: Observability Admin
diff --git a/services/odb/pom.xml b/services/odb/pom.xml
index 462023329568..2a1a99e53215 100644
--- a/services/odb/pom.xml
+++ b/services/odb/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
odb
AWS Java SDK :: Services :: Odb
diff --git a/services/omics/pom.xml b/services/omics/pom.xml
index a39ef3b07870..ead594837834 100644
--- a/services/omics/pom.xml
+++ b/services/omics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
omics
AWS Java SDK :: Services :: Omics
diff --git a/services/opensearch/pom.xml b/services/opensearch/pom.xml
index 276b766593c4..ce5844040d6b 100644
--- a/services/opensearch/pom.xml
+++ b/services/opensearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
opensearch
AWS Java SDK :: Services :: Open Search
diff --git a/services/opensearchserverless/pom.xml b/services/opensearchserverless/pom.xml
index bd0513b3a478..87064a7f8054 100644
--- a/services/opensearchserverless/pom.xml
+++ b/services/opensearchserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
opensearchserverless
AWS Java SDK :: Services :: Open Search Serverless
diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml
index 807f3f78940a..ddbadbc66640 100644
--- a/services/organizations/pom.xml
+++ b/services/organizations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
organizations
AWS Java SDK :: Services :: AWS Organizations
diff --git a/services/osis/pom.xml b/services/osis/pom.xml
index c88af101dd9a..be5c480dd6fa 100644
--- a/services/osis/pom.xml
+++ b/services/osis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
osis
AWS Java SDK :: Services :: OSIS
diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml
index f775ba6c3382..5aa702d02a37 100644
--- a/services/outposts/pom.xml
+++ b/services/outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
outposts
AWS Java SDK :: Services :: Outposts
diff --git a/services/panorama/pom.xml b/services/panorama/pom.xml
index 0bfd9575cc2a..c788725300e6 100644
--- a/services/panorama/pom.xml
+++ b/services/panorama/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
panorama
AWS Java SDK :: Services :: Panorama
diff --git a/services/partnercentralselling/pom.xml b/services/partnercentralselling/pom.xml
index 2f57baa1e508..7fad5fadf1de 100644
--- a/services/partnercentralselling/pom.xml
+++ b/services/partnercentralselling/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
partnercentralselling
AWS Java SDK :: Services :: Partner Central Selling
diff --git a/services/paymentcryptography/pom.xml b/services/paymentcryptography/pom.xml
index 8a4c13ca23d4..d5f3d10964ac 100644
--- a/services/paymentcryptography/pom.xml
+++ b/services/paymentcryptography/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
paymentcryptography
AWS Java SDK :: Services :: Payment Cryptography
diff --git a/services/paymentcryptographydata/pom.xml b/services/paymentcryptographydata/pom.xml
index c38dd0720aa1..0953e29c0305 100644
--- a/services/paymentcryptographydata/pom.xml
+++ b/services/paymentcryptographydata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
paymentcryptographydata
AWS Java SDK :: Services :: Payment Cryptography Data
diff --git a/services/pcaconnectorad/pom.xml b/services/pcaconnectorad/pom.xml
index e5dab925c6ac..e389bb474f95 100644
--- a/services/pcaconnectorad/pom.xml
+++ b/services/pcaconnectorad/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
pcaconnectorad
AWS Java SDK :: Services :: Pca Connector Ad
diff --git a/services/pcaconnectorscep/pom.xml b/services/pcaconnectorscep/pom.xml
index a1f848ff2776..b62a87eb0645 100644
--- a/services/pcaconnectorscep/pom.xml
+++ b/services/pcaconnectorscep/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
pcaconnectorscep
AWS Java SDK :: Services :: Pca Connector Scep
diff --git a/services/pcs/pom.xml b/services/pcs/pom.xml
index 831880197c7e..76f152e19efd 100644
--- a/services/pcs/pom.xml
+++ b/services/pcs/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
pcs
AWS Java SDK :: Services :: PCS
diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml
index d9bef323f9fe..dfe2b2b3a3f0 100644
--- a/services/personalize/pom.xml
+++ b/services/personalize/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
personalize
AWS Java SDK :: Services :: Personalize
diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml
index a2a99acb8cb6..8d9bc57ff272 100644
--- a/services/personalizeevents/pom.xml
+++ b/services/personalizeevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
personalizeevents
AWS Java SDK :: Services :: Personalize Events
diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml
index 9e9b42604abb..89f361c7ec9f 100644
--- a/services/personalizeruntime/pom.xml
+++ b/services/personalizeruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
personalizeruntime
AWS Java SDK :: Services :: Personalize Runtime
diff --git a/services/pi/pom.xml b/services/pi/pom.xml
index 14559f2972d9..3f3a6ea886c1 100644
--- a/services/pi/pom.xml
+++ b/services/pi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
pi
AWS Java SDK :: Services :: PI
diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml
index 0f36af08631b..307f503020dd 100644
--- a/services/pinpoint/pom.xml
+++ b/services/pinpoint/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
pinpoint
AWS Java SDK :: Services :: Amazon Pinpoint
diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml
index c90caf1be3f4..a8e7cf411dd4 100644
--- a/services/pinpointemail/pom.xml
+++ b/services/pinpointemail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
pinpointemail
AWS Java SDK :: Services :: Pinpoint Email
diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml
index 88f6b309bf1b..9b9d2545507f 100644
--- a/services/pinpointsmsvoice/pom.xml
+++ b/services/pinpointsmsvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
pinpointsmsvoice
AWS Java SDK :: Services :: Pinpoint SMS Voice
diff --git a/services/pinpointsmsvoicev2/pom.xml b/services/pinpointsmsvoicev2/pom.xml
index 7df59ee781ab..e3ac31c44fcf 100644
--- a/services/pinpointsmsvoicev2/pom.xml
+++ b/services/pinpointsmsvoicev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
pinpointsmsvoicev2
AWS Java SDK :: Services :: Pinpoint SMS Voice V2
diff --git a/services/pipes/pom.xml b/services/pipes/pom.xml
index 8388ea41592d..0340fc3df3c6 100644
--- a/services/pipes/pom.xml
+++ b/services/pipes/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
pipes
AWS Java SDK :: Services :: Pipes
diff --git a/services/polly/pom.xml b/services/polly/pom.xml
index a255e99c66ba..d4df207dc57a 100644
--- a/services/polly/pom.xml
+++ b/services/polly/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
polly
AWS Java SDK :: Services :: Amazon Polly
diff --git a/services/pom.xml b/services/pom.xml
index cd398eaf670b..22e9692b0ea0 100644
--- a/services/pom.xml
+++ b/services/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
services
AWS Java SDK :: Services
diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml
index de2b57bdbec5..f5145cbc71d3 100644
--- a/services/pricing/pom.xml
+++ b/services/pricing/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
pricing
diff --git a/services/proton/pom.xml b/services/proton/pom.xml
index a46fe568f7ce..21011009ee3e 100644
--- a/services/proton/pom.xml
+++ b/services/proton/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
proton
AWS Java SDK :: Services :: Proton
diff --git a/services/qapps/pom.xml b/services/qapps/pom.xml
index 16aa10b52914..37e18e93af1a 100644
--- a/services/qapps/pom.xml
+++ b/services/qapps/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
qapps
AWS Java SDK :: Services :: Q Apps
diff --git a/services/qbusiness/pom.xml b/services/qbusiness/pom.xml
index a3de916084fc..ba43eb648d16 100644
--- a/services/qbusiness/pom.xml
+++ b/services/qbusiness/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
qbusiness
AWS Java SDK :: Services :: Q Business
diff --git a/services/qconnect/pom.xml b/services/qconnect/pom.xml
index 9aa93ef10b72..2077ffa5ee9a 100644
--- a/services/qconnect/pom.xml
+++ b/services/qconnect/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
qconnect
AWS Java SDK :: Services :: Q Connect
diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml
index 481b3b1db1dd..94f89b683c42 100644
--- a/services/qldb/pom.xml
+++ b/services/qldb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
qldb
AWS Java SDK :: Services :: QLDB
diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml
index 6927527ae96b..3077f0c2c46e 100644
--- a/services/qldbsession/pom.xml
+++ b/services/qldbsession/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
qldbsession
AWS Java SDK :: Services :: QLDB Session
diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml
index b8ba892b1a49..8816a295bcdf 100644
--- a/services/quicksight/pom.xml
+++ b/services/quicksight/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
quicksight
AWS Java SDK :: Services :: QuickSight
diff --git a/services/ram/pom.xml b/services/ram/pom.xml
index dd7c34751c74..e772e2892e60 100644
--- a/services/ram/pom.xml
+++ b/services/ram/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ram
AWS Java SDK :: Services :: RAM
diff --git a/services/rbin/pom.xml b/services/rbin/pom.xml
index 72691cd3cafc..e4059814bfa3 100644
--- a/services/rbin/pom.xml
+++ b/services/rbin/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
rbin
AWS Java SDK :: Services :: Rbin
diff --git a/services/rds/pom.xml b/services/rds/pom.xml
index 0def02b7de5d..88256c68c41c 100644
--- a/services/rds/pom.xml
+++ b/services/rds/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
rds
AWS Java SDK :: Services :: Amazon RDS
diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml
index f1688c3d20f8..4419e12d4681 100644
--- a/services/rdsdata/pom.xml
+++ b/services/rdsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
rdsdata
AWS Java SDK :: Services :: RDS Data
diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml
index 160efc6d4e1a..5a871ddb7c27 100644
--- a/services/redshift/pom.xml
+++ b/services/redshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
redshift
AWS Java SDK :: Services :: Amazon Redshift
diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml
index df2803568ba7..1b03c1f39ba0 100644
--- a/services/redshiftdata/pom.xml
+++ b/services/redshiftdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
redshiftdata
AWS Java SDK :: Services :: Redshift Data
diff --git a/services/redshiftserverless/pom.xml b/services/redshiftserverless/pom.xml
index a35dc04508d1..229b906cdb82 100644
--- a/services/redshiftserverless/pom.xml
+++ b/services/redshiftserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
redshiftserverless
AWS Java SDK :: Services :: Redshift Serverless
diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml
index 3f15434c1a77..3e5e1d8894bb 100644
--- a/services/rekognition/pom.xml
+++ b/services/rekognition/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
rekognition
AWS Java SDK :: Services :: Amazon Rekognition
diff --git a/services/repostspace/pom.xml b/services/repostspace/pom.xml
index 72aa1f674164..caedab5417b0 100644
--- a/services/repostspace/pom.xml
+++ b/services/repostspace/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
repostspace
AWS Java SDK :: Services :: Repostspace
diff --git a/services/resiliencehub/pom.xml b/services/resiliencehub/pom.xml
index ebefd06d3112..5af02d47bd00 100644
--- a/services/resiliencehub/pom.xml
+++ b/services/resiliencehub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
resiliencehub
AWS Java SDK :: Services :: Resiliencehub
diff --git a/services/resourceexplorer2/pom.xml b/services/resourceexplorer2/pom.xml
index afa3897ad8c9..fcf0efb69b02 100644
--- a/services/resourceexplorer2/pom.xml
+++ b/services/resourceexplorer2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
resourceexplorer2
AWS Java SDK :: Services :: Resource Explorer 2
diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml
index 6541f7067931..9c3a3c276e1a 100644
--- a/services/resourcegroups/pom.xml
+++ b/services/resourcegroups/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
resourcegroups
diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml
index bfef23c90432..908cd81500a0 100644
--- a/services/resourcegroupstaggingapi/pom.xml
+++ b/services/resourcegroupstaggingapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
resourcegroupstaggingapi
AWS Java SDK :: Services :: AWS Resource Groups Tagging API
diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml
index f52db535cd29..a10dc68f10be 100644
--- a/services/robomaker/pom.xml
+++ b/services/robomaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
robomaker
AWS Java SDK :: Services :: RoboMaker
diff --git a/services/rolesanywhere/pom.xml b/services/rolesanywhere/pom.xml
index ff52ba76f5e9..71ac86742fbb 100644
--- a/services/rolesanywhere/pom.xml
+++ b/services/rolesanywhere/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
rolesanywhere
AWS Java SDK :: Services :: Roles Anywhere
diff --git a/services/route53/pom.xml b/services/route53/pom.xml
index 84de8e985bbc..e96bbaa682e3 100644
--- a/services/route53/pom.xml
+++ b/services/route53/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
route53
AWS Java SDK :: Services :: Amazon Route53
diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml
index e8fdf645cc8e..5ccf25a0cdf6 100644
--- a/services/route53domains/pom.xml
+++ b/services/route53domains/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
route53domains
AWS Java SDK :: Services :: Amazon Route53 Domains
diff --git a/services/route53profiles/pom.xml b/services/route53profiles/pom.xml
index bd9eace8d27e..24a1ae2c70d0 100644
--- a/services/route53profiles/pom.xml
+++ b/services/route53profiles/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
route53profiles
AWS Java SDK :: Services :: Route53 Profiles
diff --git a/services/route53recoverycluster/pom.xml b/services/route53recoverycluster/pom.xml
index 84804daac32a..6d684d8103af 100644
--- a/services/route53recoverycluster/pom.xml
+++ b/services/route53recoverycluster/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
route53recoverycluster
AWS Java SDK :: Services :: Route53 Recovery Cluster
diff --git a/services/route53recoverycontrolconfig/pom.xml b/services/route53recoverycontrolconfig/pom.xml
index 710b9b66e32b..752413274be4 100644
--- a/services/route53recoverycontrolconfig/pom.xml
+++ b/services/route53recoverycontrolconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
route53recoverycontrolconfig
AWS Java SDK :: Services :: Route53 Recovery Control Config
diff --git a/services/route53recoveryreadiness/pom.xml b/services/route53recoveryreadiness/pom.xml
index 6b1d8dba23a2..c5afbf040a1f 100644
--- a/services/route53recoveryreadiness/pom.xml
+++ b/services/route53recoveryreadiness/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
route53recoveryreadiness
AWS Java SDK :: Services :: Route53 Recovery Readiness
diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml
index 5ef5819a2cac..2ca935fbe163 100644
--- a/services/route53resolver/pom.xml
+++ b/services/route53resolver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
route53resolver
AWS Java SDK :: Services :: Route53Resolver
diff --git a/services/rum/pom.xml b/services/rum/pom.xml
index f1783f92e109..50f2f6f2c877 100644
--- a/services/rum/pom.xml
+++ b/services/rum/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
rum
AWS Java SDK :: Services :: RUM
diff --git a/services/s3/pom.xml b/services/s3/pom.xml
index 8d2a853e8f1e..c80156c8f679 100644
--- a/services/s3/pom.xml
+++ b/services/s3/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
s3
AWS Java SDK :: Services :: Amazon S3
diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml
index 9640f6683e4f..703d401b8fb1 100644
--- a/services/s3control/pom.xml
+++ b/services/s3control/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
s3control
AWS Java SDK :: Services :: Amazon S3 Control
diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml
index b3e7b302fb2c..eba74d7b0785 100644
--- a/services/s3outposts/pom.xml
+++ b/services/s3outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
s3outposts
AWS Java SDK :: Services :: S3 Outposts
diff --git a/services/s3tables/pom.xml b/services/s3tables/pom.xml
index 48177c5e8493..eb671442a879 100644
--- a/services/s3tables/pom.xml
+++ b/services/s3tables/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
s3tables
AWS Java SDK :: Services :: S3 Tables
diff --git a/services/s3vectors/pom.xml b/services/s3vectors/pom.xml
index 4f2d6fbeec6c..33d2614a11c3 100644
--- a/services/s3vectors/pom.xml
+++ b/services/s3vectors/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
s3vectors
AWS Java SDK :: Services :: S3 Vectors
diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml
index 91974d3e1ed2..8b2543913778 100644
--- a/services/sagemaker/pom.xml
+++ b/services/sagemaker/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
sagemaker
diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml
index 4ac3f236196a..26fb5d9c9ef2 100644
--- a/services/sagemakera2iruntime/pom.xml
+++ b/services/sagemakera2iruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
sagemakera2iruntime
AWS Java SDK :: Services :: SageMaker A2I Runtime
diff --git a/services/sagemakeredge/pom.xml b/services/sagemakeredge/pom.xml
index f71d6bd079a5..28026fd55007 100644
--- a/services/sagemakeredge/pom.xml
+++ b/services/sagemakeredge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
sagemakeredge
AWS Java SDK :: Services :: Sagemaker Edge
diff --git a/services/sagemakerfeaturestoreruntime/pom.xml b/services/sagemakerfeaturestoreruntime/pom.xml
index a938aa46844a..f7d0ed85f291 100644
--- a/services/sagemakerfeaturestoreruntime/pom.xml
+++ b/services/sagemakerfeaturestoreruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
sagemakerfeaturestoreruntime
AWS Java SDK :: Services :: Sage Maker Feature Store Runtime
diff --git a/services/sagemakergeospatial/pom.xml b/services/sagemakergeospatial/pom.xml
index c70876a44a17..bf3c675fc913 100644
--- a/services/sagemakergeospatial/pom.xml
+++ b/services/sagemakergeospatial/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
sagemakergeospatial
AWS Java SDK :: Services :: Sage Maker Geospatial
diff --git a/services/sagemakermetrics/pom.xml b/services/sagemakermetrics/pom.xml
index c8a94e8b1f67..68621f5ad9bb 100644
--- a/services/sagemakermetrics/pom.xml
+++ b/services/sagemakermetrics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
sagemakermetrics
AWS Java SDK :: Services :: Sage Maker Metrics
diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml
index 476c45eac70a..bc628322acf5 100644
--- a/services/sagemakerruntime/pom.xml
+++ b/services/sagemakerruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
sagemakerruntime
AWS Java SDK :: Services :: SageMaker Runtime
diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml
index 561ec5793700..af20d0937ae8 100644
--- a/services/savingsplans/pom.xml
+++ b/services/savingsplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
savingsplans
AWS Java SDK :: Services :: Savingsplans
diff --git a/services/scheduler/pom.xml b/services/scheduler/pom.xml
index 3480ab8af1d8..1af94c172b1f 100644
--- a/services/scheduler/pom.xml
+++ b/services/scheduler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
scheduler
AWS Java SDK :: Services :: Scheduler
diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml
index 1a70cec7c8b9..a89dce9f64b3 100644
--- a/services/schemas/pom.xml
+++ b/services/schemas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
schemas
AWS Java SDK :: Services :: Schemas
diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml
index 7ed80505d5a2..208eb2f389fd 100644
--- a/services/secretsmanager/pom.xml
+++ b/services/secretsmanager/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
secretsmanager
AWS Java SDK :: Services :: AWS Secrets Manager
diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml
index 9219e09e69da..d7c1c809dba5 100644
--- a/services/securityhub/pom.xml
+++ b/services/securityhub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
securityhub
AWS Java SDK :: Services :: SecurityHub
diff --git a/services/securityir/pom.xml b/services/securityir/pom.xml
index d6fe7ebbf9f7..f31fda1602e2 100644
--- a/services/securityir/pom.xml
+++ b/services/securityir/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
securityir
AWS Java SDK :: Services :: Security IR
diff --git a/services/securitylake/pom.xml b/services/securitylake/pom.xml
index 8d20752809cb..34d5fdc2dced 100644
--- a/services/securitylake/pom.xml
+++ b/services/securitylake/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
securitylake
AWS Java SDK :: Services :: Security Lake
diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml
index add840d10101..bcf27c3030e9 100644
--- a/services/serverlessapplicationrepository/pom.xml
+++ b/services/serverlessapplicationrepository/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
serverlessapplicationrepository
diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml
index 23cc9b55dcb5..9b55b1414dd2 100644
--- a/services/servicecatalog/pom.xml
+++ b/services/servicecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
servicecatalog
AWS Java SDK :: Services :: AWS Service Catalog
diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml
index 43d26daf33ce..8f5a2cde8696 100644
--- a/services/servicecatalogappregistry/pom.xml
+++ b/services/servicecatalogappregistry/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
servicecatalogappregistry
AWS Java SDK :: Services :: Service Catalog App Registry
diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml
index ac59abfa1988..645fb3464002 100644
--- a/services/servicediscovery/pom.xml
+++ b/services/servicediscovery/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
servicediscovery
diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml
index ad98b07eb46d..fd073367a357 100644
--- a/services/servicequotas/pom.xml
+++ b/services/servicequotas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
servicequotas
AWS Java SDK :: Services :: Service Quotas
diff --git a/services/ses/pom.xml b/services/ses/pom.xml
index 7a1381101d73..ccbb1515b36b 100644
--- a/services/ses/pom.xml
+++ b/services/ses/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ses
AWS Java SDK :: Services :: Amazon SES
diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml
index b8ae685e13d9..3df32f3553e6 100644
--- a/services/sesv2/pom.xml
+++ b/services/sesv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
sesv2
AWS Java SDK :: Services :: SESv2
diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml
index c84d19e152ef..f87ecb247ef8 100644
--- a/services/sfn/pom.xml
+++ b/services/sfn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
sfn
AWS Java SDK :: Services :: AWS Step Functions
diff --git a/services/shield/pom.xml b/services/shield/pom.xml
index ae6fb25ec8d6..cad7ed5f376e 100644
--- a/services/shield/pom.xml
+++ b/services/shield/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
shield
AWS Java SDK :: Services :: AWS Shield
diff --git a/services/signer/pom.xml b/services/signer/pom.xml
index 907403472167..fe30cad6b06a 100644
--- a/services/signer/pom.xml
+++ b/services/signer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
signer
AWS Java SDK :: Services :: Signer
diff --git a/services/simspaceweaver/pom.xml b/services/simspaceweaver/pom.xml
index 8f917390c5f9..d2acd66aabac 100644
--- a/services/simspaceweaver/pom.xml
+++ b/services/simspaceweaver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
simspaceweaver
AWS Java SDK :: Services :: Sim Space Weaver
diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml
index 83240979068e..f436aedb1192 100644
--- a/services/snowball/pom.xml
+++ b/services/snowball/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
snowball
AWS Java SDK :: Services :: Amazon Snowball
diff --git a/services/snowdevicemanagement/pom.xml b/services/snowdevicemanagement/pom.xml
index 3285e2237e15..ef48645809c4 100644
--- a/services/snowdevicemanagement/pom.xml
+++ b/services/snowdevicemanagement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
snowdevicemanagement
AWS Java SDK :: Services :: Snow Device Management
diff --git a/services/sns/pom.xml b/services/sns/pom.xml
index 91c9522753c9..6133c3b94aa2 100644
--- a/services/sns/pom.xml
+++ b/services/sns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
sns
AWS Java SDK :: Services :: Amazon SNS
diff --git a/services/socialmessaging/pom.xml b/services/socialmessaging/pom.xml
index 89421e3f6b7d..96fc5f34ffb4 100644
--- a/services/socialmessaging/pom.xml
+++ b/services/socialmessaging/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
socialmessaging
AWS Java SDK :: Services :: Social Messaging
diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml
index 88b7a1499c51..2b8356f2c943 100644
--- a/services/sqs/pom.xml
+++ b/services/sqs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
sqs
AWS Java SDK :: Services :: Amazon SQS
diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml
index ddd51da7660d..1f4f662fb981 100644
--- a/services/ssm/pom.xml
+++ b/services/ssm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ssm
AWS Java SDK :: Services :: AWS Simple Systems Management (SSM)
diff --git a/services/ssmcontacts/pom.xml b/services/ssmcontacts/pom.xml
index 48e5b4079de4..08b833d7f3aa 100644
--- a/services/ssmcontacts/pom.xml
+++ b/services/ssmcontacts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ssmcontacts
AWS Java SDK :: Services :: SSM Contacts
diff --git a/services/ssmguiconnect/pom.xml b/services/ssmguiconnect/pom.xml
index 2810a4e8ffb3..ed00327aa945 100644
--- a/services/ssmguiconnect/pom.xml
+++ b/services/ssmguiconnect/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ssmguiconnect
AWS Java SDK :: Services :: SSM Gui Connect
diff --git a/services/ssmincidents/pom.xml b/services/ssmincidents/pom.xml
index e3e74cffd6a7..c9989f85e1ce 100644
--- a/services/ssmincidents/pom.xml
+++ b/services/ssmincidents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ssmincidents
AWS Java SDK :: Services :: SSM Incidents
diff --git a/services/ssmquicksetup/pom.xml b/services/ssmquicksetup/pom.xml
index 5f51ed6aa32d..e47af221be5c 100644
--- a/services/ssmquicksetup/pom.xml
+++ b/services/ssmquicksetup/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ssmquicksetup
AWS Java SDK :: Services :: SSM Quick Setup
diff --git a/services/ssmsap/pom.xml b/services/ssmsap/pom.xml
index 287548a5ae2f..1557772a1ec8 100644
--- a/services/ssmsap/pom.xml
+++ b/services/ssmsap/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ssmsap
AWS Java SDK :: Services :: Ssm Sap
diff --git a/services/sso/pom.xml b/services/sso/pom.xml
index 55c46132d057..812957ccf715 100644
--- a/services/sso/pom.xml
+++ b/services/sso/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
sso
AWS Java SDK :: Services :: SSO
diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml
index 78d69d7457c5..e42f3153b267 100644
--- a/services/ssoadmin/pom.xml
+++ b/services/ssoadmin/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ssoadmin
AWS Java SDK :: Services :: SSO Admin
diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml
index 4a1451199320..b1d6d4a4f31a 100644
--- a/services/ssooidc/pom.xml
+++ b/services/ssooidc/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ssooidc
AWS Java SDK :: Services :: SSO OIDC
diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml
index 2dce2f9ed8ff..db6850e0b87b 100644
--- a/services/storagegateway/pom.xml
+++ b/services/storagegateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
storagegateway
AWS Java SDK :: Services :: AWS Storage Gateway
diff --git a/services/sts/pom.xml b/services/sts/pom.xml
index 0651889ab600..966f189e407c 100644
--- a/services/sts/pom.xml
+++ b/services/sts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
sts
AWS Java SDK :: Services :: AWS STS
diff --git a/services/supplychain/pom.xml b/services/supplychain/pom.xml
index 4e78a7634bf8..baa57672de66 100644
--- a/services/supplychain/pom.xml
+++ b/services/supplychain/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
supplychain
AWS Java SDK :: Services :: Supply Chain
diff --git a/services/support/pom.xml b/services/support/pom.xml
index d853d7141cfd..b254e0a41505 100644
--- a/services/support/pom.xml
+++ b/services/support/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
support
AWS Java SDK :: Services :: AWS Support
diff --git a/services/supportapp/pom.xml b/services/supportapp/pom.xml
index 8bc6f01eed5b..d35a2b248279 100644
--- a/services/supportapp/pom.xml
+++ b/services/supportapp/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
supportapp
AWS Java SDK :: Services :: Support App
diff --git a/services/swf/pom.xml b/services/swf/pom.xml
index 15d86adc0d94..38d012d813bf 100644
--- a/services/swf/pom.xml
+++ b/services/swf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
swf
AWS Java SDK :: Services :: Amazon SWF
diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml
index ff1cc7707508..b9735cea9af1 100644
--- a/services/synthetics/pom.xml
+++ b/services/synthetics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
synthetics
AWS Java SDK :: Services :: Synthetics
diff --git a/services/taxsettings/pom.xml b/services/taxsettings/pom.xml
index f2c886d32a90..34ebef9f3b12 100644
--- a/services/taxsettings/pom.xml
+++ b/services/taxsettings/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
taxsettings
AWS Java SDK :: Services :: Tax Settings
diff --git a/services/textract/pom.xml b/services/textract/pom.xml
index d387c43036f9..f92efeb6e466 100644
--- a/services/textract/pom.xml
+++ b/services/textract/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
textract
AWS Java SDK :: Services :: Textract
diff --git a/services/timestreaminfluxdb/pom.xml b/services/timestreaminfluxdb/pom.xml
index c8da4a9ccbb5..48d860b0c56a 100644
--- a/services/timestreaminfluxdb/pom.xml
+++ b/services/timestreaminfluxdb/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
timestreaminfluxdb
AWS Java SDK :: Services :: Timestream Influx DB
diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml
index ec3b75cb0438..bb84e3f2bf1d 100644
--- a/services/timestreamquery/pom.xml
+++ b/services/timestreamquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
timestreamquery
AWS Java SDK :: Services :: Timestream Query
diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml
index bdac955faf9b..dee71c52aabc 100644
--- a/services/timestreamwrite/pom.xml
+++ b/services/timestreamwrite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
timestreamwrite
AWS Java SDK :: Services :: Timestream Write
diff --git a/services/tnb/pom.xml b/services/tnb/pom.xml
index b902c2397658..ce0e9880ac3b 100644
--- a/services/tnb/pom.xml
+++ b/services/tnb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
tnb
AWS Java SDK :: Services :: Tnb
diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml
index 1ff506900351..ae52fdfb82c5 100644
--- a/services/transcribe/pom.xml
+++ b/services/transcribe/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
transcribe
AWS Java SDK :: Services :: Transcribe
diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml
index 69fec492ae02..bd62c2b959be 100644
--- a/services/transcribestreaming/pom.xml
+++ b/services/transcribestreaming/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
transcribestreaming
AWS Java SDK :: Services :: AWS Transcribe Streaming
diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml
index cbcd9b8ca8c1..8c243d275c4a 100644
--- a/services/transfer/pom.xml
+++ b/services/transfer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
transfer
AWS Java SDK :: Services :: Transfer
diff --git a/services/translate/pom.xml b/services/translate/pom.xml
index a93afd0544e0..f5dd2dc15af0 100644
--- a/services/translate/pom.xml
+++ b/services/translate/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
translate
diff --git a/services/trustedadvisor/pom.xml b/services/trustedadvisor/pom.xml
index 1e30a73e32e1..2c99b060de81 100644
--- a/services/trustedadvisor/pom.xml
+++ b/services/trustedadvisor/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
trustedadvisor
AWS Java SDK :: Services :: Trusted Advisor
diff --git a/services/verifiedpermissions/pom.xml b/services/verifiedpermissions/pom.xml
index a95b8b06a549..9ef4ba70a5f6 100644
--- a/services/verifiedpermissions/pom.xml
+++ b/services/verifiedpermissions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
verifiedpermissions
AWS Java SDK :: Services :: Verified Permissions
diff --git a/services/voiceid/pom.xml b/services/voiceid/pom.xml
index 96f4d6543114..0f67fcc78b46 100644
--- a/services/voiceid/pom.xml
+++ b/services/voiceid/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
voiceid
AWS Java SDK :: Services :: Voice ID
diff --git a/services/vpclattice/pom.xml b/services/vpclattice/pom.xml
index 4164c8973cdf..8729bb27da46 100644
--- a/services/vpclattice/pom.xml
+++ b/services/vpclattice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
vpclattice
AWS Java SDK :: Services :: VPC Lattice
diff --git a/services/waf/pom.xml b/services/waf/pom.xml
index da3c17689fa5..ded73933bedf 100644
--- a/services/waf/pom.xml
+++ b/services/waf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
waf
AWS Java SDK :: Services :: AWS WAF
diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml
index d3de3953284c..c351656728c9 100644
--- a/services/wafv2/pom.xml
+++ b/services/wafv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
wafv2
AWS Java SDK :: Services :: WAFV2
diff --git a/services/wellarchitected/pom.xml b/services/wellarchitected/pom.xml
index af5d1f61b994..e70489916bf9 100644
--- a/services/wellarchitected/pom.xml
+++ b/services/wellarchitected/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
wellarchitected
AWS Java SDK :: Services :: Well Architected
diff --git a/services/wisdom/pom.xml b/services/wisdom/pom.xml
index 983eca923c33..dd28c287f45d 100644
--- a/services/wisdom/pom.xml
+++ b/services/wisdom/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
wisdom
AWS Java SDK :: Services :: Wisdom
diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml
index b29a8eeb9ce6..171d27bc2ebc 100644
--- a/services/workdocs/pom.xml
+++ b/services/workdocs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
workdocs
AWS Java SDK :: Services :: Amazon WorkDocs
diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml
index 575560f538d4..262388dd2267 100644
--- a/services/workmail/pom.xml
+++ b/services/workmail/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
workmail
diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml
index c10f9f6088db..1a185efc4c40 100644
--- a/services/workmailmessageflow/pom.xml
+++ b/services/workmailmessageflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
workmailmessageflow
AWS Java SDK :: Services :: WorkMailMessageFlow
diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml
index 1d3c8c113c07..8777d53ec53b 100644
--- a/services/workspaces/pom.xml
+++ b/services/workspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
workspaces
AWS Java SDK :: Services :: Amazon WorkSpaces
diff --git a/services/workspacesinstances/pom.xml b/services/workspacesinstances/pom.xml
index 3a32f632d942..0c7f53e1e167 100644
--- a/services/workspacesinstances/pom.xml
+++ b/services/workspacesinstances/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
workspacesinstances
AWS Java SDK :: Services :: Workspaces Instances
diff --git a/services/workspacesthinclient/pom.xml b/services/workspacesthinclient/pom.xml
index 8a2d7d4aeb27..93dceb016cf6 100644
--- a/services/workspacesthinclient/pom.xml
+++ b/services/workspacesthinclient/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
workspacesthinclient
AWS Java SDK :: Services :: Work Spaces Thin Client
diff --git a/services/workspacesweb/pom.xml b/services/workspacesweb/pom.xml
index 980266c824ed..dbc0076021e2 100644
--- a/services/workspacesweb/pom.xml
+++ b/services/workspacesweb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
workspacesweb
AWS Java SDK :: Services :: Work Spaces Web
diff --git a/services/xray/pom.xml b/services/xray/pom.xml
index 9932c2118ea7..5337ce119ba9 100644
--- a/services/xray/pom.xml
+++ b/services/xray/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
xray
AWS Java SDK :: Services :: AWS X-Ray
diff --git a/test/architecture-tests/pom.xml b/test/architecture-tests/pom.xml
index 183ee602fb5b..8804beab9cec 100644
--- a/test/architecture-tests/pom.xml
+++ b/test/architecture-tests/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
diff --git a/test/auth-tests/pom.xml b/test/auth-tests/pom.xml
index e39e7df75f6e..f2ddb92db16f 100644
--- a/test/auth-tests/pom.xml
+++ b/test/auth-tests/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
4.0.0
diff --git a/test/bundle-logging-bridge-binding-test/pom.xml b/test/bundle-logging-bridge-binding-test/pom.xml
index ab3abe917476..40f7dedb28cf 100644
--- a/test/bundle-logging-bridge-binding-test/pom.xml
+++ b/test/bundle-logging-bridge-binding-test/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
4.0.0
diff --git a/test/bundle-shading-tests/pom.xml b/test/bundle-shading-tests/pom.xml
index f44e4e30fa44..d2155367217f 100644
--- a/test/bundle-shading-tests/pom.xml
+++ b/test/bundle-shading-tests/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
4.0.0
diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml
index 55bc40de076b..2a00c0af4bbb 100644
--- a/test/codegen-generated-classes-test/pom.xml
+++ b/test/codegen-generated-classes-test/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
diff --git a/test/crt-unavailable-tests/pom.xml b/test/crt-unavailable-tests/pom.xml
index 7396a736f569..16311499ba24 100644
--- a/test/crt-unavailable-tests/pom.xml
+++ b/test/crt-unavailable-tests/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
4.0.0
diff --git a/test/http-client-benchmarks/pom.xml b/test/http-client-benchmarks/pom.xml
index 50110ae56592..b14093331279 100644
--- a/test/http-client-benchmarks/pom.xml
+++ b/test/http-client-benchmarks/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml
index ae0c9ea39705..36fc065e636f 100644
--- a/test/http-client-tests/pom.xml
+++ b/test/http-client-tests/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
http-client-tests
diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml
index 61a49841090a..90087defe24b 100644
--- a/test/module-path-tests/pom.xml
+++ b/test/module-path-tests/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
4.0.0
diff --git a/test/old-client-version-compatibility-test/pom.xml b/test/old-client-version-compatibility-test/pom.xml
index d6ca75802074..4507bd3040f2 100644
--- a/test/old-client-version-compatibility-test/pom.xml
+++ b/test/old-client-version-compatibility-test/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml
index 954556346db6..4681413a8fb4 100644
--- a/test/protocol-tests-core/pom.xml
+++ b/test/protocol-tests-core/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
4.0.0
diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml
index 92124cb61e49..6e1b4211831a 100644
--- a/test/protocol-tests/pom.xml
+++ b/test/protocol-tests/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
4.0.0
diff --git a/test/region-testing/pom.xml b/test/region-testing/pom.xml
index 024fd8b79d1c..500bcb80ac32 100644
--- a/test/region-testing/pom.xml
+++ b/test/region-testing/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
4.0.0
diff --git a/test/ruleset-testing-core/pom.xml b/test/ruleset-testing-core/pom.xml
index ef3d88f25f05..0f8065d03034 100644
--- a/test/ruleset-testing-core/pom.xml
+++ b/test/ruleset-testing-core/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
4.0.0
diff --git a/test/s3-benchmarks/pom.xml b/test/s3-benchmarks/pom.xml
index d71c56e28dcd..7d93da4b7f38 100644
--- a/test/s3-benchmarks/pom.xml
+++ b/test/s3-benchmarks/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
4.0.0
diff --git a/test/s3-tests/pom.xml b/test/s3-tests/pom.xml
index 4c0050d51a32..86686edfd8c5 100644
--- a/test/s3-tests/pom.xml
+++ b/test/s3-tests/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
4.0.0
diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml
index 9266597a30d4..5a0af641371a 100644
--- a/test/sdk-benchmarks/pom.xml
+++ b/test/sdk-benchmarks/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
diff --git a/test/sdk-native-image-test/pom.xml b/test/sdk-native-image-test/pom.xml
index 4dd61f8f8943..23904241d609 100644
--- a/test/sdk-native-image-test/pom.xml
+++ b/test/sdk-native-image-test/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
4.0.0
diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml
index bbda5173ee60..d5de07ec8f8b 100644
--- a/test/service-test-utils/pom.xml
+++ b/test/service-test-utils/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
service-test-utils
diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml
index ecf5f650ac41..fd36424b0892 100644
--- a/test/stability-tests/pom.xml
+++ b/test/stability-tests/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
4.0.0
diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml
index bd06d2418700..6804df6d8c41 100644
--- a/test/test-utils/pom.xml
+++ b/test/test-utils/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
test-utils
diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml
index effb745d2dcc..ea881f3f3c13 100644
--- a/test/tests-coverage-reporting/pom.xml
+++ b/test/tests-coverage-reporting/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
4.0.0
diff --git a/test/v2-migration-tests/pom.xml b/test/v2-migration-tests/pom.xml
index cce051654321..bee48b5e582f 100644
--- a/test/v2-migration-tests/pom.xml
+++ b/test/v2-migration-tests/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
../..
diff --git a/third-party/pom.xml b/third-party/pom.xml
index 58580275e2bf..c4780571358b 100644
--- a/third-party/pom.xml
+++ b/third-party/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
third-party
diff --git a/third-party/third-party-jackson-core/pom.xml b/third-party/third-party-jackson-core/pom.xml
index 3a5a7cf46175..48399eca9c36 100644
--- a/third-party/third-party-jackson-core/pom.xml
+++ b/third-party/third-party-jackson-core/pom.xml
@@ -20,7 +20,7 @@
third-party
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/third-party/third-party-jackson-dataformat-cbor/pom.xml b/third-party/third-party-jackson-dataformat-cbor/pom.xml
index c85bd1b8f7ad..3a89ff9432a7 100644
--- a/third-party/third-party-jackson-dataformat-cbor/pom.xml
+++ b/third-party/third-party-jackson-dataformat-cbor/pom.xml
@@ -20,7 +20,7 @@
third-party
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/third-party/third-party-slf4j-api/pom.xml b/third-party/third-party-slf4j-api/pom.xml
index 14d9e2197615..091858edef25 100644
--- a/third-party/third-party-slf4j-api/pom.xml
+++ b/third-party/third-party-slf4j-api/pom.xml
@@ -20,7 +20,7 @@
third-party
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/utils-lite/pom.xml b/utils-lite/pom.xml
index 0b4be0d923ce..a46c28c4169a 100644
--- a/utils-lite/pom.xml
+++ b/utils-lite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
utils-lite
AWS Java SDK :: Utils Lite
diff --git a/utils/pom.xml b/utils/pom.xml
index 45e3082a4d8b..870c17d809ce 100644
--- a/utils/pom.xml
+++ b/utils/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/v2-migration/pom.xml b/v2-migration/pom.xml
index 7b01725e1f4d..e2f293eb9f5c 100644
--- a/v2-migration/pom.xml
+++ b/v2-migration/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
../pom.xml
From dede10b0c7874b3aa840efe8ffe656be55d223cb Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 26 Sep 2025 19:10:24 +0000
Subject: [PATCH 111/121] AWS Cost Explorer Service Update: Support for payer
account dimension and billing view health status.
---
...eature-AWSCostExplorerService-750ef36.json | 6 ++++
.../codegen-resources/service-2.json | 36 ++++++++++++++-----
2 files changed, 33 insertions(+), 9 deletions(-)
create mode 100644 .changes/next-release/feature-AWSCostExplorerService-750ef36.json
diff --git a/.changes/next-release/feature-AWSCostExplorerService-750ef36.json b/.changes/next-release/feature-AWSCostExplorerService-750ef36.json
new file mode 100644
index 000000000000..b5bdd4e8860f
--- /dev/null
+++ b/.changes/next-release/feature-AWSCostExplorerService-750ef36.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "AWS Cost Explorer Service",
+ "contributor": "",
+ "description": "Support for payer account dimension and billing view health status."
+}
diff --git a/services/costexplorer/src/main/resources/codegen-resources/service-2.json b/services/costexplorer/src/main/resources/codegen-resources/service-2.json
index e575acc1f781..ea5322482333 100644
--- a/services/costexplorer/src/main/resources/codegen-resources/service-2.json
+++ b/services/costexplorer/src/main/resources/codegen-resources/service-2.json
@@ -200,7 +200,8 @@
{"shape":"DataUnavailableException"},
{"shape":"InvalidNextTokenException"},
{"shape":"RequestChangedException"},
- {"shape":"ResourceNotFoundException"}
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"BillingViewHealthStatusException"}
],
"documentation":"Retrieves cost and usage metrics for your account. You can specify which cost and usage-related metric that you want the request to return. For example, you can specify BlendedCosts or UsageQuantity. You can also filter and group your data by various dimensions, such as SERVICE or AZ, in a specific time range. For a complete list of valid dimensions, see the GetDimensionValues operation. Management account in an organization in Organizations have access to all member accounts.
For information about filter limitations, see Quotas and restrictions in the Billing and Cost Management User Guide.
"
},
@@ -216,7 +217,8 @@
{"shape":"DataUnavailableException"},
{"shape":"InvalidNextTokenException"},
{"shape":"LimitExceededException"},
- {"shape":"ResourceNotFoundException"}
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"BillingViewHealthStatusException"}
],
"documentation":"Retrieves cost and usage comparisons for your account between two periods within the last 13 months. If you have enabled multi-year data at monthly granularity, you can go back up to 38 months.
"
},
@@ -234,7 +236,8 @@
{"shape":"BillExpirationException"},
{"shape":"InvalidNextTokenException"},
{"shape":"RequestChangedException"},
- {"shape":"ResourceNotFoundException"}
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"BillingViewHealthStatusException"}
],
"documentation":"Retrieves cost and usage metrics with resources for your account. You can specify which cost and usage-related metric, such as BlendedCosts or UsageQuantity, that you want the request to return. You can also filter and group your data by various dimensions, such as SERVICE or AZ, in a specific time range. For a complete list of valid dimensions, see the GetDimensionValues operation. Management account in an organization in Organizations have access to all member accounts.
Hourly granularity is only available for EC2-Instances (Elastic Compute Cloud) resource-level data. All other resource-level data is available at daily granularity.
This is an opt-in only feature. You can enable this feature from the Cost Explorer Settings page. For information about how to access the Settings page, see Controlling Access for Cost Explorer in the Billing and Cost Management User Guide.
"
},
@@ -252,7 +255,8 @@
{"shape":"DataUnavailableException"},
{"shape":"InvalidNextTokenException"},
{"shape":"RequestChangedException"},
- {"shape":"ResourceNotFoundException"}
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"BillingViewHealthStatusException"}
],
"documentation":"Retrieves an array of Cost Category names and values incurred cost.
If some Cost Category names and values are not associated with any cost, they will not be returned by this API.
"
},
@@ -268,7 +272,8 @@
{"shape":"DataUnavailableException"},
{"shape":"InvalidNextTokenException"},
{"shape":"LimitExceededException"},
- {"shape":"ResourceNotFoundException"}
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"BillingViewHealthStatusException"}
],
"documentation":"Retrieves key factors driving cost changes between two time periods within the last 13 months, such as usage changes, discount changes, and commitment-based savings. If you have enabled multi-year data at monthly granularity, you can go back up to 38 months.
"
},
@@ -283,7 +288,8 @@
"errors":[
{"shape":"LimitExceededException"},
{"shape":"DataUnavailableException"},
- {"shape":"ResourceNotFoundException"}
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"BillingViewHealthStatusException"}
],
"documentation":"Retrieves a forecast for how much Amazon Web Services predicts that you will spend over the forecast time period that you select, based on your past costs.
"
},
@@ -301,7 +307,8 @@
{"shape":"DataUnavailableException"},
{"shape":"InvalidNextTokenException"},
{"shape":"RequestChangedException"},
- {"shape":"ResourceNotFoundException"}
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"BillingViewHealthStatusException"}
],
"documentation":"Retrieves all available filter values for a specified filter over a period of time. You can search the dimension values for an arbitrary string.
"
},
@@ -450,7 +457,8 @@
{"shape":"DataUnavailableException"},
{"shape":"InvalidNextTokenException"},
{"shape":"RequestChangedException"},
- {"shape":"ResourceNotFoundException"}
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"BillingViewHealthStatusException"}
],
"documentation":"Queries for available tag keys and tag values for a specified period. You can search the tag values for an arbitrary string.
"
},
@@ -466,7 +474,8 @@
{"shape":"LimitExceededException"},
{"shape":"DataUnavailableException"},
{"shape":"UnresolvableUsageUnitException"},
- {"shape":"ResourceNotFoundException"}
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"BillingViewHealthStatusException"}
],
"documentation":"Retrieves a forecast for how much Amazon Web Services predicts that you will use over the forecast time period that you select, based on your past usage.
"
},
@@ -1045,6 +1054,14 @@
"min":20,
"pattern":"^arn:aws[a-z-]*:(billing)::[0-9]{12}:billingview/[-a-zA-Z0-9/:_+=.-@]{1,43}$"
},
+ "BillingViewHealthStatusException":{
+ "type":"structure",
+ "members":{
+ "Message":{"shape":"ErrorMessage"}
+ },
+ "documentation":" The billing view status must be HEALTHY to perform this action. Try again when the status is HEALTHY.
",
+ "exception":true
+ },
"CommitmentPurchaseAnalysisConfiguration":{
"type":"structure",
"members":{
@@ -1909,6 +1926,7 @@
"AZ",
"INSTANCE_TYPE",
"LINKED_ACCOUNT",
+ "PAYER_ACCOUNT",
"LINKED_ACCOUNT_NAME",
"OPERATION",
"PURCHASE_TYPE",
From e1998b2fb09565792dca81aa059b8973316562b6 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 26 Sep 2025 19:10:26 +0000
Subject: [PATCH 112/121] Amazon DynamoDB Streams Update: Added support for
IPv6 compatible endpoints for DynamoDB Streams.
---
...feature-AmazonDynamoDBStreams-1b55421.json | 6 +
.../dynamodbstreams/endpoint-rule-set.json | 728 +++++++++++-------
.../dynamodbstreams/endpoint-tests.json | 436 ++---------
3 files changed, 528 insertions(+), 642 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonDynamoDBStreams-1b55421.json
diff --git a/.changes/next-release/feature-AmazonDynamoDBStreams-1b55421.json b/.changes/next-release/feature-AmazonDynamoDBStreams-1b55421.json
new file mode 100644
index 000000000000..93d8d59ee715
--- /dev/null
+++ b/.changes/next-release/feature-AmazonDynamoDBStreams-1b55421.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Amazon DynamoDB Streams",
+ "contributor": "",
+ "description": "Added support for IPv6 compatible endpoints for DynamoDB Streams."
+}
diff --git a/services/dynamodb/src/main/resources/codegen-resources/dynamodbstreams/endpoint-rule-set.json b/services/dynamodb/src/main/resources/codegen-resources/dynamodbstreams/endpoint-rule-set.json
index 62df4e073a64..014779c88b1e 100644
--- a/services/dynamodb/src/main/resources/codegen-resources/dynamodbstreams/endpoint-rule-set.json
+++ b/services/dynamodb/src/main/resources/codegen-resources/dynamodbstreams/endpoint-rule-set.json
@@ -1,12 +1,6 @@
{
"version": "1.0",
"parameters": {
- "Region": {
- "builtIn": "AWS::Region",
- "required": false,
- "documentation": "The AWS region used to dispatch the request.",
- "type": "String"
- },
"UseDualStack": {
"builtIn": "AWS::UseDualStack",
"required": true,
@@ -26,6 +20,12 @@
"required": false,
"documentation": "Override the endpoint used to send this request",
"type": "String"
+ },
+ "Region": {
+ "builtIn": "AWS::Region",
+ "required": false,
+ "documentation": "The AWS region used to dispatch the request.",
+ "type": "String"
}
},
"rules": [
@@ -57,152 +57,158 @@
"type": "error"
},
{
- "conditions": [
+ "conditions": [],
+ "rules": [
{
- "fn": "booleanEquals",
- "argv": [
+ "conditions": [
{
- "ref": "UseDualStack"
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "ref": "UseDualStack"
+ },
+ true
+ ]
+ }
+ ],
+ "error": "Invalid Configuration: Dualstack and custom endpoint are not supported",
+ "type": "error"
+ },
+ {
+ "conditions": [],
+ "endpoint": {
+ "url": {
+ "ref": "Endpoint"
},
- true
- ]
+ "properties": {},
+ "headers": {}
+ },
+ "type": "endpoint"
}
],
- "error": "Invalid Configuration: Dualstack and custom endpoint are not supported",
- "type": "error"
- },
- {
- "conditions": [],
- "endpoint": {
- "url": {
- "ref": "Endpoint"
- },
- "properties": {},
- "headers": {}
- },
- "type": "endpoint"
+ "type": "tree"
}
],
"type": "tree"
},
{
- "conditions": [
- {
- "fn": "isSet",
- "argv": [
- {
- "ref": "Region"
- }
- ]
- }
- ],
+ "conditions": [],
"rules": [
{
"conditions": [
{
- "fn": "aws.partition",
+ "fn": "isSet",
"argv": [
{
"ref": "Region"
}
- ],
- "assign": "PartitionResult"
+ ]
}
],
"rules": [
{
"conditions": [
{
- "fn": "booleanEquals",
+ "fn": "aws.partition",
"argv": [
{
- "ref": "UseFIPS"
- },
- true
- ]
- },
- {
- "fn": "booleanEquals",
- "argv": [
- {
- "ref": "UseDualStack"
- },
- true
- ]
+ "ref": "Region"
+ }
+ ],
+ "assign": "PartitionResult"
}
],
"rules": [
{
"conditions": [
{
- "fn": "booleanEquals",
+ "fn": "stringEquals",
"argv": [
- true,
{
"fn": "getAttr",
"argv": [
{
"ref": "PartitionResult"
},
- "supportsFIPS"
+ "name"
]
- }
+ },
+ "aws"
+ ]
+ },
+ {
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "ref": "UseFIPS"
+ },
+ false
]
},
{
"fn": "booleanEquals",
"argv": [
- true,
+ {
+ "ref": "UseDualStack"
+ },
+ true
+ ]
+ }
+ ],
+ "endpoint": {
+ "url": "https://streams-dynamodb.{Region}.{PartitionResult#dualStackDnsSuffix}",
+ "properties": {},
+ "headers": {}
+ },
+ "type": "endpoint"
+ },
+ {
+ "conditions": [
+ {
+ "fn": "stringEquals",
+ "argv": [
{
"fn": "getAttr",
"argv": [
{
"ref": "PartitionResult"
},
- "supportsDualStack"
+ "name"
]
- }
+ },
+ "aws"
]
- }
- ],
- "rules": [
+ },
{
- "conditions": [],
- "endpoint": {
- "url": "https://streams.dynamodb-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
- "properties": {},
- "headers": {}
- },
- "type": "endpoint"
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "ref": "UseFIPS"
+ },
+ true
+ ]
+ },
+ {
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "ref": "UseDualStack"
+ },
+ true
+ ]
}
],
- "type": "tree"
+ "endpoint": {
+ "url": "https://streams-dynamodb-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
+ "properties": {},
+ "headers": {}
+ },
+ "type": "endpoint"
},
- {
- "conditions": [],
- "error": "FIPS and DualStack are enabled, but this partition does not support one or both",
- "type": "error"
- }
- ],
- "type": "tree"
- },
- {
- "conditions": [
- {
- "fn": "booleanEquals",
- "argv": [
- {
- "ref": "UseFIPS"
- },
- true
- ]
- }
- ],
- "rules": [
{
"conditions": [
{
- "fn": "booleanEquals",
+ "fn": "stringEquals",
"argv": [
{
"fn": "getAttr",
@@ -210,282 +216,430 @@
{
"ref": "PartitionResult"
},
- "supportsFIPS"
+ "name"
]
},
+ "aws-cn"
+ ]
+ },
+ {
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "ref": "UseFIPS"
+ },
+ false
+ ]
+ },
+ {
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "ref": "UseDualStack"
+ },
true
]
}
],
- "rules": [
+ "endpoint": {
+ "url": "https://streams-dynamodb.{Region}.{PartitionResult#dualStackDnsSuffix}",
+ "properties": {},
+ "headers": {}
+ },
+ "type": "endpoint"
+ },
+ {
+ "conditions": [
{
- "conditions": [
+ "fn": "stringEquals",
+ "argv": [
{
- "fn": "stringEquals",
+ "fn": "getAttr",
"argv": [
{
- "fn": "getAttr",
- "argv": [
- {
- "ref": "PartitionResult"
- },
- "name"
- ]
+ "ref": "PartitionResult"
},
- "aws-us-gov"
+ "name"
]
- }
- ],
- "endpoint": {
- "url": "https://streams.dynamodb.{Region}.amazonaws.com",
- "properties": {},
- "headers": {}
- },
- "type": "endpoint"
+ },
+ "aws-cn"
+ ]
},
{
- "conditions": [],
- "endpoint": {
- "url": "https://streams.dynamodb-fips.{Region}.{PartitionResult#dnsSuffix}",
- "properties": {},
- "headers": {}
- },
- "type": "endpoint"
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "ref": "UseFIPS"
+ },
+ true
+ ]
+ },
+ {
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "ref": "UseDualStack"
+ },
+ true
+ ]
}
],
- "type": "tree"
+ "endpoint": {
+ "url": "https://streams-dynamodb-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
+ "properties": {},
+ "headers": {}
+ },
+ "type": "endpoint"
},
{
- "conditions": [],
- "error": "FIPS is enabled but this partition does not support FIPS",
- "type": "error"
- }
- ],
- "type": "tree"
- },
- {
- "conditions": [
- {
- "fn": "booleanEquals",
- "argv": [
+ "conditions": [
{
- "ref": "UseDualStack"
+ "fn": "stringEquals",
+ "argv": [
+ {
+ "fn": "getAttr",
+ "argv": [
+ {
+ "ref": "PartitionResult"
+ },
+ "name"
+ ]
+ },
+ "aws-us-gov"
+ ]
},
- true
- ]
- }
- ],
- "rules": [
+ {
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "ref": "UseFIPS"
+ },
+ false
+ ]
+ },
+ {
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "ref": "UseDualStack"
+ },
+ true
+ ]
+ }
+ ],
+ "endpoint": {
+ "url": "https://streams-dynamodb.{Region}.{PartitionResult#dualStackDnsSuffix}",
+ "properties": {},
+ "headers": {}
+ },
+ "type": "endpoint"
+ },
{
"conditions": [
{
- "fn": "booleanEquals",
+ "fn": "stringEquals",
"argv": [
- true,
{
"fn": "getAttr",
"argv": [
{
"ref": "PartitionResult"
},
- "supportsDualStack"
+ "name"
]
- }
+ },
+ "aws-us-gov"
]
- }
- ],
- "rules": [
+ },
{
- "conditions": [],
- "endpoint": {
- "url": "https://streams.dynamodb.{Region}.{PartitionResult#dualStackDnsSuffix}",
- "properties": {},
- "headers": {}
- },
- "type": "endpoint"
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "ref": "UseFIPS"
+ },
+ true
+ ]
+ },
+ {
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "ref": "UseDualStack"
+ },
+ true
+ ]
}
],
- "type": "tree"
+ "endpoint": {
+ "url": "https://streams-dynamodb-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
+ "properties": {},
+ "headers": {}
+ },
+ "type": "endpoint"
},
{
- "conditions": [],
- "error": "DualStack is enabled but this partition does not support DualStack",
- "type": "error"
- }
- ],
- "type": "tree"
- },
- {
- "conditions": [
- {
- "fn": "stringEquals",
- "argv": [
+ "conditions": [
{
- "ref": "Region"
+ "fn": "stringEquals",
+ "argv": [
+ {
+ "fn": "getAttr",
+ "argv": [
+ {
+ "ref": "PartitionResult"
+ },
+ "name"
+ ]
+ },
+ "aws-us-gov"
+ ]
},
- "local"
- ]
- }
- ],
- "endpoint": {
- "url": "http://localhost:8000",
- "properties": {
- "authSchemes": [
{
- "name": "sigv4",
- "signingName": "dynamodb",
- "signingRegion": "us-east-1"
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "ref": "UseFIPS"
+ },
+ true
+ ]
+ },
+ {
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "ref": "UseDualStack"
+ },
+ false
+ ]
}
- ]
+ ],
+ "endpoint": {
+ "url": "https://streams.dynamodb.{Region}.{PartitionResult#dnsSuffix}",
+ "properties": {},
+ "headers": {}
+ },
+ "type": "endpoint"
},
- "headers": {}
- },
- "type": "endpoint"
- },
- {
- "conditions": [
{
- "fn": "stringEquals",
- "argv": [
- "aws",
+ "conditions": [
{
- "fn": "getAttr",
+ "fn": "booleanEquals",
"argv": [
{
- "ref": "PartitionResult"
+ "ref": "UseFIPS"
},
- "name"
+ true
]
- }
- ]
- }
- ],
- "endpoint": {
- "url": "https://streams.dynamodb.{Region}.amazonaws.com",
- "properties": {},
- "headers": {}
- },
- "type": "endpoint"
- },
- {
- "conditions": [
- {
- "fn": "stringEquals",
- "argv": [
- "aws-cn",
+ },
{
- "fn": "getAttr",
+ "fn": "booleanEquals",
"argv": [
{
- "ref": "PartitionResult"
+ "ref": "UseDualStack"
},
- "name"
+ true
]
}
- ]
- }
- ],
- "endpoint": {
- "url": "https://streams.dynamodb.{Region}.amazonaws.com.cn",
- "properties": {},
- "headers": {}
- },
- "type": "endpoint"
- },
- {
- "conditions": [
+ ],
+ "rules": [
+ {
+ "conditions": [
+ {
+ "fn": "booleanEquals",
+ "argv": [
+ true,
+ {
+ "fn": "getAttr",
+ "argv": [
+ {
+ "ref": "PartitionResult"
+ },
+ "supportsFIPS"
+ ]
+ }
+ ]
+ },
+ {
+ "fn": "booleanEquals",
+ "argv": [
+ true,
+ {
+ "fn": "getAttr",
+ "argv": [
+ {
+ "ref": "PartitionResult"
+ },
+ "supportsDualStack"
+ ]
+ }
+ ]
+ }
+ ],
+ "rules": [
+ {
+ "conditions": [],
+ "endpoint": {
+ "url": "https://streams.dynamodb-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
+ "properties": {},
+ "headers": {}
+ },
+ "type": "endpoint"
+ }
+ ],
+ "type": "tree"
+ },
+ {
+ "conditions": [],
+ "error": "FIPS and DualStack are enabled, but this partition does not support one or both",
+ "type": "error"
+ }
+ ],
+ "type": "tree"
+ },
{
- "fn": "stringEquals",
- "argv": [
- "aws-us-gov",
+ "conditions": [
{
- "fn": "getAttr",
+ "fn": "booleanEquals",
"argv": [
{
- "ref": "PartitionResult"
+ "ref": "UseFIPS"
},
- "name"
+ true
]
- }
- ]
- }
- ],
- "endpoint": {
- "url": "https://streams.dynamodb.{Region}.amazonaws.com",
- "properties": {},
- "headers": {}
- },
- "type": "endpoint"
- },
- {
- "conditions": [
- {
- "fn": "stringEquals",
- "argv": [
- "aws-iso",
+ },
{
- "fn": "getAttr",
+ "fn": "booleanEquals",
"argv": [
{
- "ref": "PartitionResult"
+ "ref": "UseDualStack"
},
- "name"
+ false
]
}
- ]
- }
- ],
- "endpoint": {
- "url": "https://streams.dynamodb.{Region}.c2s.ic.gov",
- "properties": {},
- "headers": {}
- },
- "type": "endpoint"
- },
- {
- "conditions": [
+ ],
+ "rules": [
+ {
+ "conditions": [
+ {
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "fn": "getAttr",
+ "argv": [
+ {
+ "ref": "PartitionResult"
+ },
+ "supportsFIPS"
+ ]
+ },
+ true
+ ]
+ }
+ ],
+ "rules": [
+ {
+ "conditions": [],
+ "endpoint": {
+ "url": "https://streams.dynamodb-fips.{Region}.{PartitionResult#dnsSuffix}",
+ "properties": {},
+ "headers": {}
+ },
+ "type": "endpoint"
+ }
+ ],
+ "type": "tree"
+ },
+ {
+ "conditions": [],
+ "error": "FIPS is enabled but this partition does not support FIPS",
+ "type": "error"
+ }
+ ],
+ "type": "tree"
+ },
{
- "fn": "stringEquals",
- "argv": [
- "aws-iso-b",
+ "conditions": [
{
- "fn": "getAttr",
+ "fn": "booleanEquals",
"argv": [
{
- "ref": "PartitionResult"
+ "ref": "UseFIPS"
},
- "name"
+ false
+ ]
+ },
+ {
+ "fn": "booleanEquals",
+ "argv": [
+ {
+ "ref": "UseDualStack"
+ },
+ true
]
}
- ]
+ ],
+ "rules": [
+ {
+ "conditions": [
+ {
+ "fn": "booleanEquals",
+ "argv": [
+ true,
+ {
+ "fn": "getAttr",
+ "argv": [
+ {
+ "ref": "PartitionResult"
+ },
+ "supportsDualStack"
+ ]
+ }
+ ]
+ }
+ ],
+ "rules": [
+ {
+ "conditions": [],
+ "endpoint": {
+ "url": "https://streams.dynamodb.{Region}.{PartitionResult#dualStackDnsSuffix}",
+ "properties": {},
+ "headers": {}
+ },
+ "type": "endpoint"
+ }
+ ],
+ "type": "tree"
+ },
+ {
+ "conditions": [],
+ "error": "DualStack is enabled but this partition does not support DualStack",
+ "type": "error"
+ }
+ ],
+ "type": "tree"
+ },
+ {
+ "conditions": [],
+ "endpoint": {
+ "url": "https://streams.dynamodb.{Region}.{PartitionResult#dnsSuffix}",
+ "properties": {},
+ "headers": {}
+ },
+ "type": "endpoint"
}
],
- "endpoint": {
- "url": "https://streams.dynamodb.{Region}.sc2s.sgov.gov",
- "properties": {},
- "headers": {}
- },
- "type": "endpoint"
- },
- {
- "conditions": [],
- "endpoint": {
- "url": "https://streams.dynamodb.{Region}.{PartitionResult#dnsSuffix}",
- "properties": {},
- "headers": {}
- },
- "type": "endpoint"
+ "type": "tree"
}
],
"type": "tree"
+ },
+ {
+ "conditions": [],
+ "error": "Invalid Configuration: Missing Region",
+ "type": "error"
}
],
"type": "tree"
- },
- {
- "conditions": [],
- "error": "Invalid Configuration: Missing Region",
- "type": "error"
}
]
}
\ No newline at end of file
diff --git a/services/dynamodb/src/main/resources/codegen-resources/dynamodbstreams/endpoint-tests.json b/services/dynamodb/src/main/resources/codegen-resources/dynamodbstreams/endpoint-tests.json
index 736b34277519..0f8ba10a35ae 100644
--- a/services/dynamodb/src/main/resources/codegen-resources/dynamodbstreams/endpoint-tests.json
+++ b/services/dynamodb/src/main/resources/codegen-resources/dynamodbstreams/endpoint-tests.json
@@ -1,259 +1,75 @@
{
"testCases": [
{
- "documentation": "For region af-south-1 with FIPS disabled and DualStack disabled",
+ "documentation": "For custom endpoint with region not set and fips disabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb.af-south-1.amazonaws.com"
- }
- },
- "params": {
- "Region": "af-south-1",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region ap-east-1 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.ap-east-1.amazonaws.com"
- }
- },
- "params": {
- "Region": "ap-east-1",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region ap-northeast-1 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.ap-northeast-1.amazonaws.com"
- }
- },
- "params": {
- "Region": "ap-northeast-1",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region ap-northeast-2 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.ap-northeast-2.amazonaws.com"
- }
- },
- "params": {
- "Region": "ap-northeast-2",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region ap-northeast-3 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.ap-northeast-3.amazonaws.com"
- }
- },
- "params": {
- "Region": "ap-northeast-3",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region ap-south-1 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.ap-south-1.amazonaws.com"
- }
- },
- "params": {
- "Region": "ap-south-1",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region ap-southeast-1 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.ap-southeast-1.amazonaws.com"
- }
- },
- "params": {
- "Region": "ap-southeast-1",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region ap-southeast-2 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.ap-southeast-2.amazonaws.com"
- }
- },
- "params": {
- "Region": "ap-southeast-2",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region ap-southeast-3 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.ap-southeast-3.amazonaws.com"
- }
- },
- "params": {
- "Region": "ap-southeast-3",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region ca-central-1 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.ca-central-1.amazonaws.com"
- }
- },
- "params": {
- "Region": "ca-central-1",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region eu-central-1 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.eu-central-1.amazonaws.com"
- }
- },
- "params": {
- "Region": "eu-central-1",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region eu-north-1 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.eu-north-1.amazonaws.com"
- }
- },
- "params": {
- "Region": "eu-north-1",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region eu-south-1 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.eu-south-1.amazonaws.com"
- }
- },
- "params": {
- "Region": "eu-south-1",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region eu-west-1 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.eu-west-1.amazonaws.com"
+ "url": "https://example.com"
}
},
"params": {
- "Region": "eu-west-1",
- "UseFIPS": false,
- "UseDualStack": false
+ "Endpoint": "https://example.com",
+ "UseFIPS": false
}
},
{
- "documentation": "For region eu-west-2 with FIPS disabled and DualStack disabled",
+ "documentation": "For custom endpoint with fips enabled",
"expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.eu-west-2.amazonaws.com"
- }
+ "error": "Invalid Configuration: FIPS and custom endpoint are not supported"
},
"params": {
- "Region": "eu-west-2",
- "UseFIPS": false,
- "UseDualStack": false
+ "Endpoint": "https://example.com",
+ "UseFIPS": true
}
},
{
- "documentation": "For region eu-west-3 with FIPS disabled and DualStack disabled",
+ "documentation": "For custom endpoint with fips disabled and dualstack enabled",
"expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.eu-west-3.amazonaws.com"
- }
+ "error": "Invalid Configuration: Dualstack and custom endpoint are not supported"
},
"params": {
- "Region": "eu-west-3",
+ "Endpoint": "https://example.com",
"UseFIPS": false,
- "UseDualStack": false
+ "UseDualStack": true
}
},
{
- "documentation": "For region local with FIPS disabled and DualStack disabled",
+ "documentation": "For region us-east-1 with FIPS enabled and DualStack enabled",
"expect": {
"endpoint": {
- "properties": {
- "authSchemes": [
- {
- "name": "sigv4",
- "signingName": "dynamodb",
- "signingRegion": "us-east-1"
- }
- ]
- },
- "url": "http://localhost:8000"
+ "url": "https://streams-dynamodb-fips.us-east-1.api.aws"
}
},
"params": {
- "Region": "local",
- "UseFIPS": false,
- "UseDualStack": false
+ "Region": "us-east-1",
+ "UseFIPS": true,
+ "UseDualStack": true
}
},
{
- "documentation": "For region me-south-1 with FIPS disabled and DualStack disabled",
+ "documentation": "For region us-east-1 with FIPS enabled and DualStack disabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb.me-south-1.amazonaws.com"
+ "url": "https://streams.dynamodb-fips.us-east-1.amazonaws.com"
}
},
"params": {
- "Region": "me-south-1",
- "UseFIPS": false,
+ "Region": "us-east-1",
+ "UseFIPS": true,
"UseDualStack": false
}
},
{
- "documentation": "For region sa-east-1 with FIPS disabled and DualStack disabled",
+ "documentation": "For region us-east-1 with FIPS disabled and DualStack enabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb.sa-east-1.amazonaws.com"
+ "url": "https://streams-dynamodb.us-east-1.api.aws"
}
},
"params": {
- "Region": "sa-east-1",
+ "Region": "us-east-1",
"UseFIPS": false,
- "UseDualStack": false
+ "UseDualStack": true
}
},
{
@@ -270,96 +86,44 @@
}
},
{
- "documentation": "For region us-east-2 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.us-east-2.amazonaws.com"
- }
- },
- "params": {
- "Region": "us-east-2",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region us-west-1 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.us-west-1.amazonaws.com"
- }
- },
- "params": {
- "Region": "us-west-1",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region us-west-2 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.us-west-2.amazonaws.com"
- }
- },
- "params": {
- "Region": "us-west-2",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
- {
- "documentation": "For region us-east-1 with FIPS enabled and DualStack enabled",
+ "documentation": "For region cn-northwest-1 with FIPS enabled and DualStack enabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb-fips.us-east-1.api.aws"
+ "url": "https://streams-dynamodb-fips.cn-northwest-1.api.amazonwebservices.com.cn"
}
},
"params": {
- "Region": "us-east-1",
+ "Region": "cn-northwest-1",
"UseFIPS": true,
"UseDualStack": true
}
},
{
- "documentation": "For region us-east-1 with FIPS enabled and DualStack disabled",
+ "documentation": "For region cn-northwest-1 with FIPS enabled and DualStack disabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb-fips.us-east-1.amazonaws.com"
+ "url": "https://streams.dynamodb-fips.cn-northwest-1.amazonaws.com.cn"
}
},
"params": {
- "Region": "us-east-1",
+ "Region": "cn-northwest-1",
"UseFIPS": true,
"UseDualStack": false
}
},
{
- "documentation": "For region us-east-1 with FIPS disabled and DualStack enabled",
+ "documentation": "For region cn-northwest-1 with FIPS disabled and DualStack enabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb.us-east-1.api.aws"
+ "url": "https://streams-dynamodb.cn-northwest-1.api.amazonwebservices.com.cn"
}
},
"params": {
- "Region": "us-east-1",
+ "Region": "cn-northwest-1",
"UseFIPS": false,
"UseDualStack": true
}
},
- {
- "documentation": "For region cn-north-1 with FIPS disabled and DualStack disabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.cn-north-1.amazonaws.com.cn"
- }
- },
- "params": {
- "Region": "cn-north-1",
- "UseFIPS": false,
- "UseDualStack": false
- }
- },
{
"documentation": "For region cn-northwest-1 with FIPS disabled and DualStack disabled",
"expect": {
@@ -374,223 +138,185 @@
}
},
{
- "documentation": "For region cn-north-1 with FIPS enabled and DualStack enabled",
+ "documentation": "For region us-gov-west-1 with FIPS enabled and DualStack enabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb-fips.cn-north-1.api.amazonwebservices.com.cn"
+ "url": "https://streams-dynamodb-fips.us-gov-west-1.api.aws"
}
},
"params": {
- "Region": "cn-north-1",
+ "Region": "us-gov-west-1",
"UseFIPS": true,
"UseDualStack": true
}
},
{
- "documentation": "For region cn-north-1 with FIPS enabled and DualStack disabled",
+ "documentation": "For region us-gov-west-1 with FIPS enabled and DualStack disabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb-fips.cn-north-1.amazonaws.com.cn"
+ "url": "https://streams.dynamodb.us-gov-west-1.amazonaws.com"
}
},
"params": {
- "Region": "cn-north-1",
+ "Region": "us-gov-west-1",
"UseFIPS": true,
"UseDualStack": false
}
},
{
- "documentation": "For region cn-north-1 with FIPS disabled and DualStack enabled",
+ "documentation": "For region us-gov-west-1 with FIPS disabled and DualStack enabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb.cn-north-1.api.amazonwebservices.com.cn"
+ "url": "https://streams-dynamodb.us-gov-west-1.api.aws"
}
},
"params": {
- "Region": "cn-north-1",
+ "Region": "us-gov-west-1",
"UseFIPS": false,
"UseDualStack": true
}
},
{
- "documentation": "For region us-gov-east-1 with FIPS disabled and DualStack disabled",
+ "documentation": "For region us-gov-west-1 with FIPS disabled and DualStack disabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb.us-gov-east-1.amazonaws.com"
+ "url": "https://streams.dynamodb.us-gov-west-1.amazonaws.com"
}
},
"params": {
- "Region": "us-gov-east-1",
+ "Region": "us-gov-west-1",
"UseFIPS": false,
"UseDualStack": false
}
},
{
- "documentation": "For region us-gov-east-1 with FIPS enabled and DualStack disabled",
+ "documentation": "For region us-iso-east-1 with FIPS enabled and DualStack disabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb.us-gov-east-1.amazonaws.com"
+ "url": "https://streams.dynamodb-fips.us-iso-east-1.c2s.ic.gov"
}
},
"params": {
- "Region": "us-gov-east-1",
+ "Region": "us-iso-east-1",
"UseFIPS": true,
"UseDualStack": false
}
},
{
- "documentation": "For region us-gov-west-1 with FIPS disabled and DualStack disabled",
+ "documentation": "For region us-iso-east-1 with FIPS disabled and DualStack disabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb.us-gov-west-1.amazonaws.com"
+ "url": "https://streams.dynamodb.us-iso-east-1.c2s.ic.gov"
}
},
"params": {
- "Region": "us-gov-west-1",
+ "Region": "us-iso-east-1",
"UseFIPS": false,
"UseDualStack": false
}
},
{
- "documentation": "For region us-gov-west-1 with FIPS enabled and DualStack disabled",
+ "documentation": "For region us-isob-east-1 with FIPS enabled and DualStack disabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb.us-gov-west-1.amazonaws.com"
+ "url": "https://streams.dynamodb-fips.us-isob-east-1.sc2s.sgov.gov"
}
},
"params": {
- "Region": "us-gov-west-1",
+ "Region": "us-isob-east-1",
"UseFIPS": true,
"UseDualStack": false
}
},
{
- "documentation": "For region us-gov-east-1 with FIPS enabled and DualStack enabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb-fips.us-gov-east-1.api.aws"
- }
- },
- "params": {
- "Region": "us-gov-east-1",
- "UseFIPS": true,
- "UseDualStack": true
- }
- },
- {
- "documentation": "For region us-gov-east-1 with FIPS disabled and DualStack enabled",
- "expect": {
- "endpoint": {
- "url": "https://streams.dynamodb.us-gov-east-1.api.aws"
- }
- },
- "params": {
- "Region": "us-gov-east-1",
- "UseFIPS": false,
- "UseDualStack": true
- }
- },
- {
- "documentation": "For region us-iso-east-1 with FIPS disabled and DualStack disabled",
+ "documentation": "For region us-isob-east-1 with FIPS disabled and DualStack disabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb.us-iso-east-1.c2s.ic.gov"
+ "url": "https://streams.dynamodb.us-isob-east-1.sc2s.sgov.gov"
}
},
"params": {
- "Region": "us-iso-east-1",
+ "Region": "us-isob-east-1",
"UseFIPS": false,
"UseDualStack": false
}
},
{
- "documentation": "For region us-iso-east-1 with FIPS enabled and DualStack disabled",
+ "documentation": "For region eu-isoe-west-1 with FIPS enabled and DualStack disabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb-fips.us-iso-east-1.c2s.ic.gov"
+ "url": "https://streams.dynamodb-fips.eu-isoe-west-1.cloud.adc-e.uk"
}
},
"params": {
- "Region": "us-iso-east-1",
+ "Region": "eu-isoe-west-1",
"UseFIPS": true,
"UseDualStack": false
}
},
{
- "documentation": "For region us-isob-east-1 with FIPS disabled and DualStack disabled",
+ "documentation": "For region eu-isoe-west-1 with FIPS disabled and DualStack disabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb.us-isob-east-1.sc2s.sgov.gov"
+ "url": "https://streams.dynamodb.eu-isoe-west-1.cloud.adc-e.uk"
}
},
"params": {
- "Region": "us-isob-east-1",
+ "Region": "eu-isoe-west-1",
"UseFIPS": false,
"UseDualStack": false
}
},
{
- "documentation": "For region us-isob-east-1 with FIPS enabled and DualStack disabled",
+ "documentation": "For region us-isof-south-1 with FIPS enabled and DualStack disabled",
"expect": {
"endpoint": {
- "url": "https://streams.dynamodb-fips.us-isob-east-1.sc2s.sgov.gov"
+ "url": "https://streams.dynamodb-fips.us-isof-south-1.csp.hci.ic.gov"
}
},
"params": {
- "Region": "us-isob-east-1",
+ "Region": "us-isof-south-1",
"UseFIPS": true,
"UseDualStack": false
}
},
{
- "documentation": "For custom endpoint with region set and fips disabled and dualstack disabled",
+ "documentation": "For region us-isof-south-1 with FIPS disabled and DualStack disabled",
"expect": {
"endpoint": {
- "url": "https://example.com"
+ "url": "https://streams.dynamodb.us-isof-south-1.csp.hci.ic.gov"
}
},
"params": {
- "Region": "us-east-1",
+ "Region": "us-isof-south-1",
"UseFIPS": false,
- "UseDualStack": false,
- "Endpoint": "https://example.com"
+ "UseDualStack": false
}
},
{
- "documentation": "For custom endpoint with region not set and fips disabled and dualstack disabled",
+ "documentation": "For region eusc-de-east-1 with FIPS enabled and DualStack disabled",
"expect": {
"endpoint": {
- "url": "https://example.com"
+ "url": "https://streams.dynamodb-fips.eusc-de-east-1.amazonaws.eu"
}
},
"params": {
- "UseFIPS": false,
- "UseDualStack": false,
- "Endpoint": "https://example.com"
- }
- },
- {
- "documentation": "For custom endpoint with fips enabled and dualstack disabled",
- "expect": {
- "error": "Invalid Configuration: FIPS and custom endpoint are not supported"
- },
- "params": {
- "Region": "us-east-1",
+ "Region": "eusc-de-east-1",
"UseFIPS": true,
- "UseDualStack": false,
- "Endpoint": "https://example.com"
+ "UseDualStack": false
}
},
{
- "documentation": "For custom endpoint with fips disabled and dualstack enabled",
+ "documentation": "For region eusc-de-east-1 with FIPS disabled and DualStack disabled",
"expect": {
- "error": "Invalid Configuration: Dualstack and custom endpoint are not supported"
+ "endpoint": {
+ "url": "https://streams.dynamodb.eusc-de-east-1.amazonaws.eu"
+ }
},
"params": {
- "Region": "us-east-1",
+ "Region": "eusc-de-east-1",
"UseFIPS": false,
- "UseDualStack": true,
- "Endpoint": "https://example.com"
+ "UseDualStack": false
}
},
{
From 410c2820ba39fc1fa007511b5ac756b41a1ec4e8 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 26 Sep 2025 19:10:30 +0000
Subject: [PATCH 113/121] Agents for Amazon Bedrock Runtime Update: This
release enhances the information provided through Flow Traces. New
information includes source/next node tracking, execution chains for complex
nodes, dependency action (operation) details, and dependency traces.
---
...AgentsforAmazonBedrockRuntime-28e12e7.json | 6 +
.../codegen-resources/service-2.json | 3335 +++++++++--------
.../codegen-resources/waiters-2.json | 5 +
3 files changed, 1867 insertions(+), 1479 deletions(-)
create mode 100644 .changes/next-release/feature-AgentsforAmazonBedrockRuntime-28e12e7.json
create mode 100644 services/bedrockagentruntime/src/main/resources/codegen-resources/waiters-2.json
diff --git a/.changes/next-release/feature-AgentsforAmazonBedrockRuntime-28e12e7.json b/.changes/next-release/feature-AgentsforAmazonBedrockRuntime-28e12e7.json
new file mode 100644
index 000000000000..4ddc14f3d9dd
--- /dev/null
+++ b/.changes/next-release/feature-AgentsforAmazonBedrockRuntime-28e12e7.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Agents for Amazon Bedrock Runtime",
+ "contributor": "",
+ "description": "This release enhances the information provided through Flow Traces. New information includes source/next node tracking, execution chains for complex nodes, dependency action (operation) details, and dependency traces."
+}
diff --git a/services/bedrockagentruntime/src/main/resources/codegen-resources/service-2.json b/services/bedrockagentruntime/src/main/resources/codegen-resources/service-2.json
index e56955988f23..56d7ef914dfe 100644
--- a/services/bedrockagentruntime/src/main/resources/codegen-resources/service-2.json
+++ b/services/bedrockagentruntime/src/main/resources/codegen-resources/service-2.json
@@ -2,16 +2,15 @@
"version":"2.0",
"metadata":{
"apiVersion":"2023-07-26",
+ "auth":["aws.auth#sigv4"],
"endpointPrefix":"bedrock-agent-runtime",
- "jsonVersion":"1.1",
"protocol":"rest-json",
"protocols":["rest-json"],
"serviceFullName":"Agents for Amazon Bedrock Runtime",
"serviceId":"Bedrock Agent Runtime",
"signatureVersion":"v4",
"signingName":"bedrock",
- "uid":"bedrock-agent-runtime-2023-07-26",
- "auth":["aws.auth#sigv4"]
+ "uid":"bedrock-agent-runtime-2023-07-26"
},
"operations":{
"CreateInvocation":{
@@ -138,7 +137,8 @@
{"shape":"AccessDeniedException"},
{"shape":"ServiceQuotaExceededException"}
],
- "documentation":"Generates an SQL query from a natural language query. For more information, see Generate a query for structured data in the Amazon Bedrock User Guide.
"
+ "documentation":"Generates an SQL query from a natural language query. For more information, see Generate a query for structured data in the Amazon Bedrock User Guide.
",
+ "readonly":true
},
"GetAgentMemory":{
"name":"GetAgentMemory",
@@ -160,7 +160,8 @@
{"shape":"AccessDeniedException"},
{"shape":"ServiceQuotaExceededException"}
],
- "documentation":"Gets the sessions stored in the memory of the agent.
"
+ "documentation":"Gets the sessions stored in the memory of the agent.
",
+ "readonly":true
},
"GetExecutionFlowSnapshot":{
"name":"GetExecutionFlowSnapshot",
@@ -178,7 +179,8 @@
{"shape":"ThrottlingException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"Retrieves the flow definition snapshot used for a flow execution. The snapshot represents the flow metadata and definition as it existed at the time the execution was started. Note that even if the flow is edited after an execution starts, the snapshot connected to the execution remains unchanged.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
"
+ "documentation":"Retrieves the flow definition snapshot used for a flow execution. The snapshot represents the flow metadata and definition as it existed at the time the execution was started. Note that even if the flow is edited after an execution starts, the snapshot connected to the execution remains unchanged.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
+ "readonly":true
},
"GetFlowExecution":{
"name":"GetFlowExecution",
@@ -196,7 +198,8 @@
{"shape":"ThrottlingException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"Retrieves details about a specific flow execution, including its status, start and end times, and any errors that occurred during execution.
"
+ "documentation":"Retrieves details about a specific flow execution, including its status, start and end times, and any errors that occurred during execution.
",
+ "readonly":true
},
"GetInvocationStep":{
"name":"GetInvocationStep",
@@ -214,7 +217,8 @@
{"shape":"ThrottlingException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"Retrieves the details of a specific invocation step within an invocation in a session. For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.
"
+ "documentation":"Retrieves the details of a specific invocation step within an invocation in a session. For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.
",
+ "readonly":true
},
"GetSession":{
"name":"GetSession",
@@ -232,7 +236,8 @@
{"shape":"ThrottlingException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"Retrieves details about a specific session. For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.
"
+ "documentation":"Retrieves details about a specific session. For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.
",
+ "readonly":true
},
"InvokeAgent":{
"name":"InvokeAgent",
@@ -317,7 +322,8 @@
{"shape":"ThrottlingException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"Lists events that occurred during a flow execution. Events provide detailed information about the execution progress, including node inputs and outputs, flow inputs and outputs, condition results, and failure events.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
"
+ "documentation":"Lists events that occurred during a flow execution. Events provide detailed information about the execution progress, including node inputs and outputs, flow inputs and outputs, condition results, and failure events.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
+ "readonly":true
},
"ListFlowExecutions":{
"name":"ListFlowExecutions",
@@ -335,7 +341,8 @@
{"shape":"ThrottlingException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"Lists all executions of a flow. Results can be paginated and include summary information about each execution, such as status, start and end times, and the execution's Amazon Resource Name (ARN).
Flow executions is in preview release for Amazon Bedrock and is subject to change.
"
+ "documentation":"Lists all executions of a flow. Results can be paginated and include summary information about each execution, such as status, start and end times, and the execution's Amazon Resource Name (ARN).
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
+ "readonly":true
},
"ListInvocationSteps":{
"name":"ListInvocationSteps",
@@ -353,7 +360,8 @@
{"shape":"ThrottlingException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"Lists all invocation steps associated with a session and optionally, an invocation within the session. For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.
"
+ "documentation":"Lists all invocation steps associated with a session and optionally, an invocation within the session. For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.
",
+ "readonly":true
},
"ListInvocations":{
"name":"ListInvocations",
@@ -371,7 +379,8 @@
{"shape":"ThrottlingException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"Lists all invocations associated with a specific session. For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.
"
+ "documentation":"Lists all invocations associated with a specific session. For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.
",
+ "readonly":true
},
"ListSessions":{
"name":"ListSessions",
@@ -388,7 +397,8 @@
{"shape":"ThrottlingException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"Lists all sessions in your Amazon Web Services account. For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.
"
+ "documentation":"Lists all sessions in your Amazon Web Services account. For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.
",
+ "readonly":true
},
"ListTagsForResource":{
"name":"ListTagsForResource",
@@ -406,7 +416,8 @@
{"shape":"ThrottlingException"},
{"shape":"AccessDeniedException"}
],
- "documentation":"List all the tags for the resource you specify.
"
+ "documentation":"List all the tags for the resource you specify.
",
+ "readonly":true
},
"OptimizePrompt":{
"name":"OptimizePrompt",
@@ -490,7 +501,8 @@
{"shape":"AccessDeniedException"},
{"shape":"ServiceQuotaExceededException"}
],
- "documentation":"Queries a knowledge base and retrieves information from it.
"
+ "documentation":"Queries a knowledge base and retrieves information from it.
",
+ "readonly":true
},
"RetrieveAndGenerate":{
"name":"RetrieveAndGenerate",
@@ -642,13 +654,13 @@
"APISchema":{
"type":"structure",
"members":{
- "payload":{
- "shape":"Payload",
- "documentation":" The JSON or YAML-formatted payload defining the OpenAPI schema for the action group.
"
- },
"s3":{
"shape":"S3Identifier",
"documentation":" Contains details about the S3 object containing the OpenAPI schema for the action group.
"
+ },
+ "payload":{
+ "shape":"Payload",
+ "documentation":" The JSON or YAML-formatted payload defining the OpenAPI schema for the action group.
"
}
},
"documentation":" Contains details about the OpenAPI schema for the action group. For more information, see Action group OpenAPI schemas. You can either include the schema directly in the payload field or you can upload it to an S3 bucket and specify the S3 bucket location in the s3 field.
",
@@ -658,7 +670,7 @@
"type":"string",
"max":2048,
"min":0,
- "pattern":"^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:agent/[0-9a-zA-Z]{10}$"
+ "pattern":"arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:agent/[0-9a-zA-Z]{10}"
},
"AccessDeniedException":{
"type":"structure",
@@ -675,13 +687,13 @@
"ActionGroupExecutor":{
"type":"structure",
"members":{
- "customControl":{
- "shape":"CustomControlMethod",
- "documentation":" To return the action group invocation results directly in the InvokeInlineAgent response, specify RETURN_CONTROL.
"
- },
"lambda":{
"shape":"LambdaResourceArn",
"documentation":" The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action.
"
+ },
+ "customControl":{
+ "shape":"CustomControlMethod",
+ "documentation":" To return the action group invocation results directly in the InvokeInlineAgent response, specify RETURN_CONTROL.
"
}
},
"documentation":" Contains details about the Lambda function containing the business logic that is carried out upon invoking the action or the custom control method for handling the information elicited from the user.
",
@@ -694,22 +706,14 @@
"shape":"ActionGroupName",
"documentation":"The name of the action group.
"
},
+ "verb":{
+ "shape":"Verb",
+ "documentation":"The API method being used, based off the action group.
"
+ },
"apiPath":{
"shape":"ApiPath",
"documentation":"The path to the API to call, based off the action group.
"
},
- "executionType":{
- "shape":"ExecutionType",
- "documentation":"How fulfillment of the action is handled. For more information, see Handling fulfillment of the action.
"
- },
- "function":{
- "shape":"Function",
- "documentation":"The function in the action group to call.
"
- },
- "invocationId":{
- "shape":"String",
- "documentation":"The unique identifier of the invocation. Only returned if the executionType is RETURN_CONTROL.
"
- },
"parameters":{
"shape":"Parameters",
"documentation":"The parameters in the Lambda input event.
"
@@ -718,9 +722,17 @@
"shape":"RequestBody",
"documentation":"The parameters in the request body for the Lambda input event.
"
},
- "verb":{
- "shape":"Verb",
- "documentation":"The API method being used, based off the action group.
"
+ "function":{
+ "shape":"Function",
+ "documentation":"The function in the action group to call.
"
+ },
+ "executionType":{
+ "shape":"ExecutionType",
+ "documentation":"How fulfillment of the action is handled. For more information, see Handling fulfillment of the action.
"
+ },
+ "invocationId":{
+ "shape":"String",
+ "documentation":"The unique identifier of the invocation. Only returned if the executionType is RETURN_CONTROL.
"
}
},
"documentation":"Contains information about the action group being invoked. For more information about the possible structures, see the InvocationInput tab in OrchestrationTrace in the Amazon Bedrock User Guide.
"
@@ -728,13 +740,13 @@
"ActionGroupInvocationOutput":{
"type":"structure",
"members":{
- "metadata":{
- "shape":"Metadata",
- "documentation":"Contains information about the action group output.
"
- },
"text":{
"shape":"ActionGroupOutputString",
"documentation":"The JSON-formatted string returned by the API invoked by the action group.
"
+ },
+ "metadata":{
+ "shape":"Metadata",
+ "documentation":"Contains information about the action group output.
"
}
},
"documentation":"Contains the JSON-formatted string returned by the API invoked by the action group.
"
@@ -792,38 +804,37 @@
},
"AdditionalModelRequestFieldsValue":{
"type":"structure",
- "members":{
- },
+ "members":{},
"document":true
},
"AgentActionGroup":{
"type":"structure",
"required":["actionGroupName"],
"members":{
- "actionGroupExecutor":{
- "shape":"ActionGroupExecutor",
- "documentation":" The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action or the custom control method for handling the information elicited from the user.
"
- },
"actionGroupName":{
"shape":"ResourceName",
"documentation":" The name of the action group.
"
},
- "apiSchema":{
- "shape":"APISchema",
- "documentation":" Contains either details about the S3 object containing the OpenAPI schema for the action group or the JSON or YAML-formatted payload defining the schema. For more information, see Action group OpenAPI schemas.
"
- },
"description":{
"shape":"ResourceDescription",
"documentation":" A description of the action group.
"
},
- "functionSchema":{
- "shape":"FunctionSchema",
- "documentation":" Contains details about the function schema for the action group or the JSON or YAML-formatted payload defining the schema.
"
- },
"parentActionGroupSignature":{
"shape":"ActionGroupSignature",
"documentation":"Specify a built-in or computer use action for this action group. If you specify a value, you must leave the description, apiSchema, and actionGroupExecutor fields empty for this action group.
-
To allow your agent to request the user for additional information when trying to complete a task, set this field to AMAZON.UserInput.
-
To allow your agent to generate, run, and troubleshoot code when trying to complete a task, set this field to AMAZON.CodeInterpreter.
-
To allow your agent to use an Anthropic computer use tool, specify one of the following values.
Computer use is a new Anthropic Claude model capability (in beta) available with Anthropic Claude 3.7 Sonnet and Claude 3.5 Sonnet v2 only. When operating computer use functionality, we recommend taking additional security precautions, such as executing computer actions in virtual environments with restricted data access and limited internet connectivity. For more information, see Configure an Amazon Bedrock Agent to complete tasks with computer use tools.
-
ANTHROPIC.Computer - Gives the agent permission to use the mouse and keyboard and take screenshots.
-
ANTHROPIC.TextEditor - Gives the agent permission to view, create and edit files.
-
ANTHROPIC.Bash - Gives the agent permission to run commands in a bash shell.
"
},
+ "actionGroupExecutor":{
+ "shape":"ActionGroupExecutor",
+ "documentation":" The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action or the custom control method for handling the information elicited from the user.
"
+ },
+ "apiSchema":{
+ "shape":"APISchema",
+ "documentation":" Contains either details about the S3 object containing the OpenAPI schema for the action group or the JSON or YAML-formatted payload defining the schema. For more information, see Action group OpenAPI schemas.
"
+ },
+ "functionSchema":{
+ "shape":"FunctionSchema",
+ "documentation":" Contains details about the function schema for the action group or the JSON or YAML-formatted payload defining the schema.
"
+ },
"parentActionGroupSignatureParams":{
"shape":"ActionGroupSignatureParams",
"documentation":" The configuration settings for a computer use action.
Computer use is a new Anthropic Claude model capability (in beta) available with Claude 3.7 Sonnet and Claude 3.5 Sonnet v2 only. For more information, see Configure an Amazon Bedrock Agent to complete tasks with computer use tools.
"
@@ -839,13 +850,13 @@
"type":"string",
"max":2048,
"min":0,
- "pattern":"^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:agent-alias/[0-9a-zA-Z]{10}/[0-9a-zA-Z]{10}$"
+ "pattern":"arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:agent-alias/[0-9a-zA-Z]{10}/[0-9a-zA-Z]{10}"
},
"AgentAliasId":{
"type":"string",
"max":10,
"min":0,
- "pattern":"^[0-9a-zA-Z]+$"
+ "pattern":"[0-9a-zA-Z]+"
},
"AgentCollaboration":{
"type":"string",
@@ -858,17 +869,17 @@
"AgentCollaboratorInputPayload":{
"type":"structure",
"members":{
- "returnControlResults":{
- "shape":"ReturnControlResults",
- "documentation":"An action invocation result.
"
+ "type":{
+ "shape":"PayloadType",
+ "documentation":"The input type.
"
},
"text":{
"shape":"AgentCollaboratorPayloadString",
"documentation":"Input text.
"
},
- "type":{
- "shape":"PayloadType",
- "documentation":"The input type.
"
+ "returnControlResults":{
+ "shape":"ReturnControlResults",
+ "documentation":"An action invocation result.
"
}
},
"documentation":"Input for an agent collaborator. The input can be text or an action invocation result.
"
@@ -876,14 +887,14 @@
"AgentCollaboratorInvocationInput":{
"type":"structure",
"members":{
- "agentCollaboratorAliasArn":{
- "shape":"AgentAliasArn",
- "documentation":"The collaborator's alias ARN.
"
- },
"agentCollaboratorName":{
"shape":"String",
"documentation":"The collaborator's name.
"
},
+ "agentCollaboratorAliasArn":{
+ "shape":"AgentAliasArn",
+ "documentation":"The collaborator's alias ARN.
"
+ },
"input":{
"shape":"AgentCollaboratorInputPayload",
"documentation":"Text or action invocation result input for the collaborator.
"
@@ -894,21 +905,21 @@
"AgentCollaboratorInvocationOutput":{
"type":"structure",
"members":{
- "agentCollaboratorAliasArn":{
- "shape":"AgentAliasArn",
- "documentation":"The output's agent collaborator alias ARN.
"
- },
"agentCollaboratorName":{
"shape":"String",
"documentation":"The output's agent collaborator name.
"
},
- "metadata":{
- "shape":"Metadata",
- "documentation":"Contains information about the output from the agent collaborator.
"
+ "agentCollaboratorAliasArn":{
+ "shape":"AgentAliasArn",
+ "documentation":"The output's agent collaborator alias ARN.
"
},
"output":{
"shape":"AgentCollaboratorOutputPayload",
"documentation":"The output's output.
"
+ },
+ "metadata":{
+ "shape":"Metadata",
+ "documentation":"Contains information about the output from the agent collaborator.
"
}
},
"documentation":"Output from an agent collaborator.
"
@@ -916,17 +927,17 @@
"AgentCollaboratorOutputPayload":{
"type":"structure",
"members":{
- "returnControlPayload":{
- "shape":"ReturnControlPayload",
- "documentation":"An action invocation result.
"
+ "type":{
+ "shape":"PayloadType",
+ "documentation":"The type of output.
"
},
"text":{
"shape":"AgentCollaboratorPayloadString",
"documentation":"Text output.
"
},
- "type":{
- "shape":"PayloadType",
- "documentation":"The type of output.
"
+ "returnControlPayload":{
+ "shape":"ReturnControlPayload",
+ "documentation":"An action invocation result.
"
}
},
"documentation":"Output from an agent collaborator. The output can be text or an action invocation result.
"
@@ -939,13 +950,17 @@
"type":"string",
"max":10,
"min":0,
- "pattern":"^[0-9a-zA-Z]+$"
+ "pattern":"[0-9a-zA-Z]+"
+ },
+ "AgentTraces":{
+ "type":"list",
+ "member":{"shape":"TracePart"}
},
"AgentVersion":{
"type":"string",
"max":5,
"min":1,
- "pattern":"^(DRAFT|[0-9]{0,4}[1-9][0-9]{0,4})$"
+ "pattern":"(DRAFT|[0-9]{0,4}[1-9][0-9]{0,4})"
},
"AnalyzePromptEvent":{
"type":"structure",
@@ -972,26 +987,14 @@
"shape":"String",
"documentation":"The action group that the API operation belongs to.
"
},
- "actionInvocationType":{
- "shape":"ActionInvocationType",
- "documentation":"Contains information about the API operation to invoke.
"
- },
- "agentId":{
+ "httpMethod":{
"shape":"String",
- "documentation":"The agent's ID.
"
+ "documentation":"The HTTP method of the API operation.
"
},
"apiPath":{
"shape":"ApiPath",
"documentation":"The path to the API operation.
"
},
- "collaboratorName":{
- "shape":"Name",
- "documentation":"The agent collaborator's name.
"
- },
- "httpMethod":{
- "shape":"String",
- "documentation":"The HTTP method of the API operation.
"
- },
"parameters":{
"shape":"ApiParameters",
"documentation":"The parameters to provide for the API request, as the agent elicited from the user.
"
@@ -999,6 +1002,18 @@
"requestBody":{
"shape":"ApiRequestBody",
"documentation":"The request body to provide for the API request, as the agent elicited from the user.
"
+ },
+ "actionInvocationType":{
+ "shape":"ActionInvocationType",
+ "documentation":"Contains information about the API operation to invoke.
"
+ },
+ "agentId":{
+ "shape":"String",
+ "documentation":"The agent's ID.
"
+ },
+ "collaboratorName":{
+ "shape":"Name",
+ "documentation":"The agent collaborator's name.
"
}
},
"documentation":"Contains information about the API operation that the agent predicts should be called.
This data type is used in the following API operations:
"
@@ -1047,9 +1062,9 @@
"shape":"String",
"documentation":"The action group that the API operation belongs to.
"
},
- "agentId":{
+ "httpMethod":{
"shape":"String",
- "documentation":"The agent's ID.
"
+ "documentation":"The HTTP method for the API operation.
"
},
"apiPath":{
"shape":"ApiPath",
@@ -1059,9 +1074,9 @@
"shape":"ConfirmationState",
"documentation":"Controls the API operations or functions to invoke based on the user confirmation.
"
},
- "httpMethod":{
- "shape":"String",
- "documentation":"The HTTP method for the API operation.
"
+ "responseState":{
+ "shape":"ResponseState",
+ "documentation":"Controls the final response state returned to end user when API/Function execution failed. When this state is FAILURE, the request would fail with dependency failure exception. When this state is REPROMPT, the API/function response will be sent to model for re-prompt
"
},
"httpStatusCode":{
"shape":"Integer",
@@ -1071,9 +1086,9 @@
"shape":"ResponseBody",
"documentation":"The response body from the API operation. The key of the object is the content type (currently, only TEXT is supported). The response may be returned directly or from the Lambda function.
"
},
- "responseState":{
- "shape":"ResponseState",
- "documentation":"Controls the final response state returned to end user when API/Function execution failed. When this state is FAILURE, the request would fail with dependency failure exception. When this state is REPROMPT, the API/function response will be sent to model for re-prompt
"
+ "agentId":{
+ "shape":"String",
+ "documentation":"The agent's ID.
"
}
},
"documentation":"Contains information about the API operation that was called from the action group and the response body that was returned.
This data type is used in the following API operations:
"
@@ -1121,7 +1136,7 @@
"type":"string",
"max":2048,
"min":1,
- "pattern":"^(arn:aws(-[^:]+)?:(bedrock|sagemaker):[a-z0-9-]{1,20}:([0-9]{12})?:([a-z-]+/)?)?([a-z0-9.-]{1,63}){0,2}(([:][a-z0-9-]{1,63}){0,2})?(/[a-z0-9]{1,12})?$"
+ "pattern":"(arn:aws(-[^:]+)?:(bedrock|sagemaker):[a-z0-9-]{1,20}:([0-9]{12})?:([a-z-]+/)?)?([a-z0-9.-]{1,63}){0,2}(([:][a-z0-9-]{1,63}){0,2})?(/[a-z0-9]{1,12})?"
},
"BedrockModelConfigurations":{
"type":"structure",
@@ -1137,13 +1152,13 @@
"type":"structure",
"required":["modelConfiguration"],
"members":{
- "modelConfiguration":{
- "shape":"BedrockRerankingModelConfiguration",
- "documentation":"Contains configurations for a reranker model.
"
- },
"numberOfResults":{
"shape":"BedrockRerankingConfigurationNumberOfResultsInteger",
"documentation":"The number of results to return after reranking.
"
+ },
+ "modelConfiguration":{
+ "shape":"BedrockRerankingModelConfiguration",
+ "documentation":"Contains configurations for a reranker model.
"
}
},
"documentation":"Contains configurations for an Amazon Bedrock reranker model.
"
@@ -1158,19 +1173,19 @@
"type":"string",
"max":2048,
"min":1,
- "pattern":"^(arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}::foundation-model/(.*))?$"
+ "pattern":"(arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}::foundation-model/(.*))?"
},
"BedrockRerankingModelConfiguration":{
"type":"structure",
"required":["modelArn"],
"members":{
- "additionalModelRequestFields":{
- "shape":"AdditionalModelRequestFields",
- "documentation":"A JSON object whose keys are request fields for the model and whose values are values for those fields.
"
- },
"modelArn":{
"shape":"BedrockModelArn",
"documentation":"The ARN of the reranker model.
"
+ },
+ "additionalModelRequestFields":{
+ "shape":"AdditionalModelRequestFields",
+ "documentation":"A JSON object whose keys are request fields for the model and whose values are values for those fields.
"
}
},
"documentation":"Contains configurations for a reranker model.
"
@@ -1178,13 +1193,13 @@
"BedrockSessionContentBlock":{
"type":"structure",
"members":{
- "image":{
- "shape":"ImageBlock",
- "documentation":"The image in the invocation step.
"
- },
"text":{
"shape":"BedrockSessionContentBlockTextString",
"documentation":"The text in the invocation step.
"
+ },
+ "image":{
+ "shape":"ImageBlock",
+ "documentation":"The image in the invocation step.
"
}
},
"documentation":"A block of content that you pass to, or receive from, a Amazon Bedrock session in an invocation step. You pass the content to a session in the payLoad of the PutInvocationStep API operation. You retrieve the content with the GetInvocationStep API operation.
For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.
",
@@ -1214,11 +1229,15 @@
"ByteContentDoc":{
"type":"structure",
"required":[
+ "identifier",
"contentType",
- "data",
- "identifier"
+ "data"
],
"members":{
+ "identifier":{
+ "shape":"Identifier",
+ "documentation":"The file name of the document contained in the wrapper object.
"
+ },
"contentType":{
"shape":"ContentType",
"documentation":"The MIME type of the document contained in the wrapper object.
"
@@ -1226,10 +1245,6 @@
"data":{
"shape":"ByteContentBlob",
"documentation":"The byte value of the file to upload, encoded as a Base-64 string.
"
- },
- "identifier":{
- "shape":"Identifier",
- "documentation":"The file name of the document contained in the wrapper object.
"
}
},
"documentation":"This property contains the document to chat with, along with its attributes.
"
@@ -1237,17 +1252,17 @@
"ByteContentFile":{
"type":"structure",
"required":[
- "data",
- "mediaType"
+ "mediaType",
+ "data"
],
"members":{
- "data":{
- "shape":"ByteContentBlob",
- "documentation":"The raw bytes of the file to attach. The maximum size of all files that is attached is 10MB. You can attach a maximum of 5 files.
"
- },
"mediaType":{
"shape":"MimeType",
"documentation":"The MIME type of data contained in the file used for chat.
"
+ },
+ "data":{
+ "shape":"ByteContentBlob",
+ "documentation":"The raw bytes of the file to attach. The maximum size of all files that is attached is 10MB. You can attach a maximum of 5 files.
"
}
},
"documentation":"The property contains the file to chat with, along with its attributes.
"
@@ -1288,7 +1303,8 @@
"shape":"Citation",
"documentation":"The citation.
",
"deprecated":true,
- "deprecatedMessage":"Citation is deprecated. Please use GeneratedResponsePart and RetrievedReferences for citation event."
+ "deprecatedMessage":"Citation is deprecated. Please use GeneratedResponsePart and RetrievedReferences for citation event.",
+ "deprecatedSince":"2024-12-17"
},
"generatedResponsePart":{
"shape":"GeneratedResponsePart",
@@ -1323,22 +1339,22 @@
"CodeInterpreterInvocationOutput":{
"type":"structure",
"members":{
- "executionError":{
- "shape":"String",
- "documentation":"Contains the error returned from code execution.
"
- },
"executionOutput":{
"shape":"String",
"documentation":"Contains the successful output returned from code execution
"
},
- "executionTimeout":{
- "shape":"Boolean",
- "documentation":"Indicates if the execution of the code timed out.
"
+ "executionError":{
+ "shape":"String",
+ "documentation":"Contains the error returned from code execution.
"
},
"files":{
"shape":"Files",
"documentation":"Contains output files, if generated by code execution.
"
},
+ "executionTimeout":{
+ "shape":"Boolean",
+ "documentation":"Indicates if the execution of the code timed out.
"
+ },
"metadata":{
"shape":"Metadata",
"documentation":"Contains information about the output from the code interpreter.
"
@@ -1359,22 +1375,6 @@
"instruction"
],
"members":{
- "actionGroups":{
- "shape":"AgentActionGroups",
- "documentation":" List of action groups with each action group defining tasks the inline collaborator agent needs to carry out.
"
- },
- "agentCollaboration":{
- "shape":"AgentCollaboration",
- "documentation":" Defines how the inline supervisor agent handles information across multiple collaborator agents to coordinate a final response.
"
- },
- "agentName":{
- "shape":"Name",
- "documentation":" Name of the inline collaborator agent which must be the same name as specified for collaboratorName.
"
- },
- "collaboratorConfigurations":{
- "shape":"CollaboratorConfigurations",
- "documentation":" Settings of the collaborator agent.
"
- },
"customerEncryptionKeyArn":{
"shape":"KmsKeyArn",
"documentation":" The Amazon Resource Name (ARN) of the AWS KMS key that encrypts the inline collaborator.
"
@@ -1383,25 +1383,41 @@
"shape":"ModelIdentifier",
"documentation":" The foundation model used by the inline collaborator agent.
"
},
- "guardrailConfiguration":{
- "shape":"GuardrailConfigurationWithArn",
- "documentation":" Details of the guardwrail associated with the inline collaborator.
"
+ "instruction":{
+ "shape":"Instruction",
+ "documentation":" Instruction that tell the inline collaborator agent what it should do and how it should interact with users.
"
},
"idleSessionTTLInSeconds":{
"shape":"SessionTTL",
"documentation":" The number of seconds for which the Amazon Bedrock keeps information about the user's conversation with the inline collaborator agent.
A user interaction remains active for the amount of time specified. If no conversation occurs during this time, the session expires and Amazon Bedrock deletes any data provided before the timeout.
"
},
- "instruction":{
- "shape":"Instruction",
- "documentation":" Instruction that tell the inline collaborator agent what it should do and how it should interact with users.
"
+ "actionGroups":{
+ "shape":"AgentActionGroups",
+ "documentation":" List of action groups with each action group defining tasks the inline collaborator agent needs to carry out.
"
},
"knowledgeBases":{
"shape":"KnowledgeBases",
"documentation":" Knowledge base associated with the inline collaborator agent.
"
},
- "promptOverrideConfiguration":{
- "shape":"PromptOverrideConfiguration",
+ "guardrailConfiguration":{
+ "shape":"GuardrailConfigurationWithArn",
+ "documentation":" Details of the guardwrail associated with the inline collaborator.
"
+ },
+ "promptOverrideConfiguration":{
+ "shape":"PromptOverrideConfiguration",
"documentation":" Contains configurations to override prompt templates in different parts of an inline collaborator sequence. For more information, see Advanced prompts.
"
+ },
+ "agentCollaboration":{
+ "shape":"AgentCollaboration",
+ "documentation":" Defines how the inline supervisor agent handles information across multiple collaborator agents to coordinate a final response.
"
+ },
+ "collaboratorConfigurations":{
+ "shape":"CollaboratorConfigurations",
+ "documentation":" Settings of the collaborator agent.
"
+ },
+ "agentName":{
+ "shape":"Name",
+ "documentation":" Name of the inline collaborator agent which must be the same name as specified for collaboratorName.
"
}
},
"documentation":" List of inline collaborators.
"
@@ -1409,21 +1425,21 @@
"CollaboratorConfiguration":{
"type":"structure",
"required":[
- "collaboratorInstruction",
- "collaboratorName"
+ "collaboratorName",
+ "collaboratorInstruction"
],
"members":{
- "agentAliasArn":{
- "shape":"AgentAliasArn",
- "documentation":" The Amazon Resource Name (ARN) of the inline collaborator agent.
"
+ "collaboratorName":{
+ "shape":"Name",
+ "documentation":" Name of the inline collaborator agent which must be the same name as specified for agentName.
"
},
"collaboratorInstruction":{
"shape":"CollaborationInstruction",
"documentation":" Instructions that tell the inline collaborator agent what it should do and how it should interact with users.
"
},
- "collaboratorName":{
- "shape":"Name",
- "documentation":" Name of the inline collaborator agent which must be the same name as specified for agentName.
"
+ "agentAliasArn":{
+ "shape":"AgentAliasArn",
+ "documentation":" The Amazon Resource Name (ARN) of the inline collaborator agent.
"
},
"relayConversationHistory":{
"shape":"RelayConversationHistory",
@@ -1444,21 +1460,21 @@
"type":"structure",
"required":[
"nodeName",
- "satisfiedConditions",
- "timestamp"
+ "timestamp",
+ "satisfiedConditions"
],
"members":{
"nodeName":{
"shape":"NodeName",
"documentation":"The name of the condition node that evaluated the conditions.
"
},
- "satisfiedConditions":{
- "shape":"SatisfiedConditions",
- "documentation":"A list of conditions that were satisfied during the evaluation.
"
- },
"timestamp":{
"shape":"DateTimestamp",
"documentation":"The timestamp when the condition evaluation occurred.
"
+ },
+ "satisfiedConditions":{
+ "shape":"SatisfiedConditions",
+ "documentation":"A list of conditions that were satisfied during the evaluation.
"
}
},
"documentation":"Contains information about a condition evaluation result during a flow execution. This event is generated when a condition node in the flow evaluates its conditions.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
@@ -1520,7 +1536,7 @@
},
"ContentType":{
"type":"string",
- "pattern":"[a-z]{1,20}/.{1,20}"
+ "pattern":".*[a-z]{1,20}/.{1,20}.*"
},
"ConversationHistory":{
"type":"structure",
@@ -1543,14 +1559,14 @@
"type":"structure",
"required":["sessionIdentifier"],
"members":{
- "description":{
- "shape":"InvocationDescription",
- "documentation":"A description for the interactions in the invocation. For example, \"User asking about weather in Seattle\".
"
- },
"invocationId":{
"shape":"Uuid",
"documentation":"A unique identifier for the invocation in UUID format.
"
},
+ "description":{
+ "shape":"InvocationDescription",
+ "documentation":"A description for the interactions in the invocation. For example, \"User asking about weather in Seattle\".
"
+ },
"sessionIdentifier":{
"shape":"SessionIdentifier",
"documentation":"The unique identifier for the associated session for the invocation. You can specify either the session's sessionId or its Amazon Resource Name (ARN).
",
@@ -1562,36 +1578,36 @@
"CreateInvocationResponse":{
"type":"structure",
"required":[
- "createdAt",
+ "sessionId",
"invocationId",
- "sessionId"
+ "createdAt"
],
"members":{
- "createdAt":{
- "shape":"DateTimestamp",
- "documentation":"The timestamp for when the invocation was created.
"
+ "sessionId":{
+ "shape":"Uuid",
+ "documentation":"The unique identifier for the session associated with the invocation.
"
},
"invocationId":{
"shape":"Uuid",
"documentation":"The unique identifier for the invocation.
"
},
- "sessionId":{
- "shape":"Uuid",
- "documentation":"The unique identifier for the session associated with the invocation.
"
+ "createdAt":{
+ "shape":"DateTimestamp",
+ "documentation":"The timestamp for when the invocation was created.
"
}
}
},
"CreateSessionRequest":{
"type":"structure",
"members":{
- "encryptionKeyArn":{
- "shape":"KmsKeyArn",
- "documentation":"The Amazon Resource Name (ARN) of the KMS key to use to encrypt the session data. The user or role creating the session must have permission to use the key. For more information, see Amazon Bedrock session encryption.
"
- },
"sessionMetadata":{
"shape":"SessionMetadataMap",
"documentation":"A map of key-value pairs containing attributes to be persisted across the session. For example, the user's ID, their language preference, and the type of device they are using.
"
},
+ "encryptionKeyArn":{
+ "shape":"KmsKeyArn",
+ "documentation":"The Amazon Resource Name (ARN) of the KMS key to use to encrypt the session data. The user or role creating the session must have permission to use the key. For more information, see Amazon Bedrock session encryption.
"
+ },
"tags":{
"shape":"TagsMap",
"documentation":"Specify the key-value pairs for the tags that you want to attach to the session.
"
@@ -1601,27 +1617,27 @@
"CreateSessionResponse":{
"type":"structure",
"required":[
- "createdAt",
- "sessionArn",
"sessionId",
- "sessionStatus"
+ "sessionArn",
+ "sessionStatus",
+ "createdAt"
],
"members":{
- "createdAt":{
- "shape":"DateTimestamp",
- "documentation":"The timestamp for when the session was created.
"
+ "sessionId":{
+ "shape":"Uuid",
+ "documentation":"The unique identifier for the session.
"
},
"sessionArn":{
"shape":"SessionArn",
"documentation":"The Amazon Resource Name (ARN) of the created session.
"
},
- "sessionId":{
- "shape":"Uuid",
- "documentation":"The unique identifier for the session.
"
- },
"sessionStatus":{
"shape":"SessionStatus",
"documentation":"The current status of the session.
"
+ },
+ "createdAt":{
+ "shape":"DateTimestamp",
+ "documentation":"The timestamp for when the session was created.
"
}
}
},
@@ -1649,13 +1665,13 @@
"CustomOrchestrationTrace":{
"type":"structure",
"members":{
- "event":{
- "shape":"CustomOrchestrationTraceEvent",
- "documentation":" The event details used with the custom orchestration.
"
- },
"traceId":{
"shape":"TraceId",
"documentation":" The unique identifier of the trace.
"
+ },
+ "event":{
+ "shape":"CustomOrchestrationTraceEvent",
+ "documentation":" The event details used with the custom orchestration.
"
}
},
"documentation":" The trace behavior for the custom orchestration.
",
@@ -1680,22 +1696,22 @@
"DeleteAgentMemoryRequest":{
"type":"structure",
"required":[
- "agentAliasId",
- "agentId"
+ "agentId",
+ "agentAliasId"
],
"members":{
- "agentAliasId":{
- "shape":"AgentAliasId",
- "documentation":"The unique identifier of an alias of an agent.
",
- "location":"uri",
- "locationName":"agentAliasId"
- },
"agentId":{
"shape":"AgentId",
"documentation":"The unique identifier of the agent to which the alias belongs.
",
"location":"uri",
"locationName":"agentId"
},
+ "agentAliasId":{
+ "shape":"AgentAliasId",
+ "documentation":"The unique identifier of an alias of an agent.
",
+ "location":"uri",
+ "locationName":"agentAliasId"
+ },
"memoryId":{
"shape":"MemoryId",
"documentation":"The unique identifier of the memory.
",
@@ -1712,8 +1728,7 @@
},
"DeleteAgentMemoryResponse":{
"type":"structure",
- "members":{
- }
+ "members":{}
},
"DeleteSessionRequest":{
"type":"structure",
@@ -1729,8 +1744,7 @@
},
"DeleteSessionResponse":{
"type":"structure",
- "members":{
- }
+ "members":{}
},
"DependencyFailedException":{
"type":"structure",
@@ -1750,8 +1764,7 @@
},
"Document":{
"type":"structure",
- "members":{
- },
+ "members":{},
"document":true
},
"Double":{
@@ -1773,19 +1786,19 @@
"EndSessionResponse":{
"type":"structure",
"required":[
- "sessionArn",
"sessionId",
+ "sessionArn",
"sessionStatus"
],
"members":{
- "sessionArn":{
- "shape":"SessionArn",
- "documentation":"The Amazon Resource Name (ARN) of the session you ended.
"
- },
"sessionId":{
"shape":"Uuid",
"documentation":"The unique identifier of the session you ended.
"
},
+ "sessionArn":{
+ "shape":"SessionArn",
+ "documentation":"The Amazon Resource Name (ARN) of the session you ended.
"
+ },
"sessionStatus":{
"shape":"SessionStatus",
"documentation":"The current status of the session you ended.
"
@@ -1803,17 +1816,17 @@
"type":"structure",
"required":["sourceType"],
"members":{
- "byteContent":{
- "shape":"ByteContentDoc",
- "documentation":"The identifier, contentType, and data of the external source wrapper object.
"
+ "sourceType":{
+ "shape":"ExternalSourceType",
+ "documentation":"The source type of the external source wrapper object.
"
},
"s3Location":{
"shape":"S3ObjectDoc",
"documentation":"The S3 location of the external source wrapper object.
"
},
- "sourceType":{
- "shape":"ExternalSourceType",
- "documentation":"The source type of the external source wrapper object.
"
+ "byteContent":{
+ "shape":"ByteContentDoc",
+ "documentation":"The identifier, contentType, and data of the external source wrapper object.
"
}
},
"documentation":"The unique external source of the content contained in the wrapper object.
"
@@ -1834,9 +1847,9 @@
"ExternalSourcesGenerationConfiguration":{
"type":"structure",
"members":{
- "additionalModelRequestFields":{
- "shape":"AdditionalModelRequestFields",
- "documentation":" Additional model parameters and their corresponding values not included in the textInferenceConfig structure for an external source. Takes in custom model parameters specific to the language model being used.
"
+ "promptTemplate":{
+ "shape":"PromptTemplate",
+ "documentation":"Contain the textPromptTemplate string for the external source wrapper object.
"
},
"guardrailConfiguration":{
"shape":"GuardrailConfiguration",
@@ -1846,13 +1859,13 @@
"shape":"InferenceConfig",
"documentation":" Configuration settings for inference when using RetrieveAndGenerate to generate responses while using an external source.
"
},
+ "additionalModelRequestFields":{
+ "shape":"AdditionalModelRequestFields",
+ "documentation":" Additional model parameters and their corresponding values not included in the textInferenceConfig structure for an external source. Takes in custom model parameters specific to the language model being used.
"
+ },
"performanceConfig":{
"shape":"PerformanceConfiguration",
"documentation":"The latency configuration for the model.
"
- },
- "promptTemplate":{
- "shape":"PromptTemplate",
- "documentation":"Contain the textPromptTemplate string for the external source wrapper object.
"
}
},
"documentation":"Contains the generation configuration of the external source wrapper object.
"
@@ -1864,10 +1877,6 @@
"sources"
],
"members":{
- "generationConfiguration":{
- "shape":"ExternalSourcesGenerationConfiguration",
- "documentation":"The prompt used with the external source wrapper object with the retrieveAndGenerate function.
"
- },
"modelArn":{
"shape":"BedrockModelArn",
"documentation":"The model Amazon Resource Name (ARN) for the external source wrapper object in the retrieveAndGenerate function.
"
@@ -1875,6 +1884,10 @@
"sources":{
"shape":"ExternalSources",
"documentation":"The document for the external source wrapper object in the retrieveAndGenerate function.
"
+ },
+ "generationConfiguration":{
+ "shape":"ExternalSourcesGenerationConfiguration",
+ "documentation":"The prompt used with the external source wrapper object with the retrieveAndGenerate function.
"
}
},
"documentation":"The configurations of the external source wrapper object in the retrieveAndGenerate function.
"
@@ -1886,21 +1899,21 @@
"FailureTrace":{
"type":"structure",
"members":{
- "failureCode":{
- "shape":"Integer",
- "documentation":"The failure code for the trace.
"
+ "traceId":{
+ "shape":"TraceId",
+ "documentation":"The unique identifier of the trace.
"
},
"failureReason":{
"shape":"FailureReasonString",
"documentation":"The reason the interaction failed.
"
},
+ "failureCode":{
+ "shape":"Integer",
+ "documentation":"The failure code for the trace.
"
+ },
"metadata":{
"shape":"Metadata",
"documentation":"Information about the failure that occurred.
"
- },
- "traceId":{
- "shape":"TraceId",
- "documentation":"The unique identifier of the trace.
"
}
},
"documentation":"Contains information about the failure of the interaction.
",
@@ -1950,17 +1963,17 @@
"type":"structure",
"required":["sourceType"],
"members":{
- "byteContent":{
- "shape":"ByteContentFile",
- "documentation":"The data and the text of the attached files.
"
+ "sourceType":{
+ "shape":"FileSourceType",
+ "documentation":"The source type of the files to attach.
"
},
"s3Location":{
"shape":"S3ObjectFile",
"documentation":"The s3 location of the files to attach.
"
},
- "sourceType":{
- "shape":"FileSourceType",
- "documentation":"The source type of the files to attach.
"
+ "byteContent":{
+ "shape":"ByteContentFile",
+ "documentation":"The data and the text of the attached files.
"
}
},
"documentation":"The source file of the content contained in the wrapper object.
"
@@ -2008,20 +2021,19 @@
},
"FilterValue":{
"type":"structure",
- "members":{
- },
+ "members":{},
"document":true
},
"FinalResponse":{
"type":"structure",
"members":{
- "metadata":{
- "shape":"Metadata",
- "documentation":"Contains information about the invoke agent operation.
"
- },
"text":{
"shape":"FinalResponseString",
"documentation":"The text in the response to the user.
"
+ },
+ "metadata":{
+ "shape":"Metadata",
+ "documentation":"Contains information about the invoke agent operation.
"
}
},
"documentation":"Contains details about the response to the user.
"
@@ -2038,7 +2050,7 @@
"type":"string",
"max":2048,
"min":0,
- "pattern":"^(arn:aws:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:flow/[0-9a-zA-Z]{10}/alias/[0-9a-zA-Z]{10})|(\\bTSTALIASID\\b|[0-9a-zA-Z]+)$"
+ "pattern":"(arn:aws:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:flow/[0-9a-zA-Z]{10}/alias/[0-9a-zA-Z]{10})|(\\bTSTALIASID\\b|[0-9a-zA-Z]+)"
},
"FlowCompletionEvent":{
"type":"structure",
@@ -2060,6 +2072,13 @@
"INPUT_REQUIRED"
]
},
+ "FlowControlNodeType":{
+ "type":"string",
+ "enum":[
+ "Iterator",
+ "Loop"
+ ]
+ },
"FlowErrorCode":{
"type":"string",
"enum":[
@@ -2083,6 +2102,10 @@
"FlowExecutionError":{
"type":"structure",
"members":{
+ "nodeName":{
+ "shape":"NodeName",
+ "documentation":"The name of the node in the flow where the error occurred (if applicable).
"
+ },
"error":{
"shape":"FlowExecutionErrorType",
"documentation":"The error code for the type of error that occurred.
"
@@ -2090,10 +2113,6 @@
"message":{
"shape":"String",
"documentation":"A descriptive message that provides details about the error.
"
- },
- "nodeName":{
- "shape":"NodeName",
- "documentation":"The name of the node in the flow where the error occurred (if applicable).
"
}
},
"documentation":"Contains information about an error that occurred during an flow execution.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
"
@@ -2109,14 +2128,6 @@
"FlowExecutionEvent":{
"type":"structure",
"members":{
- "conditionResultEvent":{
- "shape":"ConditionResultEvent",
- "documentation":"Contains information about a condition evaluation result during the flow execution. This event is generated when a condition node in the flow evaluates its conditions.
"
- },
- "flowFailureEvent":{
- "shape":"FlowFailureEvent",
- "documentation":"Contains information about a failure that occurred at the flow level during execution.
"
- },
"flowInputEvent":{
"shape":"FlowExecutionInputEvent",
"documentation":"Contains information about the inputs provided to the flow at the start of execution.
"
@@ -2125,10 +2136,6 @@
"shape":"FlowExecutionOutputEvent",
"documentation":"Contains information about the outputs produced by the flow at the end of execution.
"
},
- "nodeFailureEvent":{
- "shape":"NodeFailureEvent",
- "documentation":"Contains information about a failure that occurred at a specific node during execution.
"
- },
"nodeInputEvent":{
"shape":"NodeInputEvent",
"documentation":"Contains information about the inputs provided to a specific node during execution.
"
@@ -2136,6 +2143,26 @@
"nodeOutputEvent":{
"shape":"NodeOutputEvent",
"documentation":"Contains information about the outputs produced by a specific node during execution.
"
+ },
+ "conditionResultEvent":{
+ "shape":"ConditionResultEvent",
+ "documentation":"Contains information about a condition evaluation result during the flow execution. This event is generated when a condition node in the flow evaluates its conditions.
"
+ },
+ "nodeFailureEvent":{
+ "shape":"NodeFailureEvent",
+ "documentation":"Contains information about a failure that occurred at a specific node during execution.
"
+ },
+ "flowFailureEvent":{
+ "shape":"FlowFailureEvent",
+ "documentation":"Contains information about a failure that occurred at the flow level during execution.
"
+ },
+ "nodeActionEvent":{
+ "shape":"NodeActionEvent",
+ "documentation":"Contains information about an action (operation) called by a node during execution.
"
+ },
+ "nodeDependencyEvent":{
+ "shape":"NodeDependencyEvent",
+ "documentation":"Contains information about an internal trace of a specific node during execution.
"
}
},
"documentation":"Represents an event that occurred during an flow execution. This is a union type that can contain one of several event types, such as node input and output events; flow input and output events; condition node result events, or failure events.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
@@ -2158,26 +2185,22 @@
"type":"string",
"max":100,
"min":2,
- "pattern":"^[0-9a-zA-Z._:-]+$"
+ "pattern":"[0-9a-zA-Z._:-]+"
},
"FlowExecutionIdentifier":{
"type":"string",
"max":2048,
"min":0,
- "pattern":"^[a-zA-Z0-9-]{1,36}$|^(arn:aws:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:flow/[0-9a-zA-Z]{10}/alias/[0-9a-zA-Z]{10}/execution/[a-zA-Z0-9-]{1,36})$"
+ "pattern":"[a-zA-Z0-9-]{1,36}$|^(arn:aws:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:flow/[0-9a-zA-Z]{10}/alias/[0-9a-zA-Z]{10}/execution/[a-zA-Z0-9-]{1,36})"
},
"FlowExecutionInputEvent":{
"type":"structure",
"required":[
- "fields",
"nodeName",
- "timestamp"
+ "timestamp",
+ "fields"
],
"members":{
- "fields":{
- "shape":"FlowInputFields",
- "documentation":"A list of input fields provided to the flow.
"
- },
"nodeName":{
"shape":"NodeName",
"documentation":"The name of the node that receives the inputs.
"
@@ -2185,6 +2208,10 @@
"timestamp":{
"shape":"DateTimestamp",
"documentation":"The timestamp when the inputs are provided.
"
+ },
+ "fields":{
+ "shape":"FlowInputFields",
+ "documentation":"A list of input fields provided to the flow.
"
}
},
"documentation":"Contains information about the inputs provided to the flow at the start of a flow execution.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
@@ -2194,20 +2221,16 @@
"type":"string",
"max":36,
"min":0,
- "pattern":"^[a-zA-Z0-9-]{1,36}$"
+ "pattern":"[a-zA-Z0-9-]{1,36}"
},
"FlowExecutionOutputEvent":{
"type":"structure",
"required":[
- "fields",
"nodeName",
- "timestamp"
+ "timestamp",
+ "fields"
],
"members":{
- "fields":{
- "shape":"FlowOutputFields",
- "documentation":"A list of output fields produced by the flow.
"
- },
"nodeName":{
"shape":"NodeName",
"documentation":"The name of the node that produces the outputs.
"
@@ -2215,6 +2238,10 @@
"timestamp":{
"shape":"DateTimestamp",
"documentation":"The timestamp when the outputs are produced.
"
+ },
+ "fields":{
+ "shape":"FlowOutputFields",
+ "documentation":"A list of output fields produced by the flow.
"
}
},
"documentation":"Contains information about the outputs produced by the flow during a flow execution.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
@@ -2224,7 +2251,7 @@
"type":"string",
"max":2048,
"min":0,
- "pattern":"^arn:aws(-[^:]+)?:iam::([0-9]{12})?:role/(service-role/)?.+$"
+ "pattern":"arn:aws(-[^:]+)?:iam::([0-9]{12})?:role/(service-role/)?.+"
},
"FlowExecutionStatus":{
"type":"string",
@@ -2245,25 +2272,17 @@
"FlowExecutionSummary":{
"type":"structure",
"required":[
- "createdAt",
"executionArn",
"flowAliasIdentifier",
"flowIdentifier",
"flowVersion",
- "status"
+ "status",
+ "createdAt"
],
"members":{
- "createdAt":{
- "shape":"DateTimestamp",
- "documentation":"The timestamp when the flow execution was created.
"
- },
- "endedAt":{
- "shape":"DateTimestamp",
- "documentation":"The timestamp when the flow execution ended. This field is only populated when the execution has completed, failed, timed out, or been aborted.
"
- },
- "executionArn":{
- "shape":"FlowExecutionIdentifier",
- "documentation":"The Amazon Resource Name (ARN) that uniquely identifies the flow execution.
"
+ "executionArn":{
+ "shape":"FlowExecutionIdentifier",
+ "documentation":"The Amazon Resource Name (ARN) that uniquely identifies the flow execution.
"
},
"flowAliasIdentifier":{
"shape":"FlowAliasIdentifier",
@@ -2280,6 +2299,14 @@
"status":{
"shape":"FlowExecutionStatus",
"documentation":"The current status of the flow execution.
Flow executions time out after 24 hours.
"
+ },
+ "createdAt":{
+ "shape":"DateTimestamp",
+ "documentation":"The timestamp when the flow execution was created.
"
+ },
+ "endedAt":{
+ "shape":"DateTimestamp",
+ "documentation":"The timestamp when the flow execution ended. This field is only populated when the execution has completed, failed, timed out, or been aborted.
"
}
},
"documentation":"Contains summary information about a flow execution, including its status, timestamps, and identifiers.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
"
@@ -2287,11 +2314,15 @@
"FlowFailureEvent":{
"type":"structure",
"required":[
+ "timestamp",
"errorCode",
- "errorMessage",
- "timestamp"
+ "errorMessage"
],
"members":{
+ "timestamp":{
+ "shape":"DateTimestamp",
+ "documentation":"The timestamp when the failure occurred.
"
+ },
"errorCode":{
"shape":"FlowErrorCode",
"documentation":"The error code that identifies the type of failure that occurred.
"
@@ -2299,10 +2330,6 @@
"errorMessage":{
"shape":"String",
"documentation":"A descriptive message that provides details about the failure.
"
- },
- "timestamp":{
- "shape":"DateTimestamp",
- "documentation":"The timestamp when the failure occurred.
"
}
},
"documentation":"Contains information about a failure that occurred at the flow level during a flow execution.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
@@ -2312,23 +2339,15 @@
"type":"string",
"max":2048,
"min":0,
- "pattern":"^(arn:aws:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:flow/[0-9a-zA-Z]{10})|([0-9a-zA-Z]{10})$"
+ "pattern":"(arn:aws:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:flow/[0-9a-zA-Z]{10})|([0-9a-zA-Z]{10})"
},
"FlowInput":{
"type":"structure",
"required":[
- "content",
- "nodeName"
+ "nodeName",
+ "content"
],
"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.
"
@@ -2336,6 +2355,14 @@
"nodeOutputName":{
"shape":"NodeOutputName",
"documentation":"The name of the output from the flow input node that begins the prompt flow.
"
+ },
+ "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.
"
}
},
"documentation":"Contains information about an input into the prompt flow and where to send it.
"
@@ -2355,17 +2382,17 @@
"FlowInputField":{
"type":"structure",
"required":[
- "content",
- "name"
+ "name",
+ "content"
],
"members":{
- "content":{
- "shape":"FlowExecutionContent",
- "documentation":"The content of the input field, which can contain text or structured data.
"
- },
"name":{
"shape":"NodeInputName",
"documentation":"The name of the input field as defined in the flow's input schema.
"
+ },
+ "content":{
+ "shape":"FlowExecutionContent",
+ "documentation":"The content of the input field, which can contain text or structured data.
"
}
},
"documentation":"Represents an input field provided to a flow during a flow execution.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
@@ -2397,15 +2424,11 @@
"FlowMultiTurnInputRequestEvent":{
"type":"structure",
"required":[
- "content",
"nodeName",
- "nodeType"
+ "nodeType",
+ "content"
],
"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.
"
@@ -2413,12 +2436,48 @@
"nodeType":{
"shape":"NodeType",
"documentation":"The type of the node in the flow that is requesting the input.
"
+ },
+ "content":{
+ "shape":"FlowMultiTurnInputContent",
+ "documentation":"The content payload containing the input request details for the multi-turn interaction.
"
}
},
"documentation":"Response object from the flow multi-turn node requesting additional information.
",
"event":true,
"sensitive":true
},
+ "FlowNodeIODataType":{
+ "type":"string",
+ "enum":[
+ "String",
+ "Number",
+ "Boolean",
+ "Object",
+ "Array"
+ ]
+ },
+ "FlowNodeInputCategory":{
+ "type":"string",
+ "enum":[
+ "LoopCondition",
+ "ReturnValueToLoopStart",
+ "ExitLoop"
+ ]
+ },
+ "FlowNodeInputExpression":{
+ "type":"string",
+ "max":64,
+ "min":1,
+ "sensitive":true
+ },
+ "FlowNodeInputName":{
+ "type":"string",
+ "pattern":"[a-zA-Z]([_]?[0-9a-zA-Z]){1,50}"
+ },
+ "FlowNodeOutputName":{
+ "type":"string",
+ "pattern":"[a-zA-Z]([_]?[0-9a-zA-Z]){1,50}"
+ },
"FlowOutputContent":{
"type":"structure",
"members":{
@@ -2433,15 +2492,11 @@
"FlowOutputEvent":{
"type":"structure",
"required":[
- "content",
"nodeName",
- "nodeType"
+ "nodeType",
+ "content"
],
"members":{
- "content":{
- "shape":"FlowOutputContent",
- "documentation":"The content in the output.
"
- },
"nodeName":{
"shape":"NodeName",
"documentation":"The name of the flow output node that the output is from.
"
@@ -2449,6 +2504,10 @@
"nodeType":{
"shape":"NodeType",
"documentation":"The type of the node that the output is from.
"
+ },
+ "content":{
+ "shape":"FlowOutputContent",
+ "documentation":"The content in the output.
"
}
},
"documentation":"Contains information about an output from prompt flow invoction.
",
@@ -2458,17 +2517,17 @@
"FlowOutputField":{
"type":"structure",
"required":[
- "content",
- "name"
+ "name",
+ "content"
],
"members":{
- "content":{
- "shape":"FlowExecutionContent",
- "documentation":"The content of the output field, which can contain text or structured data.
"
- },
"name":{
"shape":"NodeOutputName",
"documentation":"The name of the output field as defined in the flow's output schema.
"
+ },
+ "content":{
+ "shape":"FlowExecutionContent",
+ "documentation":"The content of the output field, which can contain text or structured data.
"
}
},
"documentation":"Represents an output field produced by a flow during a flow execution.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
@@ -2483,34 +2542,14 @@
"FlowResponseStream":{
"type":"structure",
"members":{
- "accessDeniedException":{
- "shape":"AccessDeniedException",
- "documentation":"The request is denied because of missing access permissions. Check your permissions and retry your request.
"
- },
- "badGatewayException":{
- "shape":"BadGatewayException",
- "documentation":"There was an issue with a dependency due to a server issue. Retry your request.
"
- },
- "conflictException":{
- "shape":"ConflictException",
- "documentation":"There was a conflict performing an operation. Resolve the conflict and retry your request.
"
- },
- "dependencyFailedException":{
- "shape":"DependencyFailedException",
- "documentation":"There was an issue with a dependency. Check the resource configurations and retry the request.
"
+ "flowOutputEvent":{
+ "shape":"FlowOutputEvent",
+ "documentation":"Contains information about an output from flow invocation.
"
},
"flowCompletionEvent":{
"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.
"
- },
"flowTraceEvent":{
"shape":"FlowTraceEvent",
"documentation":"Contains information about a trace, which tracks an input or output for a node in the flow.
"
@@ -2519,6 +2558,10 @@
"shape":"InternalServerException",
"documentation":"An internal server error occurred. Retry your request.
"
},
+ "validationException":{
+ "shape":"ValidationException",
+ "documentation":"Input validation failed. Check your request parameters and retry the request.
"
+ },
"resourceNotFoundException":{
"shape":"ResourceNotFoundException",
"documentation":"The specified resource Amazon Resource Name (ARN) was not found. Check the Amazon Resource Name (ARN) and try your request again.
"
@@ -2531,9 +2574,25 @@
"shape":"ThrottlingException",
"documentation":"The number of requests exceeds the limit. Resubmit your request later.
"
},
- "validationException":{
- "shape":"ValidationException",
- "documentation":"Input validation failed. Check your request parameters and retry the request.
"
+ "accessDeniedException":{
+ "shape":"AccessDeniedException",
+ "documentation":"The request is denied because of missing access permissions. Check your permissions and retry your request.
"
+ },
+ "conflictException":{
+ "shape":"ConflictException",
+ "documentation":"There was a conflict performing an operation. Resolve the conflict and retry your request.
"
+ },
+ "dependencyFailedException":{
+ "shape":"DependencyFailedException",
+ "documentation":"There was an issue with a dependency. Check the resource configurations and retry the request.
"
+ },
+ "badGatewayException":{
+ "shape":"BadGatewayException",
+ "documentation":"There was an issue with a dependency due to a server issue. Retry your request.
"
+ },
+ "flowMultiTurnInputRequestEvent":{
+ "shape":"FlowMultiTurnInputRequestEvent",
+ "documentation":"The event stream containing the multi-turn input request information from the flow.
"
}
},
"documentation":"The output of the flow.
",
@@ -2542,14 +2601,6 @@
"FlowTrace":{
"type":"structure",
"members":{
- "conditionNodeResultTrace":{
- "shape":"FlowTraceConditionNodeResultEvent",
- "documentation":"Contains information about an output from a condition node.
"
- },
- "nodeActionTrace":{
- "shape":"FlowTraceNodeActionEvent",
- "documentation":"Contains information about an action (operation) called by a node. For more information, see Track each step in your prompt flow by viewing its trace in Amazon Bedrock.
"
- },
"nodeInputTrace":{
"shape":"FlowTraceNodeInputEvent",
"documentation":"Contains information about the input into a node.
"
@@ -2557,6 +2608,18 @@
"nodeOutputTrace":{
"shape":"FlowTraceNodeOutputEvent",
"documentation":"Contains information about the output from a node.
"
+ },
+ "conditionNodeResultTrace":{
+ "shape":"FlowTraceConditionNodeResultEvent",
+ "documentation":"Contains information about an output from a condition node.
"
+ },
+ "nodeActionTrace":{
+ "shape":"FlowTraceNodeActionEvent",
+ "documentation":"Contains information about an action (operation) called by a node.
"
+ },
+ "nodeDependencyTrace":{
+ "shape":"FlowTraceDependencyEvent",
+ "documentation":"Contains information about an internal trace of a node.
"
}
},
"documentation":"Contains information about an input or output for a node in the flow. For more information, see Track each step in your prompt flow by viewing its trace in Amazon Bedrock.
",
@@ -2579,21 +2642,21 @@
"type":"structure",
"required":[
"nodeName",
- "satisfiedConditions",
- "timestamp"
+ "timestamp",
+ "satisfiedConditions"
],
"members":{
"nodeName":{
"shape":"NodeName",
"documentation":"The name of the condition node.
"
},
- "satisfiedConditions":{
- "shape":"FlowTraceConditions",
- "documentation":"An array of objects containing information about the conditions that were satisfied.
"
- },
"timestamp":{
"shape":"DateTimestamp",
"documentation":"The date and time that the trace was returned.
"
+ },
+ "satisfiedConditions":{
+ "shape":"FlowTraceConditions",
+ "documentation":"An array of objects containing information about the conditions that were satisfied.
"
}
},
"documentation":"Contains information about an output from a condition node. For more information, see Track each step in your prompt flow by viewing its trace in Amazon Bedrock.
",
@@ -2605,6 +2668,30 @@
"max":5,
"min":1
},
+ "FlowTraceDependencyEvent":{
+ "type":"structure",
+ "required":[
+ "nodeName",
+ "timestamp",
+ "traceElements"
+ ],
+ "members":{
+ "nodeName":{
+ "shape":"NodeName",
+ "documentation":"The name of the node that generated the dependency trace.
"
+ },
+ "timestamp":{
+ "shape":"DateTimestamp",
+ "documentation":"The date and time that the dependency trace was generated.
"
+ },
+ "traceElements":{
+ "shape":"TraceElements",
+ "documentation":"The trace elements containing detailed information about the dependency.
"
+ }
+ },
+ "documentation":"Contains information about a dependency trace event in the flow.
",
+ "sensitive":true
+ },
"FlowTraceEvent":{
"type":"structure",
"required":["trace"],
@@ -2621,19 +2708,19 @@
"type":"structure",
"required":[
"nodeName",
- "operationName",
+ "timestamp",
"requestId",
"serviceName",
- "timestamp"
+ "operationName"
],
"members":{
"nodeName":{
"shape":"NodeName",
"documentation":"The name of the node that called the operation.
"
},
- "operationName":{
- "shape":"String",
- "documentation":"The name of the operation that the node called.
"
+ "timestamp":{
+ "shape":"DateTimestamp",
+ "documentation":"The date and time that the operation was called.
"
},
"requestId":{
"shape":"String",
@@ -2643,9 +2730,17 @@
"shape":"String",
"documentation":"The name of the service that the node called.
"
},
- "timestamp":{
- "shape":"DateTimestamp",
- "documentation":"The date and time that the operation was called.
"
+ "operationName":{
+ "shape":"String",
+ "documentation":"The name of the operation that the node called.
"
+ },
+ "operationRequest":{
+ "shape":"Document",
+ "documentation":"The request payload sent to the downstream service.
"
+ },
+ "operationResponse":{
+ "shape":"Document",
+ "documentation":"The response payload received from the downstream service.
"
}
},
"documentation":"Contains information about an action (operation) called by a node in an Amazon Bedrock flow. The service generates action events for calls made by prompt nodes, agent nodes, and Amazon Web Services Lambda nodes.
",
@@ -2666,15 +2761,11 @@
"FlowTraceNodeInputEvent":{
"type":"structure",
"required":[
- "fields",
"nodeName",
- "timestamp"
+ "timestamp",
+ "fields"
],
"members":{
- "fields":{
- "shape":"FlowTraceNodeInputFields",
- "documentation":"An array of objects containing information about each field in the input.
"
- },
"nodeName":{
"shape":"NodeName",
"documentation":"The name of the node that received the input.
"
@@ -2682,25 +2773,73 @@
"timestamp":{
"shape":"DateTimestamp",
"documentation":"The date and time that the trace was returned.
"
+ },
+ "fields":{
+ "shape":"FlowTraceNodeInputFields",
+ "documentation":"An array of objects containing information about each field in the input.
"
}
},
"documentation":"Contains information about the input into a node. For more information, see Track each step in your prompt flow by viewing its trace in Amazon Bedrock.
",
"sensitive":true
},
+ "FlowTraceNodeInputExecutionChain":{
+ "type":"list",
+ "member":{"shape":"FlowTraceNodeInputExecutionChainItem"},
+ "sensitive":true
+ },
+ "FlowTraceNodeInputExecutionChainItem":{
+ "type":"structure",
+ "required":[
+ "nodeName",
+ "type"
+ ],
+ "members":{
+ "nodeName":{
+ "shape":"NodeName",
+ "documentation":"The name of the node in the execution chain.
"
+ },
+ "index":{
+ "shape":"Integer",
+ "documentation":"The index position of this item in the execution chain.
"
+ },
+ "type":{
+ "shape":"FlowControlNodeType",
+ "documentation":"The type of execution chain item. Supported values are Iterator and Loop.
"
+ }
+ },
+ "documentation":"Represents an item in the execution chain for flow trace node input tracking.
",
+ "sensitive":true
+ },
"FlowTraceNodeInputField":{
"type":"structure",
"required":[
- "content",
- "nodeInputName"
+ "nodeInputName",
+ "content"
],
"members":{
+ "nodeInputName":{
+ "shape":"NodeInputName",
+ "documentation":"The name of the node input.
"
+ },
"content":{
"shape":"FlowTraceNodeInputContent",
"documentation":"The content of the node input.
"
},
- "nodeInputName":{
- "shape":"NodeInputName",
- "documentation":"The name of the node input.
"
+ "source":{
+ "shape":"FlowTraceNodeInputSource",
+ "documentation":"The source node that provides input data to this field.
"
+ },
+ "type":{
+ "shape":"FlowNodeIODataType",
+ "documentation":"The data type of the input field for compatibility validation.
"
+ },
+ "category":{
+ "shape":"FlowNodeInputCategory",
+ "documentation":"The category of the input field.
"
+ },
+ "executionChain":{
+ "shape":"FlowTraceNodeInputExecutionChain",
+ "documentation":"The execution path through nested nodes like iterators and loops.
"
}
},
"documentation":"Contains information about a field in the input into a node. For more information, see Track each step in your prompt flow by viewing its trace in Amazon Bedrock.
",
@@ -2712,6 +2851,30 @@
"max":5,
"min":1
},
+ "FlowTraceNodeInputSource":{
+ "type":"structure",
+ "required":[
+ "nodeName",
+ "outputFieldName",
+ "expression"
+ ],
+ "members":{
+ "nodeName":{
+ "shape":"NodeName",
+ "documentation":"The name of the source node that provides the input data.
"
+ },
+ "outputFieldName":{
+ "shape":"FlowNodeOutputName",
+ "documentation":"The name of the output field from the source node.
"
+ },
+ "expression":{
+ "shape":"FlowNodeInputExpression",
+ "documentation":"The expression used to extract data from the source.
"
+ }
+ },
+ "documentation":"Represents the source of input data for a flow trace node field.
",
+ "sensitive":true
+ },
"FlowTraceNodeOutputContent":{
"type":"structure",
"members":{
@@ -2726,15 +2889,11 @@
"FlowTraceNodeOutputEvent":{
"type":"structure",
"required":[
- "fields",
"nodeName",
- "timestamp"
+ "timestamp",
+ "fields"
],
"members":{
- "fields":{
- "shape":"FlowTraceNodeOutputFields",
- "documentation":"An array of objects containing information about each field in the output.
"
- },
"nodeName":{
"shape":"NodeName",
"documentation":"The name of the node that yielded the output.
"
@@ -2742,7 +2901,11 @@
"timestamp":{
"shape":"DateTimestamp",
"documentation":"The date and time that the trace was returned.
"
- }
+ },
+ "fields":{
+ "shape":"FlowTraceNodeOutputFields",
+ "documentation":"An array of objects containing information about each field in the output.
"
+ }
},
"documentation":"Contains information about the output from a node. For more information, see Track each step in your prompt flow by viewing its trace in Amazon Bedrock.
",
"sensitive":true
@@ -2750,17 +2913,25 @@
"FlowTraceNodeOutputField":{
"type":"structure",
"required":[
- "content",
- "nodeOutputName"
+ "nodeOutputName",
+ "content"
],
"members":{
+ "nodeOutputName":{
+ "shape":"NodeOutputName",
+ "documentation":"The name of the node output.
"
+ },
"content":{
"shape":"FlowTraceNodeOutputContent",
"documentation":"The content of the node output.
"
},
- "nodeOutputName":{
- "shape":"NodeOutputName",
- "documentation":"The name of the node output.
"
+ "next":{
+ "shape":"FlowTraceNodeOutputNextList",
+ "documentation":"The next node that receives output data from this field.
"
+ },
+ "type":{
+ "shape":"FlowNodeIODataType",
+ "documentation":"The data type of the output field for compatibility validation.
"
}
},
"documentation":"Contains information about a field in the output from a node. For more information, see Track each step in your prompt flow by viewing its trace in Amazon Bedrock.
",
@@ -2772,6 +2943,29 @@
"max":2,
"min":1
},
+ "FlowTraceNodeOutputNext":{
+ "type":"structure",
+ "required":[
+ "nodeName",
+ "inputFieldName"
+ ],
+ "members":{
+ "nodeName":{
+ "shape":"NodeName",
+ "documentation":"The name of the next node that receives the output data.
"
+ },
+ "inputFieldName":{
+ "shape":"FlowNodeInputName",
+ "documentation":"The name of the input field in the next node that receives the data.
"
+ }
+ },
+ "documentation":"Represents the next node that receives output data from a flow trace.
",
+ "sensitive":true
+ },
+ "FlowTraceNodeOutputNextList":{
+ "type":"list",
+ "member":{"shape":"FlowTraceNodeOutputNext"}
+ },
"Function":{
"type":"string",
"sensitive":true
@@ -2780,14 +2974,14 @@
"type":"structure",
"required":["name"],
"members":{
- "description":{
- "shape":"FunctionDescription",
- "documentation":" A description of the function and its purpose.
"
- },
"name":{
"shape":"ResourceName",
"documentation":" A name for the function.
"
},
+ "description":{
+ "shape":"FunctionDescription",
+ "documentation":" A description of the function and its purpose.
"
+ },
"parameters":{
"shape":"ParameterMap",
"documentation":" The parameters that the agent elicits from the user to fulfill the function.
"
@@ -2812,6 +3006,14 @@
"shape":"String",
"documentation":"The action group that the function belongs to.
"
},
+ "parameters":{
+ "shape":"FunctionParameters",
+ "documentation":"A list of parameters of the function.
"
+ },
+ "function":{
+ "shape":"String",
+ "documentation":"The name of the function.
"
+ },
"actionInvocationType":{
"shape":"ActionInvocationType",
"documentation":"Contains information about the function to invoke,
"
@@ -2823,14 +3025,6 @@
"collaboratorName":{
"shape":"Name",
"documentation":"The collaborator's name.
"
- },
- "function":{
- "shape":"String",
- "documentation":"The name of the function.
"
- },
- "parameters":{
- "shape":"FunctionParameters",
- "documentation":"A list of parameters of the function.
"
}
},
"documentation":"Contains information about the function that the agent predicts should be called.
This data type is used in the following API operations:
"
@@ -2865,10 +3059,6 @@
"shape":"String",
"documentation":"The action group that the function belongs to.
"
},
- "agentId":{
- "shape":"String",
- "documentation":"The agent's ID.
"
- },
"confirmationState":{
"shape":"ConfirmationState",
"documentation":"Contains the user confirmation information about the function that was called.
"
@@ -2884,6 +3074,10 @@
"responseState":{
"shape":"ResponseState",
"documentation":"Controls the final response state returned to end user when API/Function execution failed. When this state is FAILURE, the request would fail with dependency failure exception. When this state is REPROMPT, the API/function response will be sent to model for re-prompt
"
+ },
+ "agentId":{
+ "shape":"String",
+ "documentation":"The agent's ID.
"
}
},
"documentation":"Contains information about the function that was called from the action group and the response that was returned.
This data type is used in the following API operations:
"
@@ -2937,13 +3131,13 @@
"GeneratedQuery":{
"type":"structure",
"members":{
- "sql":{
- "shape":"String",
- "documentation":"An SQL query that corresponds to the natural language query.
"
- },
"type":{
"shape":"GeneratedQueryType",
"documentation":"The type of transformed query.
"
+ },
+ "sql":{
+ "shape":"String",
+ "documentation":"An SQL query that corresponds to the natural language query.
"
}
},
"documentation":"Contains information about a query generated for a natural language query.
",
@@ -2966,9 +3160,9 @@
"GenerationConfiguration":{
"type":"structure",
"members":{
- "additionalModelRequestFields":{
- "shape":"AdditionalModelRequestFields",
- "documentation":" Additional model parameters and corresponding values not included in the textInferenceConfig structure for a knowledge base. This allows users to provide custom model parameters specific to the language model being used.
"
+ "promptTemplate":{
+ "shape":"PromptTemplate",
+ "documentation":"Contains the template for the prompt that's sent to the model for response generation. Generation prompts must include the $search_results$ variable. For more information, see Use placeholder variables in the user guide.
"
},
"guardrailConfiguration":{
"shape":"GuardrailConfiguration",
@@ -2978,13 +3172,13 @@
"shape":"InferenceConfig",
"documentation":" Configuration settings for inference when using RetrieveAndGenerate to generate responses while using a knowledge base as a source.
"
},
+ "additionalModelRequestFields":{
+ "shape":"AdditionalModelRequestFields",
+ "documentation":" Additional model parameters and corresponding values not included in the textInferenceConfig structure for a knowledge base. This allows users to provide custom model parameters specific to the language model being used.
"
+ },
"performanceConfig":{
"shape":"PerformanceConfiguration",
"documentation":"The latency configuration for the model.
"
- },
- "promptTemplate":{
- "shape":"PromptTemplate",
- "documentation":"Contains the template for the prompt that's sent to the model for response generation. Generation prompts must include the $search_results$ variable. For more information, see Use placeholder variables in the user guide.
"
}
},
"documentation":"Contains configurations for response generation based on the knowledge base query results.
This data type is used in the following API operations:
"
@@ -2992,23 +3186,17 @@
"GetAgentMemoryRequest":{
"type":"structure",
"required":[
- "agentAliasId",
"agentId",
- "memoryId",
- "memoryType"
+ "agentAliasId",
+ "memoryType",
+ "memoryId"
],
"members":{
- "agentAliasId":{
- "shape":"AgentAliasId",
- "documentation":"The unique identifier of an alias of an agent.
",
- "location":"uri",
- "locationName":"agentAliasId"
- },
- "agentId":{
- "shape":"AgentId",
- "documentation":"The unique identifier of the agent to which the alias belongs.
",
- "location":"uri",
- "locationName":"agentId"
+ "nextToken":{
+ "shape":"NextToken",
+ "documentation":"If the total number of results is greater than the maxItems value provided in the request, enter the token returned in the nextToken field in the response in this field to return the next batch of results.
",
+ "location":"querystring",
+ "locationName":"nextToken"
},
"maxItems":{
"shape":"MaxResults",
@@ -3016,11 +3204,17 @@
"location":"querystring",
"locationName":"maxItems"
},
- "memoryId":{
- "shape":"MemoryId",
- "documentation":"The unique identifier of the memory.
",
- "location":"querystring",
- "locationName":"memoryId"
+ "agentId":{
+ "shape":"AgentId",
+ "documentation":"The unique identifier of the agent to which the alias belongs.
",
+ "location":"uri",
+ "locationName":"agentId"
+ },
+ "agentAliasId":{
+ "shape":"AgentAliasId",
+ "documentation":"The unique identifier of an alias of an agent.
",
+ "location":"uri",
+ "locationName":"agentAliasId"
},
"memoryType":{
"shape":"MemoryType",
@@ -3028,40 +3222,40 @@
"location":"querystring",
"locationName":"memoryType"
},
- "nextToken":{
- "shape":"NextToken",
- "documentation":"If the total number of results is greater than the maxItems value provided in the request, enter the token returned in the nextToken field in the response in this field to return the next batch of results.
",
+ "memoryId":{
+ "shape":"MemoryId",
+ "documentation":"The unique identifier of the memory.
",
"location":"querystring",
- "locationName":"nextToken"
+ "locationName":"memoryId"
}
}
},
"GetAgentMemoryResponse":{
"type":"structure",
"members":{
- "memoryContents":{
- "shape":"Memories",
- "documentation":"Contains details of the sessions stored in the memory
"
- },
"nextToken":{
"shape":"NextToken",
"documentation":"If the total number of results is greater than the maxItems value provided in the request, use this token when making another request in the nextToken field to return the next batch of results.
"
+ },
+ "memoryContents":{
+ "shape":"Memories",
+ "documentation":"Contains details of the sessions stored in the memory
"
}
}
},
"GetExecutionFlowSnapshotRequest":{
"type":"structure",
"required":[
- "executionIdentifier",
+ "flowIdentifier",
"flowAliasIdentifier",
- "flowIdentifier"
+ "executionIdentifier"
],
"members":{
- "executionIdentifier":{
- "shape":"FlowExecutionIdentifier",
- "documentation":"The unique identifier of the flow execution.
",
+ "flowIdentifier":{
+ "shape":"FlowIdentifier",
+ "documentation":"The unique identifier of the flow.
",
"location":"uri",
- "locationName":"executionIdentifier"
+ "locationName":"flowIdentifier"
},
"flowAliasIdentifier":{
"shape":"FlowAliasIdentifier",
@@ -3069,63 +3263,63 @@
"location":"uri",
"locationName":"flowAliasIdentifier"
},
- "flowIdentifier":{
- "shape":"FlowIdentifier",
- "documentation":"The unique identifier of the flow.
",
+ "executionIdentifier":{
+ "shape":"FlowExecutionIdentifier",
+ "documentation":"The unique identifier of the flow execution.
",
"location":"uri",
- "locationName":"flowIdentifier"
+ "locationName":"executionIdentifier"
}
}
},
"GetExecutionFlowSnapshotResponse":{
"type":"structure",
"required":[
- "definition",
- "executionRoleArn",
- "flowAliasIdentifier",
"flowIdentifier",
- "flowVersion"
+ "flowAliasIdentifier",
+ "flowVersion",
+ "executionRoleArn",
+ "definition"
],
"members":{
- "customerEncryptionKeyArn":{
- "shape":"KmsKeyArn",
- "documentation":"The Amazon Resource Name (ARN) of the customer managed KMS key that's used to encrypt the flow snapshot.
"
- },
- "definition":{
- "shape":"String",
- "documentation":"The flow definition used for the flow execution, including the nodes, connections, and configuration at the time when the execution started.
The definition returns as a string that follows the structure of a FlowDefinition object.
"
- },
- "executionRoleArn":{
- "shape":"FlowExecutionRoleArn",
- "documentation":"The Amazon Resource Name (ARN) of the IAM service role that's used by the flow execution.
"
+ "flowIdentifier":{
+ "shape":"FlowIdentifier",
+ "documentation":"The unique identifier of the flow.
"
},
"flowAliasIdentifier":{
"shape":"FlowAliasIdentifier",
"documentation":"The unique identifier of the flow alias used for the flow execution.
"
},
- "flowIdentifier":{
- "shape":"FlowIdentifier",
- "documentation":"The unique identifier of the flow.
"
- },
"flowVersion":{
"shape":"Version",
"documentation":"The version of the flow used for the flow execution.
"
+ },
+ "executionRoleArn":{
+ "shape":"FlowExecutionRoleArn",
+ "documentation":"The Amazon Resource Name (ARN) of the IAM service role that's used by the flow execution.
"
+ },
+ "definition":{
+ "shape":"String",
+ "documentation":"The flow definition used for the flow execution, including the nodes, connections, and configuration at the time when the execution started.
The definition returns as a string that follows the structure of a FlowDefinition object.
"
+ },
+ "customerEncryptionKeyArn":{
+ "shape":"KmsKeyArn",
+ "documentation":"The Amazon Resource Name (ARN) of the customer managed KMS key that's used to encrypt the flow snapshot.
"
}
}
},
"GetFlowExecutionRequest":{
"type":"structure",
"required":[
- "executionIdentifier",
+ "flowIdentifier",
"flowAliasIdentifier",
- "flowIdentifier"
+ "executionIdentifier"
],
"members":{
- "executionIdentifier":{
- "shape":"FlowExecutionIdentifier",
- "documentation":"The unique identifier of the flow execution to retrieve.
",
+ "flowIdentifier":{
+ "shape":"FlowIdentifier",
+ "documentation":"The unique identifier of the flow.
",
"location":"uri",
- "locationName":"executionIdentifier"
+ "locationName":"flowIdentifier"
},
"flowAliasIdentifier":{
"shape":"FlowAliasIdentifier",
@@ -3133,11 +3327,11 @@
"location":"uri",
"locationName":"flowAliasIdentifier"
},
- "flowIdentifier":{
- "shape":"FlowIdentifier",
- "documentation":"The unique identifier of the flow.
",
+ "executionIdentifier":{
+ "shape":"FlowExecutionIdentifier",
+ "documentation":"The unique identifier of the flow execution to retrieve.
",
"location":"uri",
- "locationName":"flowIdentifier"
+ "locationName":"executionIdentifier"
}
}
},
@@ -3145,13 +3339,25 @@
"type":"structure",
"required":[
"executionArn",
+ "status",
+ "startedAt",
"flowAliasIdentifier",
"flowIdentifier",
- "flowVersion",
- "startedAt",
- "status"
+ "flowVersion"
],
"members":{
+ "executionArn":{
+ "shape":"FlowExecutionIdentifier",
+ "documentation":"The Amazon Resource Name (ARN) that uniquely identifies the flow execution.
"
+ },
+ "status":{
+ "shape":"FlowExecutionStatus",
+ "documentation":"The current status of the flow execution.
Flow executions time out after 24 hours.
"
+ },
+ "startedAt":{
+ "shape":"DateTimestamp",
+ "documentation":"The timestamp when the flow execution started.
"
+ },
"endedAt":{
"shape":"DateTimestamp",
"documentation":"The timestamp when the flow execution ended. This field is only populated when the execution has completed, failed, timed out, or been aborted.
"
@@ -3160,10 +3366,6 @@
"shape":"FlowExecutionErrors",
"documentation":"A list of errors that occurred during the flow execution. Each error includes an error code, message, and the node where the error occurred, if applicable.
"
},
- "executionArn":{
- "shape":"FlowExecutionIdentifier",
- "documentation":"The Amazon Resource Name (ARN) that uniquely identifies the flow execution.
"
- },
"flowAliasIdentifier":{
"shape":"FlowAliasIdentifier",
"documentation":"The unique identifier of the flow alias used for the execution.
"
@@ -3175,14 +3377,6 @@
"flowVersion":{
"shape":"Version",
"documentation":"The version of the flow used for the execution.
"
- },
- "startedAt":{
- "shape":"DateTimestamp",
- "documentation":"The timestamp when the flow execution started.
"
- },
- "status":{
- "shape":"FlowExecutionStatus",
- "documentation":"The current status of the flow execution.
Flow executions time out after 24 hours.
"
}
}
},
@@ -3237,40 +3431,40 @@
"GetSessionResponse":{
"type":"structure",
"required":[
- "createdAt",
- "lastUpdatedAt",
- "sessionArn",
"sessionId",
- "sessionStatus"
+ "sessionArn",
+ "sessionStatus",
+ "createdAt",
+ "lastUpdatedAt"
],
"members":{
+ "sessionId":{
+ "shape":"Uuid",
+ "documentation":"The unique identifier for the session in UUID format.
"
+ },
+ "sessionArn":{
+ "shape":"SessionArn",
+ "documentation":"The Amazon Resource Name (ARN) of the session.
"
+ },
+ "sessionStatus":{
+ "shape":"SessionStatus",
+ "documentation":"The current status of the session.
"
+ },
"createdAt":{
"shape":"DateTimestamp",
"documentation":"The timestamp for when the session was created.
"
},
- "encryptionKeyArn":{
- "shape":"KmsKeyArn",
- "documentation":"The Amazon Resource Name (ARN) of the Key Management Service key used to encrypt the session data. For more information, see Amazon Bedrock session encryption.
"
- },
"lastUpdatedAt":{
"shape":"DateTimestamp",
"documentation":"The timestamp for when the session was last modified.
"
},
- "sessionArn":{
- "shape":"SessionArn",
- "documentation":"The Amazon Resource Name (ARN) of the session.
"
- },
- "sessionId":{
- "shape":"Uuid",
- "documentation":"The unique identifier for the session in UUID format.
"
- },
"sessionMetadata":{
"shape":"SessionMetadataMap",
"documentation":"A map of key-value pairs containing attributes persisted across the session.
"
},
- "sessionStatus":{
- "shape":"SessionStatus",
- "documentation":"The current status of the session.
"
+ "encryptionKeyArn":{
+ "shape":"KmsKeyArn",
+ "documentation":"The Amazon Resource Name (ARN) of the Key Management Service key used to encrypt the session data. For more information, see Amazon Bedrock session encryption.
"
}
}
},
@@ -3291,21 +3485,21 @@
"GuardrailAssessment":{
"type":"structure",
"members":{
- "contentPolicy":{
- "shape":"GuardrailContentPolicyAssessment",
- "documentation":"Content policy details of the Guardrail.
"
- },
- "sensitiveInformationPolicy":{
- "shape":"GuardrailSensitiveInformationPolicyAssessment",
- "documentation":"Sensitive Information policy details of Guardrail.
"
- },
"topicPolicy":{
"shape":"GuardrailTopicPolicyAssessment",
"documentation":"Topic policy details of the Guardrail.
"
},
+ "contentPolicy":{
+ "shape":"GuardrailContentPolicyAssessment",
+ "documentation":"Content policy details of the Guardrail.
"
+ },
"wordPolicy":{
"shape":"GuardrailWordPolicyAssessment",
"documentation":"Word policy details of the Guardrail.
"
+ },
+ "sensitiveInformationPolicy":{
+ "shape":"GuardrailSensitiveInformationPolicyAssessment",
+ "documentation":"Sensitive Information policy details of Guardrail.
"
}
},
"documentation":"Assessment details of the content analyzed by Guardrails.
",
@@ -3337,13 +3531,13 @@
"type":"string",
"max":64,
"min":0,
- "pattern":"^[a-z0-9]+$"
+ "pattern":"[a-z0-9]+"
},
"GuardrailConfigurationGuardrailVersionString":{
"type":"string",
"max":5,
"min":1,
- "pattern":"^(([1-9][0-9]{0,7})|(DRAFT))$"
+ "pattern":"(([1-9][0-9]{0,7})|(DRAFT))"
},
"GuardrailConfigurationWithArn":{
"type":"structure",
@@ -3366,17 +3560,17 @@
"GuardrailContentFilter":{
"type":"structure",
"members":{
- "action":{
- "shape":"GuardrailContentPolicyAction",
- "documentation":"The action placed on the content by the Guardrail filter.
"
+ "type":{
+ "shape":"GuardrailContentFilterType",
+ "documentation":"The type of content detected in the filter by the Guardrail.
"
},
"confidence":{
"shape":"GuardrailContentFilterConfidence",
"documentation":"The confidence level regarding the content detected in the filter by the Guardrail.
"
},
- "type":{
- "shape":"GuardrailContentFilterType",
- "documentation":"The type of content detected in the filter by the Guardrail.
"
+ "action":{
+ "shape":"GuardrailContentPolicyAction",
+ "documentation":"The action placed on the content by the Guardrail filter.
"
}
},
"documentation":"Details of the content filter used in the Guardrail.
",
@@ -3425,13 +3619,13 @@
"GuardrailCustomWord":{
"type":"structure",
"members":{
- "action":{
- "shape":"GuardrailWordPolicyAction",
- "documentation":"The action details for the custom word filter in the Guardrail.
"
- },
"match":{
"shape":"String",
"documentation":"The match details for the custom word filter in the Guardrail.
"
+ },
+ "action":{
+ "shape":"GuardrailWordPolicyAction",
+ "documentation":"The action details for the custom word filter in the Guardrail.
"
}
},
"documentation":"The custom word details for the filter in the Guardrail.
",
@@ -3457,15 +3651,11 @@
"type":"string",
"max":2048,
"min":0,
- "pattern":"^(([a-z0-9]+)|(arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:guardrail/[a-z0-9]+))$"
+ "pattern":"(([a-z0-9]+)|(arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:guardrail/[a-z0-9]+))"
},
"GuardrailManagedWord":{
"type":"structure",
"members":{
- "action":{
- "shape":"GuardrailWordPolicyAction",
- "documentation":"The action details for the managed word filter in the Guardrail.
"
- },
"match":{
"shape":"String",
"documentation":"The match details for the managed word filter in the Guardrail.
"
@@ -3473,6 +3663,10 @@
"type":{
"shape":"GuardrailManagedWordType",
"documentation":"The type details for the managed word filter in the Guardrail.
"
+ },
+ "action":{
+ "shape":"GuardrailWordPolicyAction",
+ "documentation":"The action details for the managed word filter in the Guardrail.
"
}
},
"documentation":"The managed word details for the filter in the Guardrail.
",
@@ -3490,17 +3684,17 @@
"GuardrailPiiEntityFilter":{
"type":"structure",
"members":{
- "action":{
- "shape":"GuardrailSensitiveInformationPolicyAction",
- "documentation":"The action of the Guardrail filter to identify and remove PII.
"
+ "type":{
+ "shape":"GuardrailPiiEntityType",
+ "documentation":"The type of PII the Guardrail filter has identified and removed.
"
},
"match":{
"shape":"String",
"documentation":"The match to settings in the Guardrail filter to identify and remove PII.
"
},
- "type":{
- "shape":"GuardrailPiiEntityType",
- "documentation":"The type of PII the Guardrail filter has identified and removed.
"
+ "action":{
+ "shape":"GuardrailSensitiveInformationPolicyAction",
+ "documentation":"The action of the Guardrail filter to identify and remove PII.
"
}
},
"documentation":"The Guardrail filter to identify and remove personally identifiable information (PII).
",
@@ -3550,14 +3744,6 @@
"GuardrailRegexFilter":{
"type":"structure",
"members":{
- "action":{
- "shape":"GuardrailSensitiveInformationPolicyAction",
- "documentation":"The action details for the regex filter used in the Guardrail.
"
- },
- "match":{
- "shape":"String",
- "documentation":"The match details for the regex filter used in the Guardrail.
"
- },
"name":{
"shape":"String",
"documentation":"The name details for the regex filter used in the Guardrail.
"
@@ -3565,6 +3751,14 @@
"regex":{
"shape":"String",
"documentation":"The regex details for the regex filter used in the Guardrail.
"
+ },
+ "match":{
+ "shape":"String",
+ "documentation":"The match details for the regex filter used in the Guardrail.
"
+ },
+ "action":{
+ "shape":"GuardrailSensitiveInformationPolicyAction",
+ "documentation":"The action details for the regex filter used in the Guardrail.
"
}
},
"documentation":"The details for the regex filter used in the Guardrail.
",
@@ -3600,10 +3794,6 @@
"GuardrailTopic":{
"type":"structure",
"members":{
- "action":{
- "shape":"GuardrailTopicPolicyAction",
- "documentation":"The action details on a specific topic in the Guardrail.
"
- },
"name":{
"shape":"String",
"documentation":"The name details on a specific topic in the Guardrail.
"
@@ -3611,6 +3801,10 @@
"type":{
"shape":"GuardrailTopicType",
"documentation":"The type details on a specific topic in the Guardrail.
"
+ },
+ "action":{
+ "shape":"GuardrailTopicPolicyAction",
+ "documentation":"The action details on a specific topic in the Guardrail.
"
}
},
"documentation":"The details for a specific topic defined in the Guardrail.
",
@@ -3647,21 +3841,21 @@
"shape":"GuardrailAction",
"documentation":"The trace action details used with the Guardrail.
"
},
+ "traceId":{
+ "shape":"TraceId",
+ "documentation":"The details of the trace Id used in the Guardrail Trace.
"
+ },
"inputAssessments":{
"shape":"GuardrailAssessmentList",
"documentation":"The details of the input assessments used in the Guardrail Trace.
"
},
- "metadata":{
- "shape":"Metadata",
- "documentation":"Contains information about the Guardrail output.
"
- },
"outputAssessments":{
"shape":"GuardrailAssessmentList",
"documentation":"The details of the output assessments used in the Guardrail Trace.
"
},
- "traceId":{
- "shape":"TraceId",
- "documentation":"The details of the trace Id used in the Guardrail Trace.
"
+ "metadata":{
+ "shape":"Metadata",
+ "documentation":"Contains information about the Guardrail output.
"
}
},
"documentation":"The trace details used in the Guardrail.
",
@@ -3671,7 +3865,7 @@
"type":"string",
"max":5,
"min":1,
- "pattern":"^(([1-9][0-9]{0,7})|(DRAFT))$"
+ "pattern":"(([1-9][0-9]{0,7})|(DRAFT))"
},
"GuardrailWordPolicyAction":{
"type":"string",
@@ -3821,25 +4015,25 @@
"InferenceConfiguration":{
"type":"structure",
"members":{
- "maximumLength":{
- "shape":"MaximumLength",
- "documentation":"The maximum number of tokens allowed in the generated response.
"
- },
- "stopSequences":{
- "shape":"StopSequences",
- "documentation":"A list of stop sequences. A stop sequence is a sequence of characters that causes the model to stop generating the response.
"
- },
"temperature":{
"shape":"Temperature",
"documentation":"The likelihood of the model selecting higher-probability options while generating a response. A lower value makes the model more likely to choose higher-probability options, while a higher value makes the model more likely to choose lower-probability options.
"
},
+ "topP":{
+ "shape":"TopP",
+ "documentation":"While generating a response, the model determines the probability of the following token at each point of generation. The value that you set for Top P determines the number of most-likely candidates from which the model chooses the next token in the sequence. For example, if you set topP to 0.8, the model only selects the next token from the top 80% of the probability distribution of next tokens.
"
+ },
"topK":{
"shape":"TopK",
"documentation":"While generating a response, the model determines the probability of the following token at each point of generation. The value that you set for topK is the number of most-likely candidates from which the model chooses the next token in the sequence. For example, if you set topK to 50, the model selects the next token from among the top 50 most likely choices.
"
},
- "topP":{
- "shape":"TopP",
- "documentation":"While generating a response, the model determines the probability of the following token at each point of generation. The value that you set for Top P determines the number of most-likely candidates from which the model chooses the next token in the sequence. For example, if you set topP to 0.8, the model only selects the next token from the top 80% of the probability distribution of next tokens.
"
+ "maximumLength":{
+ "shape":"MaximumLength",
+ "documentation":"The maximum number of tokens allowed in the generated response.
"
+ },
+ "stopSequences":{
+ "shape":"StopSequences",
+ "documentation":"A list of stop sequences. A stop sequence is a sequence of characters that causes the model to stop generating the response.
"
}
},
"documentation":"Specifications about the inference parameters that were provided alongside the prompt. These are specified in the PromptOverrideConfiguration object that was set when the agent was created or updated. For more information, see Inference parameters for foundation models.
"
@@ -3858,13 +4052,13 @@
"InlineAgentPayloadPart":{
"type":"structure",
"members":{
- "attribution":{
- "shape":"Attribution",
- "documentation":"Contains citations for a part of an agent response.
"
- },
"bytes":{
"shape":"PartBody",
"documentation":"A part of the agent response in bytes.
"
+ },
+ "attribution":{
+ "shape":"Attribution",
+ "documentation":"Contains citations for a part of an agent response.
"
}
},
"documentation":"Contains a part of an agent response and citations for it.
",
@@ -3874,42 +4068,30 @@
"InlineAgentResponseStream":{
"type":"structure",
"members":{
- "accessDeniedException":{
- "shape":"AccessDeniedException",
- "documentation":"The request is denied because of missing access permissions. Check your permissions and retry your request.
"
- },
- "badGatewayException":{
- "shape":"BadGatewayException",
- "documentation":"There was an issue with a dependency due to a server issue. Retry your request.
"
- },
"chunk":{
"shape":"InlineAgentPayloadPart",
"documentation":"Contains a part of an agent response and citations for it.
"
},
- "conflictException":{
- "shape":"ConflictException",
- "documentation":"There was a conflict performing an operation. Resolve the conflict and retry your request.
"
- },
- "dependencyFailedException":{
- "shape":"DependencyFailedException",
- "documentation":"There was an issue with a dependency. Check the resource configurations and retry the request.
"
+ "trace":{
+ "shape":"InlineAgentTracePart",
+ "documentation":"Contains information about the agent and session, alongside the agent's reasoning process and results from calling actions and querying knowledge bases and metadata about the trace. You can use the trace to understand how the agent arrived at the response it provided the customer. For more information, see Trace events.
"
},
- "files":{
- "shape":"InlineAgentFilePart",
- "documentation":"Contains intermediate response for code interpreter if any files have been generated.
"
+ "returnControl":{
+ "shape":"InlineAgentReturnControlPayload",
+ "documentation":"Contains the parameters and information that the agent elicited from the customer to carry out an action. This information is returned to the system and can be used in your own setup for fulfilling the action.
"
},
"internalServerException":{
"shape":"InternalServerException",
"documentation":"An internal server error occurred. Retry your request.
"
},
+ "validationException":{
+ "shape":"ValidationException",
+ "documentation":"Input validation failed. Check your request parameters and retry the request.
"
+ },
"resourceNotFoundException":{
"shape":"ResourceNotFoundException",
"documentation":"The specified resource Amazon Resource Name (ARN) was not found. Check the Amazon Resource Name (ARN) and try your request again.
"
},
- "returnControl":{
- "shape":"InlineAgentReturnControlPayload",
- "documentation":"Contains the parameters and information that the agent elicited from the customer to carry out an action. This information is returned to the system and can be used in your own setup for fulfilling the action.
"
- },
"serviceQuotaExceededException":{
"shape":"ServiceQuotaExceededException",
"documentation":"The number of requests exceeds the service quota. Resubmit your request later.
"
@@ -3918,13 +4100,25 @@
"shape":"ThrottlingException",
"documentation":"The number of requests exceeds the limit. Resubmit your request later.
"
},
- "trace":{
- "shape":"InlineAgentTracePart",
- "documentation":"Contains information about the agent and session, alongside the agent's reasoning process and results from calling actions and querying knowledge bases and metadata about the trace. You can use the trace to understand how the agent arrived at the response it provided the customer. For more information, see Trace events.
"
+ "accessDeniedException":{
+ "shape":"AccessDeniedException",
+ "documentation":"The request is denied because of missing access permissions. Check your permissions and retry your request.
"
},
- "validationException":{
- "shape":"ValidationException",
- "documentation":"Input validation failed. Check your request parameters and retry the request.
"
+ "conflictException":{
+ "shape":"ConflictException",
+ "documentation":"There was a conflict performing an operation. Resolve the conflict and retry your request.
"
+ },
+ "dependencyFailedException":{
+ "shape":"DependencyFailedException",
+ "documentation":"There was an issue with a dependency. Check the resource configurations and retry the request.
"
+ },
+ "badGatewayException":{
+ "shape":"BadGatewayException",
+ "documentation":"There was an issue with a dependency due to a server issue. Retry your request.
"
+ },
+ "files":{
+ "shape":"InlineAgentFilePart",
+ "documentation":"Contains intermediate response for code interpreter if any files have been generated.
"
}
},
"documentation":"The response from invoking the agent and associated citations and trace information.
",
@@ -3933,13 +4127,13 @@
"InlineAgentReturnControlPayload":{
"type":"structure",
"members":{
- "invocationId":{
- "shape":"String",
- "documentation":"The identifier of the action group invocation.
"
- },
"invocationInputs":{
"shape":"InvocationInputs",
"documentation":"A list of objects that contain information about the parameters and inputs that need to be sent into the API operation or function, based on what the agent determines from its session with the user.
"
+ },
+ "invocationId":{
+ "shape":"String",
+ "documentation":"The identifier of the action group invocation.
"
}
},
"documentation":"Contains information to return from the action group that the agent has predicted to invoke.
This data type is used in the InvokeAgent response API operation.
",
@@ -3949,25 +4143,25 @@
"InlineAgentTracePart":{
"type":"structure",
"members":{
+ "sessionId":{
+ "shape":"SessionId",
+ "documentation":"The unique identifier of the session with the agent.
"
+ },
+ "trace":{
+ "shape":"Trace",
+ "documentation":"Contains one part of the agent's reasoning process and results from calling API actions and querying knowledge bases. You can use the trace to understand how the agent arrived at the response it provided the customer. For more information, see Trace enablement.
"
+ },
"callerChain":{
"shape":"CallerChain",
"documentation":"The caller chain for the trace part.
"
},
- "collaboratorName":{
- "shape":"Name",
- "documentation":"The collaborator name for the trace part.
"
- },
"eventTime":{
"shape":"SyntheticTimestamp_date_time",
"documentation":"The time that trace occurred.
"
},
- "sessionId":{
- "shape":"SessionId",
- "documentation":"The unique identifier of the session with the agent.
"
- },
- "trace":{
- "shape":"Trace",
- "documentation":"Contains one part of the agent's reasoning process and results from calling API actions and querying knowledge bases. You can use the trace to understand how the agent arrived at the response it provided the customer. For more information, see Trace enablement.
"
+ "collaboratorName":{
+ "shape":"Name",
+ "documentation":"The collaborator name for the trace part.
"
}
},
"documentation":"Contains information about the agent and session, alongside the agent's reasoning process and results from calling API actions and querying knowledge bases and metadata about the trace. You can use the trace to understand how the agent arrived at the response it provided the customer. For more information, see Trace enablement.
",
@@ -3987,17 +4181,9 @@
"InlineSessionState":{
"type":"structure",
"members":{
- "conversationHistory":{
- "shape":"ConversationHistory",
- "documentation":" Contains the conversation history that persist across sessions.
"
- },
- "files":{
- "shape":"InputFiles",
- "documentation":" Contains information about the files used by code interpreter.
"
- },
- "invocationId":{
- "shape":"String",
- "documentation":" The identifier of the invocation of an action. This value must match the invocationId returned in the InvokeInlineAgent response for the action whose results are provided in the returnControlInvocationResults field. For more information, see Return control to the agent developer.
"
+ "sessionAttributes":{
+ "shape":"SessionAttributesMap",
+ "documentation":" Contains attributes that persist across a session and the values of those attributes.
"
},
"promptSessionAttributes":{
"shape":"PromptSessionAttributesMap",
@@ -4007,9 +4193,17 @@
"shape":"ReturnControlInvocationResults",
"documentation":" Contains information about the results from the action group invocation. For more information, see Return control to the agent developer.
If you include this field in the sessionState field, the inputText field will be ignored.
"
},
- "sessionAttributes":{
- "shape":"SessionAttributesMap",
- "documentation":" Contains attributes that persist across a session and the values of those attributes.
"
+ "invocationId":{
+ "shape":"String",
+ "documentation":" The identifier of the invocation of an action. This value must match the invocationId returned in the InvokeInlineAgent response for the action whose results are provided in the returnControlInvocationResults field. For more information, see Return control to the agent developer.
"
+ },
+ "files":{
+ "shape":"InputFiles",
+ "documentation":" Contains information about the files used by code interpreter.
"
+ },
+ "conversationHistory":{
+ "shape":"ConversationHistory",
+ "documentation":" Contains the conversation history that persist across sessions.
"
}
},
"documentation":" Contains parameters that specify various attributes that persist across a session or prompt. You can define session state attributes as key-value pairs when writing a Lambda function for an action group or pass them when making an InvokeInlineAgent request. Use session state attributes to control and provide conversational context for your inline agent and to help customize your agent's behavior. For more information, see Control session context
"
@@ -4092,34 +4286,34 @@
},
"InvocationIdentifier":{
"type":"string",
- "pattern":"^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$"
+ "pattern":"[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}"
},
"InvocationInput":{
"type":"structure",
"members":{
- "actionGroupInvocationInput":{
- "shape":"ActionGroupInvocationInput",
- "documentation":"Contains information about the action group to be invoked.
"
- },
- "agentCollaboratorInvocationInput":{
- "shape":"AgentCollaboratorInvocationInput",
- "documentation":"The collaborator's invocation input.
"
- },
- "codeInterpreterInvocationInput":{
- "shape":"CodeInterpreterInvocationInput",
- "documentation":"Contains information about the code interpreter to be invoked.
"
+ "traceId":{
+ "shape":"TraceId",
+ "documentation":"The unique identifier of the trace.
"
},
"invocationType":{
"shape":"InvocationType",
"documentation":"Specifies whether the agent is invoking an action group or a knowledge base.
"
},
+ "actionGroupInvocationInput":{
+ "shape":"ActionGroupInvocationInput",
+ "documentation":"Contains information about the action group to be invoked.
"
+ },
"knowledgeBaseLookupInput":{
"shape":"KnowledgeBaseLookupInput",
"documentation":"Contains details about the knowledge base to look up and the query to be made.
"
},
- "traceId":{
- "shape":"TraceId",
- "documentation":"The unique identifier of the trace.
"
+ "codeInterpreterInvocationInput":{
+ "shape":"CodeInterpreterInvocationInput",
+ "documentation":"Contains information about the code interpreter to be invoked.
"
+ },
+ "agentCollaboratorInvocationInput":{
+ "shape":"AgentCollaboratorInvocationInput",
+ "documentation":"The collaborator's invocation input.
"
}
},
"documentation":"Contains information pertaining to the action group or knowledge base that is being invoked.
",
@@ -4164,13 +4358,17 @@
"InvocationStep":{
"type":"structure",
"required":[
+ "sessionId",
"invocationId",
"invocationStepId",
"invocationStepTime",
- "payload",
- "sessionId"
+ "payload"
],
"members":{
+ "sessionId":{
+ "shape":"Uuid",
+ "documentation":"The unique identifier of the session containing the invocation step.
"
+ },
"invocationId":{
"shape":"Uuid",
"documentation":"The unique identifier (in UUID format) for the invocation that includes the invocation step.
"
@@ -4186,10 +4384,6 @@
"payload":{
"shape":"InvocationStepPayload",
"documentation":"Payload content, such as text and images, for the invocation step.
"
- },
- "sessionId":{
- "shape":"Uuid",
- "documentation":"The unique identifier of the session containing the invocation step.
"
}
},
"documentation":"Stores fine-grained state checkpoints, including text and images, for each interaction in an invocation in a session. For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.
"
@@ -4212,12 +4406,16 @@
"InvocationStepSummary":{
"type":"structure",
"required":[
+ "sessionId",
"invocationId",
"invocationStepId",
- "invocationStepTime",
- "sessionId"
+ "invocationStepTime"
],
"members":{
+ "sessionId":{
+ "shape":"Uuid",
+ "documentation":"The unique identifier for the session associated with the invocation step.
"
+ },
"invocationId":{
"shape":"Uuid",
"documentation":"A unique identifier for the invocation in UUID format.
"
@@ -4229,10 +4427,6 @@
"invocationStepTime":{
"shape":"DateTimestamp",
"documentation":"The timestamp for when the invocation step was created.
"
- },
- "sessionId":{
- "shape":"Uuid",
- "documentation":"The unique identifier for the session associated with the invocation step.
"
}
},
"documentation":"Contains details about an invocation step within an invocation in a session. For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.
"
@@ -4244,22 +4438,22 @@
"InvocationSummary":{
"type":"structure",
"required":[
- "createdAt",
+ "sessionId",
"invocationId",
- "sessionId"
+ "createdAt"
],
"members":{
- "createdAt":{
- "shape":"DateTimestamp",
- "documentation":"The timestamp for when the invocation was created.
"
+ "sessionId":{
+ "shape":"Uuid",
+ "documentation":"The unique identifier for the session associated with the invocation.
"
},
"invocationId":{
"shape":"Uuid",
"documentation":"A unique identifier for the invocation in UUID format.
"
},
- "sessionId":{
- "shape":"Uuid",
- "documentation":"The unique identifier for the session associated with the invocation.
"
+ "createdAt":{
+ "shape":"DateTimestamp",
+ "documentation":"The timestamp for when the invocation was created.
"
}
},
"documentation":"Contains details about an invocation in a session. For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.
"
@@ -4277,16 +4471,14 @@
"InvokeAgentRequest":{
"type":"structure",
"required":[
- "agentAliasId",
"agentId",
+ "agentAliasId",
"sessionId"
],
"members":{
- "agentAliasId":{
- "shape":"AgentAliasId",
- "documentation":"The alias of the agent to use.
",
- "location":"uri",
- "locationName":"agentAliasId"
+ "sessionState":{
+ "shape":"SessionState",
+ "documentation":"Contains parameters that specify various attributes of the session. For more information, see Control session context.
If you include returnControlInvocationResults in the sessionState field, the inputText field will be ignored.
"
},
"agentId":{
"shape":"AgentId",
@@ -4294,18 +4486,26 @@
"location":"uri",
"locationName":"agentId"
},
- "bedrockModelConfigurations":{
- "shape":"BedrockModelConfigurations",
- "documentation":"Model performance settings for the request.
"
+ "agentAliasId":{
+ "shape":"AgentAliasId",
+ "documentation":"The alias of the agent to use.
",
+ "location":"uri",
+ "locationName":"agentAliasId"
},
- "enableTrace":{
- "shape":"Boolean",
- "documentation":"Specifies whether to turn on the trace or not to track the agent's reasoning process. For more information, see Trace enablement.
"
+ "sessionId":{
+ "shape":"SessionId",
+ "documentation":"The unique identifier of the session. Use the same value across requests to continue the same conversation.
",
+ "location":"uri",
+ "locationName":"sessionId"
},
"endSession":{
"shape":"Boolean",
"documentation":"Specifies whether to end the session with the agent or not.
"
},
+ "enableTrace":{
+ "shape":"Boolean",
+ "documentation":"Specifies whether to turn on the trace or not to track the agent's reasoning process. For more information, see Trace enablement.
"
+ },
"inputText":{
"shape":"InputText",
"documentation":"The prompt text to send the agent.
If you include returnControlInvocationResults in the sessionState field, the inputText field will be ignored.
"
@@ -4314,29 +4514,23 @@
"shape":"MemoryId",
"documentation":"The unique identifier of the agent memory.
"
},
+ "bedrockModelConfigurations":{
+ "shape":"BedrockModelConfigurations",
+ "documentation":"Model performance settings for the request.
"
+ },
+ "streamingConfigurations":{
+ "shape":"StreamingConfigurations",
+ "documentation":" Specifies the configurations for streaming.
To use agent streaming, you need permissions to perform the bedrock:InvokeModelWithResponseStream action.
"
+ },
"promptCreationConfigurations":{
"shape":"PromptCreationConfigurations",
"documentation":"Specifies parameters that control how the service populates the agent prompt for an InvokeAgent request. You can control which aspects of previous invocations in the same agent session the service uses to populate the agent prompt. This gives you more granular control over the contextual history that is used to process the current request.
"
},
- "sessionId":{
- "shape":"SessionId",
- "documentation":"The unique identifier of the session. Use the same value across requests to continue the same conversation.
",
- "location":"uri",
- "locationName":"sessionId"
- },
- "sessionState":{
- "shape":"SessionState",
- "documentation":"Contains parameters that specify various attributes of the session. For more information, see Control session context.
If you include returnControlInvocationResults in the sessionState field, the inputText field will be ignored.
"
- },
"sourceArn":{
"shape":"AWSResourceARN",
"documentation":"The ARN of the resource making the request.
",
"location":"header",
"locationName":"x-amz-source-arn"
- },
- "streamingConfigurations":{
- "shape":"StreamingConfigurations",
- "documentation":" Specifies the configurations for streaming.
To use agent streaming, you need permissions to perform the bedrock:InvokeModelWithResponseStream action.
"
}
}
},
@@ -4358,17 +4552,17 @@
"location":"header",
"locationName":"x-amzn-bedrock-agent-content-type"
},
- "memoryId":{
- "shape":"MemoryId",
- "documentation":"The unique identifier of the agent memory.
",
- "location":"header",
- "locationName":"x-amz-bedrock-agent-memory-id"
- },
"sessionId":{
"shape":"SessionId",
"documentation":"The unique identifier of the session with the agent.
",
"location":"header",
"locationName":"x-amz-bedrock-agent-session-id"
+ },
+ "memoryId":{
+ "shape":"MemoryId",
+ "documentation":"The unique identifier of the agent memory.
",
+ "location":"header",
+ "locationName":"x-amz-bedrock-agent-memory-id"
}
},
"payload":"completion"
@@ -4376,18 +4570,16 @@
"InvokeFlowRequest":{
"type":"structure",
"required":[
- "flowAliasIdentifier",
"flowIdentifier",
+ "flowAliasIdentifier",
"inputs"
],
"members":{
- "enableTrace":{
- "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.
"
+ "flowIdentifier":{
+ "shape":"FlowIdentifier",
+ "documentation":"The unique identifier of the flow.
",
+ "location":"uri",
+ "locationName":"flowIdentifier"
},
"flowAliasIdentifier":{
"shape":"FlowAliasIdentifier",
@@ -4395,19 +4587,21 @@
"location":"uri",
"locationName":"flowAliasIdentifier"
},
- "flowIdentifier":{
- "shape":"FlowIdentifier",
- "documentation":"The unique identifier of the flow.
",
- "location":"uri",
- "locationName":"flowIdentifier"
- },
"inputs":{
"shape":"FlowInputs",
"documentation":"A list of objects, each containing information about an input into the flow.
"
},
+ "enableTrace":{
+ "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.
"
+ },
"modelPerformanceConfiguration":{
"shape":"ModelPerformanceConfiguration",
"documentation":"Model performance settings for the request.
"
+ },
+ "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.
"
}
}
},
@@ -4415,15 +4609,15 @@
"type":"structure",
"required":["responseStream"],
"members":{
+ "responseStream":{
+ "shape":"FlowResponseStream",
+ "documentation":"The output of the flow, returned as a stream. If there's an error, the error is returned.
"
+ },
"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.
"
}
},
"payload":"responseStream"
@@ -4436,95 +4630,95 @@
"sessionId"
],
"members":{
- "actionGroups":{
- "shape":"AgentActionGroups",
- "documentation":" A list of action groups with each action group defining the action the inline agent needs to carry out.
"
- },
- "agentCollaboration":{
- "shape":"AgentCollaboration",
- "documentation":" Defines how the inline collaborator agent handles information across multiple collaborator agents to coordinate a final response. The inline collaborator agent can also be the supervisor.
"
- },
- "agentName":{
- "shape":"Name",
- "documentation":"The name for the agent.
"
- },
- "bedrockModelConfigurations":{
- "shape":"InlineBedrockModelConfigurations",
- "documentation":"Model settings for the request.
"
- },
- "collaboratorConfigurations":{
- "shape":"CollaboratorConfigurations",
- "documentation":" Settings for an inline agent collaborator called with InvokeInlineAgent.
"
- },
- "collaborators":{
- "shape":"Collaborators",
- "documentation":" List of collaborator inline agents.
"
- },
- "customOrchestration":{
- "shape":"CustomOrchestration",
- "documentation":"Contains details of the custom orchestration configured for the agent.
"
- },
"customerEncryptionKeyArn":{
"shape":"KmsKeyArn",
"documentation":" The Amazon Resource Name (ARN) of the Amazon Web Services KMS key to use to encrypt your inline agent.
"
},
- "enableTrace":{
- "shape":"Boolean",
- "documentation":" Specifies whether to turn on the trace or not to track the agent's reasoning process. For more information, see Using trace.
"
- },
- "endSession":{
- "shape":"Boolean",
- "documentation":" Specifies whether to end the session with the inline agent or not.
"
- },
"foundationModel":{
"shape":"ModelIdentifier",
"documentation":" The model identifier (ID) of the model to use for orchestration by the inline agent. For example, meta.llama3-1-70b-instruct-v1:0.
"
},
- "guardrailConfiguration":{
- "shape":"GuardrailConfigurationWithArn",
- "documentation":" The guardrails to assign to the inline agent.
"
+ "instruction":{
+ "shape":"Instruction",
+ "documentation":" The instructions that tell the inline agent what it should do and how it should interact with users.
"
},
"idleSessionTTLInSeconds":{
"shape":"SessionTTL",
"documentation":" The number of seconds for which the inline agent should maintain session information. After this time expires, the subsequent InvokeInlineAgent request begins a new session.
A user interaction remains active for the amount of time specified. If no conversation occurs during this time, the session expires and the data provided before the timeout is deleted.
"
},
- "inlineSessionState":{
- "shape":"InlineSessionState",
- "documentation":" Parameters that specify the various attributes of a sessions. You can include attributes for the session or prompt or, if you configured an action group to return control, results from invocation of the action group. For more information, see Control session context.
If you include returnControlInvocationResults in the sessionState field, the inputText field will be ignored.
"
- },
- "inputText":{
- "shape":"InputText",
- "documentation":" The prompt text to send to the agent.
If you include returnControlInvocationResults in the sessionState field, the inputText field will be ignored.
"
- },
- "instruction":{
- "shape":"Instruction",
- "documentation":" The instructions that tell the inline agent what it should do and how it should interact with users.
"
+ "actionGroups":{
+ "shape":"AgentActionGroups",
+ "documentation":" A list of action groups with each action group defining the action the inline agent needs to carry out.
"
},
"knowledgeBases":{
"shape":"KnowledgeBases",
"documentation":" Contains information of the knowledge bases to associate with.
"
},
- "orchestrationType":{
- "shape":"OrchestrationType",
- "documentation":"Specifies the type of orchestration strategy for the agent. This is set to DEFAULT orchestration type, by default.
"
- },
- "promptCreationConfigurations":{
- "shape":"PromptCreationConfigurations",
- "documentation":"Specifies parameters that control how the service populates the agent prompt for an InvokeInlineAgent request. You can control which aspects of previous invocations in the same agent session the service uses to populate the agent prompt. This gives you more granular control over the contextual history that is used to process the current request.
"
+ "guardrailConfiguration":{
+ "shape":"GuardrailConfigurationWithArn",
+ "documentation":" The guardrails to assign to the inline agent.
"
},
"promptOverrideConfiguration":{
"shape":"PromptOverrideConfiguration",
"documentation":" Configurations for advanced prompts used to override the default prompts to enhance the accuracy of the inline agent.
"
},
+ "agentCollaboration":{
+ "shape":"AgentCollaboration",
+ "documentation":" Defines how the inline collaborator agent handles information across multiple collaborator agents to coordinate a final response. The inline collaborator agent can also be the supervisor.
"
+ },
+ "collaboratorConfigurations":{
+ "shape":"CollaboratorConfigurations",
+ "documentation":" Settings for an inline agent collaborator called with InvokeInlineAgent.
"
+ },
+ "agentName":{
+ "shape":"Name",
+ "documentation":"The name for the agent.
"
+ },
"sessionId":{
"shape":"SessionId",
"documentation":" The unique identifier of the session. Use the same value across requests to continue the same conversation.
",
"location":"uri",
"locationName":"sessionId"
},
+ "endSession":{
+ "shape":"Boolean",
+ "documentation":" Specifies whether to end the session with the inline agent or not.
"
+ },
+ "enableTrace":{
+ "shape":"Boolean",
+ "documentation":" Specifies whether to turn on the trace or not to track the agent's reasoning process. For more information, see Using trace.
"
+ },
+ "inputText":{
+ "shape":"InputText",
+ "documentation":" The prompt text to send to the agent.
If you include returnControlInvocationResults in the sessionState field, the inputText field will be ignored.
"
+ },
"streamingConfigurations":{
"shape":"StreamingConfigurations",
"documentation":" Specifies the configurations for streaming.
To use agent streaming, you need permissions to perform the bedrock:InvokeModelWithResponseStream action.
"
+ },
+ "promptCreationConfigurations":{
+ "shape":"PromptCreationConfigurations",
+ "documentation":"Specifies parameters that control how the service populates the agent prompt for an InvokeInlineAgent request. You can control which aspects of previous invocations in the same agent session the service uses to populate the agent prompt. This gives you more granular control over the contextual history that is used to process the current request.
"
+ },
+ "inlineSessionState":{
+ "shape":"InlineSessionState",
+ "documentation":" Parameters that specify the various attributes of a sessions. You can include attributes for the session or prompt or, if you configured an action group to return control, results from invocation of the action group. For more information, see Control session context.
If you include returnControlInvocationResults in the sessionState field, the inputText field will be ignored.
"
+ },
+ "collaborators":{
+ "shape":"Collaborators",
+ "documentation":" List of collaborator inline agents.
"
+ },
+ "bedrockModelConfigurations":{
+ "shape":"InlineBedrockModelConfigurations",
+ "documentation":"Model settings for the request.
"
+ },
+ "orchestrationType":{
+ "shape":"OrchestrationType",
+ "documentation":"Specifies the type of orchestration strategy for the agent. This is set to DEFAULT orchestration type, by default.
"
+ },
+ "customOrchestration":{
+ "shape":"CustomOrchestration",
+ "documentation":"Contains details of the custom orchestration configured for the agent.
"
}
}
},
@@ -4559,23 +4753,23 @@
"type":"string",
"max":2048,
"min":1,
- "pattern":"^arn:aws(|-cn|-us-gov):kms:[a-zA-Z0-9-]*:[0-9]{12}:key/[a-zA-Z0-9-]{36}$"
+ "pattern":"arn:aws(|-cn|-us-gov):kms:[a-zA-Z0-9-]*:[0-9]{12}:key/[a-zA-Z0-9-]{36}"
},
"KnowledgeBase":{
"type":"structure",
"required":[
- "description",
- "knowledgeBaseId"
+ "knowledgeBaseId",
+ "description"
],
"members":{
- "description":{
- "shape":"ResourceDescription",
- "documentation":" The description of the knowledge base associated with the inline agent.
"
- },
"knowledgeBaseId":{
"shape":"KnowledgeBaseId",
"documentation":" The unique identifier for a knowledge base associated with the inline agent.
"
},
+ "description":{
+ "shape":"ResourceDescription",
+ "documentation":" The description of the knowledge base associated with the inline agent.
"
+ },
"retrievalConfiguration":{
"shape":"KnowledgeBaseRetrievalConfiguration",
"documentation":" The configurations to apply to the knowledge base during query. For more information, see Query configurations.
"
@@ -4587,7 +4781,7 @@
"type":"string",
"max":128,
"min":0,
- "pattern":"^arn:aws(|-cn|-us-gov):bedrock:[a-zA-Z0-9-]*:[0-9]{12}:knowledge-base/[0-9a-zA-Z]+$"
+ "pattern":"arn:aws(|-cn|-us-gov):bedrock:[a-zA-Z0-9-]*:[0-9]{12}:knowledge-base/[0-9a-zA-Z]+"
},
"KnowledgeBaseConfiguration":{
"type":"structure",
@@ -4616,18 +4810,18 @@
"type":"string",
"max":10,
"min":0,
- "pattern":"^[0-9a-zA-Z]+$"
+ "pattern":"[0-9a-zA-Z]+"
},
"KnowledgeBaseLookupInput":{
"type":"structure",
"members":{
- "knowledgeBaseId":{
- "shape":"TraceKnowledgeBaseId",
- "documentation":"The unique identifier of the knowledge base to look up.
"
- },
"text":{
"shape":"KnowledgeBaseLookupInputString",
"documentation":"The query made to the knowledge base.
"
+ },
+ "knowledgeBaseId":{
+ "shape":"TraceKnowledgeBaseId",
+ "documentation":"The unique identifier of the knowledge base to look up.
"
}
},
"documentation":"Contains details about the knowledge base to look up and the query to be made.
"
@@ -4639,13 +4833,13 @@
"KnowledgeBaseLookupOutput":{
"type":"structure",
"members":{
- "metadata":{
- "shape":"Metadata",
- "documentation":"Contains information about the knowledge base output.
"
- },
"retrievedReferences":{
"shape":"RetrievedReferences",
"documentation":"Contains metadata about the sources cited for the generated response.
"
+ },
+ "metadata":{
+ "shape":"Metadata",
+ "documentation":"Contains information about the knowledge base output.
"
}
},
"documentation":"Contains details about the results from looking up the knowledge base.
"
@@ -4690,13 +4884,13 @@
"shape":"RetrievalResultLocation",
"documentation":"Contains information about the location of the data source.
"
},
- "metadata":{
- "shape":"RetrievalResultMetadata",
- "documentation":"Contains metadata attributes and their values for the file in the data source. For more information, see Metadata and filtering.
"
- },
"score":{
"shape":"Double",
"documentation":"The level of relevance of the result to the query.
"
+ },
+ "metadata":{
+ "shape":"RetrievalResultMetadata",
+ "documentation":"Contains metadata attributes and their values for the file in the data source. For more information, see Metadata and filtering.
"
}
},
"documentation":"Details about a result from querying the knowledge base.
This data type is used in the following API operations:
"
@@ -4713,10 +4907,6 @@
"modelArn"
],
"members":{
- "generationConfiguration":{
- "shape":"GenerationConfiguration",
- "documentation":"Contains configurations for response generation based on the knowledge base query results.
"
- },
"knowledgeBaseId":{
"shape":"KnowledgeBaseId",
"documentation":"The unique identifier of the knowledge base that is queried.
"
@@ -4725,13 +4915,17 @@
"shape":"BedrockModelArn",
"documentation":"The ARN of the foundation model or inference profile used to generate a response.
"
},
- "orchestrationConfiguration":{
- "shape":"OrchestrationConfiguration",
- "documentation":"Settings for how the model processes the prompt prior to retrieval and generation.
"
- },
"retrievalConfiguration":{
"shape":"KnowledgeBaseRetrievalConfiguration",
"documentation":"Contains configurations for how to retrieve and return the knowledge base query.
"
+ },
+ "generationConfiguration":{
+ "shape":"GenerationConfiguration",
+ "documentation":"Contains configurations for response generation based on the knowledge base query results.
"
+ },
+ "orchestrationConfiguration":{
+ "shape":"OrchestrationConfiguration",
+ "documentation":"Settings for how the model processes the prompt prior to retrieval and generation.
"
}
},
"documentation":"Contains details about the resource being queried.
This data type is used in the following API operations:
"
@@ -4739,14 +4933,6 @@
"KnowledgeBaseVectorSearchConfiguration":{
"type":"structure",
"members":{
- "filter":{
- "shape":"RetrievalFilter",
- "documentation":"Specifies the filters to use on the metadata in the knowledge base data sources before returning results. For more information, see Query configurations.
"
- },
- "implicitFilterConfiguration":{
- "shape":"ImplicitFilterConfiguration",
- "documentation":"Settings for implicit filtering.
"
- },
"numberOfResults":{
"shape":"KnowledgeBaseVectorSearchConfigurationNumberOfResultsInteger",
"documentation":"The number of source chunks to retrieve.
",
@@ -4756,9 +4942,17 @@
"shape":"SearchType",
"documentation":"By default, Amazon Bedrock decides a search strategy for you. If you're using an Amazon OpenSearch Serverless vector store that contains a filterable text field, you can specify whether to query the knowledge base with a HYBRID search using both vector embeddings and raw text, or SEMANTIC search using only vector embeddings. For other vector store configurations, only SEMANTIC search is available. For more information, see Test a knowledge base.
"
},
+ "filter":{
+ "shape":"RetrievalFilter",
+ "documentation":"Specifies the filters to use on the metadata in the knowledge base data sources before returning results. For more information, see Query configurations.
"
+ },
"rerankingConfiguration":{
"shape":"VectorSearchRerankingConfiguration",
"documentation":"Contains configurations for reranking the retrieved results. For more information, see Improve the relevance of query responses with a reranker model.
"
+ },
+ "implicitFilterConfiguration":{
+ "shape":"ImplicitFilterConfiguration",
+ "documentation":"Settings for implicit filtering.
"
}
},
"documentation":"Configurations for how to perform the search query and return results. For more information, see Query configurations.
This data type is used in the following API operations:
"
@@ -4778,28 +4972,22 @@
"type":"string",
"max":2048,
"min":0,
- "pattern":"^arn:(aws[a-zA-Z-]*)?:lambda:[a-z]{2}(-gov)?-[a-z]+-\\d{1}:\\d{12}:function:[a-zA-Z0-9-_\\.]+(:(\\$LATEST|[a-zA-Z0-9-_]+))?$"
+ "pattern":"arn:(aws[a-zA-Z-]*)?:lambda:[a-z]{2}(-gov)?-[a-z]+-\\d{1}:\\d{12}:function:[a-zA-Z0-9-_\\.]+(:(\\$LATEST|[a-zA-Z0-9-_]+))?"
},
"ListFlowExecutionEventsRequest":{
"type":"structure",
"required":[
- "eventType",
- "executionIdentifier",
+ "flowIdentifier",
"flowAliasIdentifier",
- "flowIdentifier"
+ "executionIdentifier",
+ "eventType"
],
"members":{
- "eventType":{
- "shape":"FlowExecutionEventType",
- "documentation":"The type of events to retrieve. Specify Node for node-level events or Flow for flow-level events.
",
- "location":"querystring",
- "locationName":"eventType"
- },
- "executionIdentifier":{
- "shape":"FlowExecutionIdentifier",
- "documentation":"The unique identifier of the flow execution.
",
+ "flowIdentifier":{
+ "shape":"FlowIdentifier",
+ "documentation":"The unique identifier of the flow.
",
"location":"uri",
- "locationName":"executionIdentifier"
+ "locationName":"flowIdentifier"
},
"flowAliasIdentifier":{
"shape":"FlowAliasIdentifier",
@@ -4807,11 +4995,11 @@
"location":"uri",
"locationName":"flowAliasIdentifier"
},
- "flowIdentifier":{
- "shape":"FlowIdentifier",
- "documentation":"The unique identifier of the flow.
",
+ "executionIdentifier":{
+ "shape":"FlowExecutionIdentifier",
+ "documentation":"The unique identifier of the flow execution.
",
"location":"uri",
- "locationName":"flowIdentifier"
+ "locationName":"executionIdentifier"
},
"maxResults":{
"shape":"MaxResults",
@@ -4824,6 +5012,12 @@
"documentation":"A token to retrieve the next set of results. This value is returned in the response if more results are available.
",
"location":"querystring",
"locationName":"nextToken"
+ },
+ "eventType":{
+ "shape":"FlowExecutionEventType",
+ "documentation":"The type of events to retrieve. Specify Node for node-level events or Flow for flow-level events.
",
+ "location":"querystring",
+ "locationName":"eventType"
}
}
},
@@ -4845,18 +5039,18 @@
"type":"structure",
"required":["flowIdentifier"],
"members":{
- "flowAliasIdentifier":{
- "shape":"FlowAliasIdentifier",
- "documentation":"The unique identifier of the flow alias to list executions for.
",
- "location":"querystring",
- "locationName":"flowAliasIdentifier"
- },
"flowIdentifier":{
"shape":"FlowIdentifier",
"documentation":"The unique identifier of the flow to list executions for.
",
"location":"uri",
"locationName":"flowIdentifier"
},
+ "flowAliasIdentifier":{
+ "shape":"FlowAliasIdentifier",
+ "documentation":"The unique identifier of the flow alias to list executions for.
",
+ "location":"querystring",
+ "locationName":"flowAliasIdentifier"
+ },
"maxResults":{
"shape":"MaxResults",
"documentation":"The maximum number of flow executions to return in a single response. If more executions exist than the specified maxResults value, a token is included in the response so that the remaining results can be retrieved.
",
@@ -4893,18 +5087,18 @@
"shape":"InvocationIdentifier",
"documentation":"The unique identifier (in UUID format) for the invocation to list invocation steps for.
"
},
- "maxResults":{
- "shape":"MaxResults",
- "documentation":"The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the nextToken field when making another request to return the next batch of results.
",
- "location":"querystring",
- "locationName":"maxResults"
- },
"nextToken":{
"shape":"NextToken",
"documentation":"If the total number of results is greater than the maxResults value provided in the request, enter the token returned in the nextToken field in the response in this field to return the next batch of results.
",
"location":"querystring",
"locationName":"nextToken"
},
+ "maxResults":{
+ "shape":"MaxResults",
+ "documentation":"The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the nextToken field when making another request to return the next batch of results.
",
+ "location":"querystring",
+ "locationName":"maxResults"
+ },
"sessionIdentifier":{
"shape":"SessionIdentifier",
"documentation":"The unique identifier for the session associated with the invocation steps. You can specify either the session's sessionId or its Amazon Resource Name (ARN).
",
@@ -4931,18 +5125,18 @@
"type":"structure",
"required":["sessionIdentifier"],
"members":{
- "maxResults":{
- "shape":"MaxResults",
- "documentation":"The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the nextToken field when making another request to return the next batch of results.
",
- "location":"querystring",
- "locationName":"maxResults"
- },
"nextToken":{
"shape":"NextToken",
"documentation":"If the total number of results is greater than the maxResults value provided in the request, enter the token returned in the nextToken field in the response in this field to return the next batch of results.
",
"location":"querystring",
"locationName":"nextToken"
},
+ "maxResults":{
+ "shape":"MaxResults",
+ "documentation":"The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the nextToken field when making another request to return the next batch of results.
",
+ "location":"querystring",
+ "locationName":"maxResults"
+ },
"sessionIdentifier":{
"shape":"SessionIdentifier",
"documentation":"The unique identifier for the session to list invocations for. You can specify either the session's sessionId or its Amazon Resource Name (ARN).
",
@@ -4986,13 +5180,13 @@
"type":"structure",
"required":["sessionSummaries"],
"members":{
- "nextToken":{
- "shape":"NextToken",
- "documentation":"If the total number of results is greater than the maxResults value provided in the request, use this token when making another request in the nextToken field to return the next batch of results.
"
- },
"sessionSummaries":{
"shape":"SessionSummaries",
"documentation":"A list of summaries for each session in your Amazon Web Services account.
"
+ },
+ "nextToken":{
+ "shape":"NextToken",
+ "documentation":"If the total number of results is greater than the maxResults value provided in the request, use this token when making another request in the nextToken field to return the next batch of results.
"
}
}
},
@@ -5059,7 +5253,7 @@
"type":"string",
"max":100,
"min":2,
- "pattern":"^[0-9a-zA-Z._:-]+$"
+ "pattern":"[0-9a-zA-Z._:-]+"
},
"MemorySessionSummary":{
"type":"structure",
@@ -5068,10 +5262,6 @@
"shape":"MemoryId",
"documentation":"The unique identifier of the memory where the session summary is stored.
"
},
- "sessionExpiryTime":{
- "shape":"DateTimestamp",
- "documentation":"The time when the memory duration for the session is set to end.
"
- },
"sessionId":{
"shape":"SessionId",
"documentation":"The identifier for this session.
"
@@ -5080,6 +5270,10 @@
"shape":"DateTimestamp",
"documentation":"The start time for this session.
"
},
+ "sessionExpiryTime":{
+ "shape":"DateTimestamp",
+ "documentation":"The time when the memory duration for the session is set to end.
"
+ },
"summaryText":{
"shape":"SummaryText",
"documentation":"The summarized text for this session.
"
@@ -5094,17 +5288,17 @@
"Message":{
"type":"structure",
"required":[
- "content",
- "role"
+ "role",
+ "content"
],
"members":{
- "content":{
- "shape":"ContentBlocks",
- "documentation":"The message's content.
"
- },
"role":{
"shape":"ConversationRole",
"documentation":"The message's role.
"
+ },
+ "content":{
+ "shape":"ContentBlocks",
+ "documentation":"The message's content.
"
}
},
"documentation":"Details about a message.
"
@@ -5116,25 +5310,25 @@
"Metadata":{
"type":"structure",
"members":{
- "clientRequestId":{
- "shape":"String",
- "documentation":"A unique identifier associated with the downstream invocation. This ID can be used for tracing, debugging, and identifying specific invocations in customer logs or systems.
"
+ "startTime":{
+ "shape":"SyntheticTimestamp_date_time",
+ "documentation":"In the final response, startTime is the start time of the agent invocation operation.
"
},
"endTime":{
"shape":"SyntheticTimestamp_date_time",
"documentation":"In the final response, endTime is the end time of the agent invocation operation.
"
},
+ "totalTimeMs":{
+ "shape":"Long",
+ "documentation":" The total execution time for the specific invocation being processed (model, knowledge base, guardrail, agent collaborator, or code interpreter). It represents how long the individual invocation took.
"
+ },
"operationTotalTimeMs":{
"shape":"Long",
"documentation":"The total time it took for the agent to complete execution. This field is only set for the final response.
"
},
- "startTime":{
- "shape":"SyntheticTimestamp_date_time",
- "documentation":"In the final response, startTime is the start time of the agent invocation operation.
"
- },
- "totalTimeMs":{
- "shape":"Long",
- "documentation":" The total execution time for the specific invocation being processed (model, knowledge base, guardrail, agent collaborator, or code interpreter). It represents how long the individual invocation took.
"
+ "clientRequestId":{
+ "shape":"String",
+ "documentation":"A unique identifier associated with the downstream invocation. This ID can be used for tracing, debugging, and identifying specific invocations in customer logs or systems.
"
},
"usage":{
"shape":"Usage",
@@ -5147,15 +5341,11 @@
"MetadataAttributeSchema":{
"type":"structure",
"required":[
- "description",
"key",
- "type"
+ "type",
+ "description"
],
"members":{
- "description":{
- "shape":"MetadataAttributeSchemaDescriptionString",
- "documentation":"The attribute's description.
"
- },
"key":{
"shape":"MetadataAttributeSchemaKeyString",
"documentation":"The attribute's key.
"
@@ -5163,6 +5353,10 @@
"type":{
"shape":"AttributeType",
"documentation":"The attribute's type.
"
+ },
+ "description":{
+ "shape":"MetadataAttributeSchemaDescriptionString",
+ "documentation":"The attribute's description.
"
}
},
"documentation":"Details about a metadata attribute.
",
@@ -5172,13 +5366,13 @@
"type":"string",
"max":1024,
"min":1,
- "pattern":"^[\\s\\S]+$"
+ "pattern":"[\\s\\S]+"
},
"MetadataAttributeSchemaKeyString":{
"type":"string",
"max":256,
"min":1,
- "pattern":"^[\\s\\S]+$"
+ "pattern":"[\\s\\S]+"
},
"MetadataAttributeSchemaList":{
"type":"list",
@@ -5206,42 +5400,42 @@
"type":"string",
"max":2048,
"min":1,
- "pattern":"(^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:(([0-9]{12}:custom-model/[a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}(([:][a-z0-9-]{1,63}){0,2})?/[a-z0-9]{12})|(:foundation-model/([a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.]?[a-z0-9-]{1,63})([:][a-z0-9-]{1,63}){0,2})))|(([a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.]?[a-z0-9-]{1,63})([:][a-z0-9-]{1,63}){0,2}))|(([0-9a-zA-Z][_-]?)+))$|(^arn:aws(|-us-gov|-cn|-iso|-iso-b):bedrock:(|[0-9a-z-]{1,20}):(|[0-9]{12}):inference-profile/[a-zA-Z0-9-:.]+)$"
+ "pattern":".*(^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:(([0-9]{12}:custom-model/[a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}(([:][a-z0-9-]{1,63}){0,2})?/[a-z0-9]{12})|(:foundation-model/([a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.]?[a-z0-9-]{1,63})([:][a-z0-9-]{1,63}){0,2})))|(([a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.]?[a-z0-9-]{1,63})([:][a-z0-9-]{1,63}){0,2}))|(([0-9a-zA-Z][_-]?)+))$|(^arn:aws(|-us-gov|-cn|-iso|-iso-b):bedrock:(|[0-9a-z-]{1,20}):(|[0-9]{12}):inference-profile/[a-zA-Z0-9-:.]+)"
},
"ModelInvocationInput":{
"type":"structure",
"members":{
- "foundationModel":{
- "shape":"ModelIdentifier",
- "documentation":"The identifier of a foundation model.
"
+ "traceId":{
+ "shape":"TraceId",
+ "documentation":"The unique identifier of the trace.
"
},
- "inferenceConfiguration":{
- "shape":"InferenceConfiguration",
- "documentation":"Specifications about the inference parameters that were provided alongside the prompt. These are specified in the PromptOverrideConfiguration object that was set when the agent was created or updated. For more information, see Inference parameters for foundation models.
"
+ "text":{
+ "shape":"PromptText",
+ "documentation":"The text that prompted the agent at this step.
"
+ },
+ "type":{
+ "shape":"PromptType",
+ "documentation":"The step in the agent sequence.
"
},
"overrideLambda":{
"shape":"LambdaArn",
"documentation":"The ARN of the Lambda function to use when parsing the raw foundation model output in parts of the agent sequence.
"
},
- "parserMode":{
- "shape":"CreationMode",
- "documentation":"Specifies whether to override the default parser Lambda function when parsing the raw foundation model output in the part of the agent sequence defined by the promptType.
"
- },
"promptCreationMode":{
"shape":"CreationMode",
"documentation":"Specifies whether the default prompt template was OVERRIDDEN. If it was, the basePromptTemplate that was set in the PromptOverrideConfiguration object when the agent was created or updated is used instead.
"
},
- "text":{
- "shape":"PromptText",
- "documentation":"The text that prompted the agent at this step.
"
+ "inferenceConfiguration":{
+ "shape":"InferenceConfiguration",
+ "documentation":"Specifications about the inference parameters that were provided alongside the prompt. These are specified in the PromptOverrideConfiguration object that was set when the agent was created or updated. For more information, see Inference parameters for foundation models.
"
},
- "traceId":{
- "shape":"TraceId",
- "documentation":"The unique identifier of the trace.
"
+ "parserMode":{
+ "shape":"CreationMode",
+ "documentation":"Specifies whether to override the default parser Lambda function when parsing the raw foundation model output in the part of the agent sequence defined by the promptType.
"
},
- "type":{
- "shape":"PromptType",
- "documentation":"The step in the agent sequence.
"
+ "foundationModel":{
+ "shape":"ModelIdentifier",
+ "documentation":"The identifier of a foundation model.
"
}
},
"documentation":"The input for the pre-processing step.
-
The type matches the agent step.
-
The text contains the prompt.
-
The inferenceConfiguration, parserMode, and overrideLambda values are set in the PromptOverrideConfiguration object that was set when the agent was created or updated.
",
@@ -5271,14 +5465,80 @@
},
"Name":{
"type":"string",
- "pattern":"^([0-9a-zA-Z][_-]?){1,100}$",
+ "pattern":"([0-9a-zA-Z][_-]?){1,100}",
"sensitive":true
},
"NextToken":{
"type":"string",
"max":2048,
"min":1,
- "pattern":"^\\S*$"
+ "pattern":"\\S*"
+ },
+ "NodeActionEvent":{
+ "type":"structure",
+ "required":[
+ "nodeName",
+ "timestamp",
+ "requestId",
+ "serviceName",
+ "operationName"
+ ],
+ "members":{
+ "nodeName":{
+ "shape":"NodeName",
+ "documentation":"The name of the node that called the operation.
"
+ },
+ "timestamp":{
+ "shape":"DateTimestamp",
+ "documentation":"The date and time that the operation was called.
"
+ },
+ "requestId":{
+ "shape":"String",
+ "documentation":"The ID of the request that the node made to the operation.
"
+ },
+ "serviceName":{
+ "shape":"String",
+ "documentation":"The name of the service that the node called.
"
+ },
+ "operationName":{
+ "shape":"String",
+ "documentation":"The name of the operation that the node called.
"
+ },
+ "operationRequest":{
+ "shape":"Document",
+ "documentation":"The request payload sent to the downstream service.
"
+ },
+ "operationResponse":{
+ "shape":"Document",
+ "documentation":"The response payload received from the downstream service.
"
+ }
+ },
+ "documentation":"Contains information about an action (operation) called by a node during execution.
",
+ "sensitive":true
+ },
+ "NodeDependencyEvent":{
+ "type":"structure",
+ "required":[
+ "nodeName",
+ "timestamp",
+ "traceElements"
+ ],
+ "members":{
+ "nodeName":{
+ "shape":"NodeName",
+ "documentation":"The name of the node that generated the dependency trace.
"
+ },
+ "timestamp":{
+ "shape":"DateTimestamp",
+ "documentation":"The date and time that the dependency trace was generated.
"
+ },
+ "traceElements":{
+ "shape":"NodeTraceElements",
+ "documentation":"The trace elements containing detailed information about the node execution.
"
+ }
+ },
+ "documentation":"Contains information about an internal trace of a specific node during execution.
",
+ "sensitive":true
},
"NodeErrorCode":{
"type":"string",
@@ -5304,12 +5564,20 @@
"NodeFailureEvent":{
"type":"structure",
"required":[
- "errorCode",
- "errorMessage",
"nodeName",
- "timestamp"
+ "timestamp",
+ "errorCode",
+ "errorMessage"
],
"members":{
+ "nodeName":{
+ "shape":"NodeName",
+ "documentation":"The name of the node where the failure occurred.
"
+ },
+ "timestamp":{
+ "shape":"DateTimestamp",
+ "documentation":"The timestamp when the node failure occurred.
"
+ },
"errorCode":{
"shape":"NodeErrorCode",
"documentation":"The error code that identifies the type of failure that occurred at the node.
"
@@ -5317,57 +5585,91 @@
"errorMessage":{
"shape":"String",
"documentation":"A descriptive message that provides details about the node failure.
"
- },
+ }
+ },
+ "documentation":"Contains information about a failure that occurred at a specific node during a flow execution.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
+ "sensitive":true
+ },
+ "NodeInputEvent":{
+ "type":"structure",
+ "required":[
+ "nodeName",
+ "timestamp",
+ "fields"
+ ],
+ "members":{
"nodeName":{
"shape":"NodeName",
- "documentation":"The name of the node where the failure occurred.
"
+ "documentation":"The name of the node that received the inputs.
"
},
"timestamp":{
"shape":"DateTimestamp",
- "documentation":"The timestamp when the node failure occurred.
"
+ "documentation":"The timestamp when the inputs were provided to the node.
"
+ },
+ "fields":{
+ "shape":"NodeInputFields",
+ "documentation":"A list of input fields provided to the node.
"
}
},
- "documentation":"Contains information about a failure that occurred at a specific node during a flow execution.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
+ "documentation":"Contains information about the inputs provided to a specific node during a flow execution.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
"sensitive":true
},
- "NodeInputEvent":{
+ "NodeInputExecutionChain":{
+ "type":"list",
+ "member":{"shape":"NodeInputExecutionChainItem"}
+ },
+ "NodeInputExecutionChainItem":{
"type":"structure",
"required":[
- "fields",
"nodeName",
- "timestamp"
+ "type"
],
"members":{
- "fields":{
- "shape":"NodeInputFields",
- "documentation":"A list of input fields provided to the node.
"
- },
"nodeName":{
"shape":"NodeName",
- "documentation":"The name of the node that received the inputs.
"
+ "documentation":"The name of the node in the execution chain.
"
},
- "timestamp":{
- "shape":"DateTimestamp",
- "documentation":"The timestamp when the inputs were provided to the node.
"
+ "index":{
+ "shape":"Integer",
+ "documentation":"The index position of this item in the execution chain.
"
+ },
+ "type":{
+ "shape":"FlowControlNodeType",
+ "documentation":"The type of execution chain item. Supported values are Iterator and Loop.
"
}
},
- "documentation":"Contains information about the inputs provided to a specific node during a flow execution.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
- "sensitive":true
+ "documentation":"Represents an item in the execution chain for node input tracking.
"
},
"NodeInputField":{
"type":"structure",
"required":[
- "content",
- "name"
+ "name",
+ "content"
],
"members":{
+ "name":{
+ "shape":"NodeInputName",
+ "documentation":"The name of the input field as defined in the node's input schema.
"
+ },
"content":{
"shape":"NodeExecutionContent",
"documentation":"The content of the input field, which can contain text or structured data.
"
},
- "name":{
- "shape":"NodeInputName",
- "documentation":"The name of the input field as defined in the node's input schema.
"
+ "source":{
+ "shape":"NodeInputSource",
+ "documentation":"The source node that provides input data to this field.
"
+ },
+ "type":{
+ "shape":"FlowNodeIODataType",
+ "documentation":"The data type of the input field for compatibility validation.
"
+ },
+ "category":{
+ "shape":"FlowNodeInputCategory",
+ "documentation":"The category of the input field.
"
+ },
+ "executionChain":{
+ "shape":"NodeInputExecutionChain",
+ "documentation":"The execution path through nested nodes like iterators and loops.
"
}
},
"documentation":"Represents an input field provided to a node during a flow execution.
",
@@ -5381,24 +5683,43 @@
},
"NodeInputName":{
"type":"string",
- "pattern":"^[a-zA-Z]([_]?[0-9a-zA-Z]){0,99}$"
+ "pattern":"[a-zA-Z]([_]?[0-9a-zA-Z]){0,99}"
+ },
+ "NodeInputSource":{
+ "type":"structure",
+ "required":[
+ "nodeName",
+ "outputFieldName",
+ "expression"
+ ],
+ "members":{
+ "nodeName":{
+ "shape":"NodeName",
+ "documentation":"The name of the source node that provides the input data.
"
+ },
+ "outputFieldName":{
+ "shape":"FlowNodeOutputName",
+ "documentation":"The name of the output field from the source node.
"
+ },
+ "expression":{
+ "shape":"FlowNodeInputExpression",
+ "documentation":"The expression used to extract data from the source.
"
+ }
+ },
+ "documentation":"Represents the source of input data for a node field.
"
},
"NodeName":{
"type":"string",
- "pattern":"^[a-zA-Z]([_]?[0-9a-zA-Z]){0,99}$"
+ "pattern":"[a-zA-Z]([_]?[0-9a-zA-Z]){0,99}"
},
"NodeOutputEvent":{
"type":"structure",
"required":[
- "fields",
"nodeName",
- "timestamp"
+ "timestamp",
+ "fields"
],
"members":{
- "fields":{
- "shape":"NodeOutputFields",
- "documentation":"A list of output fields produced by the node.
"
- },
"nodeName":{
"shape":"NodeName",
"documentation":"The name of the node that produced the outputs.
"
@@ -5406,6 +5727,10 @@
"timestamp":{
"shape":"DateTimestamp",
"documentation":"The timestamp when the outputs were produced by the node.
"
+ },
+ "fields":{
+ "shape":"NodeOutputFields",
+ "documentation":"A list of output fields produced by the node.
"
}
},
"documentation":"Contains information about the outputs produced by a specific node during a flow execution.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
@@ -5414,17 +5739,25 @@
"NodeOutputField":{
"type":"structure",
"required":[
- "content",
- "name"
+ "name",
+ "content"
],
"members":{
+ "name":{
+ "shape":"NodeOutputName",
+ "documentation":"The name of the output field as defined in the node's output schema.
"
+ },
"content":{
"shape":"NodeExecutionContent",
"documentation":"The content of the output field, which can contain text or structured data.
"
},
- "name":{
- "shape":"NodeOutputName",
- "documentation":"The name of the output field as defined in the node's output schema.
"
+ "next":{
+ "shape":"NodeOutputNextList",
+ "documentation":"The next node that receives output data from this field.
"
+ },
+ "type":{
+ "shape":"FlowNodeIODataType",
+ "documentation":"The data type of the output field for compatibility validation.
"
}
},
"documentation":"Represents an output field produced by a node during a flow execution.
Flow executions is in preview release for Amazon Bedrock and is subject to change.
",
@@ -5438,7 +5771,42 @@
},
"NodeOutputName":{
"type":"string",
- "pattern":"^[a-zA-Z]([_]?[0-9a-zA-Z]){0,99}$"
+ "pattern":"[a-zA-Z]([_]?[0-9a-zA-Z]){0,99}"
+ },
+ "NodeOutputNext":{
+ "type":"structure",
+ "required":[
+ "nodeName",
+ "inputFieldName"
+ ],
+ "members":{
+ "nodeName":{
+ "shape":"NodeName",
+ "documentation":"The name of the next node that receives the output data.
"
+ },
+ "inputFieldName":{
+ "shape":"FlowNodeInputName",
+ "documentation":"The name of the input field in the next node that receives the data.
"
+ }
+ },
+ "documentation":"Represents the next node that receives output data.
",
+ "sensitive":true
+ },
+ "NodeOutputNextList":{
+ "type":"list",
+ "member":{"shape":"NodeOutputNext"}
+ },
+ "NodeTraceElements":{
+ "type":"structure",
+ "members":{
+ "agentTraces":{
+ "shape":"AgentTraces",
+ "documentation":"Agent trace information for the node execution.
"
+ }
+ },
+ "documentation":"Contains trace elements for node execution tracking.
",
+ "sensitive":true,
+ "union":true
},
"NodeType":{
"type":"string",
@@ -5454,11 +5822,19 @@
},
"NonBlankString":{
"type":"string",
- "pattern":"^[\\s\\S]*$"
+ "pattern":"[\\s\\S]*"
},
"Observation":{
"type":"structure",
"members":{
+ "traceId":{
+ "shape":"TraceId",
+ "documentation":"The unique identifier of the trace.
"
+ },
+ "type":{
+ "shape":"Type",
+ "documentation":"Specifies what kind of information the agent returns in the observation. The following values are possible.
-
ACTION_GROUP – The agent returns the result of an action group.
-
KNOWLEDGE_BASE – The agent returns information from a knowledge base.
-
FINISH – The agent returns a final response to the user with no follow-up.
-
ASK_USER – The agent asks the user a question.
-
REPROMPT – The agent prompts the user again for the same information.
"
+ },
"actionGroupInvocationOutput":{
"shape":"ActionGroupInvocationOutput",
"documentation":"Contains the JSON-formatted string returned by the API invoked by the action group.
"
@@ -5467,29 +5843,21 @@
"shape":"AgentCollaboratorInvocationOutput",
"documentation":"A collaborator's invocation output.
"
},
- "codeInterpreterInvocationOutput":{
- "shape":"CodeInterpreterInvocationOutput",
- "documentation":"Contains the JSON-formatted string returned by the API invoked by the code interpreter.
"
+ "knowledgeBaseLookupOutput":{
+ "shape":"KnowledgeBaseLookupOutput",
+ "documentation":"Contains details about the results from looking up the knowledge base.
"
},
"finalResponse":{
"shape":"FinalResponse",
"documentation":"Contains details about the response to the user.
"
},
- "knowledgeBaseLookupOutput":{
- "shape":"KnowledgeBaseLookupOutput",
- "documentation":"Contains details about the results from looking up the knowledge base.
"
- },
"repromptResponse":{
"shape":"RepromptResponse",
"documentation":"Contains details about the response to reprompt the input.
"
},
- "traceId":{
- "shape":"TraceId",
- "documentation":"The unique identifier of the trace.
"
- },
- "type":{
- "shape":"Type",
- "documentation":"Specifies what kind of information the agent returns in the observation. The following values are possible.
-
ACTION_GROUP – The agent returns the result of an action group.
-
KNOWLEDGE_BASE – The agent returns information from a knowledge base.
-
FINISH – The agent returns a final response to the user with no follow-up.
-
ASK_USER – The agent asks the user a question.
-
REPROMPT – The agent prompts the user again for the same information.
"
+ "codeInterpreterInvocationOutput":{
+ "shape":"CodeInterpreterInvocationOutput",
+ "documentation":"Contains the JSON-formatted string returned by the API invoked by the code interpreter.
"
}
},
"documentation":"Contains the result or output of an action group or knowledge base, or the response to the user.
",
@@ -5516,7 +5884,7 @@
"type":"string",
"max":2048,
"min":1,
- "pattern":"^(arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:(([0-9]{12}:custom-model/[a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}/[a-z0-9]{12})|(:foundation-model/[a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.:]?[a-z0-9-]{1,63}))|([0-9]{12}:provisioned-model/[a-z0-9]{12})))|([a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.:]?[a-z0-9-]{1,63}))|(([0-9a-zA-Z][_-]?)+)$"
+ "pattern":"(arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:(([0-9]{12}:custom-model/[a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}/[a-z0-9]{12})|(:foundation-model/[a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.:]?[a-z0-9-]{1,63}))|([0-9]{12}:provisioned-model/[a-z0-9]{12})))|([a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.:]?[a-z0-9-]{1,63}))|(([0-9a-zA-Z][_-]?)+)"
},
"OptimizePromptResponse":{
"type":"structure",
@@ -5555,30 +5923,18 @@
"OptimizedPromptStream":{
"type":"structure",
"members":{
- "accessDeniedException":{
- "shape":"AccessDeniedException",
- "documentation":"The request is denied because of missing access permissions. Check your permissions and retry your request.
"
+ "optimizedPromptEvent":{
+ "shape":"OptimizedPromptEvent",
+ "documentation":"An event in which the prompt was optimized.
"
},
"analyzePromptEvent":{
"shape":"AnalyzePromptEvent",
"documentation":"An event in which the prompt was analyzed in preparation for optimization.
"
},
- "badGatewayException":{
- "shape":"BadGatewayException",
- "documentation":"There was an issue with a dependency due to a server issue. Retry your request.
"
- },
- "dependencyFailedException":{
- "shape":"DependencyFailedException",
- "documentation":"There was an issue with a dependency. Check the resource configurations and retry the request.
"
- },
"internalServerException":{
"shape":"InternalServerException",
"documentation":"An internal server error occurred. Retry your request.
"
},
- "optimizedPromptEvent":{
- "shape":"OptimizedPromptEvent",
- "documentation":"An event in which the prompt was optimized.
"
- },
"throttlingException":{
"shape":"ThrottlingException",
"documentation":"Your request was throttled because of service-wide limitations. Resubmit your request later or in a different region. You can also purchase Provisioned Throughput to increase the rate or number of tokens you can process.
"
@@ -5586,6 +5942,18 @@
"validationException":{
"shape":"ValidationException",
"documentation":"Input validation failed. Check your request parameters and retry the request.
"
+ },
+ "dependencyFailedException":{
+ "shape":"DependencyFailedException",
+ "documentation":"There was an issue with a dependency. Check the resource configurations and retry the request.
"
+ },
+ "accessDeniedException":{
+ "shape":"AccessDeniedException",
+ "documentation":"The request is denied because of missing access permissions. Check your permissions and retry your request.
"
+ },
+ "badGatewayException":{
+ "shape":"BadGatewayException",
+ "documentation":"There was an issue with a dependency due to a server issue. Retry your request.
"
}
},
"documentation":"The stream containing events in the prompt optimization process.
",
@@ -5594,25 +5962,25 @@
"OrchestrationConfiguration":{
"type":"structure",
"members":{
- "additionalModelRequestFields":{
- "shape":"AdditionalModelRequestFields",
- "documentation":" Additional model parameters and corresponding values not included in the textInferenceConfig structure for a knowledge base. This allows users to provide custom model parameters specific to the language model being used.
"
+ "promptTemplate":{
+ "shape":"PromptTemplate",
+ "documentation":"Contains the template for the prompt that's sent to the model. Orchestration prompts must include the $conversation_history$ and $output_format_instructions$ variables. For more information, see Use placeholder variables in the user guide.
"
},
"inferenceConfig":{
"shape":"InferenceConfig",
"documentation":" Configuration settings for inference when using RetrieveAndGenerate to generate responses while using a knowledge base as a source.
"
},
- "performanceConfig":{
- "shape":"PerformanceConfiguration",
- "documentation":"The latency configuration for the model.
"
- },
- "promptTemplate":{
- "shape":"PromptTemplate",
- "documentation":"Contains the template for the prompt that's sent to the model. Orchestration prompts must include the $conversation_history$ and $output_format_instructions$ variables. For more information, see Use placeholder variables in the user guide.
"
+ "additionalModelRequestFields":{
+ "shape":"AdditionalModelRequestFields",
+ "documentation":" Additional model parameters and corresponding values not included in the textInferenceConfig structure for a knowledge base. This allows users to provide custom model parameters specific to the language model being used.
"
},
"queryTransformationConfiguration":{
"shape":"QueryTransformationConfiguration",
"documentation":"To split up the prompt and retrieve multiple sources, set the transformation type to QUERY_DECOMPOSITION.
"
+ },
+ "performanceConfig":{
+ "shape":"PerformanceConfiguration",
+ "documentation":"The latency configuration for the model.
"
}
},
"documentation":"Settings for how the model processes the prompt prior to retrieval and generation.
"
@@ -5631,21 +5999,21 @@
"OrchestrationModelInvocationOutput":{
"type":"structure",
"members":{
- "metadata":{
- "shape":"Metadata",
- "documentation":"Contains information about the foundation model output from the orchestration step.
"
+ "traceId":{
+ "shape":"TraceId",
+ "documentation":"The unique identifier of the trace.
"
},
"rawResponse":{
"shape":"RawResponse",
"documentation":"Contains details of the raw response from the foundation model output.
"
},
+ "metadata":{
+ "shape":"Metadata",
+ "documentation":"Contains information about the foundation model output from the orchestration step.
"
+ },
"reasoningContent":{
"shape":"ReasoningContentBlock",
"documentation":"Contains content about the reasoning that the model made during the orchestration step.
"
- },
- "traceId":{
- "shape":"TraceId",
- "documentation":"The unique identifier of the trace.
"
}
},
"documentation":"The foundation model output from the orchestration step.
",
@@ -5654,10 +6022,18 @@
"OrchestrationTrace":{
"type":"structure",
"members":{
+ "rationale":{
+ "shape":"Rationale",
+ "documentation":"Details about the reasoning, based on the input, that the agent uses to justify carrying out an action group or getting information from a knowledge base.
"
+ },
"invocationInput":{
"shape":"InvocationInput",
"documentation":"Contains information pertaining to the action group or knowledge base that is being invoked.
"
},
+ "observation":{
+ "shape":"Observation",
+ "documentation":"Details about the observation (the output of the action group Lambda or knowledge base) made by the agent.
"
+ },
"modelInvocationInput":{
"shape":"ModelInvocationInput",
"documentation":"The input for the orchestration step.
-
The type is ORCHESTRATION.
-
The text contains the prompt.
-
The inferenceConfiguration, parserMode, and overrideLambda values are set in the PromptOverrideConfiguration object that was set when the agent was created or updated.
"
@@ -5665,14 +6041,6 @@
"modelInvocationOutput":{
"shape":"OrchestrationModelInvocationOutput",
"documentation":"Contains information pertaining to the output from the foundation model that is being invoked.
"
- },
- "observation":{
- "shape":"Observation",
- "documentation":"Details about the observation (the output of the action group Lambda or knowledge base) made by the agent.
"
- },
- "rationale":{
- "shape":"Rationale",
- "documentation":"Details about the reasoning, based on the input, that the agent uses to justify carrying out an action group or getting information from a knowledge base.
"
}
},
"documentation":"Details about the orchestration step, in which the agent determines the order in which actions are executed and which knowledge bases are retrieved.
",
@@ -5689,10 +6057,6 @@
"OutputFile":{
"type":"structure",
"members":{
- "bytes":{
- "shape":"FileBody",
- "documentation":"The byte count of files that contains response from code interpreter.
"
- },
"name":{
"shape":"String",
"documentation":"The name of the file containing response from code interpreter.
"
@@ -5700,6 +6064,10 @@
"type":{
"shape":"MimeType",
"documentation":"The type of file that contains response from the code interpreter.
"
+ },
+ "bytes":{
+ "shape":"FileBody",
+ "documentation":"The byte count of files that contains response from code interpreter.
"
}
},
"documentation":"Contains details of the response from code interpreter.
",
@@ -5746,13 +6114,13 @@
"shape":"ParameterDescription",
"documentation":" A description of the parameter. Helps the foundation model determine how to elicit the parameters from the user.
"
},
- "required":{
- "shape":"Boolean",
- "documentation":" Whether the parameter is required for the agent to complete the function for action group invocation.
"
- },
"type":{
"shape":"ParameterType",
"documentation":" The data type of the parameter.
"
+ },
+ "required":{
+ "shape":"Boolean",
+ "documentation":" Whether the parameter is required for the agent to complete the function for action group invocation.
"
}
},
"documentation":" Contains details about a parameter in a function for an action group.
"
@@ -5768,7 +6136,7 @@
},
"ParameterName":{
"type":"string",
- "pattern":"^([0-9a-zA-Z][_-]?){1,100}$"
+ "pattern":"([0-9a-zA-Z][_-]?){1,100}"
},
"ParameterType":{
"type":"string",
@@ -5797,13 +6165,13 @@
"PayloadPart":{
"type":"structure",
"members":{
- "attribution":{
- "shape":"Attribution",
- "documentation":"Contains citations for a part of an agent response.
"
- },
"bytes":{
"shape":"PartBody",
"documentation":"A part of the agent response in bytes.
"
+ },
+ "attribution":{
+ "shape":"Attribution",
+ "documentation":"Contains citations for a part of an agent response.
"
}
},
"documentation":"Contains a part of an agent response and citations for it.
",
@@ -5837,9 +6205,9 @@
"PostProcessingModelInvocationOutput":{
"type":"structure",
"members":{
- "metadata":{
- "shape":"Metadata",
- "documentation":" Contains information about the foundation model output from the post-processing step.
"
+ "traceId":{
+ "shape":"TraceId",
+ "documentation":"The unique identifier of the trace.
"
},
"parsedResponse":{
"shape":"PostProcessingParsedResponse",
@@ -5849,13 +6217,13 @@
"shape":"RawResponse",
"documentation":" Details of the raw response from the foundation model output.
"
},
+ "metadata":{
+ "shape":"Metadata",
+ "documentation":" Contains information about the foundation model output from the post-processing step.
"
+ },
"reasoningContent":{
"shape":"ReasoningContentBlock",
"documentation":"Contains content about the reasoning that the model made during the post-processing step.
"
- },
- "traceId":{
- "shape":"TraceId",
- "documentation":"The unique identifier of the trace.
"
}
},
"documentation":"The foundation model output from the post-processing step.
",
@@ -5891,9 +6259,9 @@
"PreProcessingModelInvocationOutput":{
"type":"structure",
"members":{
- "metadata":{
- "shape":"Metadata",
- "documentation":" Contains information about the foundation model output from the pre-processing step.
"
+ "traceId":{
+ "shape":"TraceId",
+ "documentation":"The unique identifier of the trace.
"
},
"parsedResponse":{
"shape":"PreProcessingParsedResponse",
@@ -5903,28 +6271,28 @@
"shape":"RawResponse",
"documentation":" Details of the raw response from the foundation model output.
"
},
+ "metadata":{
+ "shape":"Metadata",
+ "documentation":" Contains information about the foundation model output from the pre-processing step.
"
+ },
"reasoningContent":{
"shape":"ReasoningContentBlock",
"documentation":"Contains content about the reasoning that the model made during the pre-processing step.
"
- },
- "traceId":{
- "shape":"TraceId",
- "documentation":"The unique identifier of the trace.
"
}
},
"documentation":"The foundation model output from the pre-processing step.
",
"sensitive":true
},
- "PreProcessingParsedResponse":{
- "type":"structure",
- "members":{
- "isValid":{
- "shape":"Boolean",
- "documentation":"Whether the user input is valid or not. If false, the agent doesn't proceed to orchestration.
"
- },
+ "PreProcessingParsedResponse":{
+ "type":"structure",
+ "members":{
"rationale":{
"shape":"RationaleString",
"documentation":"The text returned by the parsing of the pre-processing step, explaining the steps that the agent plans to take in orchestration, if the user input is valid.
"
+ },
+ "isValid":{
+ "shape":"Boolean",
+ "documentation":"Whether the user input is valid or not. If false, the agent doesn't proceed to orchestration.
"
}
},
"documentation":"Details about the response from the Lambda parsing of the output from the pre-processing step.
",
@@ -5949,18 +6317,22 @@
"PromptConfiguration":{
"type":"structure",
"members":{
- "additionalModelRequestFields":{
- "shape":"Document",
- "documentation":"If the Converse or ConverseStream operations support the model, additionalModelRequestFields contains additional inference parameters, beyond the base set of inference parameters in the inferenceConfiguration field.
For more information, see Inference request parameters and response fields for foundation models in the Amazon Bedrock user guide.
"
+ "promptType":{
+ "shape":"PromptType",
+ "documentation":" The step in the agent sequence that this prompt configuration applies to.
"
+ },
+ "promptCreationMode":{
+ "shape":"CreationMode",
+ "documentation":"Specifies whether to override the default prompt template for this promptType. Set this value to OVERRIDDEN to use the prompt that you provide in the basePromptTemplate. If you leave it as DEFAULT, the agent uses a default prompt template.
"
+ },
+ "promptState":{
+ "shape":"PromptState",
+ "documentation":"Specifies whether to allow the inline agent to carry out the step specified in the promptType. If you set this value to DISABLED, the agent skips that step. The default state for each promptType is as follows.
"
},
"basePromptTemplate":{
"shape":"BasePromptTemplate",
"documentation":"Defines the prompt template with which to replace the default prompt template. You can use placeholder variables in the base prompt template to customize the prompt. For more information, see Prompt template placeholder variables. For more information, see Configure the prompt templates.
"
},
- "foundationModel":{
- "shape":"ModelIdentifier",
- "documentation":" The foundation model to use.
"
- },
"inferenceConfiguration":{
"shape":"InferenceConfiguration",
"documentation":"Contains inference parameters to use when the agent invokes a foundation model in the part of the agent sequence defined by the promptType. For more information, see Inference parameters for foundation models.
"
@@ -5969,17 +6341,13 @@
"shape":"CreationMode",
"documentation":"Specifies whether to override the default parser Lambda function when parsing the raw foundation model output in the part of the agent sequence defined by the promptType. If you set the field as OVERRIDDEN, the overrideLambda field in the PromptOverrideConfiguration must be specified with the ARN of a Lambda function.
"
},
- "promptCreationMode":{
- "shape":"CreationMode",
- "documentation":"Specifies whether to override the default prompt template for this promptType. Set this value to OVERRIDDEN to use the prompt that you provide in the basePromptTemplate. If you leave it as DEFAULT, the agent uses a default prompt template.
"
- },
- "promptState":{
- "shape":"PromptState",
- "documentation":"Specifies whether to allow the inline agent to carry out the step specified in the promptType. If you set this value to DISABLED, the agent skips that step. The default state for each promptType is as follows.
"
+ "foundationModel":{
+ "shape":"ModelIdentifier",
+ "documentation":" The foundation model to use.
"
},
- "promptType":{
- "shape":"PromptType",
- "documentation":" The step in the agent sequence that this prompt configuration applies to.
"
+ "additionalModelRequestFields":{
+ "shape":"Document",
+ "documentation":"If the Converse or ConverseStream operations support the model, additionalModelRequestFields contains additional inference parameters, beyond the base set of inference parameters in the inferenceConfiguration field.
For more information, see Inference request parameters and response fields for foundation models in the Amazon Bedrock user guide.
"
}
},
"documentation":" Contains configurations to override a prompt template in one part of an agent sequence. For more information, see Advanced prompts.
"
@@ -5993,13 +6361,13 @@
"PromptCreationConfigurations":{
"type":"structure",
"members":{
- "excludePreviousThinkingSteps":{
- "shape":"Boolean",
- "documentation":"If true, the service removes any content between <thinking> tags from previous conversations in an agent session. The service will only remove content from already processed turns. This helps you remove content which might not be useful for current and subsequent invocations. This can reduce the input token count and potentially save costs. The default value is false.
"
- },
"previousConversationTurnsToInclude":{
"shape":"PromptCreationConfigurationsPreviousConversationTurnsToIncludeInteger",
"documentation":"The number of previous conversations from the ongoing agent session to include in the conversation history of the agent prompt, during the current invocation. This gives you more granular control over the context that the model is made aware of, and helps the model remove older context which is no longer useful during the ongoing agent session.
"
+ },
+ "excludePreviousThinkingSteps":{
+ "shape":"Boolean",
+ "documentation":"If true, the service removes any content between <thinking> tags from previous conversations in an agent session. The service will only remove content from already processed turns. This helps you remove content which might not be useful for current and subsequent invocations. This can reduce the input token count and potentially save costs. The default value is false.
"
}
},
"documentation":"Specifies parameters that control how the service populates the agent prompt for an InvokeAgent or InvokeInlineAgent request. You can control which aspects of previous invocations in the same agent session the service uses to populate the agent prompt. This gives you more granular control over the contextual history that is used to process the current request.
"
@@ -6013,13 +6381,13 @@
"type":"structure",
"required":["promptConfigurations"],
"members":{
- "overrideLambda":{
- "shape":"LambdaResourceArn",
- "documentation":"The ARN of the Lambda function to use when parsing the raw foundation model output in parts of the agent sequence. If you specify this field, at least one of the promptConfigurations must contain a parserMode value that is set to OVERRIDDEN. For more information, see Parser Lambda function in Amazon Bedrock Agents.
"
- },
"promptConfigurations":{
"shape":"PromptConfigurations",
"documentation":"Contains configurations to override a prompt template in one part of an agent sequence. For more information, see Advanced prompts.
"
+ },
+ "overrideLambda":{
+ "shape":"LambdaResourceArn",
+ "documentation":"The ARN of the Lambda function to use when parsing the raw foundation model output in parts of the agent sequence. If you specify this field, at least one of the promptConfigurations must contain a parserMode value that is set to OVERRIDDEN. For more information, see Parser Lambda function in Amazon Bedrock Agents.
"
}
},
"documentation":"Contains configurations to override prompts in different parts of an agent sequence. For more information, see Advanced prompts.
",
@@ -6074,20 +6442,22 @@
"PutInvocationStepRequest":{
"type":"structure",
"required":[
+ "sessionIdentifier",
"invocationIdentifier",
"invocationStepTime",
- "payload",
- "sessionIdentifier"
+ "payload"
],
"members":{
+ "sessionIdentifier":{
+ "shape":"SessionIdentifier",
+ "documentation":"The unique identifier for the session to add the invocation step to. You can specify either the session's sessionId or its Amazon Resource Name (ARN).
",
+ "location":"uri",
+ "locationName":"sessionIdentifier"
+ },
"invocationIdentifier":{
"shape":"InvocationIdentifier",
"documentation":"The unique identifier (in UUID format) of the invocation to add the invocation step to.
"
},
- "invocationStepId":{
- "shape":"Uuid",
- "documentation":"The unique identifier of the invocation step in UUID format.
"
- },
"invocationStepTime":{
"shape":"DateTimestamp",
"documentation":"The timestamp for when the invocation step occurred.
"
@@ -6096,11 +6466,9 @@
"shape":"InvocationStepPayload",
"documentation":"The payload for the invocation step, including text and images for the interaction.
"
},
- "sessionIdentifier":{
- "shape":"SessionIdentifier",
- "documentation":"The unique identifier for the session to add the invocation step to. You can specify either the session's sessionId or its Amazon Resource Name (ARN).
",
- "location":"uri",
- "locationName":"sessionIdentifier"
+ "invocationStepId":{
+ "shape":"Uuid",
+ "documentation":"The unique identifier of the invocation step in UUID format.
"
}
}
},
@@ -6117,17 +6485,17 @@
"QueryGenerationInput":{
"type":"structure",
"required":[
- "text",
- "type"
+ "type",
+ "text"
],
"members":{
- "text":{
- "shape":"QueryGenerationInputTextString",
- "documentation":"The text of the query.
"
- },
"type":{
"shape":"InputQueryType",
"documentation":"The type of the query.
"
+ },
+ "text":{
+ "shape":"QueryGenerationInputTextString",
+ "documentation":"The text of the query.
"
}
},
"documentation":"Contains information about a natural language query to transform into SQL.
",
@@ -6171,13 +6539,13 @@
"Rationale":{
"type":"structure",
"members":{
- "text":{
- "shape":"RationaleString",
- "documentation":"The reasoning or thought process of the agent, based on the input.
"
- },
"traceId":{
"shape":"TraceId",
"documentation":"The unique identifier of the trace step.
"
+ },
+ "text":{
+ "shape":"RationaleString",
+ "documentation":"The reasoning or thought process of the agent, based on the input.
"
}
},
"documentation":"Contains the reasoning, based on the input, that the agent uses to justify carrying out an action group or getting information from a knowledge base.
",
@@ -6218,13 +6586,13 @@
"type":"structure",
"required":["text"],
"members":{
- "signature":{
- "shape":"String",
- "documentation":"A hash of all the messages in the conversation to ensure that the content in the reasoning text block isn't tampered with. You must submit the signature in subsequent Converse requests, in addition to the previous messages. If the previous messages are tampered with, the response throws an error.
"
- },
"text":{
"shape":"String",
"documentation":"Text describing the reasoning that the model used to return the content in the content block.
"
+ },
+ "signature":{
+ "shape":"String",
+ "documentation":"A hash of all the messages in the conversation to ensure that the content in the reasoning text block isn't tampered with. You must submit the signature in subsequent Converse requests, in addition to the previous messages. If the previous messages are tampered with, the response throws an error.
"
}
},
"documentation":"Contains information about the reasoning that the model used to return the content in the content block.
",
@@ -6240,13 +6608,13 @@
"RepromptResponse":{
"type":"structure",
"members":{
- "source":{
- "shape":"Source",
- "documentation":"Specifies what output is prompting the agent to reprompt the input.
"
- },
"text":{
"shape":"String",
"documentation":"The text reprompting the input.
"
+ },
+ "source":{
+ "shape":"Source",
+ "documentation":"Specifies what output is prompting the agent to reprompt the input.
"
}
},
"documentation":"Contains details about the agent's response to reprompt the input.
",
@@ -6273,17 +6641,17 @@
"type":"structure",
"required":["type"],
"members":{
- "jsonDocument":{
- "shape":"Document",
- "documentation":"Contains a JSON document to rerank.
"
+ "type":{
+ "shape":"RerankDocumentType",
+ "documentation":"The type of document to rerank.
"
},
"textDocument":{
"shape":"RerankTextDocument",
"documentation":"Contains information about a text document to rerank.
"
},
- "type":{
- "shape":"RerankDocumentType",
- "documentation":"The type of document to rerank.
"
+ "jsonDocument":{
+ "shape":"Document",
+ "documentation":"Contains a JSON document to rerank.
"
}
},
"documentation":"Contains information about a document to rerank. Choose the type to define and include the field that corresponds to the type.
",
@@ -6306,17 +6674,17 @@
"RerankQuery":{
"type":"structure",
"required":[
- "textQuery",
- "type"
+ "type",
+ "textQuery"
],
"members":{
- "textQuery":{
- "shape":"RerankTextDocument",
- "documentation":"Contains information about a text query.
"
- },
"type":{
"shape":"RerankQueryContentType",
"documentation":"The type of the query.
"
+ },
+ "textQuery":{
+ "shape":"RerankTextDocument",
+ "documentation":"Contains information about a text query.
"
}
},
"documentation":"Contains information about a query to submit to the reranker model.
",
@@ -6330,25 +6698,25 @@
"type":"structure",
"required":[
"queries",
- "rerankingConfiguration",
- "sources"
+ "sources",
+ "rerankingConfiguration"
],
"members":{
- "nextToken":{
- "shape":"NextToken",
- "documentation":"If the total number of results was greater than could fit in a response, a token is returned in the nextToken field. You can enter that token in this field to return the next batch of results.
"
- },
"queries":{
"shape":"RerankQueriesList",
"documentation":"An array of objects, each of which contains information about a query to submit to the reranker model.
"
},
+ "sources":{
+ "shape":"RerankSourcesList",
+ "documentation":"An array of objects, each of which contains information about the sources to rerank.
"
+ },
"rerankingConfiguration":{
"shape":"RerankingConfiguration",
"documentation":"Contains configurations for reranking.
"
},
- "sources":{
- "shape":"RerankSourcesList",
- "documentation":"An array of objects, each of which contains information about the sources to rerank.
"
+ "nextToken":{
+ "shape":"NextToken",
+ "documentation":"If the total number of results was greater than could fit in a response, a token is returned in the nextToken field. You can enter that token in this field to return the next batch of results.
"
}
}
},
@@ -6356,13 +6724,13 @@
"type":"structure",
"required":["results"],
"members":{
- "nextToken":{
- "shape":"NextToken",
- "documentation":"If the total number of results is greater than can fit in the response, use this token in the nextToken field when making another request to return the next batch of results.
"
- },
"results":{
"shape":"RerankResultsList",
"documentation":"An array of objects, each of which contains information about the results of reranking.
"
+ },
+ "nextToken":{
+ "shape":"NextToken",
+ "documentation":"If the total number of results is greater than can fit in the response, use this token in the nextToken field when making another request to return the next batch of results.
"
}
}
},
@@ -6373,10 +6741,6 @@
"relevanceScore"
],
"members":{
- "document":{
- "shape":"RerankDocument",
- "documentation":"Contains information about the document.
"
- },
"index":{
"shape":"RerankResultIndexInteger",
"documentation":"The ranking of the document. The lower a number, the higher the document is ranked.
"
@@ -6384,6 +6748,10 @@
"relevanceScore":{
"shape":"Float",
"documentation":"The relevance score of the document.
"
+ },
+ "document":{
+ "shape":"RerankDocument",
+ "documentation":"Contains information about the document.
"
}
},
"documentation":"Contains information about a document that was reranked.
"
@@ -6401,17 +6769,17 @@
"RerankSource":{
"type":"structure",
"required":[
- "inlineDocumentSource",
- "type"
+ "type",
+ "inlineDocumentSource"
],
"members":{
- "inlineDocumentSource":{
- "shape":"RerankDocument",
- "documentation":"Contains an inline definition of a source for reranking.
"
- },
"type":{
"shape":"RerankSourceType",
"documentation":"The type of the source.
"
+ },
+ "inlineDocumentSource":{
+ "shape":"RerankDocument",
+ "documentation":"Contains an inline definition of a source for reranking.
"
}
},
"documentation":"Contains information about a source for reranking.
",
@@ -6447,17 +6815,17 @@
"RerankingConfiguration":{
"type":"structure",
"required":[
- "bedrockRerankingConfiguration",
- "type"
+ "type",
+ "bedrockRerankingConfiguration"
],
"members":{
- "bedrockRerankingConfiguration":{
- "shape":"BedrockRerankingConfiguration",
- "documentation":"Contains configurations for an Amazon Bedrock reranker.
"
- },
"type":{
"shape":"RerankingConfigurationType",
"documentation":"The type of reranker that the configurations apply to.
"
+ },
+ "bedrockRerankingConfiguration":{
+ "shape":"BedrockRerankingConfiguration",
+ "documentation":"Contains configurations for an Amazon Bedrock reranker.
"
}
},
"documentation":"Contains configurations for reranking.
"
@@ -6476,13 +6844,13 @@
"RerankingMetadataSelectiveModeConfiguration":{
"type":"structure",
"members":{
- "fieldsToExclude":{
- "shape":"FieldsForReranking",
- "documentation":"An array of objects, each of which specifies a metadata field to exclude from consideration when reranking.
"
- },
"fieldsToInclude":{
"shape":"FieldsForReranking",
"documentation":"An array of objects, each of which specifies a metadata field to include in consideration when reranking. The remaining metadata fields are ignored.
"
+ },
+ "fieldsToExclude":{
+ "shape":"FieldsForReranking",
+ "documentation":"An array of objects, each of which specifies a metadata field to exclude from consideration when reranking.
"
}
},
"documentation":"Contains configurations for the metadata fields to include or exclude when considering reranking. If you include the fieldsToExclude field, the reranker ignores all the metadata fields that you specify. If you include the fieldsToInclude field, the reranker uses only the metadata fields that you specify and ignores all others. You can include only one of these fields.
",
@@ -6497,7 +6865,7 @@
},
"ResourceName":{
"type":"string",
- "pattern":"^([0-9a-zA-Z][_-]?){1,100}$",
+ "pattern":"([0-9a-zA-Z][_-]?){1,100}",
"sensitive":true
},
"ResourceNotFoundException":{
@@ -6527,46 +6895,30 @@
"ResponseStream":{
"type":"structure",
"members":{
- "accessDeniedException":{
- "shape":"AccessDeniedException",
- "documentation":"The request is denied because of missing access permissions. Check your permissions and retry your request.
"
- },
- "badGatewayException":{
- "shape":"BadGatewayException",
- "documentation":"There was an issue with a dependency due to a server issue. Retry your request.
"
- },
"chunk":{
"shape":"PayloadPart",
"documentation":"Contains a part of an agent response and citations for it.
"
},
- "conflictException":{
- "shape":"ConflictException",
- "documentation":"There was a conflict performing an operation. Resolve the conflict and retry your request.
"
- },
- "dependencyFailedException":{
- "shape":"DependencyFailedException",
- "documentation":"There was an issue with a dependency. Check the resource configurations and retry the request.
"
+ "trace":{
+ "shape":"TracePart",
+ "documentation":"Contains information about the agent and session, alongside the agent's reasoning process and results from calling actions and querying knowledge bases and metadata about the trace. You can use the trace to understand how the agent arrived at the response it provided the customer. For more information, see Trace events.
"
},
- "files":{
- "shape":"FilePart",
- "documentation":"Contains intermediate response for code interpreter if any files have been generated.
"
+ "returnControl":{
+ "shape":"ReturnControlPayload",
+ "documentation":"Contains the parameters and information that the agent elicited from the customer to carry out an action. This information is returned to the system and can be used in your own setup for fulfilling the action.
"
},
"internalServerException":{
"shape":"InternalServerException",
"documentation":"An internal server error occurred. Retry your request.
"
},
- "modelNotReadyException":{
- "shape":"ModelNotReadyException",
- "documentation":" The model specified in the request is not ready to serve Inference requests. The AWS SDK will automatically retry the operation up to 5 times. For information about configuring automatic retries, see Retry behavior in the AWS SDKs and Tools reference guide.
"
+ "validationException":{
+ "shape":"ValidationException",
+ "documentation":"Input validation failed. Check your request parameters and retry the request.
"
},
"resourceNotFoundException":{
"shape":"ResourceNotFoundException",
"documentation":"The specified resource Amazon Resource Name (ARN) was not found. Check the Amazon Resource Name (ARN) and try your request again.
"
},
- "returnControl":{
- "shape":"ReturnControlPayload",
- "documentation":"Contains the parameters and information that the agent elicited from the customer to carry out an action. This information is returned to the system and can be used in your own setup for fulfilling the action.
"
- },
"serviceQuotaExceededException":{
"shape":"ServiceQuotaExceededException",
"documentation":"The number of requests exceeds the service quota. Resubmit your request later.
"
@@ -6575,13 +6927,29 @@
"shape":"ThrottlingException",
"documentation":"The number of requests exceeds the limit. Resubmit your request later.
"
},
- "trace":{
- "shape":"TracePart",
- "documentation":"Contains information about the agent and session, alongside the agent's reasoning process and results from calling actions and querying knowledge bases and metadata about the trace. You can use the trace to understand how the agent arrived at the response it provided the customer. For more information, see Trace events.
"
+ "accessDeniedException":{
+ "shape":"AccessDeniedException",
+ "documentation":"The request is denied because of missing access permissions. Check your permissions and retry your request.
"
},
- "validationException":{
- "shape":"ValidationException",
- "documentation":"Input validation failed. Check your request parameters and retry the request.
"
+ "conflictException":{
+ "shape":"ConflictException",
+ "documentation":"There was a conflict performing an operation. Resolve the conflict and retry your request.
"
+ },
+ "dependencyFailedException":{
+ "shape":"DependencyFailedException",
+ "documentation":"There was an issue with a dependency. Check the resource configurations and retry the request.
"
+ },
+ "badGatewayException":{
+ "shape":"BadGatewayException",
+ "documentation":"There was an issue with a dependency due to a server issue. Retry your request.
"
+ },
+ "modelNotReadyException":{
+ "shape":"ModelNotReadyException",
+ "documentation":" The model specified in the request is not ready to serve Inference requests. The AWS SDK will automatically retry the operation up to 5 times. For information about configuring automatic retries, see Retry behavior in the AWS SDKs and Tools reference guide.
"
+ },
+ "files":{
+ "shape":"FilePart",
+ "documentation":"Contains intermediate response for code interpreter if any files have been generated.
"
}
},
"documentation":"The response from invoking the agent and associated citations and trace information.
",
@@ -6590,14 +6958,14 @@
"RetrievalFilter":{
"type":"structure",
"members":{
- "andAll":{
- "shape":"RetrievalFilterList",
- "documentation":"Knowledge base data sources are returned if their metadata attributes fulfill all the filter conditions inside this list.
"
- },
"equals":{
"shape":"FilterAttribute",
"documentation":"Knowledge base data sources are returned if they contain a metadata attribute whose name matches the key and whose value matches the value in this object.
The following example would return data sources with an animal attribute whose value is cat:
\"equals\": { \"key\": \"animal\", \"value\": \"cat\" }
"
},
+ "notEquals":{
+ "shape":"FilterAttribute",
+ "documentation":"Knowledge base data sources are returned when:
The following example would return data sources that don't contain an animal attribute whose value is cat.
\"notEquals\": { \"key\": \"animal\", \"value\": \"cat\" }
"
+ },
"greaterThan":{
"shape":"FilterAttribute",
"documentation":"Knowledge base data sources are returned if they contain a metadata attribute whose name matches the key and whose value is greater than the value in this object.
The following example would return data sources with an year attribute whose value is greater than 1989:
\"greaterThan\": { \"key\": \"year\", \"value\": 1989 }
"
@@ -6606,10 +6974,6 @@
"shape":"FilterAttribute",
"documentation":"Knowledge base data sources are returned if they contain a metadata attribute whose name matches the key and whose value is greater than or equal to the value in this object.
The following example would return data sources with an year attribute whose value is greater than or equal to 1989:
\"greaterThanOrEquals\": { \"key\": \"year\", \"value\": 1989 }
"
},
- "in":{
- "shape":"FilterAttribute",
- "documentation":"Knowledge base data sources are returned if they contain a metadata attribute whose name matches the key and whose value is in the list specified in the value in this object.
The following example would return data sources with an animal attribute that is either cat or dog:
\"in\": { \"key\": \"animal\", \"value\": [\"cat\", \"dog\"] }
"
- },
"lessThan":{
"shape":"FilterAttribute",
"documentation":"Knowledge base data sources are returned if they contain a metadata attribute whose name matches the key and whose value is less than the value in this object.
The following example would return data sources with an year attribute whose value is less than to 1989.
\"lessThan\": { \"key\": \"year\", \"value\": 1989 }
"
@@ -6618,29 +6982,33 @@
"shape":"FilterAttribute",
"documentation":"Knowledge base data sources are returned if they contain a metadata attribute whose name matches the key and whose value is less than or equal to the value in this object.
The following example would return data sources with an year attribute whose value is less than or equal to 1989.
\"lessThanOrEquals\": { \"key\": \"year\", \"value\": 1989 }
"
},
- "listContains":{
- "shape":"FilterAttribute",
- "documentation":"Knowledge base data sources are returned if they contain a metadata attribute whose name matches the key and whose value is a list that contains the value as one of its members.
The following example would return data sources with an animals attribute that is a list containing a cat member (for example [\"dog\", \"cat\"]).
\"listContains\": { \"key\": \"animals\", \"value\": \"cat\" }
"
- },
- "notEquals":{
+ "in":{
"shape":"FilterAttribute",
- "documentation":"Knowledge base data sources are returned when:
The following example would return data sources that don't contain an animal attribute whose value is cat.
\"notEquals\": { \"key\": \"animal\", \"value\": \"cat\" }
"
+ "documentation":"Knowledge base data sources are returned if they contain a metadata attribute whose name matches the key and whose value is in the list specified in the value in this object.
The following example would return data sources with an animal attribute that is either cat or dog:
\"in\": { \"key\": \"animal\", \"value\": [\"cat\", \"dog\"] }
"
},
"notIn":{
"shape":"FilterAttribute",
"documentation":"Knowledge base data sources are returned if they contain a metadata attribute whose name matches the key and whose value isn't in the list specified in the value in this object.
The following example would return data sources whose animal attribute is neither cat nor dog.
\"notIn\": { \"key\": \"animal\", \"value\": [\"cat\", \"dog\"] }
"
},
- "orAll":{
- "shape":"RetrievalFilterList",
- "documentation":"Knowledge base data sources are returned if their metadata attributes fulfill at least one of the filter conditions inside this list.
"
- },
"startsWith":{
"shape":"FilterAttribute",
"documentation":"Knowledge base data sources are returned if they contain a metadata attribute whose name matches the key and whose value starts with the value in this object. This filter is currently only supported for Amazon OpenSearch Serverless vector stores.
The following example would return data sources with an animal attribute starts with ca (for example, cat or camel).
\"startsWith\": { \"key\": \"animal\", \"value\": \"ca\" }
"
},
+ "listContains":{
+ "shape":"FilterAttribute",
+ "documentation":"Knowledge base data sources are returned if they contain a metadata attribute whose name matches the key and whose value is a list that contains the value as one of its members.
The following example would return data sources with an animals attribute that is a list containing a cat member (for example [\"dog\", \"cat\"]).
\"listContains\": { \"key\": \"animals\", \"value\": \"cat\" }
"
+ },
"stringContains":{
"shape":"FilterAttribute",
"documentation":"Knowledge base data sources are returned if they contain a metadata attribute whose name matches the key and whose value is one of the following:
-
A string that contains the value as a substring. The following example would return data sources with an animal attribute that contains the substring at (for example cat).
\"stringContains\": { \"key\": \"animal\", \"value\": \"at\" }
-
A list with a member that contains the value as a substring. The following example would return data sources with an animals attribute that is a list containing a member that contains the substring at (for example [\"dog\", \"cat\"]).
\"stringContains\": { \"key\": \"animals\", \"value\": \"at\" }
"
+ },
+ "andAll":{
+ "shape":"RetrievalFilterList",
+ "documentation":"Knowledge base data sources are returned if their metadata attributes fulfill all the filter conditions inside this list.
"
+ },
+ "orAll":{
+ "shape":"RetrievalFilterList",
+ "documentation":"Knowledge base data sources are returned if their metadata attributes fulfill at least one of the filter conditions inside this list.
"
}
},
"documentation":"Specifies the filters to use on the metadata attributes in the knowledge base data sources before returning results. For more information, see Query configurations. See the examples below to see how to use these filters.
This data type is used in the following API operations:
",
@@ -6665,6 +7033,14 @@
"RetrievalResultContent":{
"type":"structure",
"members":{
+ "type":{
+ "shape":"RetrievalResultContentType",
+ "documentation":"The type of content in the retrieval result.
"
+ },
+ "text":{
+ "shape":"String",
+ "documentation":"The cited text from the data source.
"
+ },
"byteContent":{
"shape":"String",
"documentation":"A data URI with base64-encoded content from the data source. The URI is in the following format: returned in the following format: data:image/jpeg;base64,${base64-encoded string}.
"
@@ -6672,14 +7048,6 @@
"row":{
"shape":"RetrievalResultContentRow",
"documentation":"Specifies information about the rows with the cells to return in retrieval.
"
- },
- "text":{
- "shape":"String",
- "documentation":"The cited text from the data source.
"
- },
- "type":{
- "shape":"RetrievalResultContentType",
- "documentation":"The type of content in the retrieval result.
"
}
},
"documentation":"Contains information about a chunk of text from a data source in the knowledge base. If the result is from a structured data source, the cell in the database and the type of the value is also identified.
This data type is used in the following API operations:
",
@@ -6752,22 +7120,22 @@
"type":"structure",
"required":["type"],
"members":{
- "confluenceLocation":{
- "shape":"RetrievalResultConfluenceLocation",
- "documentation":"The Confluence data source location.
"
- },
- "customDocumentLocation":{
- "shape":"RetrievalResultCustomDocumentLocation",
- "documentation":"Specifies the location of a document in a custom data source.
"
- },
- "kendraDocumentLocation":{
- "shape":"RetrievalResultKendraDocumentLocation",
- "documentation":"The location of a document in Amazon Kendra.
"
+ "type":{
+ "shape":"RetrievalResultLocationType",
+ "documentation":"The type of data source location.
"
},
"s3Location":{
"shape":"RetrievalResultS3Location",
"documentation":"The S3 data source location.
"
},
+ "webLocation":{
+ "shape":"RetrievalResultWebLocation",
+ "documentation":"The web URL/URLs data source location.
"
+ },
+ "confluenceLocation":{
+ "shape":"RetrievalResultConfluenceLocation",
+ "documentation":"The Confluence data source location.
"
+ },
"salesforceLocation":{
"shape":"RetrievalResultSalesforceLocation",
"documentation":"The Salesforce data source location.
"
@@ -6776,17 +7144,17 @@
"shape":"RetrievalResultSharePointLocation",
"documentation":"The SharePoint data source location.
"
},
+ "customDocumentLocation":{
+ "shape":"RetrievalResultCustomDocumentLocation",
+ "documentation":"Specifies the location of a document in a custom data source.
"
+ },
+ "kendraDocumentLocation":{
+ "shape":"RetrievalResultKendraDocumentLocation",
+ "documentation":"The location of a document in Amazon Kendra.
"
+ },
"sqlLocation":{
"shape":"RetrievalResultSqlLocation",
"documentation":"Specifies information about the SQL query used to retrieve the result.
"
- },
- "type":{
- "shape":"RetrievalResultLocationType",
- "documentation":"The type of data source location.
"
- },
- "webLocation":{
- "shape":"RetrievalResultWebLocation",
- "documentation":"The web URL/URLs data source location.
"
}
},
"documentation":"Contains information about the data source location.
This data type is used in the following API operations:
",
@@ -6819,8 +7187,7 @@
},
"RetrievalResultMetadataValue":{
"type":"structure",
- "members":{
- },
+ "members":{},
"document":true
},
"RetrievalResultS3Location":{
@@ -6877,17 +7244,17 @@
"type":"structure",
"required":["type"],
"members":{
- "externalSourcesConfiguration":{
- "shape":"ExternalSourcesRetrieveAndGenerateConfiguration",
- "documentation":"The configuration for the external source wrapper object in the retrieveAndGenerate function.
"
+ "type":{
+ "shape":"RetrieveAndGenerateType",
+ "documentation":"The type of resource that contains your data for retrieving information and generating responses.
If you choose to use EXTERNAL_SOURCES, then currently only Anthropic Claude 3 Sonnet models for knowledge bases are supported.
"
},
"knowledgeBaseConfiguration":{
"shape":"KnowledgeBaseRetrieveAndGenerateConfiguration",
"documentation":"Contains details about the knowledge base for retrieving information and generating responses.
"
},
- "type":{
- "shape":"RetrieveAndGenerateType",
- "documentation":"The type of resource that contains your data for retrieving information and generating responses.
If you choose to use EXTERNAL_SOURCES, then currently only Anthropic Claude 3 Sonnet models for knowledge bases are supported.
"
+ "externalSourcesConfiguration":{
+ "shape":"ExternalSourcesRetrieveAndGenerateConfiguration",
+ "documentation":"The configuration for the external source wrapper object in the retrieveAndGenerate function.
"
}
},
"documentation":"Contains details about the resource being queried.
This data type is used in the following API operations:
"
@@ -6938,6 +7305,10 @@
"type":"structure",
"required":["input"],
"members":{
+ "sessionId":{
+ "shape":"SessionId",
+ "documentation":"The unique identifier of the session. When you first make a RetrieveAndGenerate request, Amazon Bedrock automatically generates this value. You must reuse this value for all subsequent requests in the same conversational session. This value allows Amazon Bedrock to maintain context and knowledge from previous interactions. You can't explicitly set the sessionId yourself.
"
+ },
"input":{
"shape":"RetrieveAndGenerateInput",
"documentation":"Contains the query to be made to the knowledge base.
"
@@ -6949,20 +7320,24 @@
"sessionConfiguration":{
"shape":"RetrieveAndGenerateSessionConfiguration",
"documentation":"Contains details about the session with the knowledge base.
"
- },
- "sessionId":{
- "shape":"SessionId",
- "documentation":"The unique identifier of the session. When you first make a RetrieveAndGenerate request, Amazon Bedrock automatically generates this value. You must reuse this value for all subsequent requests in the same conversational session. This value allows Amazon Bedrock to maintain context and knowledge from previous interactions. You can't explicitly set the sessionId yourself.
"
}
}
},
"RetrieveAndGenerateResponse":{
"type":"structure",
"required":[
- "output",
- "sessionId"
+ "sessionId",
+ "output"
],
"members":{
+ "sessionId":{
+ "shape":"SessionId",
+ "documentation":"The unique identifier of the session. When you first make a RetrieveAndGenerate request, Amazon Bedrock automatically generates this value. You must reuse this value for all subsequent requests in the same conversational session. This value allows Amazon Bedrock to maintain context and knowledge from previous interactions. You can't explicitly set the sessionId yourself.
"
+ },
+ "output":{
+ "shape":"RetrieveAndGenerateOutput",
+ "documentation":"Contains the response generated from querying the knowledge base.
"
+ },
"citations":{
"shape":"Citations",
"documentation":"A list of segments of the generated response that are based on sources in the knowledge base, alongside information about the sources.
"
@@ -6970,14 +7345,6 @@
"guardrailAction":{
"shape":"GuadrailAction",
"documentation":"Specifies if there is a guardrail intervention in the response.
"
- },
- "output":{
- "shape":"RetrieveAndGenerateOutput",
- "documentation":"Contains the response generated from querying the knowledge base.
"
- },
- "sessionId":{
- "shape":"SessionId",
- "documentation":"The unique identifier of the session. When you first make a RetrieveAndGenerate request, Amazon Bedrock automatically generates this value. You must reuse this value for all subsequent requests in the same conversational session. This value allows Amazon Bedrock to maintain context and knowledge from previous interactions. You can't explicitly set the sessionId yourself.
"
}
}
},
@@ -6996,6 +7363,10 @@
"type":"structure",
"required":["input"],
"members":{
+ "sessionId":{
+ "shape":"SessionId",
+ "documentation":"The unique identifier of the session. When you first make a RetrieveAndGenerate request, Amazon Bedrock automatically generates this value. You must reuse this value for all subsequent requests in the same conversational session. This value allows Amazon Bedrock to maintain context and knowledge from previous interactions. You can't explicitly set the sessionId yourself.
"
+ },
"input":{
"shape":"RetrieveAndGenerateInput",
"documentation":"Contains the query to be made to the knowledge base.
"
@@ -7007,29 +7378,25 @@
"sessionConfiguration":{
"shape":"RetrieveAndGenerateSessionConfiguration",
"documentation":"Contains details about the session with the knowledge base.
"
- },
- "sessionId":{
- "shape":"SessionId",
- "documentation":"The unique identifier of the session. When you first make a RetrieveAndGenerate request, Amazon Bedrock automatically generates this value. You must reuse this value for all subsequent requests in the same conversational session. This value allows Amazon Bedrock to maintain context and knowledge from previous interactions. You can't explicitly set the sessionId yourself.
"
}
}
},
"RetrieveAndGenerateStreamResponse":{
"type":"structure",
"required":[
- "sessionId",
- "stream"
+ "stream",
+ "sessionId"
],
"members":{
+ "stream":{
+ "shape":"RetrieveAndGenerateStreamResponseOutput",
+ "documentation":"A stream of events from the model.
"
+ },
"sessionId":{
"shape":"SessionId",
"documentation":"The session ID.
",
"location":"header",
"locationName":"x-amzn-bedrock-knowledge-base-session-id"
- },
- "stream":{
- "shape":"RetrieveAndGenerateStreamResponseOutput",
- "documentation":"A stream of events from the model.
"
}
},
"payload":"stream"
@@ -7037,26 +7404,14 @@
"RetrieveAndGenerateStreamResponseOutput":{
"type":"structure",
"members":{
- "accessDeniedException":{
- "shape":"AccessDeniedException",
- "documentation":"The request is denied because you do not have sufficient permissions to perform the requested action. For troubleshooting this error, see AccessDeniedException in the Amazon Bedrock User Guide.
"
- },
- "badGatewayException":{
- "shape":"BadGatewayException",
- "documentation":"The request failed due to a bad gateway error.
"
+ "output":{
+ "shape":"RetrieveAndGenerateOutputEvent",
+ "documentation":"An output event.
"
},
"citation":{
"shape":"CitationEvent",
"documentation":"A citation event.
"
},
- "conflictException":{
- "shape":"ConflictException",
- "documentation":"Error occurred because of a conflict while performing an operation.
"
- },
- "dependencyFailedException":{
- "shape":"DependencyFailedException",
- "documentation":"The request failed due to a dependency error.
"
- },
"guardrail":{
"shape":"GuardrailEvent",
"documentation":"A guardrail event.
"
@@ -7065,9 +7420,9 @@
"shape":"InternalServerException",
"documentation":"An internal server error occurred. Retry your request.
"
},
- "output":{
- "shape":"RetrieveAndGenerateOutputEvent",
- "documentation":"An output event.
"
+ "validationException":{
+ "shape":"ValidationException",
+ "documentation":"The input fails to satisfy the constraints specified by Amazon Bedrock. For troubleshooting this error, see ValidationError in the Amazon Bedrock User Guide.
"
},
"resourceNotFoundException":{
"shape":"ResourceNotFoundException",
@@ -7081,9 +7436,21 @@
"shape":"ThrottlingException",
"documentation":"Your request was denied due to exceeding the account quotas for Amazon Bedrock. For troubleshooting this error, see ThrottlingException in the Amazon Bedrock User Guide.
"
},
- "validationException":{
- "shape":"ValidationException",
- "documentation":"The input fails to satisfy the constraints specified by Amazon Bedrock. For troubleshooting this error, see ValidationError in the Amazon Bedrock User Guide.
"
+ "accessDeniedException":{
+ "shape":"AccessDeniedException",
+ "documentation":"The request is denied because you do not have sufficient permissions to perform the requested action. For troubleshooting this error, see AccessDeniedException in the Amazon Bedrock User Guide.
"
+ },
+ "conflictException":{
+ "shape":"ConflictException",
+ "documentation":"Error occurred because of a conflict while performing an operation.
"
+ },
+ "dependencyFailedException":{
+ "shape":"DependencyFailedException",
+ "documentation":"The request failed due to a dependency error.
"
+ },
+ "badGatewayException":{
+ "shape":"BadGatewayException",
+ "documentation":"The request failed due to a bad gateway error.
"
}
},
"documentation":"A retrieve and generate stream response output.
",
@@ -7103,27 +7470,27 @@
"retrievalQuery"
],
"members":{
- "guardrailConfiguration":{
- "shape":"GuardrailConfiguration",
- "documentation":"Guardrail settings.
"
- },
"knowledgeBaseId":{
"shape":"KnowledgeBaseId",
"documentation":"The unique identifier of the knowledge base to query.
",
"location":"uri",
"locationName":"knowledgeBaseId"
},
- "nextToken":{
- "shape":"NextToken",
- "documentation":"If there are more results than can fit in the response, the response returns a nextToken. Use this token in the nextToken field of another request to retrieve the next batch of results.
"
+ "retrievalQuery":{
+ "shape":"KnowledgeBaseQuery",
+ "documentation":"Contains the query to send the knowledge base.
"
},
"retrievalConfiguration":{
"shape":"KnowledgeBaseRetrievalConfiguration",
"documentation":"Contains configurations for the knowledge base query and retrieval process. For more information, see Query configurations.
"
},
- "retrievalQuery":{
- "shape":"KnowledgeBaseQuery",
- "documentation":"Contains the query to send the knowledge base.
"
+ "guardrailConfiguration":{
+ "shape":"GuardrailConfiguration",
+ "documentation":"Guardrail settings.
"
+ },
+ "nextToken":{
+ "shape":"NextToken",
+ "documentation":"If there are more results than can fit in the response, the response returns a nextToken. Use this token in the nextToken field of another request to retrieve the next batch of results.
"
}
}
},
@@ -7131,6 +7498,10 @@
"type":"structure",
"required":["retrievalResults"],
"members":{
+ "retrievalResults":{
+ "shape":"KnowledgeBaseRetrievalResults",
+ "documentation":"A list of results from querying the knowledge base.
"
+ },
"guardrailAction":{
"shape":"GuadrailAction",
"documentation":"Specifies if there is a guardrail intervention in the response.
"
@@ -7138,10 +7509,6 @@
"nextToken":{
"shape":"NextToken",
"documentation":"If there are more results than can fit in the response, the response returns a nextToken. Use this token in the nextToken field of another request to retrieve the next batch of results.
"
- },
- "retrievalResults":{
- "shape":"KnowledgeBaseRetrievalResults",
- "documentation":"A list of results from querying the knowledge base.
"
}
}
},
@@ -7176,13 +7543,13 @@
"ReturnControlPayload":{
"type":"structure",
"members":{
- "invocationId":{
- "shape":"String",
- "documentation":"The identifier of the action group invocation.
"
- },
"invocationInputs":{
"shape":"InvocationInputs",
"documentation":"A list of objects that contain information about the parameters and inputs that need to be sent into the API operation or function, based on what the agent determines from its session with the user.
"
+ },
+ "invocationId":{
+ "shape":"String",
+ "documentation":"The identifier of the action group invocation.
"
}
},
"documentation":"Contains information to return from the action group that the agent has predicted to invoke.
This data type is used in the following API operations:
",
@@ -7206,17 +7573,17 @@
"RoutingClassifierModelInvocationOutput":{
"type":"structure",
"members":{
- "metadata":{
- "shape":"Metadata",
- "documentation":"The invocation's metadata.
"
+ "traceId":{
+ "shape":"TraceId",
+ "documentation":"The invocation's trace ID.
"
},
"rawResponse":{
"shape":"RawResponse",
"documentation":"The invocation's raw response.
"
},
- "traceId":{
- "shape":"TraceId",
- "documentation":"The invocation's trace ID.
"
+ "metadata":{
+ "shape":"Metadata",
+ "documentation":"The invocation's metadata.
"
}
},
"documentation":"Invocation output from a routing classifier model.
",
@@ -7229,6 +7596,10 @@
"shape":"InvocationInput",
"documentation":"The classifier's invocation input.
"
},
+ "observation":{
+ "shape":"Observation",
+ "documentation":"The classifier's observation.
"
+ },
"modelInvocationInput":{
"shape":"ModelInvocationInput",
"documentation":"The classifier's model invocation input.
"
@@ -7236,10 +7607,6 @@
"modelInvocationOutput":{
"shape":"RoutingClassifierModelInvocationOutput",
"documentation":"The classifier's model invocation output.
"
- },
- "observation":{
- "shape":"Observation",
- "documentation":"The classifier's observation.
"
}
},
"documentation":"A trace for a routing classifier.
",
@@ -7250,7 +7617,7 @@
"type":"string",
"max":63,
"min":3,
- "pattern":"^[a-z0-9][\\.\\-a-z0-9]{1,61}[a-z0-9]$"
+ "pattern":"[a-z0-9][\\.\\-a-z0-9]{1,61}[a-z0-9]"
},
"S3Identifier":{
"type":"structure",
@@ -7303,13 +7670,13 @@
"type":"string",
"max":1024,
"min":1,
- "pattern":"^[\\.\\-\\!\\*\\_\\'\\(\\)a-zA-Z0-9][\\.\\-\\!\\*\\_\\'\\(\\)\\/a-zA-Z0-9]*$"
+ "pattern":"[\\.\\-\\!\\*\\_\\'\\(\\)a-zA-Z0-9][\\.\\-\\!\\*\\_\\'\\(\\)\\/a-zA-Z0-9]*"
},
"S3Uri":{
"type":"string",
"max":1024,
"min":1,
- "pattern":"^s3://[a-z0-9][a-z0-9.-]{1,61}[a-z0-9]/.{1,1024}$"
+ "pattern":"s3://[a-z0-9][a-z0-9.-]{1,61}[a-z0-9]/.{1,1024}"
},
"SatisfiedCondition":{
"type":"structure",
@@ -7350,7 +7717,7 @@
},
"SessionArn":{
"type":"string",
- "pattern":"^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]+:[0-9]{12}:session/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$"
+ "pattern":"arn:aws(-[^:]+)?:bedrock:[a-z0-9-]+:[0-9]{12}:session/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}"
},
"SessionAttributesMap":{
"type":"map",
@@ -7361,11 +7728,11 @@
"type":"string",
"max":100,
"min":2,
- "pattern":"^[0-9a-zA-Z._:-]+$"
+ "pattern":"[0-9a-zA-Z._:-]+"
},
"SessionIdentifier":{
"type":"string",
- "pattern":"^(arn:aws(-[^:]+)?:bedrock:[a-z0-9-]+:[0-9]{12}:session/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})|([a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})$"
+ "pattern":"(arn:aws(-[^:]+)?:bedrock:[a-z0-9-]+:[0-9]{12}:session/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})|([a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})"
},
"SessionMetadataKey":{
"type":"string",
@@ -7387,33 +7754,33 @@
"SessionState":{
"type":"structure",
"members":{
- "conversationHistory":{
- "shape":"ConversationHistory",
- "documentation":"The state's conversation history.
"
+ "sessionAttributes":{
+ "shape":"SessionAttributesMap",
+ "documentation":"Contains attributes that persist across a session and the values of those attributes. If sessionAttributes are passed to a supervisor agent in multi-agent collaboration, it will be forwarded to all agent collaborators.
"
},
- "files":{
- "shape":"InputFiles",
- "documentation":"Contains information about the files used by code interpreter.
"
+ "promptSessionAttributes":{
+ "shape":"PromptSessionAttributesMap",
+ "documentation":"Contains attributes that persist across a prompt and the values of those attributes.
-
In orchestration prompt template, these attributes replace the $prompt_session_attributes$ placeholder variable. For more information, see Prompt template placeholder variables.
-
In multi-agent collaboration, the promptSessionAttributes will only be used by supervisor agent when $prompt_session_attributes$ is present in prompt template.
"
+ },
+ "returnControlInvocationResults":{
+ "shape":"ReturnControlInvocationResults",
+ "documentation":"Contains information about the results from the action group invocation. For more information, see Return control to the agent developer and Control session context.
If you include this field, the inputText field will be ignored.
"
},
"invocationId":{
"shape":"String",
"documentation":"The identifier of the invocation of an action. This value must match the invocationId returned in the InvokeAgent response for the action whose results are provided in the returnControlInvocationResults field. For more information, see Return control to the agent developer and Control session context.
"
},
+ "files":{
+ "shape":"InputFiles",
+ "documentation":"Contains information about the files used by code interpreter.
"
+ },
"knowledgeBaseConfigurations":{
"shape":"KnowledgeBaseConfigurations",
"documentation":"An array of configurations, each of which applies to a knowledge base attached to the agent.
"
},
- "promptSessionAttributes":{
- "shape":"PromptSessionAttributesMap",
- "documentation":"Contains attributes that persist across a prompt and the values of those attributes.
-
In orchestration prompt template, these attributes replace the $prompt_session_attributes$ placeholder variable. For more information, see Prompt template placeholder variables.
-
In multi-agent collaboration, the promptSessionAttributes will only be used by supervisor agent when $prompt_session_attributes$ is present in prompt template.
"
- },
- "returnControlInvocationResults":{
- "shape":"ReturnControlInvocationResults",
- "documentation":"Contains information about the results from the action group invocation. For more information, see Return control to the agent developer and Control session context.
If you include this field, the inputText field will be ignored.
"
- },
- "sessionAttributes":{
- "shape":"SessionAttributesMap",
- "documentation":"Contains attributes that persist across a session and the values of those attributes. If sessionAttributes are passed to a supervisor agent in multi-agent collaboration, it will be forwarded to all agent collaborators.
"
+ "conversationHistory":{
+ "shape":"ConversationHistory",
+ "documentation":"The state's conversation history.
"
}
},
"documentation":"Contains parameters that specify various attributes that persist across a session or prompt. You can define session state attributes as key-value pairs when writing a Lambda function for an action group or pass them when making an InvokeAgent request. Use session state attributes to control and provide conversational context for your agent and to help customize your agent's behavior. For more information, see Control session context.
"
@@ -7433,32 +7800,32 @@
"SessionSummary":{
"type":"structure",
"required":[
- "createdAt",
- "lastUpdatedAt",
- "sessionArn",
"sessionId",
- "sessionStatus"
+ "sessionArn",
+ "sessionStatus",
+ "createdAt",
+ "lastUpdatedAt"
],
"members":{
- "createdAt":{
- "shape":"DateTimestamp",
- "documentation":"The timestamp for when the session was created.
"
- },
- "lastUpdatedAt":{
- "shape":"DateTimestamp",
- "documentation":"The timestamp for when the session was last modified.
"
+ "sessionId":{
+ "shape":"Uuid",
+ "documentation":"The unique identifier for the session.
"
},
"sessionArn":{
"shape":"SessionArn",
"documentation":"The Amazon Resource Name (ARN) of the session.
"
},
- "sessionId":{
- "shape":"Uuid",
- "documentation":"The unique identifier for the session.
"
- },
"sessionStatus":{
"shape":"SessionStatus",
"documentation":"The current status of the session.
"
+ },
+ "createdAt":{
+ "shape":"DateTimestamp",
+ "documentation":"The timestamp for when the session was created.
"
+ },
+ "lastUpdatedAt":{
+ "shape":"DateTimestamp",
+ "documentation":"The timestamp for when the session was last modified.
"
}
},
"documentation":"Contains details about a session. For more information about sessions, see Store and retrieve conversation history and context with Amazon Bedrock sessions.
"
@@ -7481,13 +7848,13 @@
"Span":{
"type":"structure",
"members":{
- "end":{
- "shape":"SpanEndInteger",
- "documentation":"Where the text with a citation ends in the generated output.
"
- },
"start":{
"shape":"SpanStartInteger",
"documentation":"Where the text with a citation starts in the generated output.
"
+ },
+ "end":{
+ "shape":"SpanEndInteger",
+ "documentation":"Where the text with a citation ends in the generated output.
"
}
},
"documentation":"Contains information about where the text with a citation begins and ends in the generated output.
This data type is used in the following API operations:
"
@@ -7505,11 +7872,17 @@
"StartFlowExecutionRequest":{
"type":"structure",
"required":[
- "flowAliasIdentifier",
"flowIdentifier",
+ "flowAliasIdentifier",
"inputs"
],
"members":{
+ "flowIdentifier":{
+ "shape":"FlowIdentifier",
+ "documentation":"The unique identifier of the flow to execute.
",
+ "location":"uri",
+ "locationName":"flowIdentifier"
+ },
"flowAliasIdentifier":{
"shape":"FlowAliasIdentifier",
"documentation":"The unique identifier of the flow alias to use for the flow execution.
",
@@ -7520,12 +7893,6 @@
"shape":"FlowExecutionName",
"documentation":"The unique name for the flow execution. If you don't provide one, a system-generated name is used.
"
},
- "flowIdentifier":{
- "shape":"FlowIdentifier",
- "documentation":"The unique identifier of the flow to execute.
",
- "location":"uri",
- "locationName":"flowIdentifier"
- },
"inputs":{
"shape":"FlowInputs",
"documentation":"The input data required for the flow execution. This must match the input schema defined in the flow.
"
@@ -7548,16 +7915,16 @@
"StopFlowExecutionRequest":{
"type":"structure",
"required":[
- "executionIdentifier",
+ "flowIdentifier",
"flowAliasIdentifier",
- "flowIdentifier"
+ "executionIdentifier"
],
"members":{
- "executionIdentifier":{
- "shape":"FlowExecutionIdentifier",
- "documentation":"The unique identifier of the flow execution to stop.
",
+ "flowIdentifier":{
+ "shape":"FlowIdentifier",
+ "documentation":"The unique identifier of the flow.
",
"location":"uri",
- "locationName":"executionIdentifier"
+ "locationName":"flowIdentifier"
},
"flowAliasIdentifier":{
"shape":"FlowAliasIdentifier",
@@ -7565,11 +7932,11 @@
"location":"uri",
"locationName":"flowAliasIdentifier"
},
- "flowIdentifier":{
- "shape":"FlowIdentifier",
- "documentation":"The unique identifier of the flow.
",
+ "executionIdentifier":{
+ "shape":"FlowExecutionIdentifier",
+ "documentation":"The unique identifier of the flow execution to stop.
",
"location":"uri",
- "locationName":"flowIdentifier"
+ "locationName":"executionIdentifier"
}
}
},
@@ -7596,13 +7963,13 @@
"StreamingConfigurations":{
"type":"structure",
"members":{
- "applyGuardrailInterval":{
- "shape":"StreamingConfigurationsApplyGuardrailIntervalInteger",
- "documentation":" The guardrail interval to apply as response is generated. By default, the guardrail interval is set to 50 characters. If a larger interval is specified, the response will be generated in larger chunks with fewer ApplyGuardrail calls. The following examples show the response generated for Hello, I am an agent input string.
Example response in chunks: Interval set to 3 characters
'Hel', 'lo, ','I am', ' an', ' Age', 'nt'
Each chunk has at least 3 characters except for the last chunk
Example response in chunks: Interval set to 20 or more characters
Hello, I am an Agent
"
- },
"streamFinalResponse":{
"shape":"Boolean",
"documentation":" Specifies whether to enable streaming for the final response. This is set to false by default.
"
+ },
+ "applyGuardrailInterval":{
+ "shape":"StreamingConfigurationsApplyGuardrailIntervalInteger",
+ "documentation":" The guardrail interval to apply as response is generated. By default, the guardrail interval is set to 50 characters. If a larger interval is specified, the response will be generated in larger chunks with fewer ApplyGuardrail calls. The following examples show the response generated for Hello, I am an agent input string.
Example response in chunks: Interval set to 3 characters
'Hel', 'lo, ','I am', ' an', ' Age', 'nt'
Each chunk has at least 3 characters except for the last chunk
Example response in chunks: Interval set to 20 or more characters
Hello, I am an Agent
"
}
},
"documentation":"Configurations for streaming.
"
@@ -7627,7 +7994,7 @@
"documentation":"Key of a tag
",
"max":128,
"min":1,
- "pattern":"^[a-zA-Z0-9\\s._:/=+@-]*$"
+ "pattern":"[a-zA-Z0-9\\s._:/=+@-]*"
},
"TagKeyList":{
"type":"list",
@@ -7657,22 +8024,21 @@
},
"TagResourceResponse":{
"type":"structure",
- "members":{
- }
+ "members":{}
},
"TagValue":{
"type":"string",
"documentation":"Value of a tag
",
"max":256,
"min":0,
- "pattern":"^[a-zA-Z0-9\\s._:/=+@-]*$"
+ "pattern":"[a-zA-Z0-9\\s._:/=+@-]*"
},
"TaggableResourcesArn":{
"type":"string",
"documentation":"ARN of Taggable resources: [session]
",
"max":1011,
"min":20,
- "pattern":"(^arn:aws(-[^:]+)?:bedrock:[a-zA-Z0-9-]+:[0-9]{12}:(session)/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$)"
+ "pattern":".*(^arn:aws(-[^:]+)?:bedrock:[a-zA-Z0-9-]+:[0-9]{12}:(session)/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$).*"
},
"TagsMap":{
"type":"map",
@@ -7691,14 +8057,6 @@
"TextInferenceConfig":{
"type":"structure",
"members":{
- "maxTokens":{
- "shape":"MaxTokens",
- "documentation":"The maximum number of tokens to generate in the output text. Do not use the minimum of 0 or the maximum of 65536. The limit values described here are arbitary values, for actual values consult the limits defined by your specific model.
"
- },
- "stopSequences":{
- "shape":"RAGStopSequences",
- "documentation":"A list of sequences of characters that, if generated, will cause the model to stop generating further tokens. Do not use a minimum length of 1 or a maximum length of 1000. The limit values described here are arbitary values, for actual values consult the limits defined by your specific model.
"
- },
"temperature":{
"shape":"Temperature",
"documentation":" Controls the random-ness of text generated by the language model, influencing how much the model sticks to the most predictable next words versus exploring more surprising options. A lower temperature value (e.g. 0.2 or 0.3) makes model outputs more deterministic or predictable, while a higher temperature (e.g. 0.8 or 0.9) makes the outputs more creative or unpredictable.
"
@@ -7706,6 +8064,14 @@
"topP":{
"shape":"TopP",
"documentation":" A probability distribution threshold which controls what the model considers for the set of possible next tokens. The model will only consider the top p% of the probability distribution when generating the next token.
"
+ },
+ "maxTokens":{
+ "shape":"MaxTokens",
+ "documentation":"The maximum number of tokens to generate in the output text. Do not use the minimum of 0 or the maximum of 65536. The limit values described here are arbitary values, for actual values consult the limits defined by your specific model.
"
+ },
+ "stopSequences":{
+ "shape":"RAGStopSequences",
+ "documentation":"A list of sequences of characters that, if generated, will cause the model to stop generating further tokens. Do not use a minimum length of 1 or a maximum length of 1000. The limit values described here are arbitary values, for actual values consult the limits defined by your specific model.
"
}
},
"documentation":"Configuration settings for text generation using a language model via the RetrieveAndGenerate operation. Includes parameters like temperature, top-p, maximum token count, and stop sequences.
The valid range of maxTokens depends on the accepted values for your chosen model's inference parameters. To see the inference parameters for your model, see Inference parameters for foundation models.
"
@@ -7736,13 +8102,13 @@
"TextResponsePart":{
"type":"structure",
"members":{
- "span":{
- "shape":"Span",
- "documentation":"Contains information about where the text with a citation begins and ends in the generated output.
"
- },
"text":{
"shape":"String",
"documentation":"The part of the generated text that contains a citation.
"
+ },
+ "span":{
+ "shape":"Span",
+ "documentation":"Contains information about where the text with a citation begins and ends in the generated output.
"
}
},
"documentation":"Contains the part of the generated text that contains a citation, alongside where it begins and ends.
This data type is used in the following API operations:
",
@@ -7752,13 +8118,13 @@
"type":"structure",
"required":["type"],
"members":{
- "knowledgeBaseConfiguration":{
- "shape":"TextToSqlKnowledgeBaseConfiguration",
- "documentation":"Specifies configurations for a knowledge base to use in transformation.
"
- },
"type":{
"shape":"TextToSqlConfigurationType",
"documentation":"The type of resource to use in transformation.
"
+ },
+ "knowledgeBaseConfiguration":{
+ "shape":"TextToSqlKnowledgeBaseConfiguration",
+ "documentation":"Specifies configurations for a knowledge base to use in transformation.
"
}
},
"documentation":"Contains configurations for transforming text to SQL.
"
@@ -7805,18 +8171,14 @@
"Trace":{
"type":"structure",
"members":{
- "customOrchestrationTrace":{
- "shape":"CustomOrchestrationTrace",
- "documentation":" Details about the custom orchestration step in which the agent determines the order in which actions are executed.
"
- },
- "failureTrace":{
- "shape":"FailureTrace",
- "documentation":"Contains information about the failure of the interaction.
"
- },
"guardrailTrace":{
"shape":"GuardrailTrace",
"documentation":"The trace details for a trace defined in the Guardrail filter.
"
},
+ "preProcessingTrace":{
+ "shape":"PreProcessingTrace",
+ "documentation":"Details about the pre-processing step, in which the agent contextualizes and categorizes user inputs.
"
+ },
"orchestrationTrace":{
"shape":"OrchestrationTrace",
"documentation":"Details about the orchestration step, in which the agent determines the order in which actions are executed and which knowledge bases are retrieved.
"
@@ -7825,19 +8187,35 @@
"shape":"PostProcessingTrace",
"documentation":"Details about the post-processing step, in which the agent shapes the response..
"
},
- "preProcessingTrace":{
- "shape":"PreProcessingTrace",
- "documentation":"Details about the pre-processing step, in which the agent contextualizes and categorizes user inputs.
"
- },
"routingClassifierTrace":{
"shape":"RoutingClassifierTrace",
"documentation":"A routing classifier's trace.
"
+ },
+ "failureTrace":{
+ "shape":"FailureTrace",
+ "documentation":"Contains information about the failure of the interaction.
"
+ },
+ "customOrchestrationTrace":{
+ "shape":"CustomOrchestrationTrace",
+ "documentation":" Details about the custom orchestration step in which the agent determines the order in which actions are executed.
"
}
},
"documentation":"Contains one part of the agent's reasoning process and results from calling API actions and querying knowledge bases. You can use the trace to understand how the agent arrived at the response it provided the customer. For more information, see Trace enablement.
",
"sensitive":true,
"union":true
},
+ "TraceElements":{
+ "type":"structure",
+ "members":{
+ "agentTraces":{
+ "shape":"AgentTraces",
+ "documentation":"Agent trace information for the flow execution.
"
+ }
+ },
+ "documentation":"Contains trace elements for flow execution tracking.
",
+ "sensitive":true,
+ "union":true
+ },
"TraceId":{
"type":"string",
"max":16,
@@ -7850,37 +8228,37 @@
"TracePart":{
"type":"structure",
"members":{
- "agentAliasId":{
- "shape":"AgentAliasId",
- "documentation":"The unique identifier of the alias of the agent.
"
- },
- "agentId":{
- "shape":"AgentId",
- "documentation":"The unique identifier of the agent.
"
+ "sessionId":{
+ "shape":"SessionId",
+ "documentation":"The unique identifier of the session with the agent.
"
},
- "agentVersion":{
- "shape":"AgentVersion",
- "documentation":"The version of the agent.
"
+ "trace":{
+ "shape":"Trace",
+ "documentation":"Contains one part of the agent's reasoning process and results from calling API actions and querying knowledge bases. You can use the trace to understand how the agent arrived at the response it provided the customer. For more information, see Trace enablement.
"
},
"callerChain":{
"shape":"CallerChain",
"documentation":"The part's caller chain.
"
},
+ "eventTime":{
+ "shape":"SyntheticTimestamp_date_time",
+ "documentation":" The time of the trace.
"
+ },
"collaboratorName":{
"shape":"Name",
"documentation":"The part's collaborator name.
"
},
- "eventTime":{
- "shape":"SyntheticTimestamp_date_time",
- "documentation":" The time of the trace.
"
+ "agentId":{
+ "shape":"AgentId",
+ "documentation":"The unique identifier of the agent.
"
},
- "sessionId":{
- "shape":"SessionId",
- "documentation":"The unique identifier of the session with the agent.
"
+ "agentAliasId":{
+ "shape":"AgentAliasId",
+ "documentation":"The unique identifier of the alias of the agent.
"
},
- "trace":{
- "shape":"Trace",
- "documentation":"Contains one part of the agent's reasoning process and results from calling API actions and querying knowledge bases. You can use the trace to understand how the agent arrived at the response it provided the customer. For more information, see Trace enablement.
"
+ "agentVersion":{
+ "shape":"AgentVersion",
+ "documentation":"The version of the agent.
"
}
},
"documentation":"Contains information about the agent and session, alongside the agent's reasoning process and results from calling API actions and querying knowledge bases and metadata about the trace. You can use the trace to understand how the agent arrived at the response it provided the customer. For more information, see Trace enablement.
",
@@ -7936,54 +8314,53 @@
},
"UntagResourceResponse":{
"type":"structure",
- "members":{
- }
+ "members":{}
},
"UpdateSessionRequest":{
"type":"structure",
"required":["sessionIdentifier"],
"members":{
+ "sessionMetadata":{
+ "shape":"SessionMetadataMap",
+ "documentation":"A map of key-value pairs containing attributes to be persisted across the session. For example the user's ID, their language preference, and the type of device they are using.
"
+ },
"sessionIdentifier":{
"shape":"SessionIdentifier",
"documentation":"The unique identifier of the session to modify. You can specify either the session's sessionId or its Amazon Resource Name (ARN).
",
"location":"uri",
"locationName":"sessionIdentifier"
- },
- "sessionMetadata":{
- "shape":"SessionMetadataMap",
- "documentation":"A map of key-value pairs containing attributes to be persisted across the session. For example the user's ID, their language preference, and the type of device they are using.
"
}
}
},
"UpdateSessionResponse":{
"type":"structure",
"required":[
- "createdAt",
- "lastUpdatedAt",
- "sessionArn",
"sessionId",
- "sessionStatus"
+ "sessionArn",
+ "sessionStatus",
+ "createdAt",
+ "lastUpdatedAt"
],
"members":{
- "createdAt":{
- "shape":"DateTimestamp",
- "documentation":"The timestamp for when the session was created.
"
- },
- "lastUpdatedAt":{
- "shape":"DateTimestamp",
- "documentation":"The timestamp for when the session was last modified.
"
+ "sessionId":{
+ "shape":"Uuid",
+ "documentation":"The unique identifier of the session you updated.
"
},
"sessionArn":{
"shape":"SessionArn",
"documentation":"The Amazon Resource Name (ARN) of the session that was updated.
"
},
- "sessionId":{
- "shape":"Uuid",
- "documentation":"The unique identifier of the session you updated.
"
- },
"sessionStatus":{
"shape":"SessionStatus",
"documentation":"The status of the session you updated.
"
+ },
+ "createdAt":{
+ "shape":"DateTimestamp",
+ "documentation":"The timestamp for when the session was created.
"
+ },
+ "lastUpdatedAt":{
+ "shape":"DateTimestamp",
+ "documentation":"The timestamp for when the session was last modified.
"
}
}
},
@@ -8004,7 +8381,7 @@
},
"Uuid":{
"type":"string",
- "pattern":"^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$"
+ "pattern":"[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}"
},
"ValidationException":{
"type":"structure",
@@ -8022,10 +8399,6 @@
"type":"structure",
"required":["modelConfiguration"],
"members":{
- "metadataConfiguration":{
- "shape":"MetadataConfigurationForReranking",
- "documentation":"Contains configurations for the metadata to use in reranking.
"
- },
"modelConfiguration":{
"shape":"VectorSearchBedrockRerankingModelConfiguration",
"documentation":"Contains configurations for the reranker model.
"
@@ -8033,6 +8406,10 @@
"numberOfRerankedResults":{
"shape":"VectorSearchBedrockRerankingConfigurationNumberOfRerankedResultsInteger",
"documentation":"The number of results to return after reranking.
"
+ },
+ "metadataConfiguration":{
+ "shape":"MetadataConfigurationForReranking",
+ "documentation":"Contains configurations for the metadata to use in reranking.
"
}
},
"documentation":"Contains configurations for reranking with an Amazon Bedrock reranker model.
"
@@ -8047,13 +8424,13 @@
"type":"structure",
"required":["modelArn"],
"members":{
- "additionalModelRequestFields":{
- "shape":"AdditionalModelRequestFields",
- "documentation":"A JSON object whose keys are request fields for the model and whose values are values for those fields.
"
- },
"modelArn":{
"shape":"BedrockRerankingModelArn",
"documentation":"The ARN of the reranker model to use.
"
+ },
+ "additionalModelRequestFields":{
+ "shape":"AdditionalModelRequestFields",
+ "documentation":"A JSON object whose keys are request fields for the model and whose values are values for those fields.
"
}
},
"documentation":"Contains configurations for an Amazon Bedrock reranker model.
"
@@ -8062,13 +8439,13 @@
"type":"structure",
"required":["type"],
"members":{
- "bedrockRerankingConfiguration":{
- "shape":"VectorSearchBedrockRerankingConfiguration",
- "documentation":"Contains configurations for an Amazon Bedrock reranker model.
"
- },
"type":{
"shape":"VectorSearchRerankingConfigurationType",
"documentation":"The type of reranker model.
"
+ },
+ "bedrockRerankingConfiguration":{
+ "shape":"VectorSearchBedrockRerankingConfiguration",
+ "documentation":"Contains configurations for an Amazon Bedrock reranker model.
"
}
},
"documentation":"Contains configurations for reranking the retrieved results.
"
@@ -8085,7 +8462,7 @@
"type":"string",
"max":5,
"min":1,
- "pattern":"^(DRAFT|[0-9]{0,4}[1-9][0-9]{0,4})$"
+ "pattern":"(DRAFT|[0-9]{0,4}[1-9][0-9]{0,4})"
}
},
"documentation":"Contains APIs related to model invocation and querying of knowledge bases.
"
diff --git a/services/bedrockagentruntime/src/main/resources/codegen-resources/waiters-2.json b/services/bedrockagentruntime/src/main/resources/codegen-resources/waiters-2.json
new file mode 100644
index 000000000000..13f60ee66be6
--- /dev/null
+++ b/services/bedrockagentruntime/src/main/resources/codegen-resources/waiters-2.json
@@ -0,0 +1,5 @@
+{
+ "version": 2,
+ "waiters": {
+ }
+}
From d5a6ea48052a1bafb352f6814be7f5e26b8c813d Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 26 Sep 2025 19:10:28 +0000
Subject: [PATCH 114/121] Data Automation for Amazon Bedrock Update: Added
support for configurable Speaker Labeling and Channel Labeling features for
Audio modality.
---
...ataAutomationforAmazonBedrock-f99328a.json | 6 +++
.../codegen-resources/service-2.json | 43 ++++++++++++++++---
2 files changed, 42 insertions(+), 7 deletions(-)
create mode 100644 .changes/next-release/feature-DataAutomationforAmazonBedrock-f99328a.json
diff --git a/.changes/next-release/feature-DataAutomationforAmazonBedrock-f99328a.json b/.changes/next-release/feature-DataAutomationforAmazonBedrock-f99328a.json
new file mode 100644
index 000000000000..b50b6f3fac67
--- /dev/null
+++ b/.changes/next-release/feature-DataAutomationforAmazonBedrock-f99328a.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Data Automation for Amazon Bedrock",
+ "contributor": "",
+ "description": "Added support for configurable Speaker Labeling and Channel Labeling features for Audio modality."
+}
diff --git a/services/bedrockdataautomation/src/main/resources/codegen-resources/service-2.json b/services/bedrockdataautomation/src/main/resources/codegen-resources/service-2.json
index 5324676bac64..4e7ee19e2698 100644
--- a/services/bedrockdataautomation/src/main/resources/codegen-resources/service-2.json
+++ b/services/bedrockdataautomation/src/main/resources/codegen-resources/service-2.json
@@ -298,7 +298,8 @@
"required":["state"],
"members":{
"state":{"shape":"State"},
- "types":{"shape":"AudioExtractionCategoryTypes"}
+ "types":{"shape":"AudioExtractionCategoryTypes"},
+ "typeConfiguration":{"shape":"AudioExtractionCategoryTypeConfiguration"}
},
"documentation":"Category of Audio Extraction
"
},
@@ -310,6 +311,13 @@
"TOPIC_CONTENT_MODERATION"
]
},
+ "AudioExtractionCategoryTypeConfiguration":{
+ "type":"structure",
+ "members":{
+ "transcript":{"shape":"TranscriptConfiguration"}
+ },
+ "documentation":"Configuration for different audio extraction category types
"
+ },
"AudioExtractionCategoryTypes":{
"type":"list",
"member":{"shape":"AudioExtractionCategoryType"},
@@ -476,6 +484,14 @@
"member":{"shape":"BlueprintSummary"},
"documentation":"List of Blueprints
"
},
+ "ChannelLabelingConfiguration":{
+ "type":"structure",
+ "required":["state"],
+ "members":{
+ "state":{"shape":"State"}
+ },
+ "documentation":"Channel labeling configuration
"
+ },
"ClientToken":{
"type":"string",
"documentation":"Client specified token used for idempotency checks
",
@@ -715,8 +731,7 @@
},
"DeleteBlueprintResponse":{
"type":"structure",
- "members":{
- },
+ "members":{},
"documentation":"Delete Blueprint Response
"
},
"DeleteDataAutomationProjectRequest":{
@@ -1171,6 +1186,14 @@
},
"exception":true
},
+ "SpeakerLabelingConfiguration":{
+ "type":"structure",
+ "required":["state"],
+ "members":{
+ "state":{"shape":"State"}
+ },
+ "documentation":"Speaker labeling configuration
"
+ },
"SplitterConfiguration":{
"type":"structure",
"members":{
@@ -1241,8 +1264,7 @@
},
"TagResourceResponse":{
"type":"structure",
- "members":{
- }
+ "members":{}
},
"TagValue":{
"type":"string",
@@ -1269,6 +1291,14 @@
},
"exception":true
},
+ "TranscriptConfiguration":{
+ "type":"structure",
+ "members":{
+ "speakerLabeling":{"shape":"SpeakerLabelingConfiguration"},
+ "channelLabeling":{"shape":"ChannelLabelingConfiguration"}
+ },
+ "documentation":"Configuration for transcript related features
"
+ },
"Type":{
"type":"string",
"documentation":"Type
",
@@ -1292,8 +1322,7 @@
},
"UntagResourceResponse":{
"type":"structure",
- "members":{
- }
+ "members":{}
},
"UpdateBlueprintRequest":{
"type":"structure",
From 76ace8c43a3d5b3a0df1a88f877af47694128bf5 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 26 Sep 2025 19:10:31 +0000
Subject: [PATCH 115/121] Amazon Connect Service Update: Adds supports for
manual contact picking (WorkList) operations on Routing Profiles, Agent
Management and SearchContacts APIs.
---
.../feature-AmazonConnectService-59fe9fd.json | 6 +
.../codegen-resources/paginators-1.json | 10 +
.../codegen-resources/service-2.json | 338 +++++++++++++++++-
3 files changed, 345 insertions(+), 9 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonConnectService-59fe9fd.json
diff --git a/.changes/next-release/feature-AmazonConnectService-59fe9fd.json b/.changes/next-release/feature-AmazonConnectService-59fe9fd.json
new file mode 100644
index 000000000000..75edbd987dca
--- /dev/null
+++ b/.changes/next-release/feature-AmazonConnectService-59fe9fd.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Amazon Connect Service",
+ "contributor": "",
+ "description": "Adds supports for manual contact picking (WorkList) operations on Routing Profiles, Agent Management and SearchContacts APIs."
+}
diff --git a/services/connect/src/main/resources/codegen-resources/paginators-1.json b/services/connect/src/main/resources/codegen-resources/paginators-1.json
index 0015869326c2..fb423c472d86 100644
--- a/services/connect/src/main/resources/codegen-resources/paginators-1.json
+++ b/services/connect/src/main/resources/codegen-resources/paginators-1.json
@@ -199,6 +199,16 @@
"limit_key": "MaxResults",
"output_token": "NextToken"
},
+ "ListRoutingProfileManualAssignmentQueues": {
+ "input_token": "NextToken",
+ "limit_key": "MaxResults",
+ "non_aggregate_keys": [
+ "LastModifiedRegion",
+ "LastModifiedTime"
+ ],
+ "output_token": "NextToken",
+ "result_key": "RoutingProfileManualAssignmentQueueConfigSummaryList"
+ },
"ListRoutingProfileQueues": {
"input_token": "NextToken",
"limit_key": "MaxResults",
diff --git a/services/connect/src/main/resources/codegen-resources/service-2.json b/services/connect/src/main/resources/codegen-resources/service-2.json
index 36a3bf496abf..a1bb6c9fabaa 100644
--- a/services/connect/src/main/resources/codegen-resources/service-2.json
+++ b/services/connect/src/main/resources/codegen-resources/service-2.json
@@ -85,6 +85,24 @@
],
"documentation":"This API is in preview release for Amazon Connect and is subject to change.
Allows the specified Amazon Connect instance to access the specified Amazon Lex or Amazon Lex V2 bot.
"
},
+ "AssociateContactWithUser":{
+ "name":"AssociateContactWithUser",
+ "http":{
+ "method":"POST",
+ "requestUri":"/contacts/{InstanceId}/{ContactId}/associate-user"
+ },
+ "input":{"shape":"AssociateContactWithUserRequest"},
+ "output":{"shape":"AssociateContactWithUserResponse"},
+ "errors":[
+ {"shape":"InvalidRequestException"},
+ {"shape":"InvalidParameterException"},
+ {"shape":"AccessDeniedException"},
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"ThrottlingException"},
+ {"shape":"InternalServiceException"}
+ ],
+ "documentation":"Associates a queued contact with an agent.
Use cases
Following are common uses cases for this API:
-
Custom contact routing. You can build custom contact routing mechanisms beyond the default system routing in Amazon Connect. You can create tailored contact distribution logic that offers queued contacts directly to specific agents.
-
Manual contact assignment. You can programmatically assign queued contacts to available users. This provides flexibility to contact centers that require manual oversight or specialized routing workflows outside of standard queue management.
For information about how manual contact assignment works in the agent workspace, see the Access the Worklist app in the Amazon Connect agent workspace in the Amazon Connect Administrator Guide.
Important things to know
-
Use this API chat/SMS, email, and task contacts. It does not support voice contacts.
-
Use it to associate contacts with users regardless of their current state, including custom states. Ensure your application logic accounts for user availability before making associations.
-
It honors the IAM context key connect:PreferredUserArn to prevent unauthorized contact associations.
-
It respects the IAM context key connect:PreferredUserArn to enforce authorization controls and prevent unauthorized contact associations. Verify that your IAM policies are properly configured to support your intended use cases.
Endpoints: See Amazon Connect endpoints and quotas.
"
+ },
"AssociateDefaultVocabulary":{
"name":"AssociateDefaultVocabulary",
"http":{
@@ -2897,6 +2915,23 @@
],
"documentation":"Provides a list of analysis segments for a real-time chat analysis session. This API supports CHAT channels only.
This API does not support VOICE. If you attempt to use it for VOICE, an InvalidRequestException occurs.
"
},
+ "ListRoutingProfileManualAssignmentQueues":{
+ "name":"ListRoutingProfileManualAssignmentQueues",
+ "http":{
+ "method":"GET",
+ "requestUri":"/routing-profiles/{InstanceId}/{RoutingProfileId}/manual-assignment-queues"
+ },
+ "input":{"shape":"ListRoutingProfileManualAssignmentQueuesRequest"},
+ "output":{"shape":"ListRoutingProfileManualAssignmentQueuesResponse"},
+ "errors":[
+ {"shape":"InvalidRequestException"},
+ {"shape":"InvalidParameterException"},
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"ThrottlingException"},
+ {"shape":"InternalServiceException"}
+ ],
+ "documentation":"Lists the manual assignment queues associated with a routing profile.
Use cases
Following are common uses cases for this API:
-
This API returns list of queues where contacts can be manually assigned or picked. The user can additionally filter on queues, if they have access to those queues (otherwise a invalid request exception will be thrown).
For information about how manual contact assignment works in the agent workspace, see the Access the Worklist app in the Amazon Connect agent workspace in the Amazon Connect Administrator Guide.
Important things to know
Endpoints: See Amazon Connect endpoints and quotas.
"
+ },
"ListRoutingProfileQueues":{
"name":"ListRoutingProfileQueues",
"http":{
@@ -5679,6 +5714,36 @@
}
}
},
+ "AssociateContactWithUserRequest":{
+ "type":"structure",
+ "required":[
+ "InstanceId",
+ "ContactId",
+ "UserId"
+ ],
+ "members":{
+ "InstanceId":{
+ "shape":"InstanceId",
+ "documentation":"The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
",
+ "location":"uri",
+ "locationName":"InstanceId"
+ },
+ "ContactId":{
+ "shape":"ContactId",
+ "documentation":"The identifier of the contact in this instance of Amazon Connect.
",
+ "location":"uri",
+ "locationName":"ContactId"
+ },
+ "UserId":{
+ "shape":"AgentResourceId",
+ "documentation":"The identifier for the user. This can be the ID or the ARN of the user.
"
+ }
+ }
+ },
+ "AssociateContactWithUserResponse":{
+ "type":"structure",
+ "members":{}
+ },
"AssociateDefaultVocabularyRequest":{
"type":"structure",
"required":[
@@ -5881,8 +5946,7 @@
"type":"structure",
"required":[
"InstanceId",
- "RoutingProfileId",
- "QueueConfigs"
+ "RoutingProfileId"
],
"members":{
"InstanceId":{
@@ -5900,6 +5964,10 @@
"QueueConfigs":{
"shape":"RoutingProfileQueueConfigList",
"documentation":"The queues to associate with this routing profile.
"
+ },
+ "ManualAssignmentQueueConfigs":{
+ "shape":"RoutingProfileManualAssignmentQueueConfigList",
+ "documentation":"The manual assignment queues to associate with this routing profile.
"
}
}
},
@@ -7824,7 +7892,7 @@
"documentation":"The message.
"
}
},
- "documentation":"The contact with the specified ID is not active or does not exist. Applies to Voice calls only, not to Chat or Task contacts.
",
+ "documentation":"The contact with the specified ID is not active or does not exist.
",
"error":{"httpStatusCode":410},
"exception":true
},
@@ -7891,7 +7959,12 @@
"SegmentAttributes":{
"shape":"ContactSearchSummarySegmentAttributes",
"documentation":"Set of segment attributes for a contact.
"
- }
+ },
+ "Name":{
+ "shape":"Name",
+ "documentation":"Indicates name of the contact.
"
+ },
+ "RoutingCriteria":{"shape":"RoutingCriteria"}
},
"documentation":"Information of returned contact.
"
},
@@ -7929,6 +8002,10 @@
"ValueString":{
"shape":"SegmentAttributeValueString",
"documentation":"The value of a segment attribute represented as a string.
"
+ },
+ "ValueMap":{
+ "shape":"SegmentAttributeValueMap",
+ "documentation":"The key and value of a segment attribute.
"
}
},
"documentation":"The value of a segment attribute. This is structured as a map with a single key-value pair. The key 'valueString' indicates that the attribute type is a string, and its corresponding value is the actual string value of the segment attribute.
"
@@ -9014,6 +9091,10 @@
"shape":"RoutingProfileQueueConfigList",
"documentation":"The inbound queues associated with the routing profile. If no queue is added, the agent can make only outbound calls.
The limit of 10 array members applies to the maximum number of RoutingProfileQueueConfig objects that can be passed during a CreateRoutingProfile API request. It is different from the quota of 50 queues per routing profile per instance that is listed in Amazon Connect service quotas.
"
},
+ "ManualAssignmentQueueConfigs":{
+ "shape":"RoutingProfileManualAssignmentQueueConfigList",
+ "documentation":"The manual assignment queues associated with the routing profile. If no queue is added, agents and supervisors can't pick or assign any contacts from this routing profile. The limit of 10 array members applies to the maximum number of RoutingProfileManualAssignmentQueueConfig objects that can be passed during a CreateRoutingProfile API request. It is different from the quota of 50 queues per routing profile per instance that is listed in Amazon Connect service quotas.
"
+ },
"MediaConcurrencies":{
"shape":"MediaConcurrencies",
"documentation":"The channels that agents can handle in the Contact Control Panel (CCP) for this routing profile.
"
@@ -11783,8 +11864,7 @@
"type":"structure",
"required":[
"InstanceId",
- "RoutingProfileId",
- "QueueReferences"
+ "RoutingProfileId"
],
"members":{
"InstanceId":{
@@ -11802,6 +11882,10 @@
"QueueReferences":{
"shape":"RoutingProfileQueueReferenceList",
"documentation":"The queues to disassociate from this routing profile.
"
+ },
+ "ManualAssignmentQueueReferences":{
+ "shape":"RoutingProfileQueueReferenceList",
+ "documentation":"The manual assignment queues to disassociate with this routing profile.
"
}
}
},
@@ -17016,6 +17100,61 @@
}
}
},
+ "ListRoutingProfileManualAssignmentQueuesRequest":{
+ "type":"structure",
+ "required":[
+ "InstanceId",
+ "RoutingProfileId"
+ ],
+ "members":{
+ "InstanceId":{
+ "shape":"InstanceId",
+ "documentation":"The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
",
+ "location":"uri",
+ "locationName":"InstanceId"
+ },
+ "RoutingProfileId":{
+ "shape":"RoutingProfileId",
+ "documentation":"The identifier of the routing profile.
",
+ "location":"uri",
+ "locationName":"RoutingProfileId"
+ },
+ "NextToken":{
+ "shape":"NextToken",
+ "documentation":"The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
",
+ "location":"querystring",
+ "locationName":"nextToken"
+ },
+ "MaxResults":{
+ "shape":"MaxResult100",
+ "documentation":"The maximum number of results to return per page.
",
+ "box":true,
+ "location":"querystring",
+ "locationName":"maxResults"
+ }
+ }
+ },
+ "ListRoutingProfileManualAssignmentQueuesResponse":{
+ "type":"structure",
+ "members":{
+ "NextToken":{
+ "shape":"NextToken",
+ "documentation":"If there are additional results, this is the token for the next set of results.
"
+ },
+ "RoutingProfileManualAssignmentQueueConfigSummaryList":{
+ "shape":"RoutingProfileManualAssignmentQueueConfigSummaryList",
+ "documentation":"Information about the manual assignment queues associated with the routing profile.
"
+ },
+ "LastModifiedTime":{
+ "shape":"Timestamp",
+ "documentation":"The timestamp when this resource was last modified.
"
+ },
+ "LastModifiedRegion":{
+ "shape":"RegionName",
+ "documentation":"The Amazon Web Services Region where this resource was last modified.
"
+ }
+ }
+ },
"ListRoutingProfileQueuesRequest":{
"type":"structure",
"required":[
@@ -18121,6 +18260,24 @@
"min":1,
"pattern":"(^[\\S].*[\\S]$)|(^[\\S]$)"
},
+ "NameCriteria":{
+ "type":"structure",
+ "required":[
+ "SearchText",
+ "MatchType"
+ ],
+ "members":{
+ "SearchText":{
+ "shape":"SearchTextList",
+ "documentation":"The words or phrases used to match the contact name.
"
+ },
+ "MatchType":{
+ "shape":"SearchContactsMatchType",
+ "documentation":"The match type combining name search criteria using multiple search texts in a name criteria.
"
+ }
+ },
+ "documentation":"The search criteria based on the contact name
"
+ },
"Namespace":{
"type":"string",
"max":128,
@@ -20922,6 +21079,10 @@
"shape":"Long",
"documentation":"The number of associated queues in routing profile.
"
},
+ "NumberOfAssociatedManualAssignmentQueues":{
+ "shape":"Long",
+ "documentation":"The number of associated manual assignment queues in routing profile.
"
+ },
"NumberOfAssociatedUsers":{
"shape":"Long",
"documentation":"The number of associated users in routing profile.
"
@@ -20945,6 +21106,10 @@
"AssociatedQueueIds":{
"shape":"AssociatedQueueIdList",
"documentation":"The IDs of the associated queue.
"
+ },
+ "AssociatedManualAssignmentQueueIds":{
+ "shape":"AssociatedQueueIdList",
+ "documentation":"The IDs of the associated manual assignment queues.
"
}
},
"documentation":"Contains information about a routing profile.
"
@@ -20959,6 +21124,52 @@
"type":"list",
"member":{"shape":"RoutingProfile"}
},
+ "RoutingProfileManualAssignmentQueueConfig":{
+ "type":"structure",
+ "required":["QueueReference"],
+ "members":{
+ "QueueReference":{"shape":"RoutingProfileQueueReference"}
+ },
+ "documentation":"Contains information about the queue and channel for manual assignment behaviour can be enabled.
"
+ },
+ "RoutingProfileManualAssignmentQueueConfigList":{
+ "type":"list",
+ "member":{"shape":"RoutingProfileManualAssignmentQueueConfig"},
+ "max":10,
+ "min":1
+ },
+ "RoutingProfileManualAssignmentQueueConfigSummary":{
+ "type":"structure",
+ "required":[
+ "QueueId",
+ "QueueArn",
+ "QueueName",
+ "Channel"
+ ],
+ "members":{
+ "QueueId":{
+ "shape":"QueueId",
+ "documentation":"The identifier for the queue.
"
+ },
+ "QueueArn":{
+ "shape":"ARN",
+ "documentation":"The Amazon Resource Name (ARN) of the queue.
"
+ },
+ "QueueName":{
+ "shape":"QueueName",
+ "documentation":"The name of the queue.
"
+ },
+ "Channel":{
+ "shape":"Channel",
+ "documentation":"The channels this queue supports. Valid Values: CHAT | TASK | EMAIL
"
+ }
+ },
+ "documentation":"Contains summary information about a routing profile manual assignment queue.
"
+ },
+ "RoutingProfileManualAssignmentQueueConfigSummaryList":{
+ "type":"list",
+ "member":{"shape":"RoutingProfileManualAssignmentQueueConfigSummary"}
+ },
"RoutingProfileName":{
"type":"string",
"max":127,
@@ -21552,11 +21763,46 @@
}
}
},
+ "SearchContactsAdditionalTimeRange":{
+ "type":"structure",
+ "required":[
+ "Criteria",
+ "MatchType"
+ ],
+ "members":{
+ "Criteria":{
+ "shape":"SearchContactsAdditionalTimeRangeCriteriaList",
+ "documentation":"List of criteria of the time range to additionally filter on.
"
+ },
+ "MatchType":{
+ "shape":"SearchContactsMatchType",
+ "documentation":"The match type combining multiple time range filters.
"
+ }
+ },
+ "documentation":"Time range that you additionally want to filter on.
"
+ },
+ "SearchContactsAdditionalTimeRangeCriteria":{
+ "type":"structure",
+ "members":{
+ "TimeRange":{"shape":"SearchContactsTimeRange"},
+ "TimestampCondition":{
+ "shape":"SearchContactsTimestampCondition",
+ "documentation":"List of the timestamp conditions.
"
+ }
+ },
+ "documentation":"The criteria of the time range to additionally filter on.
"
+ },
+ "SearchContactsAdditionalTimeRangeCriteriaList":{
+ "type":"list",
+ "member":{"shape":"SearchContactsAdditionalTimeRangeCriteria"}
+ },
"SearchContactsMatchType":{
"type":"string",
"enum":[
"MATCH_ALL",
- "MATCH_ANY"
+ "MATCH_ANY",
+ "MATCH_EXACT",
+ "MATCH_NONE"
]
},
"SearchContactsRequest":{
@@ -21634,18 +21880,45 @@
},
"documentation":"A structure of time range that you want to search results.
"
},
+ "SearchContactsTimeRangeConditionType":{
+ "type":"string",
+ "enum":["NOT_EXISTS"]
+ },
"SearchContactsTimeRangeType":{
"type":"string",
"enum":[
"INITIATION_TIMESTAMP",
"SCHEDULED_TIMESTAMP",
"CONNECTED_TO_AGENT_TIMESTAMP",
- "DISCONNECT_TIMESTAMP"
+ "DISCONNECT_TIMESTAMP",
+ "ENQUEUE_TIMESTAMP"
]
},
+ "SearchContactsTimestampCondition":{
+ "type":"structure",
+ "required":[
+ "Type",
+ "ConditionType"
+ ],
+ "members":{
+ "Type":{
+ "shape":"SearchContactsTimeRangeType",
+ "documentation":"Type of the timestamps to use for the filter.
"
+ },
+ "ConditionType":{
+ "shape":"SearchContactsTimeRangeConditionType",
+ "documentation":"Condition of the timestamp on the contact.
"
+ }
+ },
+ "documentation":"The timestamp condition indicating which timestamp should be used and how it should be filtered.
"
+ },
"SearchCriteria":{
"type":"structure",
"members":{
+ "Name":{
+ "shape":"NameCriteria",
+ "documentation":"Name of the contact.
"
+ },
"AgentIds":{
"shape":"AgentResourceIdList",
"documentation":"The identifiers of agents who handled the contacts.
"
@@ -21670,6 +21943,14 @@
"shape":"QueueIdList",
"documentation":"The list of queue IDs associated with contacts.
"
},
+ "RoutingCriteria":{
+ "shape":"SearchableRoutingCriteria",
+ "documentation":"Routing criteria for the contact.
"
+ },
+ "AdditionalTimeRange":{
+ "shape":"SearchContactsAdditionalTimeRange",
+ "documentation":"Additional TimeRange used to filter contacts.
"
+ },
"SearchableContactAttributes":{
"shape":"SearchableContactAttributes",
"documentation":"The search criteria based on user-defined contact attributes that have been configured for contact search. For more information, see Search by custom contact attributes in the Amazon Connect Administrator Guide.
To use SearchableContactAttributes in a search request, the GetContactAttributes action is required to perform an API request. For more information, see https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonconnect.html#amazonconnect-actions-as-permissionsActions defined by Amazon Connect.
"
@@ -22250,6 +22531,20 @@
}
}
},
+ "SearchableAgentCriteriaStep":{
+ "type":"structure",
+ "members":{
+ "AgentIds":{
+ "shape":"AgentResourceIdList",
+ "documentation":"The identifiers of agents used in preferred agents matching.
"
+ },
+ "MatchType":{
+ "shape":"SearchContactsMatchType",
+ "documentation":"The match type combining multiple agent criteria steps.
"
+ }
+ },
+ "documentation":"The agent criteria to search for preferred agents on the routing criteria.
"
+ },
"SearchableContactAttributeKey":{
"type":"string",
"max":100,
@@ -22311,6 +22606,30 @@
"type":"string",
"enum":["STANDARD"]
},
+ "SearchableRoutingCriteria":{
+ "type":"structure",
+ "members":{
+ "Steps":{
+ "shape":"SearchableRoutingCriteriaStepList",
+ "documentation":"The list of Routing criteria steps of the contact routing.
"
+ }
+ },
+ "documentation":"Routing criteria of the contact to match on.
"
+ },
+ "SearchableRoutingCriteriaStep":{
+ "type":"structure",
+ "members":{
+ "AgentCriteria":{
+ "shape":"SearchableAgentCriteriaStep",
+ "documentation":"Agent matching the routing step of the routing criteria
"
+ }
+ },
+ "documentation":"Routing criteria of the contact to match on.
"
+ },
+ "SearchableRoutingCriteriaStepList":{
+ "type":"list",
+ "member":{"shape":"SearchableRoutingCriteriaStep"}
+ },
"SearchableSegmentAttributeKey":{
"type":"string",
"max":64,
@@ -22888,7 +23207,8 @@
"CONNECTED_TO_AGENT_TIMESTAMP",
"DISCONNECT_TIMESTAMP",
"INITIATION_METHOD",
- "CHANNEL"
+ "CHANNEL",
+ "EXPIRY_TIMESTAMP"
]
},
"SourceApplicationName":{
From 0d2d9d9c0ec15e2846968ba034d21c33de7504b1 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 26 Sep 2025 19:10:34 +0000
Subject: [PATCH 116/121] AWS Billing Update: Add ability to combine custom
billing views to create new consolidated views.
---
.../feature-AWSBilling-57fa3f6.json | 6 +
.../codegen-resources/service-2.json | 228 +++++++++++++++++-
2 files changed, 227 insertions(+), 7 deletions(-)
create mode 100644 .changes/next-release/feature-AWSBilling-57fa3f6.json
diff --git a/.changes/next-release/feature-AWSBilling-57fa3f6.json b/.changes/next-release/feature-AWSBilling-57fa3f6.json
new file mode 100644
index 000000000000..9580ab7e04af
--- /dev/null
+++ b/.changes/next-release/feature-AWSBilling-57fa3f6.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "AWS Billing",
+ "contributor": "",
+ "description": "Add ability to combine custom billing views to create new consolidated views."
+}
diff --git a/services/billing/src/main/resources/codegen-resources/service-2.json b/services/billing/src/main/resources/codegen-resources/service-2.json
index 96dc616bb655..3b6d27447b25 100644
--- a/services/billing/src/main/resources/codegen-resources/service-2.json
+++ b/services/billing/src/main/resources/codegen-resources/service-2.json
@@ -15,6 +15,27 @@
"uid":"billing-2023-09-07"
},
"operations":{
+ "AssociateSourceViews":{
+ "name":"AssociateSourceViews",
+ "http":{
+ "method":"POST",
+ "requestUri":"/"
+ },
+ "input":{"shape":"AssociateSourceViewsRequest"},
+ "output":{"shape":"AssociateSourceViewsResponse"},
+ "errors":[
+ {"shape":"BillingViewHealthStatusException"},
+ {"shape":"ServiceQuotaExceededException"},
+ {"shape":"ThrottlingException"},
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"AccessDeniedException"},
+ {"shape":"ConflictException"},
+ {"shape":"ValidationException"},
+ {"shape":"InternalServerException"}
+ ],
+ "documentation":" Associates one or more source billing views with an existing billing view. This allows creating aggregate billing views that combine data from multiple sources.
",
+ "idempotent":true
+ },
"CreateBillingView":{
"name":"CreateBillingView",
"http":{
@@ -24,8 +45,10 @@
"input":{"shape":"CreateBillingViewRequest"},
"output":{"shape":"CreateBillingViewResponse"},
"errors":[
+ {"shape":"BillingViewHealthStatusException"},
{"shape":"ServiceQuotaExceededException"},
{"shape":"ThrottlingException"},
+ {"shape":"ResourceNotFoundException"},
{"shape":"AccessDeniedException"},
{"shape":"ConflictException"},
{"shape":"ValidationException"},
@@ -52,6 +75,26 @@
"documentation":"Deletes the specified billing view.
",
"idempotent":true
},
+ "DisassociateSourceViews":{
+ "name":"DisassociateSourceViews",
+ "http":{
+ "method":"POST",
+ "requestUri":"/"
+ },
+ "input":{"shape":"DisassociateSourceViewsRequest"},
+ "output":{"shape":"DisassociateSourceViewsResponse"},
+ "errors":[
+ {"shape":"BillingViewHealthStatusException"},
+ {"shape":"ThrottlingException"},
+ {"shape":"ResourceNotFoundException"},
+ {"shape":"AccessDeniedException"},
+ {"shape":"ConflictException"},
+ {"shape":"ValidationException"},
+ {"shape":"InternalServerException"}
+ ],
+ "documentation":" Removes the association between one or more source billing views and an existing billing view. This allows modifying the composition of aggregate billing views.
",
+ "idempotent":true
+ },
"GetBillingView":{
"name":"GetBillingView",
"http":{
@@ -67,7 +110,8 @@
{"shape":"ValidationException"},
{"shape":"InternalServerException"}
],
- "documentation":"Returns the metadata associated to the specified billing view ARN.
"
+ "documentation":"Returns the metadata associated to the specified billing view ARN.
",
+ "readonly":true
},
"GetResourcePolicy":{
"name":"GetResourcePolicy",
@@ -84,7 +128,8 @@
{"shape":"ValidationException"},
{"shape":"InternalServerException"}
],
- "documentation":"Returns the resource-based policy document attached to the resource in JSON format.
"
+ "documentation":"Returns the resource-based policy document attached to the resource in JSON format.
",
+ "readonly":true
},
"ListBillingViews":{
"name":"ListBillingViews",
@@ -100,7 +145,8 @@
{"shape":"ValidationException"},
{"shape":"InternalServerException"}
],
- "documentation":"Lists the billing views available for a given time period.
Every Amazon Web Services account has a unique PRIMARY billing view that represents the billing data available by default. Accounts that use Billing Conductor also have BILLING_GROUP billing views representing pro forma costs associated with each created billing group.
"
+ "documentation":"Lists the billing views available for a given time period.
Every Amazon Web Services account has a unique PRIMARY billing view that represents the billing data available by default. Accounts that use Billing Conductor also have BILLING_GROUP billing views representing pro forma costs associated with each created billing group.
",
+ "readonly":true
},
"ListSourceViewsForBillingView":{
"name":"ListSourceViewsForBillingView",
@@ -117,7 +163,8 @@
{"shape":"ValidationException"},
{"shape":"InternalServerException"}
],
- "documentation":"Lists the source views (managed Amazon Web Services billing views) associated with the billing view.
"
+ "documentation":"Lists the source views (managed Amazon Web Services billing views) associated with the billing view.
",
+ "readonly":true
},
"ListTagsForResource":{
"name":"ListTagsForResource",
@@ -134,7 +181,8 @@
{"shape":"ValidationException"},
{"shape":"InternalServerException"}
],
- "documentation":"Lists tags associated with the billing view resource.
"
+ "documentation":"Lists tags associated with the billing view resource.
",
+ "readonly":true
},
"TagResource":{
"name":"TagResource",
@@ -179,6 +227,7 @@
"input":{"shape":"UpdateBillingViewRequest"},
"output":{"shape":"UpdateBillingViewResponse"},
"errors":[
+ {"shape":"BillingViewHealthStatusException"},
{"shape":"ServiceQuotaExceededException"},
{"shape":"ThrottlingException"},
{"shape":"ResourceNotFoundException"},
@@ -223,9 +272,36 @@
},
"documentation":"A time range with a start and end time.
"
},
+ "AssociateSourceViewsRequest":{
+ "type":"structure",
+ "required":[
+ "arn",
+ "sourceViews"
+ ],
+ "members":{
+ "arn":{
+ "shape":"BillingViewArn",
+ "documentation":" The Amazon Resource Name (ARN) of the billing view to associate source views with.
"
+ },
+ "sourceViews":{
+ "shape":"BillingViewSourceViewsList",
+ "documentation":" A list of ARNs of the source billing views to associate.
"
+ }
+ }
+ },
+ "AssociateSourceViewsResponse":{
+ "type":"structure",
+ "required":["arn"],
+ "members":{
+ "arn":{
+ "shape":"BillingViewArn",
+ "documentation":" The ARN of the billing view that the source views were associated with.
"
+ }
+ }
+ },
"BillingViewArn":{
"type":"string",
- "pattern":"arn:aws[a-z-]*:(billing)::[0-9]{12}:billingview/[a-zA-Z0-9/:_\\+=\\.\\-@]{0,59}[a-zA-Z0-9]"
+ "pattern":"arn:aws[a-z-]*:(billing)::[0-9]{12}:billingview/[a-zA-Z0-9/:_\\+=\\.\\-@]{0,75}[a-zA-Z0-9]"
},
"BillingViewArnList":{
"type":"list",
@@ -263,6 +339,10 @@
"shape":"AccountId",
"documentation":"The account owner of the billing view.
"
},
+ "sourceAccountId":{
+ "shape":"AccountId",
+ "documentation":" The Amazon Web Services account ID that owns the source billing view, if this is a derived billing view.
"
+ },
"dataFilterExpression":{
"shape":"Expression",
"documentation":" See Expression. Billing view only supports LINKED_ACCOUNT and Tags.
"
@@ -274,10 +354,49 @@
"updatedAt":{
"shape":"Timestamp",
"documentation":"The time when the billing view was last updated.
"
+ },
+ "derivedViewCount":{
+ "shape":"Integer",
+ "documentation":" The number of billing views that use this billing view as a source.
"
+ },
+ "sourceViewCount":{
+ "shape":"Integer",
+ "documentation":" The number of source views associated with this billing view.
"
+ },
+ "viewDefinitionLastUpdatedAt":{
+ "shape":"Timestamp",
+ "documentation":" The timestamp of when the billing view definition was last updated.
"
+ },
+ "healthStatus":{
+ "shape":"BillingViewHealthStatus",
+ "documentation":" The current health status of the billing view.
"
}
},
"documentation":"The metadata associated to the billing view.
"
},
+ "BillingViewHealthStatus":{
+ "type":"structure",
+ "members":{
+ "statusCode":{
+ "shape":"BillingViewStatus",
+ "documentation":"The current health status code of the billing view.
"
+ },
+ "statusReasons":{
+ "shape":"BillingViewStatusReasons",
+ "documentation":"A list of reasons explaining the current health status, if applicable.
"
+ }
+ },
+ "documentation":" Represents the health status of a billing view, including a status code and optional reasons for the status.
"
+ },
+ "BillingViewHealthStatusException":{
+ "type":"structure",
+ "required":["message"],
+ "members":{
+ "message":{"shape":"ErrorMessage"}
+ },
+ "documentation":" Exception thrown when a billing view's health status prevents an operation from being performed. This may occur if the billing view is in a state other than HEALTHY.
",
+ "exception":true
+ },
"BillingViewList":{
"type":"list",
"member":{"shape":"BillingViewListElement"}
@@ -301,9 +420,17 @@
"shape":"AccountId",
"documentation":" The list of owners of the Billing view.
"
},
+ "sourceAccountId":{
+ "shape":"AccountId",
+ "documentation":" The Amazon Web Services account ID that owns the source billing view, if this is a derived billing view.
"
+ },
"billingViewType":{
"shape":"BillingViewType",
"documentation":"The type of billing view.
"
+ },
+ "healthStatus":{
+ "shape":"BillingViewHealthStatus",
+ "documentation":" The current health status of the billing view.
"
}
},
"documentation":"A representation of a billing view.
"
@@ -318,9 +445,35 @@
"BillingViewSourceViewsList":{
"type":"list",
"member":{"shape":"BillingViewArn"},
- "max":1,
+ "max":10,
"min":1
},
+ "BillingViewStatus":{
+ "type":"string",
+ "enum":[
+ "HEALTHY",
+ "UNHEALTHY",
+ "CREATING",
+ "UPDATING"
+ ]
+ },
+ "BillingViewStatusReason":{
+ "type":"string",
+ "enum":[
+ "SOURCE_VIEW_UNHEALTHY",
+ "SOURCE_VIEW_UPDATING",
+ "SOURCE_VIEW_ACCESS_DENIED",
+ "SOURCE_VIEW_NOT_FOUND",
+ "CYCLIC_DEPENDENCY",
+ "SOURCE_VIEW_DEPTH_EXCEEDED",
+ "AGGREGATE_SOURCE",
+ "VIEW_OWNER_NOT_MANAGEMENT_ACCOUNT"
+ ]
+ },
+ "BillingViewStatusReasons":{
+ "type":"list",
+ "member":{"shape":"BillingViewStatusReason"}
+ },
"BillingViewType":{
"type":"string",
"enum":[
@@ -339,6 +492,10 @@
"max":100,
"min":1
},
+ "Boolean":{
+ "type":"boolean",
+ "box":true
+ },
"ClientToken":{
"type":"string",
"pattern":"[a-zA-Z0-9-]+"
@@ -419,6 +576,10 @@
"arn":{
"shape":"BillingViewArn",
"documentation":" The Amazon Resource Name (ARN) that can be used to uniquely identify the billing view.
"
+ },
+ "force":{
+ "shape":"Boolean",
+ "documentation":" If set to true, forces deletion of the billing view even if it has derived resources (e.g. other billing views or budgets). Use with caution as this may break dependent resources.
"
}
}
},
@@ -454,6 +615,33 @@
},
"documentation":" The metadata that you can use to filter and group your results.
"
},
+ "DisassociateSourceViewsRequest":{
+ "type":"structure",
+ "required":[
+ "arn",
+ "sourceViews"
+ ],
+ "members":{
+ "arn":{
+ "shape":"BillingViewArn",
+ "documentation":" The Amazon Resource Name (ARN) of the billing view to disassociate source views from.
"
+ },
+ "sourceViews":{
+ "shape":"BillingViewSourceViewsList",
+ "documentation":" A list of ARNs of the source billing views to disassociate.
"
+ }
+ }
+ },
+ "DisassociateSourceViewsResponse":{
+ "type":"structure",
+ "required":["arn"],
+ "members":{
+ "arn":{
+ "shape":"BillingViewArn",
+ "documentation":" The ARN of the billing view that the source views were disassociated from.
"
+ }
+ }
+ },
"ErrorMessage":{
"type":"string",
"max":1024,
@@ -469,6 +657,10 @@
"tags":{
"shape":"TagValues",
"documentation":" The specific Tag to use for Expression.
"
+ },
+ "timeRange":{
+ "shape":"TimeRange",
+ "documentation":" Specifies a time range filter for the billing view data.
"
}
},
"documentation":" See Expression. Billing view only supports LINKED_ACCOUNT and Tags.
"
@@ -522,6 +714,10 @@
}
}
},
+ "Integer":{
+ "type":"integer",
+ "box":true
+ },
"InternalServerException":{
"type":"structure",
"required":["message"],
@@ -551,6 +747,10 @@
"shape":"AccountId",
"documentation":" The list of owners of the billing view.
"
},
+ "sourceAccountId":{
+ "shape":"AccountId",
+ "documentation":" Filters the results to include only billing views that use the specified account as a source.
"
+ },
"maxResults":{
"shape":"BillingViewsMaxResults",
"documentation":"The maximum number of billing views to retrieve. Default is 100.
"
@@ -799,6 +999,20 @@
"documentation":"The request was denied due to request throttling.
",
"exception":true
},
+ "TimeRange":{
+ "type":"structure",
+ "members":{
+ "beginDateInclusive":{
+ "shape":"Timestamp",
+ "documentation":" The inclusive start date of the time range.
"
+ },
+ "endDateInclusive":{
+ "shape":"Timestamp",
+ "documentation":" The inclusive end date of the time range.
"
+ }
+ },
+ "documentation":" Specifies a time range with inclusive begin and end dates.
"
+ },
"Timestamp":{"type":"timestamp"},
"UntagResourceRequest":{
"type":"structure",
From 438bdea13d2712ffbdf6078074058895dd255f22 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 26 Sep 2025 19:10:41 +0000
Subject: [PATCH 117/121] Amazon Redshift Update: Support tagging and tag
propagation to IAM Identity Center for Redshift Idc Applications
---
.../feature-AmazonRedshift-a258150.json | 6 ++++++
.../codegen-resources/service-2.json | 20 ++++++++++++++++++-
2 files changed, 25 insertions(+), 1 deletion(-)
create mode 100644 .changes/next-release/feature-AmazonRedshift-a258150.json
diff --git a/.changes/next-release/feature-AmazonRedshift-a258150.json b/.changes/next-release/feature-AmazonRedshift-a258150.json
new file mode 100644
index 000000000000..6429d0d7235f
--- /dev/null
+++ b/.changes/next-release/feature-AmazonRedshift-a258150.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Amazon Redshift",
+ "contributor": "",
+ "description": "Support tagging and tag propagation to IAM Identity Center for Redshift Idc Applications"
+}
diff --git a/services/redshift/src/main/resources/codegen-resources/service-2.json b/services/redshift/src/main/resources/codegen-resources/service-2.json
index 52a20f2572bb..345bf9db2b22 100644
--- a/services/redshift/src/main/resources/codegen-resources/service-2.json
+++ b/services/redshift/src/main/resources/codegen-resources/service-2.json
@@ -510,7 +510,9 @@
{"shape":"DependentServiceUnavailableFault"},
{"shape":"UnsupportedOperationFault"},
{"shape":"DependentServiceAccessDeniedFault"},
- {"shape":"RedshiftIdcApplicationQuotaExceededFault"}
+ {"shape":"RedshiftIdcApplicationQuotaExceededFault"},
+ {"shape":"TagLimitExceededFault"},
+ {"shape":"InvalidTagFault"}
],
"documentation":"Creates an Amazon Redshift application for use with IAM Identity Center.
"
},
@@ -4717,6 +4719,14 @@
"ServiceIntegrations":{
"shape":"ServiceIntegrationList",
"documentation":"A collection of service integrations for the Redshift IAM Identity Center application.
"
+ },
+ "Tags":{
+ "shape":"TagList",
+ "documentation":"A list of tags.
"
+ },
+ "SsoTagKeys":{
+ "shape":"TagKeyList",
+ "documentation":"A list of tags keys that Redshift Identity Center applications copy to IAM Identity Center. For each input key, the tag corresponding to the key-value pair is propagated.
"
}
}
},
@@ -9643,6 +9653,14 @@
"ServiceIntegrations":{
"shape":"ServiceIntegrationList",
"documentation":"A list of service integrations for the Redshift IAM Identity Center application.
"
+ },
+ "Tags":{
+ "shape":"TagList",
+ "documentation":"A list of tags.
"
+ },
+ "SsoTagKeys":{
+ "shape":"TagKeyList",
+ "documentation":"A list of tags keys that Redshift Identity Center applications copy to IAM Identity Center. For each input key, the tag corresponding to the key-value pair is propagated.
"
}
},
"documentation":"Contains properties for the Redshift IDC application.
",
From 970961683d4fe8bcbe57d3812b96f1d04962769d Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 26 Sep 2025 19:10:30 +0000
Subject: [PATCH 118/121] Amazon Elastic Compute Cloud Update: This release
includes documentation updates for Amazon EBS General Purpose SSD (gp3)
volumes with larger size and higher IOPS and throughput.
---
...ure-AmazonElasticComputeCloud-ed60238.json | 6 +++
.../codegen-resources/service-2.json | 38 +++++++++----------
2 files changed, 25 insertions(+), 19 deletions(-)
create mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-ed60238.json
diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-ed60238.json b/.changes/next-release/feature-AmazonElasticComputeCloud-ed60238.json
new file mode 100644
index 000000000000..29eea4454a4d
--- /dev/null
+++ b/.changes/next-release/feature-AmazonElasticComputeCloud-ed60238.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "Amazon Elastic Compute Cloud",
+ "contributor": "",
+ "description": "This release includes documentation updates for Amazon EBS General Purpose SSD (gp3) volumes with larger size and higher IOPS and throughput."
+}
diff --git a/services/ec2/src/main/resources/codegen-resources/service-2.json b/services/ec2/src/main/resources/codegen-resources/service-2.json
index d30e6c8b05b5..5b551cb77c3a 100644
--- a/services/ec2/src/main/resources/codegen-resources/service-2.json
+++ b/services/ec2/src/main/resources/codegen-resources/service-2.json
@@ -18306,7 +18306,7 @@
},
"Iops":{
"shape":"Integer",
- "documentation":"The number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.
The following are the supported values for each volume type:
-
gp3: 3,000 - 16,000 IOPS
-
io1: 100 - 64,000 IOPS
-
io2: 100 - 256,000 IOPS
For io2 volumes, you can achieve up to 256,000 IOPS on instances built on the Nitro System. On other instances, you can achieve performance up to 32,000 IOPS.
This parameter is required for io1 and io2 volumes. The default for gp3 volumes is 3,000 IOPS. This parameter is not supported for gp2, st1, sc1, or standard volumes.
"
+ "documentation":"The number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.
The following are the supported values for each volume type:
-
gp3: 3,000 - 80,000 IOPS
-
io1: 100 - 64,000 IOPS
-
io2: 100 - 256,000 IOPS
For io2 volumes, you can achieve up to 256,000 IOPS on instances built on the Nitro System. On other instances, you can achieve performance up to 32,000 IOPS.
This parameter is required for io1 and io2 volumes. The default for gp3 volumes is 3,000 IOPS. This parameter is not supported for gp2, st1, sc1, or standard volumes.
"
},
"KmsKeyId":{
"shape":"KmsKeyId",
@@ -18318,7 +18318,7 @@
},
"Size":{
"shape":"Integer",
- "documentation":"The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. If you specify a snapshot, the default is the snapshot size. You can specify a volume size that is equal to or larger than the snapshot size.
The following are the supported volumes sizes for each volume type:
-
gp2 and gp3: 1 - 16,384 GiB
-
io1: 4 - 16,384 GiB
-
io2: 4 - 65,536 GiB
-
st1 and sc1: 125 - 16,384 GiB
-
standard: 1 - 1024 GiB
"
+ "documentation":"The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. If you specify a snapshot, the default is the snapshot size. You can specify a volume size that is equal to or larger than the snapshot size.
The following are the supported volumes sizes for each volume type:
"
},
"SnapshotId":{
"shape":"SnapshotId",
@@ -18339,7 +18339,7 @@
},
"Throughput":{
"shape":"Integer",
- "documentation":"The throughput to provision for a volume, with a maximum of 1,000 MiB/s.
This parameter is valid only for gp3 volumes.
Valid Range: Minimum value of 125. Maximum value of 1000.
"
+ "documentation":"The throughput to provision for a volume, with a maximum of 2,000 MiB/s.
This parameter is valid only for gp3 volumes.
Valid Range: Minimum value of 125. Maximum value of 2,000.
"
},
"ClientToken":{
"shape":"String",
@@ -31089,7 +31089,7 @@
},
"Iops":{
"shape":"Integer",
- "documentation":"The number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.
The following are the supported values for each volume type:
-
gp3: 3,000 - 16,000 IOPS
-
io1: 100 - 64,000 IOPS
-
io2: 100 - 256,000 IOPS
For io2 volumes, you can achieve up to 256,000 IOPS on instances built on the Nitro System. On other instances, you can achieve performance up to 32,000 IOPS.
This parameter is required for io1 and io2 volumes. The default for gp3 volumes is 3,000 IOPS.
",
+ "documentation":"The number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.
The following are the supported values for each volume type:
-
gp3: 3,000 - 80,000 IOPS
-
io1: 100 - 64,000 IOPS
-
io2: 100 - 256,000 IOPS
For io2 volumes, you can achieve up to 256,000 IOPS on instances built on the Nitro System. On other instances, you can achieve performance up to 32,000 IOPS.
This parameter is required for io1 and io2 volumes. The default for gp3 volumes is 3,000 IOPS.
",
"locationName":"iops"
},
"SnapshotId":{
@@ -31099,7 +31099,7 @@
},
"VolumeSize":{
"shape":"Integer",
- "documentation":"The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. If you specify a snapshot, the default is the snapshot size. You can specify a volume size that is equal to or larger than the snapshot size.
The following are the supported sizes for each volume type:
-
gp2 and gp3: 1 - 16,384 GiB
-
io1: 4 - 16,384 GiB
-
io2: 4 - 65,536 GiB
-
st1 and sc1: 125 - 16,384 GiB
-
standard: 1 - 1024 GiB
",
+ "documentation":"The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. If you specify a snapshot, the default is the snapshot size. You can specify a volume size that is equal to or larger than the snapshot size.
The following are the supported sizes for each volume type:
",
"locationName":"volumeSize"
},
"VolumeType":{
@@ -31114,7 +31114,7 @@
},
"Throughput":{
"shape":"Integer",
- "documentation":"The throughput that the volume supports, in MiB/s.
This parameter is valid only for gp3 volumes.
Valid Range: Minimum value of 125. Maximum value of 1000.
",
+ "documentation":"The throughput that the volume supports, in MiB/s.
This parameter is valid only for gp3 volumes.
Valid Range: Minimum value of 125. Maximum value of 2,000.
",
"locationName":"throughput"
},
"OutpostArn":{
@@ -33942,11 +33942,11 @@
},
"Iops":{
"shape":"Integer",
- "documentation":"The number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.
The following are the supported values for each volume type:
-
gp3: 3,000 - 16,000 IOPS
-
io1: 100 - 64,000 IOPS
-
io2: 100 - 256,000 IOPS
For io2 volumes, you can achieve up to 256,000 IOPS on instances built on the Nitro System. On other instances, you can achieve performance up to 32,000 IOPS.
This parameter is required for io1 and io2 volumes. The default for gp3 volumes is 3,000 IOPS.
"
+ "documentation":"The number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.
The following are the supported values for each volume type:
-
gp3: 3,000 - 80,000 IOPS
-
io1: 100 - 64,000 IOPS
-
io2: 100 - 256,000 IOPS
For io2 volumes, you can achieve up to 256,000 IOPS on instances built on the Nitro System. On other instances, you can achieve performance up to 32,000 IOPS.
This parameter is required for io1 and io2 volumes. The default for gp3 volumes is 3,000 IOPS.
"
},
"Throughput":{
"shape":"Integer",
- "documentation":"The throughput that the volume supports, in MiB/s.
This parameter is valid only for gp3 volumes.
Valid Range: Minimum value of 125. Maximum value of 1000.
"
+ "documentation":"The throughput that the volume supports, in MiB/s.
This parameter is valid only for gp3 volumes.
Valid Range: Minimum value of 125. Maximum value of 2,000.
"
},
"KmsKeyId":{
"shape":"KmsKeyId",
@@ -33958,7 +33958,7 @@
},
"VolumeSize":{
"shape":"Integer",
- "documentation":"The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. If you specify a snapshot, the default is the snapshot size. You can specify a volume size that is equal to or larger than the snapshot size.
The following are the supported sizes for each volume type:
-
gp2 and gp3: 1 - 16,384 GiB
-
io1: 4 - 16,384 GiB
-
io2: 4 - 65,536 GiB
-
st1 and sc1: 125 - 16,384 GiB
-
standard: 1 - 1024 GiB
"
+ "documentation":"The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. If you specify a snapshot, the default is the snapshot size. You can specify a volume size that is equal to or larger than the snapshot size.
The following are the supported sizes for each volume type:
"
},
"VolumeType":{
"shape":"VolumeType",
@@ -45423,7 +45423,7 @@
},
"Iops":{
"shape":"Integer",
- "documentation":"The number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.
The following are the supported values for each volume type:
-
gp3: 3,000 - 16,000 IOPS
-
io1: 100 - 64,000 IOPS
-
io2: 100 - 256,000 IOPS
For io2 volumes, you can achieve up to 256,000 IOPS on instances built on the Nitro System. On other instances, you can achieve performance up to 32,000 IOPS.
This parameter is supported for io1, io2, and gp3 volumes only.
"
+ "documentation":"The number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.
The following are the supported values for each volume type:
-
gp3: 3,000 - 80,000 IOPS
-
io1: 100 - 64,000 IOPS
-
io2: 100 - 256,000 IOPS
For io2 volumes, you can achieve up to 256,000 IOPS on instances built on the Nitro System. On other instances, you can achieve performance up to 32,000 IOPS.
This parameter is supported for io1, io2, and gp3 volumes only.
"
},
"KmsKeyId":{
"shape":"KmsKeyId",
@@ -45435,7 +45435,7 @@
},
"VolumeSize":{
"shape":"Integer",
- "documentation":"The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. The following are the supported volumes sizes for each volume type:
-
gp2 and gp3: 1 - 16,384 GiB
-
io1: 4 - 16,384 GiB
-
io2: 4 - 65,536 GiB
-
st1 and sc1: 125 - 16,384 GiB
-
standard: 1 - 1024 GiB
"
+ "documentation":"The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. The following are the supported volumes sizes for each volume type:
"
},
"VolumeType":{
"shape":"VolumeType",
@@ -45443,7 +45443,7 @@
},
"Throughput":{
"shape":"Integer",
- "documentation":"The throughput to provision for a gp3 volume, with a maximum of 1,000 MiB/s.
Valid Range: Minimum value of 125. Maximum value of 1000.
"
+ "documentation":"The throughput to provision for a gp3 volume, with a maximum of 2,000 MiB/s.
Valid Range: Minimum value of 125. Maximum value of 2,000.
"
},
"VolumeInitializationRate":{
"shape":"Integer",
@@ -45462,7 +45462,7 @@
},
"Count":{
"shape":"LaunchTemplateElasticInferenceAcceleratorCount",
- "documentation":" The number of elastic inference accelerators to attach to the instance.
Default: 1
"
+ "documentation":"The number of elastic inference accelerators to attach to the instance.
"
}
},
"documentation":" Amazon Elastic Inference is no longer available.
Describes an elastic inference accelerator.
"
@@ -45483,12 +45483,12 @@
"members":{
"Type":{
"shape":"String",
- "documentation":" The type of elastic inference accelerator. The possible values are eia1.medium, eia1.large, and eia1.xlarge.
",
+ "documentation":"The type of elastic inference accelerator. The possible values are eia1.medium, eia1.large, and eia1.xlarge.
",
"locationName":"type"
},
"Count":{
"shape":"Integer",
- "documentation":" The number of elastic inference accelerators to attach to the instance.
Default: 1
",
+ "documentation":"The number of elastic inference accelerators to attach to the instance.
",
"locationName":"count"
}
},
@@ -45699,7 +45699,7 @@
},
"HttpPutResponseHopLimit":{
"shape":"Integer",
- "documentation":"The desired HTTP PUT response hop limit for instance metadata requests. The larger the number, the further instance metadata requests can travel.
Default: 1
Possible values: Integers from 1 to 64
",
+ "documentation":"The desired HTTP PUT response hop limit for instance metadata requests. The larger the number, the further instance metadata requests can travel.
Possible values: Integers from 1 to 64
",
"locationName":"httpPutResponseHopLimit"
},
"HttpEndpoint":{
@@ -50576,7 +50576,7 @@
},
"Size":{
"shape":"Integer",
- "documentation":"The target size of the volume, in GiB. The target volume size must be greater than or equal to the existing size of the volume.
The following are the supported volumes sizes for each volume type:
-
gp2 and gp3: 1 - 16,384 GiB
-
io1: 4 - 16,384 GiB
-
io2: 4 - 65,536 GiB
-
st1 and sc1: 125 - 16,384 GiB
-
standard: 1 - 1024 GiB
Default: The existing size is retained.
"
+ "documentation":"The target size of the volume, in GiB. The target volume size must be greater than or equal to the existing size of the volume.
The following are the supported volumes sizes for each volume type:
Default: The existing size is retained.
"
},
"VolumeType":{
"shape":"VolumeType",
@@ -50584,11 +50584,11 @@
},
"Iops":{
"shape":"Integer",
- "documentation":"The target IOPS rate of the volume. This parameter is valid only for gp3, io1, and io2 volumes.
The following are the supported values for each volume type:
-
gp3: 3,000 - 16,000 IOPS
-
io1: 100 - 64,000 IOPS
-
io2: 100 - 256,000 IOPS
For io2 volumes, you can achieve up to 256,000 IOPS on instances built on the Nitro System. On other instances, you can achieve performance up to 32,000 IOPS.
Default: The existing value is retained if you keep the same volume type. If you change the volume type to io1, io2, or gp3, the default is 3,000.
"
+ "documentation":"The target IOPS rate of the volume. This parameter is valid only for gp3, io1, and io2 volumes.
The following are the supported values for each volume type:
-
gp3: 3,000 - 80,000 IOPS
-
io1: 100 - 64,000 IOPS
-
io2: 100 - 256,000 IOPS
For io2 volumes, you can achieve up to 256,000 IOPS on instances built on the Nitro System. On other instances, you can achieve performance up to 32,000 IOPS.
Default: The existing value is retained if you keep the same volume type. If you change the volume type to io1, io2, or gp3, the default is 3,000.
"
},
"Throughput":{
"shape":"Integer",
- "documentation":"The target throughput of the volume, in MiB/s. This parameter is valid only for gp3 volumes. The maximum value is 1,000.
Default: The existing value is retained if the source and target volume type is gp3. Otherwise, the default value is 125.
Valid Range: Minimum value of 125. Maximum value of 1000.
"
+ "documentation":"The target throughput of the volume, in MiB/s. This parameter is valid only for gp3 volumes. The maximum value is 2,000.
Default: The existing value is retained if the source and target volume type is gp3. Otherwise, the default value is 125.
Valid Range: Minimum value of 125. Maximum value of 2,000.
"
},
"MultiAttachEnabled":{
"shape":"Boolean",
From f5211b7d1383f321330b43f88172ea6c9baa93cb Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 26 Sep 2025 19:12:13 +0000
Subject: [PATCH 119/121] Updated endpoints.json and partitions.json.
---
.changes/next-release/feature-AWSSDKforJavav2-0443982.json | 6 ++++++
.../amazon/awssdk/regions/internal/region/endpoints.json | 5 +++++
2 files changed, 11 insertions(+)
create mode 100644 .changes/next-release/feature-AWSSDKforJavav2-0443982.json
diff --git a/.changes/next-release/feature-AWSSDKforJavav2-0443982.json b/.changes/next-release/feature-AWSSDKforJavav2-0443982.json
new file mode 100644
index 000000000000..e5b5ee3ca5e3
--- /dev/null
+++ b/.changes/next-release/feature-AWSSDKforJavav2-0443982.json
@@ -0,0 +1,6 @@
+{
+ "type": "feature",
+ "category": "AWS SDK for Java v2",
+ "contributor": "",
+ "description": "Updated endpoint and partition metadata."
+}
diff --git a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json
index 923fbad68112..aae829424e19 100644
--- a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json
+++ b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json
@@ -37354,6 +37354,11 @@
"us-iso-east-1" : { }
}
},
+ "kinesisvideo" : {
+ "endpoints" : {
+ "us-iso-east-1" : { }
+ }
+ },
"kms" : {
"endpoints" : {
"ProdFips" : {
From 2e31f79cbe541f3f469a02f320e326aaf9eb0d32 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 26 Sep 2025 19:13:19 +0000
Subject: [PATCH 120/121] Release 2.34.5. Updated CHANGELOG.md, README.md and
all pom.xml.
---
.changes/2.34.5.json | 72 +++++++++++++++++++
...-AmazonDynamoDBEnhancedClient-18f50d7.json | 6 --
...gfix-AmazonSimpleQueueService-f9af949.json | 6 --
.../feature-AWSBilling-57fa3f6.json | 6 --
...eature-AWSCostExplorerService-750ef36.json | 6 --
.../feature-AWSSDKforJavav2-0443982.json | 6 --
...AgentsforAmazonBedrockRuntime-28e12e7.json | 6 --
.../feature-AmazonConnectService-59fe9fd.json | 6 --
...feature-AmazonDynamoDBStreams-1b55421.json | 6 --
...ure-AmazonElasticComputeCloud-ed60238.json | 6 --
.../feature-AmazonRedshift-a258150.json | 6 --
...ataAutomationforAmazonBedrock-f99328a.json | 6 --
CHANGELOG.md | 50 +++++++++++++
README.md | 8 +--
archetypes/archetype-app-quickstart/pom.xml | 2 +-
archetypes/archetype-lambda/pom.xml | 2 +-
archetypes/archetype-tools/pom.xml | 2 +-
archetypes/pom.xml | 2 +-
aws-sdk-java/pom.xml | 2 +-
bom-internal/pom.xml | 2 +-
bom/pom.xml | 2 +-
bundle-logging-bridge/pom.xml | 2 +-
bundle-sdk/pom.xml | 2 +-
bundle/pom.xml | 2 +-
codegen-lite-maven-plugin/pom.xml | 2 +-
codegen-lite/pom.xml | 2 +-
codegen-maven-plugin/pom.xml | 2 +-
codegen/pom.xml | 2 +-
core/annotations/pom.xml | 2 +-
core/arns/pom.xml | 2 +-
core/auth-crt/pom.xml | 2 +-
core/auth/pom.xml | 2 +-
core/aws-core/pom.xml | 2 +-
core/checksums-spi/pom.xml | 2 +-
core/checksums/pom.xml | 2 +-
core/crt-core/pom.xml | 2 +-
core/endpoints-spi/pom.xml | 2 +-
core/http-auth-aws-crt/pom.xml | 2 +-
core/http-auth-aws-eventstream/pom.xml | 2 +-
core/http-auth-aws/pom.xml | 2 +-
core/http-auth-spi/pom.xml | 2 +-
core/http-auth/pom.xml | 2 +-
core/identity-spi/pom.xml | 2 +-
core/imds/pom.xml | 2 +-
core/json-utils/pom.xml | 2 +-
core/metrics-spi/pom.xml | 2 +-
core/pom.xml | 2 +-
core/profiles/pom.xml | 2 +-
core/protocols/aws-cbor-protocol/pom.xml | 2 +-
core/protocols/aws-json-protocol/pom.xml | 2 +-
core/protocols/aws-query-protocol/pom.xml | 2 +-
core/protocols/aws-xml-protocol/pom.xml | 2 +-
core/protocols/pom.xml | 2 +-
core/protocols/protocol-core/pom.xml | 2 +-
core/protocols/smithy-rpcv2-protocol/pom.xml | 2 +-
core/regions/pom.xml | 2 +-
core/retries-spi/pom.xml | 2 +-
core/retries/pom.xml | 2 +-
core/sdk-core/pom.xml | 2 +-
http-client-spi/pom.xml | 2 +-
http-clients/apache-client/pom.xml | 2 +-
http-clients/apache5-client/pom.xml | 2 +-
http-clients/aws-crt-client/pom.xml | 2 +-
http-clients/netty-nio-client/pom.xml | 2 +-
http-clients/pom.xml | 2 +-
http-clients/url-connection-client/pom.xml | 2 +-
.../cloudwatch-metric-publisher/pom.xml | 2 +-
.../emf-metric-logging-publisher/pom.xml | 2 +-
metric-publishers/pom.xml | 2 +-
pom.xml | 2 +-
release-scripts/pom.xml | 2 +-
services-custom/dynamodb-enhanced/pom.xml | 2 +-
services-custom/iam-policy-builder/pom.xml | 2 +-
services-custom/pom.xml | 2 +-
.../s3-event-notifications/pom.xml | 2 +-
services-custom/s3-transfer-manager/pom.xml | 2 +-
services/accessanalyzer/pom.xml | 2 +-
services/account/pom.xml | 2 +-
services/acm/pom.xml | 2 +-
services/acmpca/pom.xml | 2 +-
services/aiops/pom.xml | 2 +-
services/amp/pom.xml | 2 +-
services/amplify/pom.xml | 2 +-
services/amplifybackend/pom.xml | 2 +-
services/amplifyuibuilder/pom.xml | 2 +-
services/apigateway/pom.xml | 2 +-
services/apigatewaymanagementapi/pom.xml | 2 +-
services/apigatewayv2/pom.xml | 2 +-
services/appconfig/pom.xml | 2 +-
services/appconfigdata/pom.xml | 2 +-
services/appfabric/pom.xml | 2 +-
services/appflow/pom.xml | 2 +-
services/appintegrations/pom.xml | 2 +-
services/applicationautoscaling/pom.xml | 2 +-
services/applicationcostprofiler/pom.xml | 2 +-
services/applicationdiscovery/pom.xml | 2 +-
services/applicationinsights/pom.xml | 2 +-
services/applicationsignals/pom.xml | 2 +-
services/appmesh/pom.xml | 2 +-
services/apprunner/pom.xml | 2 +-
services/appstream/pom.xml | 2 +-
services/appsync/pom.xml | 2 +-
services/apptest/pom.xml | 2 +-
services/arcregionswitch/pom.xml | 2 +-
services/arczonalshift/pom.xml | 2 +-
services/artifact/pom.xml | 2 +-
services/athena/pom.xml | 2 +-
services/auditmanager/pom.xml | 2 +-
services/autoscaling/pom.xml | 2 +-
services/autoscalingplans/pom.xml | 2 +-
services/b2bi/pom.xml | 2 +-
services/backup/pom.xml | 2 +-
services/backupgateway/pom.xml | 2 +-
services/backupsearch/pom.xml | 2 +-
services/batch/pom.xml | 2 +-
services/bcmdashboards/pom.xml | 2 +-
services/bcmdataexports/pom.xml | 2 +-
services/bcmpricingcalculator/pom.xml | 2 +-
services/bcmrecommendedactions/pom.xml | 2 +-
services/bedrock/pom.xml | 2 +-
services/bedrockagent/pom.xml | 2 +-
services/bedrockagentcore/pom.xml | 2 +-
services/bedrockagentcorecontrol/pom.xml | 2 +-
services/bedrockagentruntime/pom.xml | 2 +-
services/bedrockdataautomation/pom.xml | 2 +-
services/bedrockdataautomationruntime/pom.xml | 2 +-
services/bedrockruntime/pom.xml | 2 +-
services/billing/pom.xml | 2 +-
services/billingconductor/pom.xml | 2 +-
services/braket/pom.xml | 2 +-
services/budgets/pom.xml | 2 +-
services/chatbot/pom.xml | 2 +-
services/chime/pom.xml | 2 +-
services/chimesdkidentity/pom.xml | 2 +-
services/chimesdkmediapipelines/pom.xml | 2 +-
services/chimesdkmeetings/pom.xml | 2 +-
services/chimesdkmessaging/pom.xml | 2 +-
services/chimesdkvoice/pom.xml | 2 +-
services/cleanrooms/pom.xml | 2 +-
services/cleanroomsml/pom.xml | 2 +-
services/cloud9/pom.xml | 2 +-
services/cloudcontrol/pom.xml | 2 +-
services/clouddirectory/pom.xml | 2 +-
services/cloudformation/pom.xml | 2 +-
services/cloudfront/pom.xml | 2 +-
services/cloudfrontkeyvaluestore/pom.xml | 2 +-
services/cloudhsm/pom.xml | 2 +-
services/cloudhsmv2/pom.xml | 2 +-
services/cloudsearch/pom.xml | 2 +-
services/cloudsearchdomain/pom.xml | 2 +-
services/cloudtrail/pom.xml | 2 +-
services/cloudtraildata/pom.xml | 2 +-
services/cloudwatch/pom.xml | 2 +-
services/cloudwatchevents/pom.xml | 2 +-
services/cloudwatchlogs/pom.xml | 2 +-
services/codeartifact/pom.xml | 2 +-
services/codebuild/pom.xml | 2 +-
services/codecatalyst/pom.xml | 2 +-
services/codecommit/pom.xml | 2 +-
services/codeconnections/pom.xml | 2 +-
services/codedeploy/pom.xml | 2 +-
services/codeguruprofiler/pom.xml | 2 +-
services/codegurureviewer/pom.xml | 2 +-
services/codegurusecurity/pom.xml | 2 +-
services/codepipeline/pom.xml | 2 +-
services/codestarconnections/pom.xml | 2 +-
services/codestarnotifications/pom.xml | 2 +-
services/cognitoidentity/pom.xml | 2 +-
services/cognitoidentityprovider/pom.xml | 2 +-
services/cognitosync/pom.xml | 2 +-
services/comprehend/pom.xml | 2 +-
services/comprehendmedical/pom.xml | 2 +-
services/computeoptimizer/pom.xml | 2 +-
services/config/pom.xml | 2 +-
services/connect/pom.xml | 2 +-
services/connectcampaigns/pom.xml | 2 +-
services/connectcampaignsv2/pom.xml | 2 +-
services/connectcases/pom.xml | 2 +-
services/connectcontactlens/pom.xml | 2 +-
services/connectparticipant/pom.xml | 2 +-
services/controlcatalog/pom.xml | 2 +-
services/controltower/pom.xml | 2 +-
services/costandusagereport/pom.xml | 2 +-
services/costexplorer/pom.xml | 2 +-
services/costoptimizationhub/pom.xml | 2 +-
services/customerprofiles/pom.xml | 2 +-
services/databasemigration/pom.xml | 2 +-
services/databrew/pom.xml | 2 +-
services/dataexchange/pom.xml | 2 +-
services/datapipeline/pom.xml | 2 +-
services/datasync/pom.xml | 2 +-
services/datazone/pom.xml | 2 +-
services/dax/pom.xml | 2 +-
services/deadline/pom.xml | 2 +-
services/detective/pom.xml | 2 +-
services/devicefarm/pom.xml | 2 +-
services/devopsguru/pom.xml | 2 +-
services/directconnect/pom.xml | 2 +-
services/directory/pom.xml | 2 +-
services/directoryservicedata/pom.xml | 2 +-
services/dlm/pom.xml | 2 +-
services/docdb/pom.xml | 2 +-
services/docdbelastic/pom.xml | 2 +-
services/drs/pom.xml | 2 +-
services/dsql/pom.xml | 2 +-
services/dynamodb/pom.xml | 2 +-
services/ebs/pom.xml | 2 +-
services/ec2/pom.xml | 2 +-
services/ec2instanceconnect/pom.xml | 2 +-
services/ecr/pom.xml | 2 +-
services/ecrpublic/pom.xml | 2 +-
services/ecs/pom.xml | 2 +-
services/efs/pom.xml | 2 +-
services/eks/pom.xml | 2 +-
services/eksauth/pom.xml | 2 +-
services/elasticache/pom.xml | 2 +-
services/elasticbeanstalk/pom.xml | 2 +-
services/elasticloadbalancing/pom.xml | 2 +-
services/elasticloadbalancingv2/pom.xml | 2 +-
services/elasticsearch/pom.xml | 2 +-
services/elastictranscoder/pom.xml | 2 +-
services/emr/pom.xml | 2 +-
services/emrcontainers/pom.xml | 2 +-
services/emrserverless/pom.xml | 2 +-
services/entityresolution/pom.xml | 2 +-
services/eventbridge/pom.xml | 2 +-
services/evidently/pom.xml | 2 +-
services/evs/pom.xml | 2 +-
services/finspace/pom.xml | 2 +-
services/finspacedata/pom.xml | 2 +-
services/firehose/pom.xml | 2 +-
services/fis/pom.xml | 2 +-
services/fms/pom.xml | 2 +-
services/forecast/pom.xml | 2 +-
services/forecastquery/pom.xml | 2 +-
services/frauddetector/pom.xml | 2 +-
services/freetier/pom.xml | 2 +-
services/fsx/pom.xml | 2 +-
services/gamelift/pom.xml | 2 +-
services/gameliftstreams/pom.xml | 2 +-
services/geomaps/pom.xml | 2 +-
services/geoplaces/pom.xml | 2 +-
services/georoutes/pom.xml | 2 +-
services/glacier/pom.xml | 2 +-
services/globalaccelerator/pom.xml | 2 +-
services/glue/pom.xml | 2 +-
services/grafana/pom.xml | 2 +-
services/greengrass/pom.xml | 2 +-
services/greengrassv2/pom.xml | 2 +-
services/groundstation/pom.xml | 2 +-
services/guardduty/pom.xml | 2 +-
services/health/pom.xml | 2 +-
services/healthlake/pom.xml | 2 +-
services/iam/pom.xml | 2 +-
services/identitystore/pom.xml | 2 +-
services/imagebuilder/pom.xml | 2 +-
services/inspector/pom.xml | 2 +-
services/inspector2/pom.xml | 2 +-
services/inspectorscan/pom.xml | 2 +-
services/internetmonitor/pom.xml | 2 +-
services/invoicing/pom.xml | 2 +-
services/iot/pom.xml | 2 +-
services/iotanalytics/pom.xml | 2 +-
services/iotdataplane/pom.xml | 2 +-
services/iotdeviceadvisor/pom.xml | 2 +-
services/iotevents/pom.xml | 2 +-
services/ioteventsdata/pom.xml | 2 +-
services/iotfleethub/pom.xml | 2 +-
services/iotfleetwise/pom.xml | 2 +-
services/iotjobsdataplane/pom.xml | 2 +-
services/iotmanagedintegrations/pom.xml | 2 +-
services/iotsecuretunneling/pom.xml | 2 +-
services/iotsitewise/pom.xml | 2 +-
services/iotthingsgraph/pom.xml | 2 +-
services/iottwinmaker/pom.xml | 2 +-
services/iotwireless/pom.xml | 2 +-
services/ivs/pom.xml | 2 +-
services/ivschat/pom.xml | 2 +-
services/ivsrealtime/pom.xml | 2 +-
services/kafka/pom.xml | 2 +-
services/kafkaconnect/pom.xml | 2 +-
services/kendra/pom.xml | 2 +-
services/kendraranking/pom.xml | 2 +-
services/keyspaces/pom.xml | 2 +-
services/keyspacesstreams/pom.xml | 2 +-
services/kinesis/pom.xml | 2 +-
services/kinesisanalytics/pom.xml | 2 +-
services/kinesisanalyticsv2/pom.xml | 2 +-
services/kinesisvideo/pom.xml | 2 +-
services/kinesisvideoarchivedmedia/pom.xml | 2 +-
services/kinesisvideomedia/pom.xml | 2 +-
services/kinesisvideosignaling/pom.xml | 2 +-
services/kinesisvideowebrtcstorage/pom.xml | 2 +-
services/kms/pom.xml | 2 +-
services/lakeformation/pom.xml | 2 +-
services/lambda/pom.xml | 2 +-
services/launchwizard/pom.xml | 2 +-
services/lexmodelbuilding/pom.xml | 2 +-
services/lexmodelsv2/pom.xml | 2 +-
services/lexruntime/pom.xml | 2 +-
services/lexruntimev2/pom.xml | 2 +-
services/licensemanager/pom.xml | 2 +-
.../licensemanagerlinuxsubscriptions/pom.xml | 2 +-
.../licensemanagerusersubscriptions/pom.xml | 2 +-
services/lightsail/pom.xml | 2 +-
services/location/pom.xml | 2 +-
services/lookoutequipment/pom.xml | 2 +-
services/lookoutmetrics/pom.xml | 2 +-
services/lookoutvision/pom.xml | 2 +-
services/m2/pom.xml | 2 +-
services/machinelearning/pom.xml | 2 +-
services/macie2/pom.xml | 2 +-
services/mailmanager/pom.xml | 2 +-
services/managedblockchain/pom.xml | 2 +-
services/managedblockchainquery/pom.xml | 2 +-
services/marketplaceagreement/pom.xml | 2 +-
services/marketplacecatalog/pom.xml | 2 +-
services/marketplacecommerceanalytics/pom.xml | 2 +-
services/marketplacedeployment/pom.xml | 2 +-
services/marketplaceentitlement/pom.xml | 2 +-
services/marketplacemetering/pom.xml | 2 +-
services/marketplacereporting/pom.xml | 2 +-
services/mediaconnect/pom.xml | 2 +-
services/mediaconvert/pom.xml | 2 +-
services/medialive/pom.xml | 2 +-
services/mediapackage/pom.xml | 2 +-
services/mediapackagev2/pom.xml | 2 +-
services/mediapackagevod/pom.xml | 2 +-
services/mediastore/pom.xml | 2 +-
services/mediastoredata/pom.xml | 2 +-
services/mediatailor/pom.xml | 2 +-
services/medicalimaging/pom.xml | 2 +-
services/memorydb/pom.xml | 2 +-
services/mgn/pom.xml | 2 +-
services/migrationhub/pom.xml | 2 +-
services/migrationhubconfig/pom.xml | 2 +-
services/migrationhuborchestrator/pom.xml | 2 +-
services/migrationhubrefactorspaces/pom.xml | 2 +-
services/migrationhubstrategy/pom.xml | 2 +-
services/mpa/pom.xml | 2 +-
services/mq/pom.xml | 2 +-
services/mturk/pom.xml | 2 +-
services/mwaa/pom.xml | 2 +-
services/neptune/pom.xml | 2 +-
services/neptunedata/pom.xml | 2 +-
services/neptunegraph/pom.xml | 2 +-
services/networkfirewall/pom.xml | 2 +-
services/networkflowmonitor/pom.xml | 2 +-
services/networkmanager/pom.xml | 2 +-
services/networkmonitor/pom.xml | 2 +-
services/notifications/pom.xml | 2 +-
services/notificationscontacts/pom.xml | 2 +-
services/oam/pom.xml | 2 +-
services/observabilityadmin/pom.xml | 2 +-
services/odb/pom.xml | 2 +-
services/omics/pom.xml | 2 +-
services/opensearch/pom.xml | 2 +-
services/opensearchserverless/pom.xml | 2 +-
services/organizations/pom.xml | 2 +-
services/osis/pom.xml | 2 +-
services/outposts/pom.xml | 2 +-
services/panorama/pom.xml | 2 +-
services/partnercentralselling/pom.xml | 2 +-
services/paymentcryptography/pom.xml | 2 +-
services/paymentcryptographydata/pom.xml | 2 +-
services/pcaconnectorad/pom.xml | 2 +-
services/pcaconnectorscep/pom.xml | 2 +-
services/pcs/pom.xml | 2 +-
services/personalize/pom.xml | 2 +-
services/personalizeevents/pom.xml | 2 +-
services/personalizeruntime/pom.xml | 2 +-
services/pi/pom.xml | 2 +-
services/pinpoint/pom.xml | 2 +-
services/pinpointemail/pom.xml | 2 +-
services/pinpointsmsvoice/pom.xml | 2 +-
services/pinpointsmsvoicev2/pom.xml | 2 +-
services/pipes/pom.xml | 2 +-
services/polly/pom.xml | 2 +-
services/pom.xml | 2 +-
services/pricing/pom.xml | 2 +-
services/proton/pom.xml | 2 +-
services/qapps/pom.xml | 2 +-
services/qbusiness/pom.xml | 2 +-
services/qconnect/pom.xml | 2 +-
services/qldb/pom.xml | 2 +-
services/qldbsession/pom.xml | 2 +-
services/quicksight/pom.xml | 2 +-
services/ram/pom.xml | 2 +-
services/rbin/pom.xml | 2 +-
services/rds/pom.xml | 2 +-
services/rdsdata/pom.xml | 2 +-
services/redshift/pom.xml | 2 +-
services/redshiftdata/pom.xml | 2 +-
services/redshiftserverless/pom.xml | 2 +-
services/rekognition/pom.xml | 2 +-
services/repostspace/pom.xml | 2 +-
services/resiliencehub/pom.xml | 2 +-
services/resourceexplorer2/pom.xml | 2 +-
services/resourcegroups/pom.xml | 2 +-
services/resourcegroupstaggingapi/pom.xml | 2 +-
services/robomaker/pom.xml | 2 +-
services/rolesanywhere/pom.xml | 2 +-
services/route53/pom.xml | 2 +-
services/route53domains/pom.xml | 2 +-
services/route53profiles/pom.xml | 2 +-
services/route53recoverycluster/pom.xml | 2 +-
services/route53recoverycontrolconfig/pom.xml | 2 +-
services/route53recoveryreadiness/pom.xml | 2 +-
services/route53resolver/pom.xml | 2 +-
services/rum/pom.xml | 2 +-
services/s3/pom.xml | 2 +-
services/s3control/pom.xml | 2 +-
services/s3outposts/pom.xml | 2 +-
services/s3tables/pom.xml | 2 +-
services/s3vectors/pom.xml | 2 +-
services/sagemaker/pom.xml | 2 +-
services/sagemakera2iruntime/pom.xml | 2 +-
services/sagemakeredge/pom.xml | 2 +-
services/sagemakerfeaturestoreruntime/pom.xml | 2 +-
services/sagemakergeospatial/pom.xml | 2 +-
services/sagemakermetrics/pom.xml | 2 +-
services/sagemakerruntime/pom.xml | 2 +-
services/savingsplans/pom.xml | 2 +-
services/scheduler/pom.xml | 2 +-
services/schemas/pom.xml | 2 +-
services/secretsmanager/pom.xml | 2 +-
services/securityhub/pom.xml | 2 +-
services/securityir/pom.xml | 2 +-
services/securitylake/pom.xml | 2 +-
.../serverlessapplicationrepository/pom.xml | 2 +-
services/servicecatalog/pom.xml | 2 +-
services/servicecatalogappregistry/pom.xml | 2 +-
services/servicediscovery/pom.xml | 2 +-
services/servicequotas/pom.xml | 2 +-
services/ses/pom.xml | 2 +-
services/sesv2/pom.xml | 2 +-
services/sfn/pom.xml | 2 +-
services/shield/pom.xml | 2 +-
services/signer/pom.xml | 2 +-
services/simspaceweaver/pom.xml | 2 +-
services/snowball/pom.xml | 2 +-
services/snowdevicemanagement/pom.xml | 2 +-
services/sns/pom.xml | 2 +-
services/socialmessaging/pom.xml | 2 +-
services/sqs/pom.xml | 2 +-
services/ssm/pom.xml | 2 +-
services/ssmcontacts/pom.xml | 2 +-
services/ssmguiconnect/pom.xml | 2 +-
services/ssmincidents/pom.xml | 2 +-
services/ssmquicksetup/pom.xml | 2 +-
services/ssmsap/pom.xml | 2 +-
services/sso/pom.xml | 2 +-
services/ssoadmin/pom.xml | 2 +-
services/ssooidc/pom.xml | 2 +-
services/storagegateway/pom.xml | 2 +-
services/sts/pom.xml | 2 +-
services/supplychain/pom.xml | 2 +-
services/support/pom.xml | 2 +-
services/supportapp/pom.xml | 2 +-
services/swf/pom.xml | 2 +-
services/synthetics/pom.xml | 2 +-
services/taxsettings/pom.xml | 2 +-
services/textract/pom.xml | 2 +-
services/timestreaminfluxdb/pom.xml | 2 +-
services/timestreamquery/pom.xml | 2 +-
services/timestreamwrite/pom.xml | 2 +-
services/tnb/pom.xml | 2 +-
services/transcribe/pom.xml | 2 +-
services/transcribestreaming/pom.xml | 2 +-
services/transfer/pom.xml | 2 +-
services/translate/pom.xml | 2 +-
services/trustedadvisor/pom.xml | 2 +-
services/verifiedpermissions/pom.xml | 2 +-
services/voiceid/pom.xml | 2 +-
services/vpclattice/pom.xml | 2 +-
services/waf/pom.xml | 2 +-
services/wafv2/pom.xml | 2 +-
services/wellarchitected/pom.xml | 2 +-
services/wisdom/pom.xml | 2 +-
services/workdocs/pom.xml | 2 +-
services/workmail/pom.xml | 2 +-
services/workmailmessageflow/pom.xml | 2 +-
services/workspaces/pom.xml | 2 +-
services/workspacesinstances/pom.xml | 2 +-
services/workspacesthinclient/pom.xml | 2 +-
services/workspacesweb/pom.xml | 2 +-
services/xray/pom.xml | 2 +-
test/architecture-tests/pom.xml | 2 +-
test/auth-tests/pom.xml | 2 +-
.../pom.xml | 2 +-
test/bundle-shading-tests/pom.xml | 2 +-
test/codegen-generated-classes-test/pom.xml | 2 +-
test/crt-unavailable-tests/pom.xml | 2 +-
test/http-client-benchmarks/pom.xml | 2 +-
test/http-client-tests/pom.xml | 2 +-
test/module-path-tests/pom.xml | 2 +-
.../pom.xml | 2 +-
test/protocol-tests-core/pom.xml | 2 +-
test/protocol-tests/pom.xml | 2 +-
test/region-testing/pom.xml | 2 +-
test/ruleset-testing-core/pom.xml | 2 +-
test/s3-benchmarks/pom.xml | 2 +-
test/s3-tests/pom.xml | 2 +-
test/sdk-benchmarks/pom.xml | 2 +-
test/sdk-native-image-test/pom.xml | 2 +-
test/service-test-utils/pom.xml | 2 +-
test/stability-tests/pom.xml | 2 +-
test/test-utils/pom.xml | 2 +-
test/tests-coverage-reporting/pom.xml | 2 +-
test/v2-migration-tests/pom.xml | 2 +-
third-party/pom.xml | 2 +-
third-party/third-party-jackson-core/pom.xml | 2 +-
.../pom.xml | 2 +-
third-party/third-party-slf4j-api/pom.xml | 2 +-
utils-lite/pom.xml | 2 +-
utils/pom.xml | 2 +-
v2-migration/pom.xml | 2 +-
517 files changed, 629 insertions(+), 573 deletions(-)
create mode 100644 .changes/2.34.5.json
delete mode 100644 .changes/next-release/bugfix-AmazonDynamoDBEnhancedClient-18f50d7.json
delete mode 100644 .changes/next-release/bugfix-AmazonSimpleQueueService-f9af949.json
delete mode 100644 .changes/next-release/feature-AWSBilling-57fa3f6.json
delete mode 100644 .changes/next-release/feature-AWSCostExplorerService-750ef36.json
delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-0443982.json
delete mode 100644 .changes/next-release/feature-AgentsforAmazonBedrockRuntime-28e12e7.json
delete mode 100644 .changes/next-release/feature-AmazonConnectService-59fe9fd.json
delete mode 100644 .changes/next-release/feature-AmazonDynamoDBStreams-1b55421.json
delete mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-ed60238.json
delete mode 100644 .changes/next-release/feature-AmazonRedshift-a258150.json
delete mode 100644 .changes/next-release/feature-DataAutomationforAmazonBedrock-f99328a.json
diff --git a/.changes/2.34.5.json b/.changes/2.34.5.json
new file mode 100644
index 000000000000..19aabeed1ffa
--- /dev/null
+++ b/.changes/2.34.5.json
@@ -0,0 +1,72 @@
+{
+ "version": "2.34.5",
+ "date": "2025-09-26",
+ "entries": [
+ {
+ "type": "bugfix",
+ "category": "Amazon DynamoDB Enhanced Client",
+ "contributor": "",
+ "description": "Optimizations for DDB EnhancedDocument.toJson()"
+ },
+ {
+ "type": "bugfix",
+ "category": "Amazon Simple Queue Service",
+ "contributor": "thornhillcody",
+ "description": "Fix SqsAsyncBatchManager excessive batch flushing under heavy load. Fixes [#6374](https://github.com/aws/aws-sdk-java-v2/issues/6374)."
+ },
+ {
+ "type": "feature",
+ "category": "AWS Billing",
+ "contributor": "",
+ "description": "Add ability to combine custom billing views to create new consolidated views."
+ },
+ {
+ "type": "feature",
+ "category": "AWS Cost Explorer Service",
+ "contributor": "",
+ "description": "Support for payer account dimension and billing view health status."
+ },
+ {
+ "type": "feature",
+ "category": "Agents for Amazon Bedrock Runtime",
+ "contributor": "",
+ "description": "This release enhances the information provided through Flow Traces. New information includes source/next node tracking, execution chains for complex nodes, dependency action (operation) details, and dependency traces."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon Connect Service",
+ "contributor": "",
+ "description": "Adds supports for manual contact picking (WorkList) operations on Routing Profiles, Agent Management and SearchContacts APIs."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon DynamoDB Streams",
+ "contributor": "",
+ "description": "Added support for IPv6 compatible endpoints for DynamoDB Streams."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon Elastic Compute Cloud",
+ "contributor": "",
+ "description": "This release includes documentation updates for Amazon EBS General Purpose SSD (gp3) volumes with larger size and higher IOPS and throughput."
+ },
+ {
+ "type": "feature",
+ "category": "Amazon Redshift",
+ "contributor": "",
+ "description": "Support tagging and tag propagation to IAM Identity Center for Redshift Idc Applications"
+ },
+ {
+ "type": "feature",
+ "category": "Data Automation for Amazon Bedrock",
+ "contributor": "",
+ "description": "Added support for configurable Speaker Labeling and Channel Labeling features for Audio modality."
+ },
+ {
+ "type": "feature",
+ "category": "AWS SDK for Java v2",
+ "contributor": "",
+ "description": "Updated endpoint and partition metadata."
+ }
+ ]
+}
\ No newline at end of file
diff --git a/.changes/next-release/bugfix-AmazonDynamoDBEnhancedClient-18f50d7.json b/.changes/next-release/bugfix-AmazonDynamoDBEnhancedClient-18f50d7.json
deleted file mode 100644
index 09ab79defe42..000000000000
--- a/.changes/next-release/bugfix-AmazonDynamoDBEnhancedClient-18f50d7.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "bugfix",
- "category": "Amazon DynamoDB Enhanced Client",
- "contributor": "",
- "description": "Optimizations for DDB EnhancedDocument.toJson()"
-}
diff --git a/.changes/next-release/bugfix-AmazonSimpleQueueService-f9af949.json b/.changes/next-release/bugfix-AmazonSimpleQueueService-f9af949.json
deleted file mode 100644
index 8f54960c30c8..000000000000
--- a/.changes/next-release/bugfix-AmazonSimpleQueueService-f9af949.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "bugfix",
- "category": "Amazon Simple Queue Service",
- "contributor": "thornhillcody",
- "description": "Fix SqsAsyncBatchManager excessive batch flushing under heavy load. Fixes [#6374](https://github.com/aws/aws-sdk-java-v2/issues/6374)."
-}
diff --git a/.changes/next-release/feature-AWSBilling-57fa3f6.json b/.changes/next-release/feature-AWSBilling-57fa3f6.json
deleted file mode 100644
index 9580ab7e04af..000000000000
--- a/.changes/next-release/feature-AWSBilling-57fa3f6.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "AWS Billing",
- "contributor": "",
- "description": "Add ability to combine custom billing views to create new consolidated views."
-}
diff --git a/.changes/next-release/feature-AWSCostExplorerService-750ef36.json b/.changes/next-release/feature-AWSCostExplorerService-750ef36.json
deleted file mode 100644
index b5bdd4e8860f..000000000000
--- a/.changes/next-release/feature-AWSCostExplorerService-750ef36.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "AWS Cost Explorer Service",
- "contributor": "",
- "description": "Support for payer account dimension and billing view health status."
-}
diff --git a/.changes/next-release/feature-AWSSDKforJavav2-0443982.json b/.changes/next-release/feature-AWSSDKforJavav2-0443982.json
deleted file mode 100644
index e5b5ee3ca5e3..000000000000
--- a/.changes/next-release/feature-AWSSDKforJavav2-0443982.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "AWS SDK for Java v2",
- "contributor": "",
- "description": "Updated endpoint and partition metadata."
-}
diff --git a/.changes/next-release/feature-AgentsforAmazonBedrockRuntime-28e12e7.json b/.changes/next-release/feature-AgentsforAmazonBedrockRuntime-28e12e7.json
deleted file mode 100644
index 4ddc14f3d9dd..000000000000
--- a/.changes/next-release/feature-AgentsforAmazonBedrockRuntime-28e12e7.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Agents for Amazon Bedrock Runtime",
- "contributor": "",
- "description": "This release enhances the information provided through Flow Traces. New information includes source/next node tracking, execution chains for complex nodes, dependency action (operation) details, and dependency traces."
-}
diff --git a/.changes/next-release/feature-AmazonConnectService-59fe9fd.json b/.changes/next-release/feature-AmazonConnectService-59fe9fd.json
deleted file mode 100644
index 75edbd987dca..000000000000
--- a/.changes/next-release/feature-AmazonConnectService-59fe9fd.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon Connect Service",
- "contributor": "",
- "description": "Adds supports for manual contact picking (WorkList) operations on Routing Profiles, Agent Management and SearchContacts APIs."
-}
diff --git a/.changes/next-release/feature-AmazonDynamoDBStreams-1b55421.json b/.changes/next-release/feature-AmazonDynamoDBStreams-1b55421.json
deleted file mode 100644
index 93d8d59ee715..000000000000
--- a/.changes/next-release/feature-AmazonDynamoDBStreams-1b55421.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon DynamoDB Streams",
- "contributor": "",
- "description": "Added support for IPv6 compatible endpoints for DynamoDB Streams."
-}
diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-ed60238.json b/.changes/next-release/feature-AmazonElasticComputeCloud-ed60238.json
deleted file mode 100644
index 29eea4454a4d..000000000000
--- a/.changes/next-release/feature-AmazonElasticComputeCloud-ed60238.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon Elastic Compute Cloud",
- "contributor": "",
- "description": "This release includes documentation updates for Amazon EBS General Purpose SSD (gp3) volumes with larger size and higher IOPS and throughput."
-}
diff --git a/.changes/next-release/feature-AmazonRedshift-a258150.json b/.changes/next-release/feature-AmazonRedshift-a258150.json
deleted file mode 100644
index 6429d0d7235f..000000000000
--- a/.changes/next-release/feature-AmazonRedshift-a258150.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Amazon Redshift",
- "contributor": "",
- "description": "Support tagging and tag propagation to IAM Identity Center for Redshift Idc Applications"
-}
diff --git a/.changes/next-release/feature-DataAutomationforAmazonBedrock-f99328a.json b/.changes/next-release/feature-DataAutomationforAmazonBedrock-f99328a.json
deleted file mode 100644
index b50b6f3fac67..000000000000
--- a/.changes/next-release/feature-DataAutomationforAmazonBedrock-f99328a.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "type": "feature",
- "category": "Data Automation for Amazon Bedrock",
- "contributor": "",
- "description": "Added support for configurable Speaker Labeling and Channel Labeling features for Audio modality."
-}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8ba381771fa1..3ada4ee02745 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,54 @@
#### 👋 _Looking for changelogs for older versions? You can find them in the [changelogs](./changelogs) directory._
+# __2.34.5__ __2025-09-26__
+## __AWS Billing__
+ - ### Features
+ - Add ability to combine custom billing views to create new consolidated views.
+
+## __AWS Cost Explorer Service__
+ - ### Features
+ - Support for payer account dimension and billing view health status.
+
+## __AWS SDK for Java v2__
+ - ### Features
+ - Updated endpoint and partition metadata.
+
+## __Agents for Amazon Bedrock Runtime__
+ - ### Features
+ - This release enhances the information provided through Flow Traces. New information includes source/next node tracking, execution chains for complex nodes, dependency action (operation) details, and dependency traces.
+
+## __Amazon Connect Service__
+ - ### Features
+ - Adds supports for manual contact picking (WorkList) operations on Routing Profiles, Agent Management and SearchContacts APIs.
+
+## __Amazon DynamoDB Enhanced Client__
+ - ### Bugfixes
+ - Optimizations for DDB EnhancedDocument.toJson()
+
+## __Amazon DynamoDB Streams__
+ - ### Features
+ - Added support for IPv6 compatible endpoints for DynamoDB Streams.
+
+## __Amazon Elastic Compute Cloud__
+ - ### Features
+ - This release includes documentation updates for Amazon EBS General Purpose SSD (gp3) volumes with larger size and higher IOPS and throughput.
+
+## __Amazon Redshift__
+ - ### Features
+ - Support tagging and tag propagation to IAM Identity Center for Redshift Idc Applications
+
+## __Amazon Simple Queue Service__
+ - ### Bugfixes
+ - Fix SqsAsyncBatchManager excessive batch flushing under heavy load. Fixes [#6374](https://github.com/aws/aws-sdk-java-v2/issues/6374).
+ - Contributed by: [@thornhillcody](https://github.com/thornhillcody)
+
+## __Data Automation for Amazon Bedrock__
+ - ### Features
+ - Added support for configurable Speaker Labeling and Channel Labeling features for Audio modality.
+
+## __Contributors__
+Special thanks to the following contributors to this release:
+
+[@thornhillcody](https://github.com/thornhillcody)
# __2.34.4__ __2025-09-25__
## __AWS Glue__
- ### Features
diff --git a/README.md b/README.md
index eddd05c95ce7..6f8a8acc27a9 100644
--- a/README.md
+++ b/README.md
@@ -51,7 +51,7 @@ To automatically manage module versions (currently all modules have the same ver
software.amazon.awssdk
bom
- 2.34.4
+ 2.34.5
pom
import
@@ -85,12 +85,12 @@ Alternatively you can add dependencies for the specific services you use only:
software.amazon.awssdk
ec2
- 2.34.4
+ 2.34.5
software.amazon.awssdk
s3
- 2.34.4
+ 2.34.5
```
@@ -102,7 +102,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please
software.amazon.awssdk
aws-sdk-java
- 2.34.4
+ 2.34.5
```
diff --git a/archetypes/archetype-app-quickstart/pom.xml b/archetypes/archetype-app-quickstart/pom.xml
index 02e8b3f93fbd..a48ae606b29d 100644
--- a/archetypes/archetype-app-quickstart/pom.xml
+++ b/archetypes/archetype-app-quickstart/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml
index 3d99554bc935..e9cb412358e0 100644
--- a/archetypes/archetype-lambda/pom.xml
+++ b/archetypes/archetype-lambda/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
archetype-lambda
diff --git a/archetypes/archetype-tools/pom.xml b/archetypes/archetype-tools/pom.xml
index a74677a2c91e..8cab57cb310a 100644
--- a/archetypes/archetype-tools/pom.xml
+++ b/archetypes/archetype-tools/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/archetypes/pom.xml b/archetypes/pom.xml
index f318a094a014..6fa43c54d988 100644
--- a/archetypes/pom.xml
+++ b/archetypes/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
archetypes
diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml
index 07455fd3f2c6..cb01e64f3d52 100644
--- a/aws-sdk-java/pom.xml
+++ b/aws-sdk-java/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
../pom.xml
aws-sdk-java
diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml
index 0692525b82e7..433c6842c5f2 100644
--- a/bom-internal/pom.xml
+++ b/bom-internal/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/bom/pom.xml b/bom/pom.xml
index fb6edc3dabfe..46fe8ceaff91 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
../pom.xml
bom
diff --git a/bundle-logging-bridge/pom.xml b/bundle-logging-bridge/pom.xml
index 3c61afcfd370..67d66a2e2ec0 100644
--- a/bundle-logging-bridge/pom.xml
+++ b/bundle-logging-bridge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
bundle-logging-bridge
jar
diff --git a/bundle-sdk/pom.xml b/bundle-sdk/pom.xml
index 84d844c7b2c4..920634ab0325 100644
--- a/bundle-sdk/pom.xml
+++ b/bundle-sdk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
bundle-sdk
jar
diff --git a/bundle/pom.xml b/bundle/pom.xml
index 36af0cbf053f..cf5b0a17c64c 100644
--- a/bundle/pom.xml
+++ b/bundle/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
bundle
jar
diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml
index 4c905389b835..4ee3c7c7900a 100644
--- a/codegen-lite-maven-plugin/pom.xml
+++ b/codegen-lite-maven-plugin/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
../pom.xml
codegen-lite-maven-plugin
diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml
index a710e8d7ecef..3b45a5b06419 100644
--- a/codegen-lite/pom.xml
+++ b/codegen-lite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
codegen-lite
AWS Java SDK :: Code Generator Lite
diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml
index 155c6c3000ce..f05d75f147f7 100644
--- a/codegen-maven-plugin/pom.xml
+++ b/codegen-maven-plugin/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
../pom.xml
codegen-maven-plugin
diff --git a/codegen/pom.xml b/codegen/pom.xml
index a3725536bd3a..c9250a97f043 100644
--- a/codegen/pom.xml
+++ b/codegen/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
codegen
AWS Java SDK :: Code Generator
diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml
index ae4146a4c3be..316f523cd834 100644
--- a/core/annotations/pom.xml
+++ b/core/annotations/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/core/arns/pom.xml b/core/arns/pom.xml
index 5182f7505ed7..aafa2ec6d57e 100644
--- a/core/arns/pom.xml
+++ b/core/arns/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/core/auth-crt/pom.xml b/core/auth-crt/pom.xml
index d824c15223cc..bf553dc813db 100644
--- a/core/auth-crt/pom.xml
+++ b/core/auth-crt/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5-SNAPSHOT
+ 2.34.5
auth-crt
diff --git a/core/auth/pom.xml b/core/auth/pom.xml
index 1a35a3141127..684b49cf00bb 100644
--- a/core/auth/pom.xml
+++ b/core/auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5-SNAPSHOT
+ 2.34.5
auth
diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml
index cc58983c32b9..7578d76c92d8 100644
--- a/core/aws-core/pom.xml
+++ b/core/aws-core/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5-SNAPSHOT
+ 2.34.5
aws-core
diff --git a/core/checksums-spi/pom.xml b/core/checksums-spi/pom.xml
index 37452307c621..daa00c32753e 100644
--- a/core/checksums-spi/pom.xml
+++ b/core/checksums-spi/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5-SNAPSHOT
+ 2.34.5
checksums-spi
diff --git a/core/checksums/pom.xml b/core/checksums/pom.xml
index 6639e198f9d7..7437261d2240 100644
--- a/core/checksums/pom.xml
+++ b/core/checksums/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5-SNAPSHOT
+ 2.34.5
checksums
diff --git a/core/crt-core/pom.xml b/core/crt-core/pom.xml
index db7b02e4dbed..69d177e1c3e4 100644
--- a/core/crt-core/pom.xml
+++ b/core/crt-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.34.5-SNAPSHOT
+ 2.34.5
crt-core
diff --git a/core/endpoints-spi/pom.xml b/core/endpoints-spi/pom.xml
index d7fdd2e97939..a5ee05bfdb76 100644
--- a/core/endpoints-spi/pom.xml
+++ b/core/endpoints-spi/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/core/http-auth-aws-crt/pom.xml b/core/http-auth-aws-crt/pom.xml
index 88aff428e327..3af0b053a109 100644
--- a/core/http-auth-aws-crt/pom.xml
+++ b/core/http-auth-aws-crt/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5-SNAPSHOT
+ 2.34.5
http-auth-aws-crt
diff --git a/core/http-auth-aws-eventstream/pom.xml b/core/http-auth-aws-eventstream/pom.xml
index a1b0ec0786df..b26ad2599db6 100644
--- a/core/http-auth-aws-eventstream/pom.xml
+++ b/core/http-auth-aws-eventstream/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5-SNAPSHOT
+ 2.34.5
http-auth-aws-eventstream
diff --git a/core/http-auth-aws/pom.xml b/core/http-auth-aws/pom.xml
index cbabb367a747..1263d75b5dd7 100644
--- a/core/http-auth-aws/pom.xml
+++ b/core/http-auth-aws/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5-SNAPSHOT
+ 2.34.5
http-auth-aws
diff --git a/core/http-auth-spi/pom.xml b/core/http-auth-spi/pom.xml
index 630f5e6904fe..b8c733924b7e 100644
--- a/core/http-auth-spi/pom.xml
+++ b/core/http-auth-spi/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5-SNAPSHOT
+ 2.34.5
http-auth-spi
diff --git a/core/http-auth/pom.xml b/core/http-auth/pom.xml
index 74956aba3e14..3f02c04b15a6 100644
--- a/core/http-auth/pom.xml
+++ b/core/http-auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5-SNAPSHOT
+ 2.34.5
http-auth
diff --git a/core/identity-spi/pom.xml b/core/identity-spi/pom.xml
index 33926379f977..fdf346093403 100644
--- a/core/identity-spi/pom.xml
+++ b/core/identity-spi/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5-SNAPSHOT
+ 2.34.5
identity-spi
diff --git a/core/imds/pom.xml b/core/imds/pom.xml
index 128cd91acabc..2fdce4465ada 100644
--- a/core/imds/pom.xml
+++ b/core/imds/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
imds
diff --git a/core/json-utils/pom.xml b/core/json-utils/pom.xml
index 2523d30faaf7..cf0103007ec1 100644
--- a/core/json-utils/pom.xml
+++ b/core/json-utils/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml
index 5d7093db7146..d6cac8beac1e 100644
--- a/core/metrics-spi/pom.xml
+++ b/core/metrics-spi/pom.xml
@@ -5,7 +5,7 @@
core
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/core/pom.xml b/core/pom.xml
index d039a5eb9048..3c26c99cd341 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
core
diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml
index 1cca5dba7d6b..eb0db327b082 100644
--- a/core/profiles/pom.xml
+++ b/core/profiles/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5-SNAPSHOT
+ 2.34.5
profiles
diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml
index 637c3a58c28b..4c238cfdbb3e 100644
--- a/core/protocols/aws-cbor-protocol/pom.xml
+++ b/core/protocols/aws-cbor-protocol/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml
index bb16a42cc6e0..81f4e03d025e 100644
--- a/core/protocols/aws-json-protocol/pom.xml
+++ b/core/protocols/aws-json-protocol/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml
index adce037a729c..90ba98a7523a 100644
--- a/core/protocols/aws-query-protocol/pom.xml
+++ b/core/protocols/aws-query-protocol/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml
index 3d3137f79941..8f9aaee67682 100644
--- a/core/protocols/aws-xml-protocol/pom.xml
+++ b/core/protocols/aws-xml-protocol/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml
index c2a4f525772a..524c87f7e05f 100644
--- a/core/protocols/pom.xml
+++ b/core/protocols/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml
index 26061da667e7..c5ab19fb0fdc 100644
--- a/core/protocols/protocol-core/pom.xml
+++ b/core/protocols/protocol-core/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/core/protocols/smithy-rpcv2-protocol/pom.xml b/core/protocols/smithy-rpcv2-protocol/pom.xml
index dc63705937fb..a460287a6dc5 100644
--- a/core/protocols/smithy-rpcv2-protocol/pom.xml
+++ b/core/protocols/smithy-rpcv2-protocol/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/core/regions/pom.xml b/core/regions/pom.xml
index e2b6f225c08f..85b315b95fc9 100644
--- a/core/regions/pom.xml
+++ b/core/regions/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5-SNAPSHOT
+ 2.34.5
regions
diff --git a/core/retries-spi/pom.xml b/core/retries-spi/pom.xml
index f90321f4085a..491ad3d2c6a5 100644
--- a/core/retries-spi/pom.xml
+++ b/core/retries-spi/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/core/retries/pom.xml b/core/retries/pom.xml
index f4fb397b94f6..425547286725 100644
--- a/core/retries/pom.xml
+++ b/core/retries/pom.xml
@@ -21,7 +21,7 @@
core
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml
index 9b87f8b7c059..abf70bbef2ad 100644
--- a/core/sdk-core/pom.xml
+++ b/core/sdk-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.34.5-SNAPSHOT
+ 2.34.5
sdk-core
AWS Java SDK :: SDK Core
diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml
index 2bc325080e2f..f1db8fb51e4b 100644
--- a/http-client-spi/pom.xml
+++ b/http-client-spi/pom.xml
@@ -22,7 +22,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
http-client-spi
AWS Java SDK :: HTTP Client Interface
diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml
index d526a0f0fed0..d995584568de 100644
--- a/http-clients/apache-client/pom.xml
+++ b/http-clients/apache-client/pom.xml
@@ -21,7 +21,7 @@
http-clients
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
apache-client
diff --git a/http-clients/apache5-client/pom.xml b/http-clients/apache5-client/pom.xml
index ae87e2a21d80..5b818df31c6a 100644
--- a/http-clients/apache5-client/pom.xml
+++ b/http-clients/apache5-client/pom.xml
@@ -21,7 +21,7 @@
http-clients
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
apache5-client
diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml
index 10c0a649723b..7db2c97a0a04 100644
--- a/http-clients/aws-crt-client/pom.xml
+++ b/http-clients/aws-crt-client/pom.xml
@@ -21,7 +21,7 @@
http-clients
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml
index c8858e3ef57b..3e5e0b2c4c86 100644
--- a/http-clients/netty-nio-client/pom.xml
+++ b/http-clients/netty-nio-client/pom.xml
@@ -20,7 +20,7 @@
http-clients
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/http-clients/pom.xml b/http-clients/pom.xml
index 16f1bd4447c0..bf1fc347dc10 100644
--- a/http-clients/pom.xml
+++ b/http-clients/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml
index 6eb6742a4a0f..c3abe7a6e0b2 100644
--- a/http-clients/url-connection-client/pom.xml
+++ b/http-clients/url-connection-client/pom.xml
@@ -20,7 +20,7 @@
http-clients
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml
index 67ffab943211..f1688a1edca8 100644
--- a/metric-publishers/cloudwatch-metric-publisher/pom.xml
+++ b/metric-publishers/cloudwatch-metric-publisher/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
metric-publishers
- 2.34.5-SNAPSHOT
+ 2.34.5
cloudwatch-metric-publisher
diff --git a/metric-publishers/emf-metric-logging-publisher/pom.xml b/metric-publishers/emf-metric-logging-publisher/pom.xml
index 29c11bd337fd..e7e5372538bb 100644
--- a/metric-publishers/emf-metric-logging-publisher/pom.xml
+++ b/metric-publishers/emf-metric-logging-publisher/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
metric-publishers
- 2.34.5-SNAPSHOT
+ 2.34.5
emf-metric-logging-publisher
diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml
index 34a1d94b9be9..7fe0d9a4bb40 100644
--- a/metric-publishers/pom.xml
+++ b/metric-publishers/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
metric-publishers
diff --git a/pom.xml b/pom.xml
index 4f51cd31cb42..2d86f37cec82 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
4.0.0
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
pom
AWS Java SDK :: Parent
The Amazon Web Services SDK for Java provides Java APIs
diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml
index 1d4c0e574559..ed00e1e7c969 100644
--- a/release-scripts/pom.xml
+++ b/release-scripts/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
../pom.xml
release-scripts
diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml
index 19cd7feaeddd..689ddc10042d 100644
--- a/services-custom/dynamodb-enhanced/pom.xml
+++ b/services-custom/dynamodb-enhanced/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services-custom
- 2.34.5-SNAPSHOT
+ 2.34.5
dynamodb-enhanced
AWS Java SDK :: DynamoDB :: Enhanced Client
diff --git a/services-custom/iam-policy-builder/pom.xml b/services-custom/iam-policy-builder/pom.xml
index 2cb10190c669..732c749df809 100644
--- a/services-custom/iam-policy-builder/pom.xml
+++ b/services-custom/iam-policy-builder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
iam-policy-builder
diff --git a/services-custom/pom.xml b/services-custom/pom.xml
index 8fc810d5034a..3f313edbcddc 100644
--- a/services-custom/pom.xml
+++ b/services-custom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
services-custom
AWS Java SDK :: Custom Services
diff --git a/services-custom/s3-event-notifications/pom.xml b/services-custom/s3-event-notifications/pom.xml
index e2315bfa9ee1..ed9c7538b397 100644
--- a/services-custom/s3-event-notifications/pom.xml
+++ b/services-custom/s3-event-notifications/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
s3-event-notifications
diff --git a/services-custom/s3-transfer-manager/pom.xml b/services-custom/s3-transfer-manager/pom.xml
index 18fb81fb915c..89a315c112eb 100644
--- a/services-custom/s3-transfer-manager/pom.xml
+++ b/services-custom/s3-transfer-manager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
s3-transfer-manager
diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml
index e6bef63bb51b..2f35fca16a68 100644
--- a/services/accessanalyzer/pom.xml
+++ b/services/accessanalyzer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
accessanalyzer
AWS Java SDK :: Services :: AccessAnalyzer
diff --git a/services/account/pom.xml b/services/account/pom.xml
index 8f52af5fd9e2..366d84b85d96 100644
--- a/services/account/pom.xml
+++ b/services/account/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
account
AWS Java SDK :: Services :: Account
diff --git a/services/acm/pom.xml b/services/acm/pom.xml
index 9f0b96af85c1..2cf2cd85df32 100644
--- a/services/acm/pom.xml
+++ b/services/acm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
acm
AWS Java SDK :: Services :: AWS Certificate Manager
diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml
index 1faeefc91851..293fe869f297 100644
--- a/services/acmpca/pom.xml
+++ b/services/acmpca/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
acmpca
AWS Java SDK :: Services :: ACM PCA
diff --git a/services/aiops/pom.xml b/services/aiops/pom.xml
index c93e0719b176..6ab960b913ab 100644
--- a/services/aiops/pom.xml
+++ b/services/aiops/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
aiops
AWS Java SDK :: Services :: AI Ops
diff --git a/services/amp/pom.xml b/services/amp/pom.xml
index eac387e8d526..b483176905c5 100644
--- a/services/amp/pom.xml
+++ b/services/amp/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
amp
AWS Java SDK :: Services :: Amp
diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml
index 96b484e1b4f5..115e78057380 100644
--- a/services/amplify/pom.xml
+++ b/services/amplify/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
amplify
AWS Java SDK :: Services :: Amplify
diff --git a/services/amplifybackend/pom.xml b/services/amplifybackend/pom.xml
index 996f28ad4fae..da94a0d28f62 100644
--- a/services/amplifybackend/pom.xml
+++ b/services/amplifybackend/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
amplifybackend
AWS Java SDK :: Services :: Amplify Backend
diff --git a/services/amplifyuibuilder/pom.xml b/services/amplifyuibuilder/pom.xml
index 16ca36703e23..1b1cb4054767 100644
--- a/services/amplifyuibuilder/pom.xml
+++ b/services/amplifyuibuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
amplifyuibuilder
AWS Java SDK :: Services :: Amplify UI Builder
diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml
index aa990b228282..47c714762ea5 100644
--- a/services/apigateway/pom.xml
+++ b/services/apigateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
apigateway
AWS Java SDK :: Services :: Amazon API Gateway
diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml
index 4e5ce2bf3fff..e67e93b68b78 100644
--- a/services/apigatewaymanagementapi/pom.xml
+++ b/services/apigatewaymanagementapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
apigatewaymanagementapi
AWS Java SDK :: Services :: ApiGatewayManagementApi
diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml
index f05fc68b280b..ccf0b3b10958 100644
--- a/services/apigatewayv2/pom.xml
+++ b/services/apigatewayv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
apigatewayv2
AWS Java SDK :: Services :: ApiGatewayV2
diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml
index bb17364e6f8c..b901d7fbff27 100644
--- a/services/appconfig/pom.xml
+++ b/services/appconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
appconfig
AWS Java SDK :: Services :: AppConfig
diff --git a/services/appconfigdata/pom.xml b/services/appconfigdata/pom.xml
index a07030ae6780..1c9654920f70 100644
--- a/services/appconfigdata/pom.xml
+++ b/services/appconfigdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
appconfigdata
AWS Java SDK :: Services :: App Config Data
diff --git a/services/appfabric/pom.xml b/services/appfabric/pom.xml
index 200f34331650..0536b0abc73e 100644
--- a/services/appfabric/pom.xml
+++ b/services/appfabric/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
appfabric
AWS Java SDK :: Services :: App Fabric
diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml
index da965fbb132b..dee2670be0c6 100644
--- a/services/appflow/pom.xml
+++ b/services/appflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
appflow
AWS Java SDK :: Services :: Appflow
diff --git a/services/appintegrations/pom.xml b/services/appintegrations/pom.xml
index 7b41b648720b..c7e86c2cbb5f 100644
--- a/services/appintegrations/pom.xml
+++ b/services/appintegrations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
appintegrations
AWS Java SDK :: Services :: App Integrations
diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml
index a9b6a446ec8e..d90c6b8fc618 100644
--- a/services/applicationautoscaling/pom.xml
+++ b/services/applicationautoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
applicationautoscaling
AWS Java SDK :: Services :: AWS Application Auto Scaling
diff --git a/services/applicationcostprofiler/pom.xml b/services/applicationcostprofiler/pom.xml
index 575a9d412672..4c4f686274ef 100644
--- a/services/applicationcostprofiler/pom.xml
+++ b/services/applicationcostprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
applicationcostprofiler
AWS Java SDK :: Services :: Application Cost Profiler
diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml
index 3619e70e7f8a..0a400fb946c0 100644
--- a/services/applicationdiscovery/pom.xml
+++ b/services/applicationdiscovery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
applicationdiscovery
AWS Java SDK :: Services :: AWS Application Discovery Service
diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml
index c0ca25469dae..94cb9c9535a4 100644
--- a/services/applicationinsights/pom.xml
+++ b/services/applicationinsights/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
applicationinsights
AWS Java SDK :: Services :: Application Insights
diff --git a/services/applicationsignals/pom.xml b/services/applicationsignals/pom.xml
index 5229093d6815..a7a8d771efda 100644
--- a/services/applicationsignals/pom.xml
+++ b/services/applicationsignals/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
applicationsignals
AWS Java SDK :: Services :: Application Signals
diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml
index 790f3adf82a7..f4b8912886de 100644
--- a/services/appmesh/pom.xml
+++ b/services/appmesh/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
appmesh
AWS Java SDK :: Services :: App Mesh
diff --git a/services/apprunner/pom.xml b/services/apprunner/pom.xml
index 8ce648cb6ab8..dd0277368ae8 100644
--- a/services/apprunner/pom.xml
+++ b/services/apprunner/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
apprunner
AWS Java SDK :: Services :: App Runner
diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml
index c02c06b54c2e..c26e6056ed5c 100644
--- a/services/appstream/pom.xml
+++ b/services/appstream/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
appstream
AWS Java SDK :: Services :: Amazon AppStream
diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml
index f26a4cf72f23..695f53a25dd9 100644
--- a/services/appsync/pom.xml
+++ b/services/appsync/pom.xml
@@ -21,7 +21,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
appsync
diff --git a/services/apptest/pom.xml b/services/apptest/pom.xml
index e3f448902d3b..a5c4499c0424 100644
--- a/services/apptest/pom.xml
+++ b/services/apptest/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
apptest
AWS Java SDK :: Services :: App Test
diff --git a/services/arcregionswitch/pom.xml b/services/arcregionswitch/pom.xml
index 30f1e6a269b2..92901062f076 100644
--- a/services/arcregionswitch/pom.xml
+++ b/services/arcregionswitch/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
arcregionswitch
AWS Java SDK :: Services :: ARC Region Switch
diff --git a/services/arczonalshift/pom.xml b/services/arczonalshift/pom.xml
index eb316608bc4d..2abeb08bfea9 100644
--- a/services/arczonalshift/pom.xml
+++ b/services/arczonalshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
arczonalshift
AWS Java SDK :: Services :: ARC Zonal Shift
diff --git a/services/artifact/pom.xml b/services/artifact/pom.xml
index 550582fdecc1..a5a5253896cf 100644
--- a/services/artifact/pom.xml
+++ b/services/artifact/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
artifact
AWS Java SDK :: Services :: Artifact
diff --git a/services/athena/pom.xml b/services/athena/pom.xml
index f4dac422eefc..71023e0d2d76 100644
--- a/services/athena/pom.xml
+++ b/services/athena/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
athena
AWS Java SDK :: Services :: Amazon Athena
diff --git a/services/auditmanager/pom.xml b/services/auditmanager/pom.xml
index 6dcc23558a50..3de45d94a0fd 100644
--- a/services/auditmanager/pom.xml
+++ b/services/auditmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
auditmanager
AWS Java SDK :: Services :: Audit Manager
diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml
index 82ce79b7654c..a36ad080bc7d 100644
--- a/services/autoscaling/pom.xml
+++ b/services/autoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
autoscaling
AWS Java SDK :: Services :: Auto Scaling
diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml
index 57ff25ffa7d9..ac2674d4393f 100644
--- a/services/autoscalingplans/pom.xml
+++ b/services/autoscalingplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
autoscalingplans
AWS Java SDK :: Services :: Auto Scaling Plans
diff --git a/services/b2bi/pom.xml b/services/b2bi/pom.xml
index a5c12ae7d73f..dbf3f2a3c4e6 100644
--- a/services/b2bi/pom.xml
+++ b/services/b2bi/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
b2bi
AWS Java SDK :: Services :: B2 Bi
diff --git a/services/backup/pom.xml b/services/backup/pom.xml
index a838ff7952c9..1c0f05ff47d0 100644
--- a/services/backup/pom.xml
+++ b/services/backup/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
backup
AWS Java SDK :: Services :: Backup
diff --git a/services/backupgateway/pom.xml b/services/backupgateway/pom.xml
index adca3cf07ee8..36339af1b472 100644
--- a/services/backupgateway/pom.xml
+++ b/services/backupgateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
backupgateway
AWS Java SDK :: Services :: Backup Gateway
diff --git a/services/backupsearch/pom.xml b/services/backupsearch/pom.xml
index dcdee9af03ae..93b3dc698fa7 100644
--- a/services/backupsearch/pom.xml
+++ b/services/backupsearch/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
backupsearch
AWS Java SDK :: Services :: Backup Search
diff --git a/services/batch/pom.xml b/services/batch/pom.xml
index 8982844eb38f..c30ddc9d728d 100644
--- a/services/batch/pom.xml
+++ b/services/batch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
batch
AWS Java SDK :: Services :: AWS Batch
diff --git a/services/bcmdashboards/pom.xml b/services/bcmdashboards/pom.xml
index 2fe9ec848af3..85d09847ecb1 100644
--- a/services/bcmdashboards/pom.xml
+++ b/services/bcmdashboards/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
bcmdashboards
AWS Java SDK :: Services :: BCM Dashboards
diff --git a/services/bcmdataexports/pom.xml b/services/bcmdataexports/pom.xml
index 931a755c00b8..3057d01f7060 100644
--- a/services/bcmdataexports/pom.xml
+++ b/services/bcmdataexports/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
bcmdataexports
AWS Java SDK :: Services :: BCM Data Exports
diff --git a/services/bcmpricingcalculator/pom.xml b/services/bcmpricingcalculator/pom.xml
index 7782f5fa1ee1..cb182fb944c8 100644
--- a/services/bcmpricingcalculator/pom.xml
+++ b/services/bcmpricingcalculator/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
bcmpricingcalculator
AWS Java SDK :: Services :: BCM Pricing Calculator
diff --git a/services/bcmrecommendedactions/pom.xml b/services/bcmrecommendedactions/pom.xml
index 5229ccf37ea9..1ff17e6147a9 100644
--- a/services/bcmrecommendedactions/pom.xml
+++ b/services/bcmrecommendedactions/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
bcmrecommendedactions
AWS Java SDK :: Services :: BCM Recommended Actions
diff --git a/services/bedrock/pom.xml b/services/bedrock/pom.xml
index cdb1303c460d..7169455ae9e0 100644
--- a/services/bedrock/pom.xml
+++ b/services/bedrock/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
bedrock
AWS Java SDK :: Services :: Bedrock
diff --git a/services/bedrockagent/pom.xml b/services/bedrockagent/pom.xml
index 547cb20f39c6..de61f8f6740c 100644
--- a/services/bedrockagent/pom.xml
+++ b/services/bedrockagent/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
bedrockagent
AWS Java SDK :: Services :: Bedrock Agent
diff --git a/services/bedrockagentcore/pom.xml b/services/bedrockagentcore/pom.xml
index 3b03b99eddad..b756023dba10 100644
--- a/services/bedrockagentcore/pom.xml
+++ b/services/bedrockagentcore/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
bedrockagentcore
AWS Java SDK :: Services :: Bedrock Agent Core
diff --git a/services/bedrockagentcorecontrol/pom.xml b/services/bedrockagentcorecontrol/pom.xml
index 50315f901d07..fe70b9782b07 100644
--- a/services/bedrockagentcorecontrol/pom.xml
+++ b/services/bedrockagentcorecontrol/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
bedrockagentcorecontrol
AWS Java SDK :: Services :: Bedrock Agent Core Control
diff --git a/services/bedrockagentruntime/pom.xml b/services/bedrockagentruntime/pom.xml
index 8d82fa58dcd4..e414ac721e1a 100644
--- a/services/bedrockagentruntime/pom.xml
+++ b/services/bedrockagentruntime/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
bedrockagentruntime
AWS Java SDK :: Services :: Bedrock Agent Runtime
diff --git a/services/bedrockdataautomation/pom.xml b/services/bedrockdataautomation/pom.xml
index cff5fd8e994b..05a30bfca322 100644
--- a/services/bedrockdataautomation/pom.xml
+++ b/services/bedrockdataautomation/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
bedrockdataautomation
AWS Java SDK :: Services :: Bedrock Data Automation
diff --git a/services/bedrockdataautomationruntime/pom.xml b/services/bedrockdataautomationruntime/pom.xml
index 9685cae8ae0d..e5f78b4294b0 100644
--- a/services/bedrockdataautomationruntime/pom.xml
+++ b/services/bedrockdataautomationruntime/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
bedrockdataautomationruntime
AWS Java SDK :: Services :: Bedrock Data Automation Runtime
diff --git a/services/bedrockruntime/pom.xml b/services/bedrockruntime/pom.xml
index 7f0a1902574c..ba0fa1a1b99d 100644
--- a/services/bedrockruntime/pom.xml
+++ b/services/bedrockruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
bedrockruntime
AWS Java SDK :: Services :: Bedrock Runtime
diff --git a/services/billing/pom.xml b/services/billing/pom.xml
index c045a51e01c6..c3260f1cd16a 100644
--- a/services/billing/pom.xml
+++ b/services/billing/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
billing
AWS Java SDK :: Services :: Billing
diff --git a/services/billingconductor/pom.xml b/services/billingconductor/pom.xml
index af160d77205a..f123619c0103 100644
--- a/services/billingconductor/pom.xml
+++ b/services/billingconductor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
billingconductor
AWS Java SDK :: Services :: Billingconductor
diff --git a/services/braket/pom.xml b/services/braket/pom.xml
index afcc081ec649..9e6c0dc6a9f2 100644
--- a/services/braket/pom.xml
+++ b/services/braket/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
braket
AWS Java SDK :: Services :: Braket
diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml
index 685eaafd526c..6d277fc39faf 100644
--- a/services/budgets/pom.xml
+++ b/services/budgets/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
budgets
AWS Java SDK :: Services :: AWS Budgets
diff --git a/services/chatbot/pom.xml b/services/chatbot/pom.xml
index 4259117a87f6..ccfc4ae4872e 100644
--- a/services/chatbot/pom.xml
+++ b/services/chatbot/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
chatbot
AWS Java SDK :: Services :: Chatbot
diff --git a/services/chime/pom.xml b/services/chime/pom.xml
index cbf9d06c4011..9ec2337989de 100644
--- a/services/chime/pom.xml
+++ b/services/chime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
chime
AWS Java SDK :: Services :: Chime
diff --git a/services/chimesdkidentity/pom.xml b/services/chimesdkidentity/pom.xml
index 063e08462bee..aec491566026 100644
--- a/services/chimesdkidentity/pom.xml
+++ b/services/chimesdkidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
chimesdkidentity
AWS Java SDK :: Services :: Chime SDK Identity
diff --git a/services/chimesdkmediapipelines/pom.xml b/services/chimesdkmediapipelines/pom.xml
index 72bd2d527967..6153b9a4fe70 100644
--- a/services/chimesdkmediapipelines/pom.xml
+++ b/services/chimesdkmediapipelines/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
chimesdkmediapipelines
AWS Java SDK :: Services :: Chime SDK Media Pipelines
diff --git a/services/chimesdkmeetings/pom.xml b/services/chimesdkmeetings/pom.xml
index 3f4e23e4d5e0..29cceae80b80 100644
--- a/services/chimesdkmeetings/pom.xml
+++ b/services/chimesdkmeetings/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
chimesdkmeetings
AWS Java SDK :: Services :: Chime SDK Meetings
diff --git a/services/chimesdkmessaging/pom.xml b/services/chimesdkmessaging/pom.xml
index a82be1741595..5bb84a0e8e9b 100644
--- a/services/chimesdkmessaging/pom.xml
+++ b/services/chimesdkmessaging/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
chimesdkmessaging
AWS Java SDK :: Services :: Chime SDK Messaging
diff --git a/services/chimesdkvoice/pom.xml b/services/chimesdkvoice/pom.xml
index ec8a1435f4c8..e40758fd3ab0 100644
--- a/services/chimesdkvoice/pom.xml
+++ b/services/chimesdkvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
chimesdkvoice
AWS Java SDK :: Services :: Chime SDK Voice
diff --git a/services/cleanrooms/pom.xml b/services/cleanrooms/pom.xml
index 480fcff193fc..cc6b76757dfd 100644
--- a/services/cleanrooms/pom.xml
+++ b/services/cleanrooms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cleanrooms
AWS Java SDK :: Services :: Clean Rooms
diff --git a/services/cleanroomsml/pom.xml b/services/cleanroomsml/pom.xml
index 5f9ead9b17e9..55797f1bfb14 100644
--- a/services/cleanroomsml/pom.xml
+++ b/services/cleanroomsml/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cleanroomsml
AWS Java SDK :: Services :: Clean Rooms ML
diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml
index 39133cade01e..4761118b758f 100644
--- a/services/cloud9/pom.xml
+++ b/services/cloud9/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
cloud9
diff --git a/services/cloudcontrol/pom.xml b/services/cloudcontrol/pom.xml
index 345b75ca9afc..10706ce023af 100644
--- a/services/cloudcontrol/pom.xml
+++ b/services/cloudcontrol/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cloudcontrol
AWS Java SDK :: Services :: Cloud Control
diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml
index d2bb303ee9e3..5642d98547f5 100644
--- a/services/clouddirectory/pom.xml
+++ b/services/clouddirectory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
clouddirectory
AWS Java SDK :: Services :: Amazon CloudDirectory
diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml
index 706572fb4bb9..74a1cabe0ae8 100644
--- a/services/cloudformation/pom.xml
+++ b/services/cloudformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cloudformation
AWS Java SDK :: Services :: AWS CloudFormation
diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml
index 2fe866ab3479..2c8732625e4c 100644
--- a/services/cloudfront/pom.xml
+++ b/services/cloudfront/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cloudfront
AWS Java SDK :: Services :: Amazon CloudFront
diff --git a/services/cloudfrontkeyvaluestore/pom.xml b/services/cloudfrontkeyvaluestore/pom.xml
index 828fb5e1e6ce..6ce6c4ae8206 100644
--- a/services/cloudfrontkeyvaluestore/pom.xml
+++ b/services/cloudfrontkeyvaluestore/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cloudfrontkeyvaluestore
AWS Java SDK :: Services :: Cloud Front Key Value Store
diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml
index d7690095a80d..797bbe0d4bab 100644
--- a/services/cloudhsm/pom.xml
+++ b/services/cloudhsm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cloudhsm
AWS Java SDK :: Services :: AWS CloudHSM
diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml
index 4878ee959ad4..a54f56c1b54c 100644
--- a/services/cloudhsmv2/pom.xml
+++ b/services/cloudhsmv2/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
cloudhsmv2
diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml
index 47f8954c124f..8a76738df0ca 100644
--- a/services/cloudsearch/pom.xml
+++ b/services/cloudsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cloudsearch
AWS Java SDK :: Services :: Amazon CloudSearch
diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml
index 77971a1ecdbf..cfc311f8eb57 100644
--- a/services/cloudsearchdomain/pom.xml
+++ b/services/cloudsearchdomain/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cloudsearchdomain
AWS Java SDK :: Services :: Amazon CloudSearch Domain
diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml
index 24c6e12456a3..f996b5d26f41 100644
--- a/services/cloudtrail/pom.xml
+++ b/services/cloudtrail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cloudtrail
AWS Java SDK :: Services :: AWS CloudTrail
diff --git a/services/cloudtraildata/pom.xml b/services/cloudtraildata/pom.xml
index 5e774551d818..aa73a8352a8d 100644
--- a/services/cloudtraildata/pom.xml
+++ b/services/cloudtraildata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cloudtraildata
AWS Java SDK :: Services :: Cloud Trail Data
diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml
index 09e2d47b688c..0cef14c29da8 100644
--- a/services/cloudwatch/pom.xml
+++ b/services/cloudwatch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cloudwatch
AWS Java SDK :: Services :: Amazon CloudWatch
diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml
index 06931bf88565..4486c868fe62 100644
--- a/services/cloudwatchevents/pom.xml
+++ b/services/cloudwatchevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cloudwatchevents
AWS Java SDK :: Services :: Amazon CloudWatch Events
diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml
index a9a338b86491..812489d85fd0 100644
--- a/services/cloudwatchlogs/pom.xml
+++ b/services/cloudwatchlogs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cloudwatchlogs
AWS Java SDK :: Services :: Amazon CloudWatch Logs
diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml
index c1fe38fcd761..6a7be65294c3 100644
--- a/services/codeartifact/pom.xml
+++ b/services/codeartifact/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
codeartifact
AWS Java SDK :: Services :: Codeartifact
diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml
index 87df25187ad8..5f7640efefbf 100644
--- a/services/codebuild/pom.xml
+++ b/services/codebuild/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
codebuild
AWS Java SDK :: Services :: AWS Code Build
diff --git a/services/codecatalyst/pom.xml b/services/codecatalyst/pom.xml
index c0fceb9981d4..3c4b1aa709ad 100644
--- a/services/codecatalyst/pom.xml
+++ b/services/codecatalyst/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
codecatalyst
AWS Java SDK :: Services :: Code Catalyst
diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml
index 4e1e9f85c03a..e577f811b114 100644
--- a/services/codecommit/pom.xml
+++ b/services/codecommit/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
codecommit
AWS Java SDK :: Services :: AWS CodeCommit
diff --git a/services/codeconnections/pom.xml b/services/codeconnections/pom.xml
index 65f4ffb0cc9c..2e970a75a0bd 100644
--- a/services/codeconnections/pom.xml
+++ b/services/codeconnections/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
codeconnections
AWS Java SDK :: Services :: Code Connections
diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml
index 67cb8b8cdfac..d21d6174152b 100644
--- a/services/codedeploy/pom.xml
+++ b/services/codedeploy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
codedeploy
AWS Java SDK :: Services :: AWS CodeDeploy
diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml
index aa0396b577fc..78c1282819ca 100644
--- a/services/codeguruprofiler/pom.xml
+++ b/services/codeguruprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
codeguruprofiler
AWS Java SDK :: Services :: CodeGuruProfiler
diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml
index c5e1b018775a..a5a8747dceb3 100644
--- a/services/codegurureviewer/pom.xml
+++ b/services/codegurureviewer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
codegurureviewer
AWS Java SDK :: Services :: CodeGuru Reviewer
diff --git a/services/codegurusecurity/pom.xml b/services/codegurusecurity/pom.xml
index 5d72ff6f12da..eeea045e828b 100644
--- a/services/codegurusecurity/pom.xml
+++ b/services/codegurusecurity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
codegurusecurity
AWS Java SDK :: Services :: Code Guru Security
diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml
index 85cb6a588cb8..73f9c027f7cf 100644
--- a/services/codepipeline/pom.xml
+++ b/services/codepipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
codepipeline
AWS Java SDK :: Services :: AWS CodePipeline
diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml
index 3a1a946b95f2..636683293280 100644
--- a/services/codestarconnections/pom.xml
+++ b/services/codestarconnections/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
codestarconnections
AWS Java SDK :: Services :: CodeStar connections
diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml
index b7e6d1e478bc..6196e88dcb60 100644
--- a/services/codestarnotifications/pom.xml
+++ b/services/codestarnotifications/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
codestarnotifications
AWS Java SDK :: Services :: Codestar Notifications
diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml
index ff286e387f0d..1e14c68b8890 100644
--- a/services/cognitoidentity/pom.xml
+++ b/services/cognitoidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cognitoidentity
AWS Java SDK :: Services :: Amazon Cognito Identity
diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml
index ff4dd6052f30..388d4fa9a49f 100644
--- a/services/cognitoidentityprovider/pom.xml
+++ b/services/cognitoidentityprovider/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cognitoidentityprovider
AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service
diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml
index 7b3b4bd515b0..21d1707fe679 100644
--- a/services/cognitosync/pom.xml
+++ b/services/cognitosync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
cognitosync
AWS Java SDK :: Services :: Amazon Cognito Sync
diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml
index 55468aeb6356..6cd9f9a08c95 100644
--- a/services/comprehend/pom.xml
+++ b/services/comprehend/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
comprehend
diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml
index b00a5519d0e4..66ddedd0c325 100644
--- a/services/comprehendmedical/pom.xml
+++ b/services/comprehendmedical/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
comprehendmedical
AWS Java SDK :: Services :: ComprehendMedical
diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml
index 53577b46e8f8..38329efc625d 100644
--- a/services/computeoptimizer/pom.xml
+++ b/services/computeoptimizer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
computeoptimizer
AWS Java SDK :: Services :: Compute Optimizer
diff --git a/services/config/pom.xml b/services/config/pom.xml
index 0903bee77183..a923c9e65aea 100644
--- a/services/config/pom.xml
+++ b/services/config/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
config
AWS Java SDK :: Services :: AWS Config
diff --git a/services/connect/pom.xml b/services/connect/pom.xml
index 1a1ed3bcfe26..eae3f821cf3b 100644
--- a/services/connect/pom.xml
+++ b/services/connect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
connect
AWS Java SDK :: Services :: Connect
diff --git a/services/connectcampaigns/pom.xml b/services/connectcampaigns/pom.xml
index 8139174c53d6..e97d557b5984 100644
--- a/services/connectcampaigns/pom.xml
+++ b/services/connectcampaigns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
connectcampaigns
AWS Java SDK :: Services :: Connect Campaigns
diff --git a/services/connectcampaignsv2/pom.xml b/services/connectcampaignsv2/pom.xml
index 014a32046623..bf8de2d4be3f 100644
--- a/services/connectcampaignsv2/pom.xml
+++ b/services/connectcampaignsv2/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
connectcampaignsv2
AWS Java SDK :: Services :: Connect Campaigns V2
diff --git a/services/connectcases/pom.xml b/services/connectcases/pom.xml
index 1548b2c2c4ec..1738fe3f3bee 100644
--- a/services/connectcases/pom.xml
+++ b/services/connectcases/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
connectcases
AWS Java SDK :: Services :: Connect Cases
diff --git a/services/connectcontactlens/pom.xml b/services/connectcontactlens/pom.xml
index 977127a1e022..4e0819dae1aa 100644
--- a/services/connectcontactlens/pom.xml
+++ b/services/connectcontactlens/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
connectcontactlens
AWS Java SDK :: Services :: Connect Contact Lens
diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml
index d1df7d1ab98a..0a61715a8fbc 100644
--- a/services/connectparticipant/pom.xml
+++ b/services/connectparticipant/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
connectparticipant
AWS Java SDK :: Services :: ConnectParticipant
diff --git a/services/controlcatalog/pom.xml b/services/controlcatalog/pom.xml
index 6a81ed9c5077..9950459fdf5a 100644
--- a/services/controlcatalog/pom.xml
+++ b/services/controlcatalog/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
controlcatalog
AWS Java SDK :: Services :: Control Catalog
diff --git a/services/controltower/pom.xml b/services/controltower/pom.xml
index 30868970fc24..7f44039fc0f7 100644
--- a/services/controltower/pom.xml
+++ b/services/controltower/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
controltower
AWS Java SDK :: Services :: Control Tower
diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml
index 3438b362d446..852815033b5f 100644
--- a/services/costandusagereport/pom.xml
+++ b/services/costandusagereport/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
costandusagereport
AWS Java SDK :: Services :: AWS Cost and Usage Report
diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml
index 422520f78bea..e4e6f50dfd27 100644
--- a/services/costexplorer/pom.xml
+++ b/services/costexplorer/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
costexplorer
diff --git a/services/costoptimizationhub/pom.xml b/services/costoptimizationhub/pom.xml
index 7f6bac114e01..1feb9f3534c2 100644
--- a/services/costoptimizationhub/pom.xml
+++ b/services/costoptimizationhub/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
costoptimizationhub
AWS Java SDK :: Services :: Cost Optimization Hub
diff --git a/services/customerprofiles/pom.xml b/services/customerprofiles/pom.xml
index d643a4da0f79..6f5141db2905 100644
--- a/services/customerprofiles/pom.xml
+++ b/services/customerprofiles/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
customerprofiles
AWS Java SDK :: Services :: Customer Profiles
diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml
index ae82483b333f..c4c743101f71 100644
--- a/services/databasemigration/pom.xml
+++ b/services/databasemigration/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
databasemigration
AWS Java SDK :: Services :: AWS Database Migration Service
diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml
index d5a1a2531eea..5333ef264ef7 100644
--- a/services/databrew/pom.xml
+++ b/services/databrew/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
databrew
AWS Java SDK :: Services :: Data Brew
diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml
index 9288987fce4c..633d1f386eb2 100644
--- a/services/dataexchange/pom.xml
+++ b/services/dataexchange/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
dataexchange
AWS Java SDK :: Services :: DataExchange
diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml
index 24fa3eca7fc7..9a58bffa227d 100644
--- a/services/datapipeline/pom.xml
+++ b/services/datapipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
datapipeline
AWS Java SDK :: Services :: AWS Data Pipeline
diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml
index f92354ced808..ae9c152573dc 100644
--- a/services/datasync/pom.xml
+++ b/services/datasync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
datasync
AWS Java SDK :: Services :: DataSync
diff --git a/services/datazone/pom.xml b/services/datazone/pom.xml
index 4c909da69f16..12cc4ba97978 100644
--- a/services/datazone/pom.xml
+++ b/services/datazone/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
datazone
AWS Java SDK :: Services :: Data Zone
diff --git a/services/dax/pom.xml b/services/dax/pom.xml
index 5973e429c186..ee33314378db 100644
--- a/services/dax/pom.xml
+++ b/services/dax/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
dax
AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX)
diff --git a/services/deadline/pom.xml b/services/deadline/pom.xml
index 891688e1238e..0b0a46f42e04 100644
--- a/services/deadline/pom.xml
+++ b/services/deadline/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
deadline
AWS Java SDK :: Services :: Deadline
diff --git a/services/detective/pom.xml b/services/detective/pom.xml
index 86f72bb27718..6d7a51c115f8 100644
--- a/services/detective/pom.xml
+++ b/services/detective/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
detective
AWS Java SDK :: Services :: Detective
diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml
index 40f422f64a49..037dbc505da2 100644
--- a/services/devicefarm/pom.xml
+++ b/services/devicefarm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
devicefarm
AWS Java SDK :: Services :: AWS Device Farm
diff --git a/services/devopsguru/pom.xml b/services/devopsguru/pom.xml
index 4da2e15f55b4..fce69be01fa7 100644
--- a/services/devopsguru/pom.xml
+++ b/services/devopsguru/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
devopsguru
AWS Java SDK :: Services :: Dev Ops Guru
diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml
index 97b753c741c7..2b6575aedc39 100644
--- a/services/directconnect/pom.xml
+++ b/services/directconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
directconnect
AWS Java SDK :: Services :: AWS Direct Connect
diff --git a/services/directory/pom.xml b/services/directory/pom.xml
index 53c0fa19dd16..9ceaed2aeff9 100644
--- a/services/directory/pom.xml
+++ b/services/directory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
directory
AWS Java SDK :: Services :: AWS Directory Service
diff --git a/services/directoryservicedata/pom.xml b/services/directoryservicedata/pom.xml
index 534f0e24b42a..7b18518427c1 100644
--- a/services/directoryservicedata/pom.xml
+++ b/services/directoryservicedata/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
directoryservicedata
AWS Java SDK :: Services :: Directory Service Data
diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml
index 5fe66d45558b..3600cbbe3911 100644
--- a/services/dlm/pom.xml
+++ b/services/dlm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
dlm
AWS Java SDK :: Services :: DLM
diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml
index 5287a483760a..08834cc723d3 100644
--- a/services/docdb/pom.xml
+++ b/services/docdb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
docdb
AWS Java SDK :: Services :: DocDB
diff --git a/services/docdbelastic/pom.xml b/services/docdbelastic/pom.xml
index 10b150777af2..ddcfc974e19c 100644
--- a/services/docdbelastic/pom.xml
+++ b/services/docdbelastic/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
docdbelastic
AWS Java SDK :: Services :: Doc DB Elastic
diff --git a/services/drs/pom.xml b/services/drs/pom.xml
index 0f2292f89b24..6d28f8ef8ea7 100644
--- a/services/drs/pom.xml
+++ b/services/drs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
drs
AWS Java SDK :: Services :: Drs
diff --git a/services/dsql/pom.xml b/services/dsql/pom.xml
index 272e02c171cf..96afd1a53fd0 100644
--- a/services/dsql/pom.xml
+++ b/services/dsql/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
dsql
AWS Java SDK :: Services :: DSQL
diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml
index f9741dd55f81..0d9d8c8bfde3 100644
--- a/services/dynamodb/pom.xml
+++ b/services/dynamodb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
dynamodb
AWS Java SDK :: Services :: Amazon DynamoDB
diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml
index ec734e101cc4..e12a8ac903ec 100644
--- a/services/ebs/pom.xml
+++ b/services/ebs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ebs
AWS Java SDK :: Services :: EBS
diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml
index d540b805c82d..36b24ed096d5 100644
--- a/services/ec2/pom.xml
+++ b/services/ec2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ec2
AWS Java SDK :: Services :: Amazon EC2
diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml
index 74459ca8626d..56b6cad1c430 100644
--- a/services/ec2instanceconnect/pom.xml
+++ b/services/ec2instanceconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ec2instanceconnect
AWS Java SDK :: Services :: EC2 Instance Connect
diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml
index 758b003c6737..d07f3b64753e 100644
--- a/services/ecr/pom.xml
+++ b/services/ecr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ecr
AWS Java SDK :: Services :: Amazon EC2 Container Registry
diff --git a/services/ecrpublic/pom.xml b/services/ecrpublic/pom.xml
index f4ebf76662b3..030f2dc99510 100644
--- a/services/ecrpublic/pom.xml
+++ b/services/ecrpublic/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ecrpublic
AWS Java SDK :: Services :: ECR PUBLIC
diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml
index 1f986a290c89..710ea7c1c1e5 100644
--- a/services/ecs/pom.xml
+++ b/services/ecs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ecs
AWS Java SDK :: Services :: Amazon EC2 Container Service
diff --git a/services/efs/pom.xml b/services/efs/pom.xml
index dce347ddba45..bc85cb09f338 100644
--- a/services/efs/pom.xml
+++ b/services/efs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
efs
AWS Java SDK :: Services :: Amazon Elastic File System
diff --git a/services/eks/pom.xml b/services/eks/pom.xml
index 521c62a306cb..8a17751d158e 100644
--- a/services/eks/pom.xml
+++ b/services/eks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
eks
AWS Java SDK :: Services :: EKS
diff --git a/services/eksauth/pom.xml b/services/eksauth/pom.xml
index 1278318a9246..0c5f2a735332 100644
--- a/services/eksauth/pom.xml
+++ b/services/eksauth/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
eksauth
AWS Java SDK :: Services :: EKS Auth
diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml
index 7b21059cd3c0..7e958888a3c4 100644
--- a/services/elasticache/pom.xml
+++ b/services/elasticache/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
elasticache
AWS Java SDK :: Services :: Amazon ElastiCache
diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml
index 3dcaba8149f4..8bb50b745321 100644
--- a/services/elasticbeanstalk/pom.xml
+++ b/services/elasticbeanstalk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
elasticbeanstalk
AWS Java SDK :: Services :: AWS Elastic Beanstalk
diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml
index 7b7d0bee20d9..c58d031e77e3 100644
--- a/services/elasticloadbalancing/pom.xml
+++ b/services/elasticloadbalancing/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
elasticloadbalancing
AWS Java SDK :: Services :: Elastic Load Balancing
diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml
index 989d757ae008..99fce0642716 100644
--- a/services/elasticloadbalancingv2/pom.xml
+++ b/services/elasticloadbalancingv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
elasticloadbalancingv2
AWS Java SDK :: Services :: Elastic Load Balancing V2
diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml
index 38f01774561a..fc53aa290ef7 100644
--- a/services/elasticsearch/pom.xml
+++ b/services/elasticsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
elasticsearch
AWS Java SDK :: Services :: Amazon Elasticsearch Service
diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml
index 05319149c4f6..d580a62bb19f 100644
--- a/services/elastictranscoder/pom.xml
+++ b/services/elastictranscoder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
elastictranscoder
AWS Java SDK :: Services :: Amazon Elastic Transcoder
diff --git a/services/emr/pom.xml b/services/emr/pom.xml
index 61672e1ab66d..e77c29a17390 100644
--- a/services/emr/pom.xml
+++ b/services/emr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
emr
AWS Java SDK :: Services :: Amazon EMR
diff --git a/services/emrcontainers/pom.xml b/services/emrcontainers/pom.xml
index d3a26d316907..6c6ae795ba43 100644
--- a/services/emrcontainers/pom.xml
+++ b/services/emrcontainers/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
emrcontainers
AWS Java SDK :: Services :: EMR Containers
diff --git a/services/emrserverless/pom.xml b/services/emrserverless/pom.xml
index 309f6d35fb69..87b8e0294974 100644
--- a/services/emrserverless/pom.xml
+++ b/services/emrserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
emrserverless
AWS Java SDK :: Services :: EMR Serverless
diff --git a/services/entityresolution/pom.xml b/services/entityresolution/pom.xml
index 9aee895ff2be..b14c0dec374a 100644
--- a/services/entityresolution/pom.xml
+++ b/services/entityresolution/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
entityresolution
AWS Java SDK :: Services :: Entity Resolution
diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml
index 6f9e6021d933..1d6f2e72f634 100644
--- a/services/eventbridge/pom.xml
+++ b/services/eventbridge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
eventbridge
AWS Java SDK :: Services :: EventBridge
diff --git a/services/evidently/pom.xml b/services/evidently/pom.xml
index 30c006ef0cb5..680255927cc6 100644
--- a/services/evidently/pom.xml
+++ b/services/evidently/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
evidently
AWS Java SDK :: Services :: Evidently
diff --git a/services/evs/pom.xml b/services/evs/pom.xml
index 1dc20ab2a122..399f11199cd9 100644
--- a/services/evs/pom.xml
+++ b/services/evs/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
evs
AWS Java SDK :: Services :: Evs
diff --git a/services/finspace/pom.xml b/services/finspace/pom.xml
index 2f7aefc227bb..61567a0cfcbe 100644
--- a/services/finspace/pom.xml
+++ b/services/finspace/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
finspace
AWS Java SDK :: Services :: Finspace
diff --git a/services/finspacedata/pom.xml b/services/finspacedata/pom.xml
index 2ffe3fed0536..859dc583fadf 100644
--- a/services/finspacedata/pom.xml
+++ b/services/finspacedata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
finspacedata
AWS Java SDK :: Services :: Finspace Data
diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml
index 726d185c9657..30419479b5f5 100644
--- a/services/firehose/pom.xml
+++ b/services/firehose/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
firehose
AWS Java SDK :: Services :: Amazon Kinesis Firehose
diff --git a/services/fis/pom.xml b/services/fis/pom.xml
index 4d8fc70f773a..65e6b4b5c700 100644
--- a/services/fis/pom.xml
+++ b/services/fis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
fis
AWS Java SDK :: Services :: Fis
diff --git a/services/fms/pom.xml b/services/fms/pom.xml
index 6b8a40f305d5..8b81904d8ca4 100644
--- a/services/fms/pom.xml
+++ b/services/fms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
fms
AWS Java SDK :: Services :: FMS
diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml
index d9cc65a95e69..fd7c405e5e70 100644
--- a/services/forecast/pom.xml
+++ b/services/forecast/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
forecast
AWS Java SDK :: Services :: Forecast
diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml
index 10a2c825b15c..1e0f9afad69c 100644
--- a/services/forecastquery/pom.xml
+++ b/services/forecastquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
forecastquery
AWS Java SDK :: Services :: Forecastquery
diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml
index 13efafcd1802..430e203c1514 100644
--- a/services/frauddetector/pom.xml
+++ b/services/frauddetector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
frauddetector
AWS Java SDK :: Services :: FraudDetector
diff --git a/services/freetier/pom.xml b/services/freetier/pom.xml
index c57e5b2004e1..abebb3d67df3 100644
--- a/services/freetier/pom.xml
+++ b/services/freetier/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
freetier
AWS Java SDK :: Services :: Free Tier
diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml
index ab04afaf0384..dc6696d9c04a 100644
--- a/services/fsx/pom.xml
+++ b/services/fsx/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
fsx
AWS Java SDK :: Services :: FSx
diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml
index 3c59b095e326..ceecf45b6eb4 100644
--- a/services/gamelift/pom.xml
+++ b/services/gamelift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
gamelift
AWS Java SDK :: Services :: AWS GameLift
diff --git a/services/gameliftstreams/pom.xml b/services/gameliftstreams/pom.xml
index 0ec3c9c6040e..f3e91c0a1e84 100644
--- a/services/gameliftstreams/pom.xml
+++ b/services/gameliftstreams/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
gameliftstreams
AWS Java SDK :: Services :: Game Lift Streams
diff --git a/services/geomaps/pom.xml b/services/geomaps/pom.xml
index 132025a873f0..edd23ad0bce4 100644
--- a/services/geomaps/pom.xml
+++ b/services/geomaps/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
geomaps
AWS Java SDK :: Services :: Geo Maps
diff --git a/services/geoplaces/pom.xml b/services/geoplaces/pom.xml
index 152468faa6e7..5652cea57340 100644
--- a/services/geoplaces/pom.xml
+++ b/services/geoplaces/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
geoplaces
AWS Java SDK :: Services :: Geo Places
diff --git a/services/georoutes/pom.xml b/services/georoutes/pom.xml
index efac45b9a1f6..1f79bc7303df 100644
--- a/services/georoutes/pom.xml
+++ b/services/georoutes/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
georoutes
AWS Java SDK :: Services :: Geo Routes
diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml
index f9095ae53944..7bfd35f87808 100644
--- a/services/glacier/pom.xml
+++ b/services/glacier/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
glacier
AWS Java SDK :: Services :: Amazon Glacier
diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml
index b3f6562d7a24..3cbe913cc475 100644
--- a/services/globalaccelerator/pom.xml
+++ b/services/globalaccelerator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
globalaccelerator
AWS Java SDK :: Services :: Global Accelerator
diff --git a/services/glue/pom.xml b/services/glue/pom.xml
index 2941aac110f7..3f22b5da7127 100644
--- a/services/glue/pom.xml
+++ b/services/glue/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
glue
diff --git a/services/grafana/pom.xml b/services/grafana/pom.xml
index f22de3e6b52b..74403ce7cb6e 100644
--- a/services/grafana/pom.xml
+++ b/services/grafana/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
grafana
AWS Java SDK :: Services :: Grafana
diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml
index 800d60a900d3..3d3ed619eb47 100644
--- a/services/greengrass/pom.xml
+++ b/services/greengrass/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
greengrass
AWS Java SDK :: Services :: AWS Greengrass
diff --git a/services/greengrassv2/pom.xml b/services/greengrassv2/pom.xml
index f656565ab644..9e350ff4b66e 100644
--- a/services/greengrassv2/pom.xml
+++ b/services/greengrassv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
greengrassv2
AWS Java SDK :: Services :: Greengrass V2
diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml
index e8745f3ec242..ed5df2f3e7ce 100644
--- a/services/groundstation/pom.xml
+++ b/services/groundstation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
groundstation
AWS Java SDK :: Services :: GroundStation
diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml
index 56c60acd10bd..570bd4f1ea4d 100644
--- a/services/guardduty/pom.xml
+++ b/services/guardduty/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
guardduty
diff --git a/services/health/pom.xml b/services/health/pom.xml
index fddbfcdacfd7..70b98856eea7 100644
--- a/services/health/pom.xml
+++ b/services/health/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
health
AWS Java SDK :: Services :: AWS Health APIs and Notifications
diff --git a/services/healthlake/pom.xml b/services/healthlake/pom.xml
index 0876c0ec89ad..667d694bc772 100644
--- a/services/healthlake/pom.xml
+++ b/services/healthlake/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
healthlake
AWS Java SDK :: Services :: Health Lake
diff --git a/services/iam/pom.xml b/services/iam/pom.xml
index 4e5bc07d04f5..dde654033b51 100644
--- a/services/iam/pom.xml
+++ b/services/iam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
iam
AWS Java SDK :: Services :: AWS IAM
diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml
index 50028e022145..95b95bc94084 100644
--- a/services/identitystore/pom.xml
+++ b/services/identitystore/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
identitystore
AWS Java SDK :: Services :: Identitystore
diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml
index 61f57a9b355b..9ca17e409c35 100644
--- a/services/imagebuilder/pom.xml
+++ b/services/imagebuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
imagebuilder
AWS Java SDK :: Services :: Imagebuilder
diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml
index bbaaf6b01995..2065917b9aab 100644
--- a/services/inspector/pom.xml
+++ b/services/inspector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
inspector
AWS Java SDK :: Services :: Amazon Inspector Service
diff --git a/services/inspector2/pom.xml b/services/inspector2/pom.xml
index 0e38f2214398..2b6650a0e275 100644
--- a/services/inspector2/pom.xml
+++ b/services/inspector2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
inspector2
AWS Java SDK :: Services :: Inspector2
diff --git a/services/inspectorscan/pom.xml b/services/inspectorscan/pom.xml
index 547fb5a57c72..5a24ae996d8d 100644
--- a/services/inspectorscan/pom.xml
+++ b/services/inspectorscan/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
inspectorscan
AWS Java SDK :: Services :: Inspector Scan
diff --git a/services/internetmonitor/pom.xml b/services/internetmonitor/pom.xml
index 2e99fc0056f2..7894a6db1c22 100644
--- a/services/internetmonitor/pom.xml
+++ b/services/internetmonitor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
internetmonitor
AWS Java SDK :: Services :: Internet Monitor
diff --git a/services/invoicing/pom.xml b/services/invoicing/pom.xml
index 0a9ed24ca8c5..5f2bfe7f036d 100644
--- a/services/invoicing/pom.xml
+++ b/services/invoicing/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
invoicing
AWS Java SDK :: Services :: Invoicing
diff --git a/services/iot/pom.xml b/services/iot/pom.xml
index ce6cfb1fbc7c..d892d73541b2 100644
--- a/services/iot/pom.xml
+++ b/services/iot/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
iot
AWS Java SDK :: Services :: AWS IoT
diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml
index 0a7b5f985203..7f377de64f91 100644
--- a/services/iotanalytics/pom.xml
+++ b/services/iotanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
iotanalytics
AWS Java SDK :: Services :: IoTAnalytics
diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml
index c4e00ccdcb1e..bd1aa4a14940 100644
--- a/services/iotdataplane/pom.xml
+++ b/services/iotdataplane/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
iotdataplane
AWS Java SDK :: Services :: AWS IoT Data Plane
diff --git a/services/iotdeviceadvisor/pom.xml b/services/iotdeviceadvisor/pom.xml
index 6f23829c9619..a9b00cf5d57a 100644
--- a/services/iotdeviceadvisor/pom.xml
+++ b/services/iotdeviceadvisor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
iotdeviceadvisor
AWS Java SDK :: Services :: Iot Device Advisor
diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml
index 809a3a02ee9c..5f43403f1594 100644
--- a/services/iotevents/pom.xml
+++ b/services/iotevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
iotevents
AWS Java SDK :: Services :: IoT Events
diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml
index 4f0075345d1f..5cd9cb5981ec 100644
--- a/services/ioteventsdata/pom.xml
+++ b/services/ioteventsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ioteventsdata
AWS Java SDK :: Services :: IoT Events Data
diff --git a/services/iotfleethub/pom.xml b/services/iotfleethub/pom.xml
index ee9552e6705e..d6e46fea2044 100644
--- a/services/iotfleethub/pom.xml
+++ b/services/iotfleethub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
iotfleethub
AWS Java SDK :: Services :: Io T Fleet Hub
diff --git a/services/iotfleetwise/pom.xml b/services/iotfleetwise/pom.xml
index ac43ef2f70a7..50f86e1696f0 100644
--- a/services/iotfleetwise/pom.xml
+++ b/services/iotfleetwise/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
iotfleetwise
AWS Java SDK :: Services :: Io T Fleet Wise
diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml
index 17acf7fc519c..1d15c818082f 100644
--- a/services/iotjobsdataplane/pom.xml
+++ b/services/iotjobsdataplane/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
iotjobsdataplane
AWS Java SDK :: Services :: IoT Jobs Data Plane
diff --git a/services/iotmanagedintegrations/pom.xml b/services/iotmanagedintegrations/pom.xml
index 2a63515897d1..8e157fa2812d 100644
--- a/services/iotmanagedintegrations/pom.xml
+++ b/services/iotmanagedintegrations/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
iotmanagedintegrations
AWS Java SDK :: Services :: IoT Managed Integrations
diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml
index e3e03288d4c7..f6d8c482603b 100644
--- a/services/iotsecuretunneling/pom.xml
+++ b/services/iotsecuretunneling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
iotsecuretunneling
AWS Java SDK :: Services :: IoTSecureTunneling
diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml
index 89d34212fb72..bc1a59e2792f 100644
--- a/services/iotsitewise/pom.xml
+++ b/services/iotsitewise/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
iotsitewise
AWS Java SDK :: Services :: Io T Site Wise
diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml
index 4cecdfaf19dc..eb72c9e360bc 100644
--- a/services/iotthingsgraph/pom.xml
+++ b/services/iotthingsgraph/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
iotthingsgraph
AWS Java SDK :: Services :: IoTThingsGraph
diff --git a/services/iottwinmaker/pom.xml b/services/iottwinmaker/pom.xml
index a31273b13ed0..28c2c0e376af 100644
--- a/services/iottwinmaker/pom.xml
+++ b/services/iottwinmaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
iottwinmaker
AWS Java SDK :: Services :: Io T Twin Maker
diff --git a/services/iotwireless/pom.xml b/services/iotwireless/pom.xml
index bc277431777c..d42e15f7e062 100644
--- a/services/iotwireless/pom.xml
+++ b/services/iotwireless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
iotwireless
AWS Java SDK :: Services :: IoT Wireless
diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml
index 38e8329e4b5a..091422e18a72 100644
--- a/services/ivs/pom.xml
+++ b/services/ivs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ivs
AWS Java SDK :: Services :: Ivs
diff --git a/services/ivschat/pom.xml b/services/ivschat/pom.xml
index 0d0c226623bd..5b5166878a06 100644
--- a/services/ivschat/pom.xml
+++ b/services/ivschat/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ivschat
AWS Java SDK :: Services :: Ivschat
diff --git a/services/ivsrealtime/pom.xml b/services/ivsrealtime/pom.xml
index 4a711542a153..d8f43d4a0176 100644
--- a/services/ivsrealtime/pom.xml
+++ b/services/ivsrealtime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ivsrealtime
AWS Java SDK :: Services :: IVS Real Time
diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml
index 903d893d7d8e..da1b604c55c2 100644
--- a/services/kafka/pom.xml
+++ b/services/kafka/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
kafka
AWS Java SDK :: Services :: Kafka
diff --git a/services/kafkaconnect/pom.xml b/services/kafkaconnect/pom.xml
index efc489dee5d8..40cc5750d963 100644
--- a/services/kafkaconnect/pom.xml
+++ b/services/kafkaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
kafkaconnect
AWS Java SDK :: Services :: Kafka Connect
diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml
index bc1d1a2ac107..8190d8c3c74f 100644
--- a/services/kendra/pom.xml
+++ b/services/kendra/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
kendra
AWS Java SDK :: Services :: Kendra
diff --git a/services/kendraranking/pom.xml b/services/kendraranking/pom.xml
index 96fcee134ded..eba041c3acb1 100644
--- a/services/kendraranking/pom.xml
+++ b/services/kendraranking/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
kendraranking
AWS Java SDK :: Services :: Kendra Ranking
diff --git a/services/keyspaces/pom.xml b/services/keyspaces/pom.xml
index 1a26022f0a34..d7e5a133d931 100644
--- a/services/keyspaces/pom.xml
+++ b/services/keyspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
keyspaces
AWS Java SDK :: Services :: Keyspaces
diff --git a/services/keyspacesstreams/pom.xml b/services/keyspacesstreams/pom.xml
index de4bf68ce477..ff029c9db959 100644
--- a/services/keyspacesstreams/pom.xml
+++ b/services/keyspacesstreams/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
keyspacesstreams
AWS Java SDK :: Services :: Keyspaces Streams
diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml
index d5534c52f6be..1c54cf050024 100644
--- a/services/kinesis/pom.xml
+++ b/services/kinesis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
kinesis
AWS Java SDK :: Services :: Amazon Kinesis
diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml
index 563ff21cfd1a..9b0498fd5841 100644
--- a/services/kinesisanalytics/pom.xml
+++ b/services/kinesisanalytics/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
kinesisanalytics
AWS Java SDK :: Services :: Amazon Kinesis Analytics
diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml
index 33f2f17c169b..7570b536f3c9 100644
--- a/services/kinesisanalyticsv2/pom.xml
+++ b/services/kinesisanalyticsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
kinesisanalyticsv2
AWS Java SDK :: Services :: Kinesis Analytics V2
diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml
index a62af90f3a94..6fe7b62df63c 100644
--- a/services/kinesisvideo/pom.xml
+++ b/services/kinesisvideo/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
kinesisvideo
diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml
index 60a6d1d7c1ea..96e9b70a4324 100644
--- a/services/kinesisvideoarchivedmedia/pom.xml
+++ b/services/kinesisvideoarchivedmedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
kinesisvideoarchivedmedia
AWS Java SDK :: Services :: Kinesis Video Archived Media
diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml
index db7029229ae6..111a6add43cd 100644
--- a/services/kinesisvideomedia/pom.xml
+++ b/services/kinesisvideomedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
kinesisvideomedia
AWS Java SDK :: Services :: Kinesis Video Media
diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml
index 73341d450f50..73d2162844ad 100644
--- a/services/kinesisvideosignaling/pom.xml
+++ b/services/kinesisvideosignaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
kinesisvideosignaling
AWS Java SDK :: Services :: Kinesis Video Signaling
diff --git a/services/kinesisvideowebrtcstorage/pom.xml b/services/kinesisvideowebrtcstorage/pom.xml
index 58604a128544..a9a012e1e0e2 100644
--- a/services/kinesisvideowebrtcstorage/pom.xml
+++ b/services/kinesisvideowebrtcstorage/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
kinesisvideowebrtcstorage
AWS Java SDK :: Services :: Kinesis Video Web RTC Storage
diff --git a/services/kms/pom.xml b/services/kms/pom.xml
index 190825b2295c..290cc5bb0ef2 100644
--- a/services/kms/pom.xml
+++ b/services/kms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
kms
AWS Java SDK :: Services :: AWS KMS
diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml
index 192b77d5fe16..5d0ee61fd5db 100644
--- a/services/lakeformation/pom.xml
+++ b/services/lakeformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
lakeformation
AWS Java SDK :: Services :: LakeFormation
diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml
index ea35255f62c3..99298b5207e2 100644
--- a/services/lambda/pom.xml
+++ b/services/lambda/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
lambda
AWS Java SDK :: Services :: AWS Lambda
diff --git a/services/launchwizard/pom.xml b/services/launchwizard/pom.xml
index 0dd97ad4d429..a125d118e53c 100644
--- a/services/launchwizard/pom.xml
+++ b/services/launchwizard/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
launchwizard
AWS Java SDK :: Services :: Launch Wizard
diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml
index 961a1ef397f0..b50edbf0196f 100644
--- a/services/lexmodelbuilding/pom.xml
+++ b/services/lexmodelbuilding/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
lexmodelbuilding
AWS Java SDK :: Services :: Amazon Lex Model Building
diff --git a/services/lexmodelsv2/pom.xml b/services/lexmodelsv2/pom.xml
index 9913b5debc2b..c39e295f1103 100644
--- a/services/lexmodelsv2/pom.xml
+++ b/services/lexmodelsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
lexmodelsv2
AWS Java SDK :: Services :: Lex Models V2
diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml
index fda7d84ad5ed..97f5e31ceefa 100644
--- a/services/lexruntime/pom.xml
+++ b/services/lexruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
lexruntime
AWS Java SDK :: Services :: Amazon Lex Runtime
diff --git a/services/lexruntimev2/pom.xml b/services/lexruntimev2/pom.xml
index 01ea757cf076..3eb25d1b6b25 100644
--- a/services/lexruntimev2/pom.xml
+++ b/services/lexruntimev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
lexruntimev2
AWS Java SDK :: Services :: Lex Runtime V2
diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml
index 77abc46d3b10..771c98f3f8dd 100644
--- a/services/licensemanager/pom.xml
+++ b/services/licensemanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
licensemanager
AWS Java SDK :: Services :: License Manager
diff --git a/services/licensemanagerlinuxsubscriptions/pom.xml b/services/licensemanagerlinuxsubscriptions/pom.xml
index a4ae7888872d..1ab46979c939 100644
--- a/services/licensemanagerlinuxsubscriptions/pom.xml
+++ b/services/licensemanagerlinuxsubscriptions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
licensemanagerlinuxsubscriptions
AWS Java SDK :: Services :: License Manager Linux Subscriptions
diff --git a/services/licensemanagerusersubscriptions/pom.xml b/services/licensemanagerusersubscriptions/pom.xml
index 306db82d1607..bfed6530d822 100644
--- a/services/licensemanagerusersubscriptions/pom.xml
+++ b/services/licensemanagerusersubscriptions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
licensemanagerusersubscriptions
AWS Java SDK :: Services :: License Manager User Subscriptions
diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml
index a101a484f433..5ebb4fa340eb 100644
--- a/services/lightsail/pom.xml
+++ b/services/lightsail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
lightsail
AWS Java SDK :: Services :: Amazon Lightsail
diff --git a/services/location/pom.xml b/services/location/pom.xml
index d7630368ba5f..204398bc3b6d 100644
--- a/services/location/pom.xml
+++ b/services/location/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
location
AWS Java SDK :: Services :: Location
diff --git a/services/lookoutequipment/pom.xml b/services/lookoutequipment/pom.xml
index afc347326274..48af40c21814 100644
--- a/services/lookoutequipment/pom.xml
+++ b/services/lookoutequipment/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
lookoutequipment
AWS Java SDK :: Services :: Lookout Equipment
diff --git a/services/lookoutmetrics/pom.xml b/services/lookoutmetrics/pom.xml
index 4c614f4b7029..adb2c41cb3ed 100644
--- a/services/lookoutmetrics/pom.xml
+++ b/services/lookoutmetrics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
lookoutmetrics
AWS Java SDK :: Services :: Lookout Metrics
diff --git a/services/lookoutvision/pom.xml b/services/lookoutvision/pom.xml
index c842a955338d..ffe9a0d805d1 100644
--- a/services/lookoutvision/pom.xml
+++ b/services/lookoutvision/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
lookoutvision
AWS Java SDK :: Services :: Lookout Vision
diff --git a/services/m2/pom.xml b/services/m2/pom.xml
index 5a7f453089eb..95cad47b498a 100644
--- a/services/m2/pom.xml
+++ b/services/m2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
m2
AWS Java SDK :: Services :: M2
diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml
index b92e8e6dbe08..1eb9dd307464 100644
--- a/services/machinelearning/pom.xml
+++ b/services/machinelearning/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
machinelearning
AWS Java SDK :: Services :: Amazon Machine Learning
diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml
index dd441c38c504..7762e1771914 100644
--- a/services/macie2/pom.xml
+++ b/services/macie2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
macie2
AWS Java SDK :: Services :: Macie2
diff --git a/services/mailmanager/pom.xml b/services/mailmanager/pom.xml
index 89eec514939a..5326273cb17d 100644
--- a/services/mailmanager/pom.xml
+++ b/services/mailmanager/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
mailmanager
AWS Java SDK :: Services :: Mail Manager
diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml
index 0c1059a070cf..dfe8b861bcd1 100644
--- a/services/managedblockchain/pom.xml
+++ b/services/managedblockchain/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
managedblockchain
AWS Java SDK :: Services :: ManagedBlockchain
diff --git a/services/managedblockchainquery/pom.xml b/services/managedblockchainquery/pom.xml
index 3c32219e2312..9dc403cfbea5 100644
--- a/services/managedblockchainquery/pom.xml
+++ b/services/managedblockchainquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
managedblockchainquery
AWS Java SDK :: Services :: Managed Blockchain Query
diff --git a/services/marketplaceagreement/pom.xml b/services/marketplaceagreement/pom.xml
index 040d49152b33..898fdf2a6b0f 100644
--- a/services/marketplaceagreement/pom.xml
+++ b/services/marketplaceagreement/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
marketplaceagreement
AWS Java SDK :: Services :: Marketplace Agreement
diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml
index cee7cac5713b..7e31f1b4d342 100644
--- a/services/marketplacecatalog/pom.xml
+++ b/services/marketplacecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
marketplacecatalog
AWS Java SDK :: Services :: Marketplace Catalog
diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml
index 3fab0d6d8cdd..f00a70779b5a 100644
--- a/services/marketplacecommerceanalytics/pom.xml
+++ b/services/marketplacecommerceanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
marketplacecommerceanalytics
AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics
diff --git a/services/marketplacedeployment/pom.xml b/services/marketplacedeployment/pom.xml
index 47229628e399..01086f110b89 100644
--- a/services/marketplacedeployment/pom.xml
+++ b/services/marketplacedeployment/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
marketplacedeployment
AWS Java SDK :: Services :: Marketplace Deployment
diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml
index 44cd2368221e..6b9e44e421df 100644
--- a/services/marketplaceentitlement/pom.xml
+++ b/services/marketplaceentitlement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
marketplaceentitlement
AWS Java SDK :: Services :: AWS Marketplace Entitlement
diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml
index 9ae3b1b06a2f..0aee2b3d4b70 100644
--- a/services/marketplacemetering/pom.xml
+++ b/services/marketplacemetering/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
marketplacemetering
AWS Java SDK :: Services :: AWS Marketplace Metering Service
diff --git a/services/marketplacereporting/pom.xml b/services/marketplacereporting/pom.xml
index 2744356d5a75..a1c3160dc1cc 100644
--- a/services/marketplacereporting/pom.xml
+++ b/services/marketplacereporting/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
marketplacereporting
AWS Java SDK :: Services :: Marketplace Reporting
diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml
index 48ac4ba34b9c..a3cba6982356 100644
--- a/services/mediaconnect/pom.xml
+++ b/services/mediaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
mediaconnect
AWS Java SDK :: Services :: MediaConnect
diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml
index 25bc74d55bf9..6147cd532b97 100644
--- a/services/mediaconvert/pom.xml
+++ b/services/mediaconvert/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
mediaconvert
diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml
index 4f2ad6b52b48..74f62cc85fa6 100644
--- a/services/medialive/pom.xml
+++ b/services/medialive/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
medialive
diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml
index 0f83ae82f481..185584f31059 100644
--- a/services/mediapackage/pom.xml
+++ b/services/mediapackage/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
mediapackage
diff --git a/services/mediapackagev2/pom.xml b/services/mediapackagev2/pom.xml
index 25cbaef13016..aae8d8d06280 100644
--- a/services/mediapackagev2/pom.xml
+++ b/services/mediapackagev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
mediapackagev2
AWS Java SDK :: Services :: Media Package V2
diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml
index 01ab8875048b..3a2618f658d7 100644
--- a/services/mediapackagevod/pom.xml
+++ b/services/mediapackagevod/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
mediapackagevod
AWS Java SDK :: Services :: MediaPackage Vod
diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml
index f16e3dc6daef..693af5013791 100644
--- a/services/mediastore/pom.xml
+++ b/services/mediastore/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
mediastore
diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml
index ed4b445d7dff..21ffb5da0488 100644
--- a/services/mediastoredata/pom.xml
+++ b/services/mediastoredata/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
mediastoredata
diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml
index 6ff3f348f369..00fc40eadc55 100644
--- a/services/mediatailor/pom.xml
+++ b/services/mediatailor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
mediatailor
AWS Java SDK :: Services :: MediaTailor
diff --git a/services/medicalimaging/pom.xml b/services/medicalimaging/pom.xml
index e26645d8dc95..352a0e745d6d 100644
--- a/services/medicalimaging/pom.xml
+++ b/services/medicalimaging/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
medicalimaging
AWS Java SDK :: Services :: Medical Imaging
diff --git a/services/memorydb/pom.xml b/services/memorydb/pom.xml
index 52a90eeb8859..9be8c670134d 100644
--- a/services/memorydb/pom.xml
+++ b/services/memorydb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
memorydb
AWS Java SDK :: Services :: Memory DB
diff --git a/services/mgn/pom.xml b/services/mgn/pom.xml
index 4c6f2d8586c2..f95e620deb76 100644
--- a/services/mgn/pom.xml
+++ b/services/mgn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
mgn
AWS Java SDK :: Services :: Mgn
diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml
index 3f64cb840a66..95fe814f2d8f 100644
--- a/services/migrationhub/pom.xml
+++ b/services/migrationhub/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
migrationhub
diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml
index c0c31db01f5d..396a73890bb1 100644
--- a/services/migrationhubconfig/pom.xml
+++ b/services/migrationhubconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
migrationhubconfig
AWS Java SDK :: Services :: MigrationHub Config
diff --git a/services/migrationhuborchestrator/pom.xml b/services/migrationhuborchestrator/pom.xml
index da1714933073..904496860694 100644
--- a/services/migrationhuborchestrator/pom.xml
+++ b/services/migrationhuborchestrator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
migrationhuborchestrator
AWS Java SDK :: Services :: Migration Hub Orchestrator
diff --git a/services/migrationhubrefactorspaces/pom.xml b/services/migrationhubrefactorspaces/pom.xml
index d1a15dbb622d..cb65cec5cf9e 100644
--- a/services/migrationhubrefactorspaces/pom.xml
+++ b/services/migrationhubrefactorspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
migrationhubrefactorspaces
AWS Java SDK :: Services :: Migration Hub Refactor Spaces
diff --git a/services/migrationhubstrategy/pom.xml b/services/migrationhubstrategy/pom.xml
index 31fac785ee14..6ce48862e58c 100644
--- a/services/migrationhubstrategy/pom.xml
+++ b/services/migrationhubstrategy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
migrationhubstrategy
AWS Java SDK :: Services :: Migration Hub Strategy
diff --git a/services/mpa/pom.xml b/services/mpa/pom.xml
index 933d32fb85b7..7977f54d83e6 100644
--- a/services/mpa/pom.xml
+++ b/services/mpa/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
mpa
AWS Java SDK :: Services :: MPA
diff --git a/services/mq/pom.xml b/services/mq/pom.xml
index 9363bbfd523f..2da72985aa28 100644
--- a/services/mq/pom.xml
+++ b/services/mq/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
mq
diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml
index c944632cc16e..167cac3f1627 100644
--- a/services/mturk/pom.xml
+++ b/services/mturk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
mturk
AWS Java SDK :: Services :: Amazon Mechanical Turk Requester
diff --git a/services/mwaa/pom.xml b/services/mwaa/pom.xml
index 3065af09d3b0..0df620d38e80 100644
--- a/services/mwaa/pom.xml
+++ b/services/mwaa/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
mwaa
AWS Java SDK :: Services :: MWAA
diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml
index 487251658c0e..32f53d20af61 100644
--- a/services/neptune/pom.xml
+++ b/services/neptune/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
neptune
AWS Java SDK :: Services :: Neptune
diff --git a/services/neptunedata/pom.xml b/services/neptunedata/pom.xml
index b1edb52dd532..c7801e2b6e6f 100644
--- a/services/neptunedata/pom.xml
+++ b/services/neptunedata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
neptunedata
AWS Java SDK :: Services :: Neptunedata
diff --git a/services/neptunegraph/pom.xml b/services/neptunegraph/pom.xml
index e663cc1be8fe..6ec8901d6fc1 100644
--- a/services/neptunegraph/pom.xml
+++ b/services/neptunegraph/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
neptunegraph
AWS Java SDK :: Services :: Neptune Graph
diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml
index bb8ce4a0311b..d9692b9b0ec1 100644
--- a/services/networkfirewall/pom.xml
+++ b/services/networkfirewall/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
networkfirewall
AWS Java SDK :: Services :: Network Firewall
diff --git a/services/networkflowmonitor/pom.xml b/services/networkflowmonitor/pom.xml
index db40e52c51be..50fdf7a9c255 100644
--- a/services/networkflowmonitor/pom.xml
+++ b/services/networkflowmonitor/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
networkflowmonitor
AWS Java SDK :: Services :: Network Flow Monitor
diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml
index 3b22b4f73224..902e4ce94448 100644
--- a/services/networkmanager/pom.xml
+++ b/services/networkmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
networkmanager
AWS Java SDK :: Services :: NetworkManager
diff --git a/services/networkmonitor/pom.xml b/services/networkmonitor/pom.xml
index c4994f65742a..411678fa6863 100644
--- a/services/networkmonitor/pom.xml
+++ b/services/networkmonitor/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
networkmonitor
AWS Java SDK :: Services :: Network Monitor
diff --git a/services/notifications/pom.xml b/services/notifications/pom.xml
index 99a82a2e23da..0f18f1797c89 100644
--- a/services/notifications/pom.xml
+++ b/services/notifications/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
notifications
AWS Java SDK :: Services :: Notifications
diff --git a/services/notificationscontacts/pom.xml b/services/notificationscontacts/pom.xml
index 1a716c433ec4..7641ba8920cd 100644
--- a/services/notificationscontacts/pom.xml
+++ b/services/notificationscontacts/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
notificationscontacts
AWS Java SDK :: Services :: Notifications Contacts
diff --git a/services/oam/pom.xml b/services/oam/pom.xml
index b9593eccbccb..d7c5e2853f5a 100644
--- a/services/oam/pom.xml
+++ b/services/oam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
oam
AWS Java SDK :: Services :: OAM
diff --git a/services/observabilityadmin/pom.xml b/services/observabilityadmin/pom.xml
index 75b304607111..07b33f747d3c 100644
--- a/services/observabilityadmin/pom.xml
+++ b/services/observabilityadmin/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
observabilityadmin
AWS Java SDK :: Services :: Observability Admin
diff --git a/services/odb/pom.xml b/services/odb/pom.xml
index 462023329568..2a1a99e53215 100644
--- a/services/odb/pom.xml
+++ b/services/odb/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
odb
AWS Java SDK :: Services :: Odb
diff --git a/services/omics/pom.xml b/services/omics/pom.xml
index a39ef3b07870..ead594837834 100644
--- a/services/omics/pom.xml
+++ b/services/omics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
omics
AWS Java SDK :: Services :: Omics
diff --git a/services/opensearch/pom.xml b/services/opensearch/pom.xml
index 276b766593c4..ce5844040d6b 100644
--- a/services/opensearch/pom.xml
+++ b/services/opensearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
opensearch
AWS Java SDK :: Services :: Open Search
diff --git a/services/opensearchserverless/pom.xml b/services/opensearchserverless/pom.xml
index bd0513b3a478..87064a7f8054 100644
--- a/services/opensearchserverless/pom.xml
+++ b/services/opensearchserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
opensearchserverless
AWS Java SDK :: Services :: Open Search Serverless
diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml
index 807f3f78940a..ddbadbc66640 100644
--- a/services/organizations/pom.xml
+++ b/services/organizations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
organizations
AWS Java SDK :: Services :: AWS Organizations
diff --git a/services/osis/pom.xml b/services/osis/pom.xml
index c88af101dd9a..be5c480dd6fa 100644
--- a/services/osis/pom.xml
+++ b/services/osis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
osis
AWS Java SDK :: Services :: OSIS
diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml
index f775ba6c3382..5aa702d02a37 100644
--- a/services/outposts/pom.xml
+++ b/services/outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
outposts
AWS Java SDK :: Services :: Outposts
diff --git a/services/panorama/pom.xml b/services/panorama/pom.xml
index 0bfd9575cc2a..c788725300e6 100644
--- a/services/panorama/pom.xml
+++ b/services/panorama/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
panorama
AWS Java SDK :: Services :: Panorama
diff --git a/services/partnercentralselling/pom.xml b/services/partnercentralselling/pom.xml
index 2f57baa1e508..7fad5fadf1de 100644
--- a/services/partnercentralselling/pom.xml
+++ b/services/partnercentralselling/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
partnercentralselling
AWS Java SDK :: Services :: Partner Central Selling
diff --git a/services/paymentcryptography/pom.xml b/services/paymentcryptography/pom.xml
index 8a4c13ca23d4..d5f3d10964ac 100644
--- a/services/paymentcryptography/pom.xml
+++ b/services/paymentcryptography/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
paymentcryptography
AWS Java SDK :: Services :: Payment Cryptography
diff --git a/services/paymentcryptographydata/pom.xml b/services/paymentcryptographydata/pom.xml
index c38dd0720aa1..0953e29c0305 100644
--- a/services/paymentcryptographydata/pom.xml
+++ b/services/paymentcryptographydata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
paymentcryptographydata
AWS Java SDK :: Services :: Payment Cryptography Data
diff --git a/services/pcaconnectorad/pom.xml b/services/pcaconnectorad/pom.xml
index e5dab925c6ac..e389bb474f95 100644
--- a/services/pcaconnectorad/pom.xml
+++ b/services/pcaconnectorad/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
pcaconnectorad
AWS Java SDK :: Services :: Pca Connector Ad
diff --git a/services/pcaconnectorscep/pom.xml b/services/pcaconnectorscep/pom.xml
index a1f848ff2776..b62a87eb0645 100644
--- a/services/pcaconnectorscep/pom.xml
+++ b/services/pcaconnectorscep/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
pcaconnectorscep
AWS Java SDK :: Services :: Pca Connector Scep
diff --git a/services/pcs/pom.xml b/services/pcs/pom.xml
index 831880197c7e..76f152e19efd 100644
--- a/services/pcs/pom.xml
+++ b/services/pcs/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
pcs
AWS Java SDK :: Services :: PCS
diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml
index d9bef323f9fe..dfe2b2b3a3f0 100644
--- a/services/personalize/pom.xml
+++ b/services/personalize/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
personalize
AWS Java SDK :: Services :: Personalize
diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml
index a2a99acb8cb6..8d9bc57ff272 100644
--- a/services/personalizeevents/pom.xml
+++ b/services/personalizeevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
personalizeevents
AWS Java SDK :: Services :: Personalize Events
diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml
index 9e9b42604abb..89f361c7ec9f 100644
--- a/services/personalizeruntime/pom.xml
+++ b/services/personalizeruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
personalizeruntime
AWS Java SDK :: Services :: Personalize Runtime
diff --git a/services/pi/pom.xml b/services/pi/pom.xml
index 14559f2972d9..3f3a6ea886c1 100644
--- a/services/pi/pom.xml
+++ b/services/pi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
pi
AWS Java SDK :: Services :: PI
diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml
index 0f36af08631b..307f503020dd 100644
--- a/services/pinpoint/pom.xml
+++ b/services/pinpoint/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
pinpoint
AWS Java SDK :: Services :: Amazon Pinpoint
diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml
index c90caf1be3f4..a8e7cf411dd4 100644
--- a/services/pinpointemail/pom.xml
+++ b/services/pinpointemail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
pinpointemail
AWS Java SDK :: Services :: Pinpoint Email
diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml
index 88f6b309bf1b..9b9d2545507f 100644
--- a/services/pinpointsmsvoice/pom.xml
+++ b/services/pinpointsmsvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
pinpointsmsvoice
AWS Java SDK :: Services :: Pinpoint SMS Voice
diff --git a/services/pinpointsmsvoicev2/pom.xml b/services/pinpointsmsvoicev2/pom.xml
index 7df59ee781ab..e3ac31c44fcf 100644
--- a/services/pinpointsmsvoicev2/pom.xml
+++ b/services/pinpointsmsvoicev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
pinpointsmsvoicev2
AWS Java SDK :: Services :: Pinpoint SMS Voice V2
diff --git a/services/pipes/pom.xml b/services/pipes/pom.xml
index 8388ea41592d..0340fc3df3c6 100644
--- a/services/pipes/pom.xml
+++ b/services/pipes/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
pipes
AWS Java SDK :: Services :: Pipes
diff --git a/services/polly/pom.xml b/services/polly/pom.xml
index a255e99c66ba..d4df207dc57a 100644
--- a/services/polly/pom.xml
+++ b/services/polly/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
polly
AWS Java SDK :: Services :: Amazon Polly
diff --git a/services/pom.xml b/services/pom.xml
index cd398eaf670b..22e9692b0ea0 100644
--- a/services/pom.xml
+++ b/services/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
services
AWS Java SDK :: Services
diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml
index de2b57bdbec5..f5145cbc71d3 100644
--- a/services/pricing/pom.xml
+++ b/services/pricing/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
pricing
diff --git a/services/proton/pom.xml b/services/proton/pom.xml
index a46fe568f7ce..21011009ee3e 100644
--- a/services/proton/pom.xml
+++ b/services/proton/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
proton
AWS Java SDK :: Services :: Proton
diff --git a/services/qapps/pom.xml b/services/qapps/pom.xml
index 16aa10b52914..37e18e93af1a 100644
--- a/services/qapps/pom.xml
+++ b/services/qapps/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
qapps
AWS Java SDK :: Services :: Q Apps
diff --git a/services/qbusiness/pom.xml b/services/qbusiness/pom.xml
index a3de916084fc..ba43eb648d16 100644
--- a/services/qbusiness/pom.xml
+++ b/services/qbusiness/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
qbusiness
AWS Java SDK :: Services :: Q Business
diff --git a/services/qconnect/pom.xml b/services/qconnect/pom.xml
index 9aa93ef10b72..2077ffa5ee9a 100644
--- a/services/qconnect/pom.xml
+++ b/services/qconnect/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
qconnect
AWS Java SDK :: Services :: Q Connect
diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml
index 481b3b1db1dd..94f89b683c42 100644
--- a/services/qldb/pom.xml
+++ b/services/qldb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
qldb
AWS Java SDK :: Services :: QLDB
diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml
index 6927527ae96b..3077f0c2c46e 100644
--- a/services/qldbsession/pom.xml
+++ b/services/qldbsession/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
qldbsession
AWS Java SDK :: Services :: QLDB Session
diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml
index b8ba892b1a49..8816a295bcdf 100644
--- a/services/quicksight/pom.xml
+++ b/services/quicksight/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
quicksight
AWS Java SDK :: Services :: QuickSight
diff --git a/services/ram/pom.xml b/services/ram/pom.xml
index dd7c34751c74..e772e2892e60 100644
--- a/services/ram/pom.xml
+++ b/services/ram/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ram
AWS Java SDK :: Services :: RAM
diff --git a/services/rbin/pom.xml b/services/rbin/pom.xml
index 72691cd3cafc..e4059814bfa3 100644
--- a/services/rbin/pom.xml
+++ b/services/rbin/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
rbin
AWS Java SDK :: Services :: Rbin
diff --git a/services/rds/pom.xml b/services/rds/pom.xml
index 0def02b7de5d..88256c68c41c 100644
--- a/services/rds/pom.xml
+++ b/services/rds/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
rds
AWS Java SDK :: Services :: Amazon RDS
diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml
index f1688c3d20f8..4419e12d4681 100644
--- a/services/rdsdata/pom.xml
+++ b/services/rdsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
rdsdata
AWS Java SDK :: Services :: RDS Data
diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml
index 160efc6d4e1a..5a871ddb7c27 100644
--- a/services/redshift/pom.xml
+++ b/services/redshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
redshift
AWS Java SDK :: Services :: Amazon Redshift
diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml
index df2803568ba7..1b03c1f39ba0 100644
--- a/services/redshiftdata/pom.xml
+++ b/services/redshiftdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
redshiftdata
AWS Java SDK :: Services :: Redshift Data
diff --git a/services/redshiftserverless/pom.xml b/services/redshiftserverless/pom.xml
index a35dc04508d1..229b906cdb82 100644
--- a/services/redshiftserverless/pom.xml
+++ b/services/redshiftserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
redshiftserverless
AWS Java SDK :: Services :: Redshift Serverless
diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml
index 3f15434c1a77..3e5e1d8894bb 100644
--- a/services/rekognition/pom.xml
+++ b/services/rekognition/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
rekognition
AWS Java SDK :: Services :: Amazon Rekognition
diff --git a/services/repostspace/pom.xml b/services/repostspace/pom.xml
index 72aa1f674164..caedab5417b0 100644
--- a/services/repostspace/pom.xml
+++ b/services/repostspace/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
repostspace
AWS Java SDK :: Services :: Repostspace
diff --git a/services/resiliencehub/pom.xml b/services/resiliencehub/pom.xml
index ebefd06d3112..5af02d47bd00 100644
--- a/services/resiliencehub/pom.xml
+++ b/services/resiliencehub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
resiliencehub
AWS Java SDK :: Services :: Resiliencehub
diff --git a/services/resourceexplorer2/pom.xml b/services/resourceexplorer2/pom.xml
index afa3897ad8c9..fcf0efb69b02 100644
--- a/services/resourceexplorer2/pom.xml
+++ b/services/resourceexplorer2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
resourceexplorer2
AWS Java SDK :: Services :: Resource Explorer 2
diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml
index 6541f7067931..9c3a3c276e1a 100644
--- a/services/resourcegroups/pom.xml
+++ b/services/resourcegroups/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
resourcegroups
diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml
index bfef23c90432..908cd81500a0 100644
--- a/services/resourcegroupstaggingapi/pom.xml
+++ b/services/resourcegroupstaggingapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
resourcegroupstaggingapi
AWS Java SDK :: Services :: AWS Resource Groups Tagging API
diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml
index f52db535cd29..a10dc68f10be 100644
--- a/services/robomaker/pom.xml
+++ b/services/robomaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
robomaker
AWS Java SDK :: Services :: RoboMaker
diff --git a/services/rolesanywhere/pom.xml b/services/rolesanywhere/pom.xml
index ff52ba76f5e9..71ac86742fbb 100644
--- a/services/rolesanywhere/pom.xml
+++ b/services/rolesanywhere/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
rolesanywhere
AWS Java SDK :: Services :: Roles Anywhere
diff --git a/services/route53/pom.xml b/services/route53/pom.xml
index 84de8e985bbc..e96bbaa682e3 100644
--- a/services/route53/pom.xml
+++ b/services/route53/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
route53
AWS Java SDK :: Services :: Amazon Route53
diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml
index e8fdf645cc8e..5ccf25a0cdf6 100644
--- a/services/route53domains/pom.xml
+++ b/services/route53domains/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
route53domains
AWS Java SDK :: Services :: Amazon Route53 Domains
diff --git a/services/route53profiles/pom.xml b/services/route53profiles/pom.xml
index bd9eace8d27e..24a1ae2c70d0 100644
--- a/services/route53profiles/pom.xml
+++ b/services/route53profiles/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
route53profiles
AWS Java SDK :: Services :: Route53 Profiles
diff --git a/services/route53recoverycluster/pom.xml b/services/route53recoverycluster/pom.xml
index 84804daac32a..6d684d8103af 100644
--- a/services/route53recoverycluster/pom.xml
+++ b/services/route53recoverycluster/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
route53recoverycluster
AWS Java SDK :: Services :: Route53 Recovery Cluster
diff --git a/services/route53recoverycontrolconfig/pom.xml b/services/route53recoverycontrolconfig/pom.xml
index 710b9b66e32b..752413274be4 100644
--- a/services/route53recoverycontrolconfig/pom.xml
+++ b/services/route53recoverycontrolconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
route53recoverycontrolconfig
AWS Java SDK :: Services :: Route53 Recovery Control Config
diff --git a/services/route53recoveryreadiness/pom.xml b/services/route53recoveryreadiness/pom.xml
index 6b1d8dba23a2..c5afbf040a1f 100644
--- a/services/route53recoveryreadiness/pom.xml
+++ b/services/route53recoveryreadiness/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
route53recoveryreadiness
AWS Java SDK :: Services :: Route53 Recovery Readiness
diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml
index 5ef5819a2cac..2ca935fbe163 100644
--- a/services/route53resolver/pom.xml
+++ b/services/route53resolver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
route53resolver
AWS Java SDK :: Services :: Route53Resolver
diff --git a/services/rum/pom.xml b/services/rum/pom.xml
index f1783f92e109..50f2f6f2c877 100644
--- a/services/rum/pom.xml
+++ b/services/rum/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
rum
AWS Java SDK :: Services :: RUM
diff --git a/services/s3/pom.xml b/services/s3/pom.xml
index 8d2a853e8f1e..c80156c8f679 100644
--- a/services/s3/pom.xml
+++ b/services/s3/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
s3
AWS Java SDK :: Services :: Amazon S3
diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml
index 9640f6683e4f..703d401b8fb1 100644
--- a/services/s3control/pom.xml
+++ b/services/s3control/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
s3control
AWS Java SDK :: Services :: Amazon S3 Control
diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml
index b3e7b302fb2c..eba74d7b0785 100644
--- a/services/s3outposts/pom.xml
+++ b/services/s3outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
s3outposts
AWS Java SDK :: Services :: S3 Outposts
diff --git a/services/s3tables/pom.xml b/services/s3tables/pom.xml
index 48177c5e8493..eb671442a879 100644
--- a/services/s3tables/pom.xml
+++ b/services/s3tables/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
s3tables
AWS Java SDK :: Services :: S3 Tables
diff --git a/services/s3vectors/pom.xml b/services/s3vectors/pom.xml
index 4f2d6fbeec6c..33d2614a11c3 100644
--- a/services/s3vectors/pom.xml
+++ b/services/s3vectors/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
s3vectors
AWS Java SDK :: Services :: S3 Vectors
diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml
index 91974d3e1ed2..8b2543913778 100644
--- a/services/sagemaker/pom.xml
+++ b/services/sagemaker/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
sagemaker
diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml
index 4ac3f236196a..26fb5d9c9ef2 100644
--- a/services/sagemakera2iruntime/pom.xml
+++ b/services/sagemakera2iruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
sagemakera2iruntime
AWS Java SDK :: Services :: SageMaker A2I Runtime
diff --git a/services/sagemakeredge/pom.xml b/services/sagemakeredge/pom.xml
index f71d6bd079a5..28026fd55007 100644
--- a/services/sagemakeredge/pom.xml
+++ b/services/sagemakeredge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
sagemakeredge
AWS Java SDK :: Services :: Sagemaker Edge
diff --git a/services/sagemakerfeaturestoreruntime/pom.xml b/services/sagemakerfeaturestoreruntime/pom.xml
index a938aa46844a..f7d0ed85f291 100644
--- a/services/sagemakerfeaturestoreruntime/pom.xml
+++ b/services/sagemakerfeaturestoreruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
sagemakerfeaturestoreruntime
AWS Java SDK :: Services :: Sage Maker Feature Store Runtime
diff --git a/services/sagemakergeospatial/pom.xml b/services/sagemakergeospatial/pom.xml
index c70876a44a17..bf3c675fc913 100644
--- a/services/sagemakergeospatial/pom.xml
+++ b/services/sagemakergeospatial/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
sagemakergeospatial
AWS Java SDK :: Services :: Sage Maker Geospatial
diff --git a/services/sagemakermetrics/pom.xml b/services/sagemakermetrics/pom.xml
index c8a94e8b1f67..68621f5ad9bb 100644
--- a/services/sagemakermetrics/pom.xml
+++ b/services/sagemakermetrics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
sagemakermetrics
AWS Java SDK :: Services :: Sage Maker Metrics
diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml
index 476c45eac70a..bc628322acf5 100644
--- a/services/sagemakerruntime/pom.xml
+++ b/services/sagemakerruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
sagemakerruntime
AWS Java SDK :: Services :: SageMaker Runtime
diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml
index 561ec5793700..af20d0937ae8 100644
--- a/services/savingsplans/pom.xml
+++ b/services/savingsplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
savingsplans
AWS Java SDK :: Services :: Savingsplans
diff --git a/services/scheduler/pom.xml b/services/scheduler/pom.xml
index 3480ab8af1d8..1af94c172b1f 100644
--- a/services/scheduler/pom.xml
+++ b/services/scheduler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
scheduler
AWS Java SDK :: Services :: Scheduler
diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml
index 1a70cec7c8b9..a89dce9f64b3 100644
--- a/services/schemas/pom.xml
+++ b/services/schemas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
schemas
AWS Java SDK :: Services :: Schemas
diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml
index 7ed80505d5a2..208eb2f389fd 100644
--- a/services/secretsmanager/pom.xml
+++ b/services/secretsmanager/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
secretsmanager
AWS Java SDK :: Services :: AWS Secrets Manager
diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml
index 9219e09e69da..d7c1c809dba5 100644
--- a/services/securityhub/pom.xml
+++ b/services/securityhub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
securityhub
AWS Java SDK :: Services :: SecurityHub
diff --git a/services/securityir/pom.xml b/services/securityir/pom.xml
index d6fe7ebbf9f7..f31fda1602e2 100644
--- a/services/securityir/pom.xml
+++ b/services/securityir/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
securityir
AWS Java SDK :: Services :: Security IR
diff --git a/services/securitylake/pom.xml b/services/securitylake/pom.xml
index 8d20752809cb..34d5fdc2dced 100644
--- a/services/securitylake/pom.xml
+++ b/services/securitylake/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
securitylake
AWS Java SDK :: Services :: Security Lake
diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml
index add840d10101..bcf27c3030e9 100644
--- a/services/serverlessapplicationrepository/pom.xml
+++ b/services/serverlessapplicationrepository/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
serverlessapplicationrepository
diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml
index 23cc9b55dcb5..9b55b1414dd2 100644
--- a/services/servicecatalog/pom.xml
+++ b/services/servicecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
servicecatalog
AWS Java SDK :: Services :: AWS Service Catalog
diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml
index 43d26daf33ce..8f5a2cde8696 100644
--- a/services/servicecatalogappregistry/pom.xml
+++ b/services/servicecatalogappregistry/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
servicecatalogappregistry
AWS Java SDK :: Services :: Service Catalog App Registry
diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml
index ac59abfa1988..645fb3464002 100644
--- a/services/servicediscovery/pom.xml
+++ b/services/servicediscovery/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
servicediscovery
diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml
index ad98b07eb46d..fd073367a357 100644
--- a/services/servicequotas/pom.xml
+++ b/services/servicequotas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
servicequotas
AWS Java SDK :: Services :: Service Quotas
diff --git a/services/ses/pom.xml b/services/ses/pom.xml
index 7a1381101d73..ccbb1515b36b 100644
--- a/services/ses/pom.xml
+++ b/services/ses/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ses
AWS Java SDK :: Services :: Amazon SES
diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml
index b8ae685e13d9..3df32f3553e6 100644
--- a/services/sesv2/pom.xml
+++ b/services/sesv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
sesv2
AWS Java SDK :: Services :: SESv2
diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml
index c84d19e152ef..f87ecb247ef8 100644
--- a/services/sfn/pom.xml
+++ b/services/sfn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
sfn
AWS Java SDK :: Services :: AWS Step Functions
diff --git a/services/shield/pom.xml b/services/shield/pom.xml
index ae6fb25ec8d6..cad7ed5f376e 100644
--- a/services/shield/pom.xml
+++ b/services/shield/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
shield
AWS Java SDK :: Services :: AWS Shield
diff --git a/services/signer/pom.xml b/services/signer/pom.xml
index 907403472167..fe30cad6b06a 100644
--- a/services/signer/pom.xml
+++ b/services/signer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
signer
AWS Java SDK :: Services :: Signer
diff --git a/services/simspaceweaver/pom.xml b/services/simspaceweaver/pom.xml
index 8f917390c5f9..d2acd66aabac 100644
--- a/services/simspaceweaver/pom.xml
+++ b/services/simspaceweaver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
simspaceweaver
AWS Java SDK :: Services :: Sim Space Weaver
diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml
index 83240979068e..f436aedb1192 100644
--- a/services/snowball/pom.xml
+++ b/services/snowball/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
snowball
AWS Java SDK :: Services :: Amazon Snowball
diff --git a/services/snowdevicemanagement/pom.xml b/services/snowdevicemanagement/pom.xml
index 3285e2237e15..ef48645809c4 100644
--- a/services/snowdevicemanagement/pom.xml
+++ b/services/snowdevicemanagement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
snowdevicemanagement
AWS Java SDK :: Services :: Snow Device Management
diff --git a/services/sns/pom.xml b/services/sns/pom.xml
index 91c9522753c9..6133c3b94aa2 100644
--- a/services/sns/pom.xml
+++ b/services/sns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
sns
AWS Java SDK :: Services :: Amazon SNS
diff --git a/services/socialmessaging/pom.xml b/services/socialmessaging/pom.xml
index 89421e3f6b7d..96fc5f34ffb4 100644
--- a/services/socialmessaging/pom.xml
+++ b/services/socialmessaging/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
socialmessaging
AWS Java SDK :: Services :: Social Messaging
diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml
index 88b7a1499c51..2b8356f2c943 100644
--- a/services/sqs/pom.xml
+++ b/services/sqs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
sqs
AWS Java SDK :: Services :: Amazon SQS
diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml
index ddd51da7660d..1f4f662fb981 100644
--- a/services/ssm/pom.xml
+++ b/services/ssm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ssm
AWS Java SDK :: Services :: AWS Simple Systems Management (SSM)
diff --git a/services/ssmcontacts/pom.xml b/services/ssmcontacts/pom.xml
index 48e5b4079de4..08b833d7f3aa 100644
--- a/services/ssmcontacts/pom.xml
+++ b/services/ssmcontacts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ssmcontacts
AWS Java SDK :: Services :: SSM Contacts
diff --git a/services/ssmguiconnect/pom.xml b/services/ssmguiconnect/pom.xml
index 2810a4e8ffb3..ed00327aa945 100644
--- a/services/ssmguiconnect/pom.xml
+++ b/services/ssmguiconnect/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ssmguiconnect
AWS Java SDK :: Services :: SSM Gui Connect
diff --git a/services/ssmincidents/pom.xml b/services/ssmincidents/pom.xml
index e3e74cffd6a7..c9989f85e1ce 100644
--- a/services/ssmincidents/pom.xml
+++ b/services/ssmincidents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ssmincidents
AWS Java SDK :: Services :: SSM Incidents
diff --git a/services/ssmquicksetup/pom.xml b/services/ssmquicksetup/pom.xml
index 5f51ed6aa32d..e47af221be5c 100644
--- a/services/ssmquicksetup/pom.xml
+++ b/services/ssmquicksetup/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ssmquicksetup
AWS Java SDK :: Services :: SSM Quick Setup
diff --git a/services/ssmsap/pom.xml b/services/ssmsap/pom.xml
index 287548a5ae2f..1557772a1ec8 100644
--- a/services/ssmsap/pom.xml
+++ b/services/ssmsap/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ssmsap
AWS Java SDK :: Services :: Ssm Sap
diff --git a/services/sso/pom.xml b/services/sso/pom.xml
index 55c46132d057..812957ccf715 100644
--- a/services/sso/pom.xml
+++ b/services/sso/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
sso
AWS Java SDK :: Services :: SSO
diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml
index 78d69d7457c5..e42f3153b267 100644
--- a/services/ssoadmin/pom.xml
+++ b/services/ssoadmin/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ssoadmin
AWS Java SDK :: Services :: SSO Admin
diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml
index 4a1451199320..b1d6d4a4f31a 100644
--- a/services/ssooidc/pom.xml
+++ b/services/ssooidc/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
ssooidc
AWS Java SDK :: Services :: SSO OIDC
diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml
index 2dce2f9ed8ff..db6850e0b87b 100644
--- a/services/storagegateway/pom.xml
+++ b/services/storagegateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
storagegateway
AWS Java SDK :: Services :: AWS Storage Gateway
diff --git a/services/sts/pom.xml b/services/sts/pom.xml
index 0651889ab600..966f189e407c 100644
--- a/services/sts/pom.xml
+++ b/services/sts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
sts
AWS Java SDK :: Services :: AWS STS
diff --git a/services/supplychain/pom.xml b/services/supplychain/pom.xml
index 4e78a7634bf8..baa57672de66 100644
--- a/services/supplychain/pom.xml
+++ b/services/supplychain/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
supplychain
AWS Java SDK :: Services :: Supply Chain
diff --git a/services/support/pom.xml b/services/support/pom.xml
index d853d7141cfd..b254e0a41505 100644
--- a/services/support/pom.xml
+++ b/services/support/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
support
AWS Java SDK :: Services :: AWS Support
diff --git a/services/supportapp/pom.xml b/services/supportapp/pom.xml
index 8bc6f01eed5b..d35a2b248279 100644
--- a/services/supportapp/pom.xml
+++ b/services/supportapp/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
supportapp
AWS Java SDK :: Services :: Support App
diff --git a/services/swf/pom.xml b/services/swf/pom.xml
index 15d86adc0d94..38d012d813bf 100644
--- a/services/swf/pom.xml
+++ b/services/swf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
swf
AWS Java SDK :: Services :: Amazon SWF
diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml
index ff1cc7707508..b9735cea9af1 100644
--- a/services/synthetics/pom.xml
+++ b/services/synthetics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
synthetics
AWS Java SDK :: Services :: Synthetics
diff --git a/services/taxsettings/pom.xml b/services/taxsettings/pom.xml
index f2c886d32a90..34ebef9f3b12 100644
--- a/services/taxsettings/pom.xml
+++ b/services/taxsettings/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
taxsettings
AWS Java SDK :: Services :: Tax Settings
diff --git a/services/textract/pom.xml b/services/textract/pom.xml
index d387c43036f9..f92efeb6e466 100644
--- a/services/textract/pom.xml
+++ b/services/textract/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
textract
AWS Java SDK :: Services :: Textract
diff --git a/services/timestreaminfluxdb/pom.xml b/services/timestreaminfluxdb/pom.xml
index c8da4a9ccbb5..48d860b0c56a 100644
--- a/services/timestreaminfluxdb/pom.xml
+++ b/services/timestreaminfluxdb/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
timestreaminfluxdb
AWS Java SDK :: Services :: Timestream Influx DB
diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml
index ec3b75cb0438..bb84e3f2bf1d 100644
--- a/services/timestreamquery/pom.xml
+++ b/services/timestreamquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
timestreamquery
AWS Java SDK :: Services :: Timestream Query
diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml
index bdac955faf9b..dee71c52aabc 100644
--- a/services/timestreamwrite/pom.xml
+++ b/services/timestreamwrite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
timestreamwrite
AWS Java SDK :: Services :: Timestream Write
diff --git a/services/tnb/pom.xml b/services/tnb/pom.xml
index b902c2397658..ce0e9880ac3b 100644
--- a/services/tnb/pom.xml
+++ b/services/tnb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
tnb
AWS Java SDK :: Services :: Tnb
diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml
index 1ff506900351..ae52fdfb82c5 100644
--- a/services/transcribe/pom.xml
+++ b/services/transcribe/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
transcribe
AWS Java SDK :: Services :: Transcribe
diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml
index 69fec492ae02..bd62c2b959be 100644
--- a/services/transcribestreaming/pom.xml
+++ b/services/transcribestreaming/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
transcribestreaming
AWS Java SDK :: Services :: AWS Transcribe Streaming
diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml
index cbcd9b8ca8c1..8c243d275c4a 100644
--- a/services/transfer/pom.xml
+++ b/services/transfer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
transfer
AWS Java SDK :: Services :: Transfer
diff --git a/services/translate/pom.xml b/services/translate/pom.xml
index a93afd0544e0..f5dd2dc15af0 100644
--- a/services/translate/pom.xml
+++ b/services/translate/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
translate
diff --git a/services/trustedadvisor/pom.xml b/services/trustedadvisor/pom.xml
index 1e30a73e32e1..2c99b060de81 100644
--- a/services/trustedadvisor/pom.xml
+++ b/services/trustedadvisor/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
trustedadvisor
AWS Java SDK :: Services :: Trusted Advisor
diff --git a/services/verifiedpermissions/pom.xml b/services/verifiedpermissions/pom.xml
index a95b8b06a549..9ef4ba70a5f6 100644
--- a/services/verifiedpermissions/pom.xml
+++ b/services/verifiedpermissions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
verifiedpermissions
AWS Java SDK :: Services :: Verified Permissions
diff --git a/services/voiceid/pom.xml b/services/voiceid/pom.xml
index 96f4d6543114..0f67fcc78b46 100644
--- a/services/voiceid/pom.xml
+++ b/services/voiceid/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
voiceid
AWS Java SDK :: Services :: Voice ID
diff --git a/services/vpclattice/pom.xml b/services/vpclattice/pom.xml
index 4164c8973cdf..8729bb27da46 100644
--- a/services/vpclattice/pom.xml
+++ b/services/vpclattice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
vpclattice
AWS Java SDK :: Services :: VPC Lattice
diff --git a/services/waf/pom.xml b/services/waf/pom.xml
index da3c17689fa5..ded73933bedf 100644
--- a/services/waf/pom.xml
+++ b/services/waf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
waf
AWS Java SDK :: Services :: AWS WAF
diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml
index d3de3953284c..c351656728c9 100644
--- a/services/wafv2/pom.xml
+++ b/services/wafv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
wafv2
AWS Java SDK :: Services :: WAFV2
diff --git a/services/wellarchitected/pom.xml b/services/wellarchitected/pom.xml
index af5d1f61b994..e70489916bf9 100644
--- a/services/wellarchitected/pom.xml
+++ b/services/wellarchitected/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
wellarchitected
AWS Java SDK :: Services :: Well Architected
diff --git a/services/wisdom/pom.xml b/services/wisdom/pom.xml
index 983eca923c33..dd28c287f45d 100644
--- a/services/wisdom/pom.xml
+++ b/services/wisdom/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
wisdom
AWS Java SDK :: Services :: Wisdom
diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml
index b29a8eeb9ce6..171d27bc2ebc 100644
--- a/services/workdocs/pom.xml
+++ b/services/workdocs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
workdocs
AWS Java SDK :: Services :: Amazon WorkDocs
diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml
index 575560f538d4..262388dd2267 100644
--- a/services/workmail/pom.xml
+++ b/services/workmail/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
workmail
diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml
index c10f9f6088db..1a185efc4c40 100644
--- a/services/workmailmessageflow/pom.xml
+++ b/services/workmailmessageflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
workmailmessageflow
AWS Java SDK :: Services :: WorkMailMessageFlow
diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml
index 1d3c8c113c07..8777d53ec53b 100644
--- a/services/workspaces/pom.xml
+++ b/services/workspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
workspaces
AWS Java SDK :: Services :: Amazon WorkSpaces
diff --git a/services/workspacesinstances/pom.xml b/services/workspacesinstances/pom.xml
index 3a32f632d942..0c7f53e1e167 100644
--- a/services/workspacesinstances/pom.xml
+++ b/services/workspacesinstances/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
workspacesinstances
AWS Java SDK :: Services :: Workspaces Instances
diff --git a/services/workspacesthinclient/pom.xml b/services/workspacesthinclient/pom.xml
index 8a2d7d4aeb27..93dceb016cf6 100644
--- a/services/workspacesthinclient/pom.xml
+++ b/services/workspacesthinclient/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
workspacesthinclient
AWS Java SDK :: Services :: Work Spaces Thin Client
diff --git a/services/workspacesweb/pom.xml b/services/workspacesweb/pom.xml
index 980266c824ed..dbc0076021e2 100644
--- a/services/workspacesweb/pom.xml
+++ b/services/workspacesweb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
workspacesweb
AWS Java SDK :: Services :: Work Spaces Web
diff --git a/services/xray/pom.xml b/services/xray/pom.xml
index 9932c2118ea7..5337ce119ba9 100644
--- a/services/xray/pom.xml
+++ b/services/xray/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5-SNAPSHOT
+ 2.34.5
xray
AWS Java SDK :: Services :: AWS X-Ray
diff --git a/test/architecture-tests/pom.xml b/test/architecture-tests/pom.xml
index 183ee602fb5b..8804beab9cec 100644
--- a/test/architecture-tests/pom.xml
+++ b/test/architecture-tests/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
diff --git a/test/auth-tests/pom.xml b/test/auth-tests/pom.xml
index e39e7df75f6e..f2ddb92db16f 100644
--- a/test/auth-tests/pom.xml
+++ b/test/auth-tests/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
4.0.0
diff --git a/test/bundle-logging-bridge-binding-test/pom.xml b/test/bundle-logging-bridge-binding-test/pom.xml
index ab3abe917476..40f7dedb28cf 100644
--- a/test/bundle-logging-bridge-binding-test/pom.xml
+++ b/test/bundle-logging-bridge-binding-test/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
4.0.0
diff --git a/test/bundle-shading-tests/pom.xml b/test/bundle-shading-tests/pom.xml
index f44e4e30fa44..d2155367217f 100644
--- a/test/bundle-shading-tests/pom.xml
+++ b/test/bundle-shading-tests/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
4.0.0
diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml
index 55bc40de076b..2a00c0af4bbb 100644
--- a/test/codegen-generated-classes-test/pom.xml
+++ b/test/codegen-generated-classes-test/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
diff --git a/test/crt-unavailable-tests/pom.xml b/test/crt-unavailable-tests/pom.xml
index 7396a736f569..16311499ba24 100644
--- a/test/crt-unavailable-tests/pom.xml
+++ b/test/crt-unavailable-tests/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
4.0.0
diff --git a/test/http-client-benchmarks/pom.xml b/test/http-client-benchmarks/pom.xml
index 50110ae56592..b14093331279 100644
--- a/test/http-client-benchmarks/pom.xml
+++ b/test/http-client-benchmarks/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml
index ae0c9ea39705..36fc065e636f 100644
--- a/test/http-client-tests/pom.xml
+++ b/test/http-client-tests/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
http-client-tests
diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml
index 61a49841090a..90087defe24b 100644
--- a/test/module-path-tests/pom.xml
+++ b/test/module-path-tests/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
4.0.0
diff --git a/test/old-client-version-compatibility-test/pom.xml b/test/old-client-version-compatibility-test/pom.xml
index d6ca75802074..4507bd3040f2 100644
--- a/test/old-client-version-compatibility-test/pom.xml
+++ b/test/old-client-version-compatibility-test/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml
index 954556346db6..4681413a8fb4 100644
--- a/test/protocol-tests-core/pom.xml
+++ b/test/protocol-tests-core/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
4.0.0
diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml
index 92124cb61e49..6e1b4211831a 100644
--- a/test/protocol-tests/pom.xml
+++ b/test/protocol-tests/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
4.0.0
diff --git a/test/region-testing/pom.xml b/test/region-testing/pom.xml
index 024fd8b79d1c..500bcb80ac32 100644
--- a/test/region-testing/pom.xml
+++ b/test/region-testing/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
4.0.0
diff --git a/test/ruleset-testing-core/pom.xml b/test/ruleset-testing-core/pom.xml
index ef3d88f25f05..0f8065d03034 100644
--- a/test/ruleset-testing-core/pom.xml
+++ b/test/ruleset-testing-core/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
4.0.0
diff --git a/test/s3-benchmarks/pom.xml b/test/s3-benchmarks/pom.xml
index d71c56e28dcd..7d93da4b7f38 100644
--- a/test/s3-benchmarks/pom.xml
+++ b/test/s3-benchmarks/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
4.0.0
diff --git a/test/s3-tests/pom.xml b/test/s3-tests/pom.xml
index 4c0050d51a32..86686edfd8c5 100644
--- a/test/s3-tests/pom.xml
+++ b/test/s3-tests/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
4.0.0
diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml
index 9266597a30d4..5a0af641371a 100644
--- a/test/sdk-benchmarks/pom.xml
+++ b/test/sdk-benchmarks/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
diff --git a/test/sdk-native-image-test/pom.xml b/test/sdk-native-image-test/pom.xml
index 4dd61f8f8943..23904241d609 100644
--- a/test/sdk-native-image-test/pom.xml
+++ b/test/sdk-native-image-test/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
4.0.0
diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml
index bbda5173ee60..d5de07ec8f8b 100644
--- a/test/service-test-utils/pom.xml
+++ b/test/service-test-utils/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
service-test-utils
diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml
index ecf5f650ac41..fd36424b0892 100644
--- a/test/stability-tests/pom.xml
+++ b/test/stability-tests/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
4.0.0
diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml
index bd06d2418700..6804df6d8c41 100644
--- a/test/test-utils/pom.xml
+++ b/test/test-utils/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
test-utils
diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml
index effb745d2dcc..ea881f3f3c13 100644
--- a/test/tests-coverage-reporting/pom.xml
+++ b/test/tests-coverage-reporting/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
../../pom.xml
4.0.0
diff --git a/test/v2-migration-tests/pom.xml b/test/v2-migration-tests/pom.xml
index cce051654321..bee48b5e582f 100644
--- a/test/v2-migration-tests/pom.xml
+++ b/test/v2-migration-tests/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
../..
diff --git a/third-party/pom.xml b/third-party/pom.xml
index 58580275e2bf..c4780571358b 100644
--- a/third-party/pom.xml
+++ b/third-party/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
third-party
diff --git a/third-party/third-party-jackson-core/pom.xml b/third-party/third-party-jackson-core/pom.xml
index 3a5a7cf46175..48399eca9c36 100644
--- a/third-party/third-party-jackson-core/pom.xml
+++ b/third-party/third-party-jackson-core/pom.xml
@@ -20,7 +20,7 @@
third-party
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/third-party/third-party-jackson-dataformat-cbor/pom.xml b/third-party/third-party-jackson-dataformat-cbor/pom.xml
index c85bd1b8f7ad..3a89ff9432a7 100644
--- a/third-party/third-party-jackson-dataformat-cbor/pom.xml
+++ b/third-party/third-party-jackson-dataformat-cbor/pom.xml
@@ -20,7 +20,7 @@
third-party
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/third-party/third-party-slf4j-api/pom.xml b/third-party/third-party-slf4j-api/pom.xml
index 14d9e2197615..091858edef25 100644
--- a/third-party/third-party-slf4j-api/pom.xml
+++ b/third-party/third-party-slf4j-api/pom.xml
@@ -20,7 +20,7 @@
third-party
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/utils-lite/pom.xml b/utils-lite/pom.xml
index 0b4be0d923ce..a46c28c4169a 100644
--- a/utils-lite/pom.xml
+++ b/utils-lite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
utils-lite
AWS Java SDK :: Utils Lite
diff --git a/utils/pom.xml b/utils/pom.xml
index 45e3082a4d8b..870c17d809ce 100644
--- a/utils/pom.xml
+++ b/utils/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5-SNAPSHOT
+ 2.34.5
4.0.0
diff --git a/v2-migration/pom.xml b/v2-migration/pom.xml
index 7b01725e1f4d..e2f293eb9f5c 100644
--- a/v2-migration/pom.xml
+++ b/v2-migration/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5-SNAPSHOT
+ 2.34.5
../pom.xml
From 7bf4d7bea321e53acc3b49db40ffe9ce3e6171f2 Mon Sep 17 00:00:00 2001
From: AWS <>
Date: Fri, 26 Sep 2025 21:19:04 +0000
Subject: [PATCH 121/121] Update to next snapshot version: 2.34.6-SNAPSHOT
---
archetypes/archetype-app-quickstart/pom.xml | 2 +-
archetypes/archetype-lambda/pom.xml | 2 +-
archetypes/archetype-tools/pom.xml | 2 +-
archetypes/pom.xml | 2 +-
aws-sdk-java/pom.xml | 2 +-
bom-internal/pom.xml | 2 +-
bom/pom.xml | 2 +-
bundle-logging-bridge/pom.xml | 2 +-
bundle-sdk/pom.xml | 2 +-
bundle/pom.xml | 2 +-
codegen-lite-maven-plugin/pom.xml | 2 +-
codegen-lite/pom.xml | 2 +-
codegen-maven-plugin/pom.xml | 2 +-
codegen/pom.xml | 2 +-
core/annotations/pom.xml | 2 +-
core/arns/pom.xml | 2 +-
core/auth-crt/pom.xml | 2 +-
core/auth/pom.xml | 2 +-
core/aws-core/pom.xml | 2 +-
core/checksums-spi/pom.xml | 2 +-
core/checksums/pom.xml | 2 +-
core/crt-core/pom.xml | 2 +-
core/endpoints-spi/pom.xml | 2 +-
core/http-auth-aws-crt/pom.xml | 2 +-
core/http-auth-aws-eventstream/pom.xml | 2 +-
core/http-auth-aws/pom.xml | 2 +-
core/http-auth-spi/pom.xml | 2 +-
core/http-auth/pom.xml | 2 +-
core/identity-spi/pom.xml | 2 +-
core/imds/pom.xml | 2 +-
core/json-utils/pom.xml | 2 +-
core/metrics-spi/pom.xml | 2 +-
core/pom.xml | 2 +-
core/profiles/pom.xml | 2 +-
core/protocols/aws-cbor-protocol/pom.xml | 2 +-
core/protocols/aws-json-protocol/pom.xml | 2 +-
core/protocols/aws-query-protocol/pom.xml | 2 +-
core/protocols/aws-xml-protocol/pom.xml | 2 +-
core/protocols/pom.xml | 2 +-
core/protocols/protocol-core/pom.xml | 2 +-
core/protocols/smithy-rpcv2-protocol/pom.xml | 2 +-
core/regions/pom.xml | 2 +-
core/retries-spi/pom.xml | 2 +-
core/retries/pom.xml | 2 +-
core/sdk-core/pom.xml | 2 +-
http-client-spi/pom.xml | 2 +-
http-clients/apache-client/pom.xml | 2 +-
http-clients/apache5-client/pom.xml | 2 +-
http-clients/aws-crt-client/pom.xml | 2 +-
http-clients/netty-nio-client/pom.xml | 2 +-
http-clients/pom.xml | 2 +-
http-clients/url-connection-client/pom.xml | 2 +-
metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +-
metric-publishers/emf-metric-logging-publisher/pom.xml | 2 +-
metric-publishers/pom.xml | 2 +-
pom.xml | 6 +++---
release-scripts/pom.xml | 2 +-
services-custom/dynamodb-enhanced/pom.xml | 2 +-
services-custom/iam-policy-builder/pom.xml | 2 +-
services-custom/pom.xml | 2 +-
services-custom/s3-event-notifications/pom.xml | 2 +-
services-custom/s3-transfer-manager/pom.xml | 2 +-
services/accessanalyzer/pom.xml | 2 +-
services/account/pom.xml | 2 +-
services/acm/pom.xml | 2 +-
services/acmpca/pom.xml | 2 +-
services/aiops/pom.xml | 2 +-
services/amp/pom.xml | 2 +-
services/amplify/pom.xml | 2 +-
services/amplifybackend/pom.xml | 2 +-
services/amplifyuibuilder/pom.xml | 2 +-
services/apigateway/pom.xml | 2 +-
services/apigatewaymanagementapi/pom.xml | 2 +-
services/apigatewayv2/pom.xml | 2 +-
services/appconfig/pom.xml | 2 +-
services/appconfigdata/pom.xml | 2 +-
services/appfabric/pom.xml | 2 +-
services/appflow/pom.xml | 2 +-
services/appintegrations/pom.xml | 2 +-
services/applicationautoscaling/pom.xml | 2 +-
services/applicationcostprofiler/pom.xml | 2 +-
services/applicationdiscovery/pom.xml | 2 +-
services/applicationinsights/pom.xml | 2 +-
services/applicationsignals/pom.xml | 2 +-
services/appmesh/pom.xml | 2 +-
services/apprunner/pom.xml | 2 +-
services/appstream/pom.xml | 2 +-
services/appsync/pom.xml | 2 +-
services/apptest/pom.xml | 2 +-
services/arcregionswitch/pom.xml | 2 +-
services/arczonalshift/pom.xml | 2 +-
services/artifact/pom.xml | 2 +-
services/athena/pom.xml | 2 +-
services/auditmanager/pom.xml | 2 +-
services/autoscaling/pom.xml | 2 +-
services/autoscalingplans/pom.xml | 2 +-
services/b2bi/pom.xml | 2 +-
services/backup/pom.xml | 2 +-
services/backupgateway/pom.xml | 2 +-
services/backupsearch/pom.xml | 2 +-
services/batch/pom.xml | 2 +-
services/bcmdashboards/pom.xml | 2 +-
services/bcmdataexports/pom.xml | 2 +-
services/bcmpricingcalculator/pom.xml | 2 +-
services/bcmrecommendedactions/pom.xml | 2 +-
services/bedrock/pom.xml | 2 +-
services/bedrockagent/pom.xml | 2 +-
services/bedrockagentcore/pom.xml | 2 +-
services/bedrockagentcorecontrol/pom.xml | 2 +-
services/bedrockagentruntime/pom.xml | 2 +-
services/bedrockdataautomation/pom.xml | 2 +-
services/bedrockdataautomationruntime/pom.xml | 2 +-
services/bedrockruntime/pom.xml | 2 +-
services/billing/pom.xml | 2 +-
services/billingconductor/pom.xml | 2 +-
services/braket/pom.xml | 2 +-
services/budgets/pom.xml | 2 +-
services/chatbot/pom.xml | 2 +-
services/chime/pom.xml | 2 +-
services/chimesdkidentity/pom.xml | 2 +-
services/chimesdkmediapipelines/pom.xml | 2 +-
services/chimesdkmeetings/pom.xml | 2 +-
services/chimesdkmessaging/pom.xml | 2 +-
services/chimesdkvoice/pom.xml | 2 +-
services/cleanrooms/pom.xml | 2 +-
services/cleanroomsml/pom.xml | 2 +-
services/cloud9/pom.xml | 2 +-
services/cloudcontrol/pom.xml | 2 +-
services/clouddirectory/pom.xml | 2 +-
services/cloudformation/pom.xml | 2 +-
services/cloudfront/pom.xml | 2 +-
services/cloudfrontkeyvaluestore/pom.xml | 2 +-
services/cloudhsm/pom.xml | 2 +-
services/cloudhsmv2/pom.xml | 2 +-
services/cloudsearch/pom.xml | 2 +-
services/cloudsearchdomain/pom.xml | 2 +-
services/cloudtrail/pom.xml | 2 +-
services/cloudtraildata/pom.xml | 2 +-
services/cloudwatch/pom.xml | 2 +-
services/cloudwatchevents/pom.xml | 2 +-
services/cloudwatchlogs/pom.xml | 2 +-
services/codeartifact/pom.xml | 2 +-
services/codebuild/pom.xml | 2 +-
services/codecatalyst/pom.xml | 2 +-
services/codecommit/pom.xml | 2 +-
services/codeconnections/pom.xml | 2 +-
services/codedeploy/pom.xml | 2 +-
services/codeguruprofiler/pom.xml | 2 +-
services/codegurureviewer/pom.xml | 2 +-
services/codegurusecurity/pom.xml | 2 +-
services/codepipeline/pom.xml | 2 +-
services/codestarconnections/pom.xml | 2 +-
services/codestarnotifications/pom.xml | 2 +-
services/cognitoidentity/pom.xml | 2 +-
services/cognitoidentityprovider/pom.xml | 2 +-
services/cognitosync/pom.xml | 2 +-
services/comprehend/pom.xml | 2 +-
services/comprehendmedical/pom.xml | 2 +-
services/computeoptimizer/pom.xml | 2 +-
services/config/pom.xml | 2 +-
services/connect/pom.xml | 2 +-
services/connectcampaigns/pom.xml | 2 +-
services/connectcampaignsv2/pom.xml | 2 +-
services/connectcases/pom.xml | 2 +-
services/connectcontactlens/pom.xml | 2 +-
services/connectparticipant/pom.xml | 2 +-
services/controlcatalog/pom.xml | 2 +-
services/controltower/pom.xml | 2 +-
services/costandusagereport/pom.xml | 2 +-
services/costexplorer/pom.xml | 2 +-
services/costoptimizationhub/pom.xml | 2 +-
services/customerprofiles/pom.xml | 2 +-
services/databasemigration/pom.xml | 2 +-
services/databrew/pom.xml | 2 +-
services/dataexchange/pom.xml | 2 +-
services/datapipeline/pom.xml | 2 +-
services/datasync/pom.xml | 2 +-
services/datazone/pom.xml | 2 +-
services/dax/pom.xml | 2 +-
services/deadline/pom.xml | 2 +-
services/detective/pom.xml | 2 +-
services/devicefarm/pom.xml | 2 +-
services/devopsguru/pom.xml | 2 +-
services/directconnect/pom.xml | 2 +-
services/directory/pom.xml | 2 +-
services/directoryservicedata/pom.xml | 2 +-
services/dlm/pom.xml | 2 +-
services/docdb/pom.xml | 2 +-
services/docdbelastic/pom.xml | 2 +-
services/drs/pom.xml | 2 +-
services/dsql/pom.xml | 2 +-
services/dynamodb/pom.xml | 2 +-
services/ebs/pom.xml | 2 +-
services/ec2/pom.xml | 2 +-
services/ec2instanceconnect/pom.xml | 2 +-
services/ecr/pom.xml | 2 +-
services/ecrpublic/pom.xml | 2 +-
services/ecs/pom.xml | 2 +-
services/efs/pom.xml | 2 +-
services/eks/pom.xml | 2 +-
services/eksauth/pom.xml | 2 +-
services/elasticache/pom.xml | 2 +-
services/elasticbeanstalk/pom.xml | 2 +-
services/elasticloadbalancing/pom.xml | 2 +-
services/elasticloadbalancingv2/pom.xml | 2 +-
services/elasticsearch/pom.xml | 2 +-
services/elastictranscoder/pom.xml | 2 +-
services/emr/pom.xml | 2 +-
services/emrcontainers/pom.xml | 2 +-
services/emrserverless/pom.xml | 2 +-
services/entityresolution/pom.xml | 2 +-
services/eventbridge/pom.xml | 2 +-
services/evidently/pom.xml | 2 +-
services/evs/pom.xml | 2 +-
services/finspace/pom.xml | 2 +-
services/finspacedata/pom.xml | 2 +-
services/firehose/pom.xml | 2 +-
services/fis/pom.xml | 2 +-
services/fms/pom.xml | 2 +-
services/forecast/pom.xml | 2 +-
services/forecastquery/pom.xml | 2 +-
services/frauddetector/pom.xml | 2 +-
services/freetier/pom.xml | 2 +-
services/fsx/pom.xml | 2 +-
services/gamelift/pom.xml | 2 +-
services/gameliftstreams/pom.xml | 2 +-
services/geomaps/pom.xml | 2 +-
services/geoplaces/pom.xml | 2 +-
services/georoutes/pom.xml | 2 +-
services/glacier/pom.xml | 2 +-
services/globalaccelerator/pom.xml | 2 +-
services/glue/pom.xml | 2 +-
services/grafana/pom.xml | 2 +-
services/greengrass/pom.xml | 2 +-
services/greengrassv2/pom.xml | 2 +-
services/groundstation/pom.xml | 2 +-
services/guardduty/pom.xml | 2 +-
services/health/pom.xml | 2 +-
services/healthlake/pom.xml | 2 +-
services/iam/pom.xml | 2 +-
services/identitystore/pom.xml | 2 +-
services/imagebuilder/pom.xml | 2 +-
services/inspector/pom.xml | 2 +-
services/inspector2/pom.xml | 2 +-
services/inspectorscan/pom.xml | 2 +-
services/internetmonitor/pom.xml | 2 +-
services/invoicing/pom.xml | 2 +-
services/iot/pom.xml | 2 +-
services/iotanalytics/pom.xml | 2 +-
services/iotdataplane/pom.xml | 2 +-
services/iotdeviceadvisor/pom.xml | 2 +-
services/iotevents/pom.xml | 2 +-
services/ioteventsdata/pom.xml | 2 +-
services/iotfleethub/pom.xml | 2 +-
services/iotfleetwise/pom.xml | 2 +-
services/iotjobsdataplane/pom.xml | 2 +-
services/iotmanagedintegrations/pom.xml | 2 +-
services/iotsecuretunneling/pom.xml | 2 +-
services/iotsitewise/pom.xml | 2 +-
services/iotthingsgraph/pom.xml | 2 +-
services/iottwinmaker/pom.xml | 2 +-
services/iotwireless/pom.xml | 2 +-
services/ivs/pom.xml | 2 +-
services/ivschat/pom.xml | 2 +-
services/ivsrealtime/pom.xml | 2 +-
services/kafka/pom.xml | 2 +-
services/kafkaconnect/pom.xml | 2 +-
services/kendra/pom.xml | 2 +-
services/kendraranking/pom.xml | 2 +-
services/keyspaces/pom.xml | 2 +-
services/keyspacesstreams/pom.xml | 2 +-
services/kinesis/pom.xml | 2 +-
services/kinesisanalytics/pom.xml | 2 +-
services/kinesisanalyticsv2/pom.xml | 2 +-
services/kinesisvideo/pom.xml | 2 +-
services/kinesisvideoarchivedmedia/pom.xml | 2 +-
services/kinesisvideomedia/pom.xml | 2 +-
services/kinesisvideosignaling/pom.xml | 2 +-
services/kinesisvideowebrtcstorage/pom.xml | 2 +-
services/kms/pom.xml | 2 +-
services/lakeformation/pom.xml | 2 +-
services/lambda/pom.xml | 2 +-
services/launchwizard/pom.xml | 2 +-
services/lexmodelbuilding/pom.xml | 2 +-
services/lexmodelsv2/pom.xml | 2 +-
services/lexruntime/pom.xml | 2 +-
services/lexruntimev2/pom.xml | 2 +-
services/licensemanager/pom.xml | 2 +-
services/licensemanagerlinuxsubscriptions/pom.xml | 2 +-
services/licensemanagerusersubscriptions/pom.xml | 2 +-
services/lightsail/pom.xml | 2 +-
services/location/pom.xml | 2 +-
services/lookoutequipment/pom.xml | 2 +-
services/lookoutmetrics/pom.xml | 2 +-
services/lookoutvision/pom.xml | 2 +-
services/m2/pom.xml | 2 +-
services/machinelearning/pom.xml | 2 +-
services/macie2/pom.xml | 2 +-
services/mailmanager/pom.xml | 2 +-
services/managedblockchain/pom.xml | 2 +-
services/managedblockchainquery/pom.xml | 2 +-
services/marketplaceagreement/pom.xml | 2 +-
services/marketplacecatalog/pom.xml | 2 +-
services/marketplacecommerceanalytics/pom.xml | 2 +-
services/marketplacedeployment/pom.xml | 2 +-
services/marketplaceentitlement/pom.xml | 2 +-
services/marketplacemetering/pom.xml | 2 +-
services/marketplacereporting/pom.xml | 2 +-
services/mediaconnect/pom.xml | 2 +-
services/mediaconvert/pom.xml | 2 +-
services/medialive/pom.xml | 2 +-
services/mediapackage/pom.xml | 2 +-
services/mediapackagev2/pom.xml | 2 +-
services/mediapackagevod/pom.xml | 2 +-
services/mediastore/pom.xml | 2 +-
services/mediastoredata/pom.xml | 2 +-
services/mediatailor/pom.xml | 2 +-
services/medicalimaging/pom.xml | 2 +-
services/memorydb/pom.xml | 2 +-
services/mgn/pom.xml | 2 +-
services/migrationhub/pom.xml | 2 +-
services/migrationhubconfig/pom.xml | 2 +-
services/migrationhuborchestrator/pom.xml | 2 +-
services/migrationhubrefactorspaces/pom.xml | 2 +-
services/migrationhubstrategy/pom.xml | 2 +-
services/mpa/pom.xml | 2 +-
services/mq/pom.xml | 2 +-
services/mturk/pom.xml | 2 +-
services/mwaa/pom.xml | 2 +-
services/neptune/pom.xml | 2 +-
services/neptunedata/pom.xml | 2 +-
services/neptunegraph/pom.xml | 2 +-
services/networkfirewall/pom.xml | 2 +-
services/networkflowmonitor/pom.xml | 2 +-
services/networkmanager/pom.xml | 2 +-
services/networkmonitor/pom.xml | 2 +-
services/notifications/pom.xml | 2 +-
services/notificationscontacts/pom.xml | 2 +-
services/oam/pom.xml | 2 +-
services/observabilityadmin/pom.xml | 2 +-
services/odb/pom.xml | 2 +-
services/omics/pom.xml | 2 +-
services/opensearch/pom.xml | 2 +-
services/opensearchserverless/pom.xml | 2 +-
services/organizations/pom.xml | 2 +-
services/osis/pom.xml | 2 +-
services/outposts/pom.xml | 2 +-
services/panorama/pom.xml | 2 +-
services/partnercentralselling/pom.xml | 2 +-
services/paymentcryptography/pom.xml | 2 +-
services/paymentcryptographydata/pom.xml | 2 +-
services/pcaconnectorad/pom.xml | 2 +-
services/pcaconnectorscep/pom.xml | 2 +-
services/pcs/pom.xml | 2 +-
services/personalize/pom.xml | 2 +-
services/personalizeevents/pom.xml | 2 +-
services/personalizeruntime/pom.xml | 2 +-
services/pi/pom.xml | 2 +-
services/pinpoint/pom.xml | 2 +-
services/pinpointemail/pom.xml | 2 +-
services/pinpointsmsvoice/pom.xml | 2 +-
services/pinpointsmsvoicev2/pom.xml | 2 +-
services/pipes/pom.xml | 2 +-
services/polly/pom.xml | 2 +-
services/pom.xml | 2 +-
services/pricing/pom.xml | 2 +-
services/proton/pom.xml | 2 +-
services/qapps/pom.xml | 2 +-
services/qbusiness/pom.xml | 2 +-
services/qconnect/pom.xml | 2 +-
services/qldb/pom.xml | 2 +-
services/qldbsession/pom.xml | 2 +-
services/quicksight/pom.xml | 2 +-
services/ram/pom.xml | 2 +-
services/rbin/pom.xml | 2 +-
services/rds/pom.xml | 2 +-
services/rdsdata/pom.xml | 2 +-
services/redshift/pom.xml | 2 +-
services/redshiftdata/pom.xml | 2 +-
services/redshiftserverless/pom.xml | 2 +-
services/rekognition/pom.xml | 2 +-
services/repostspace/pom.xml | 2 +-
services/resiliencehub/pom.xml | 2 +-
services/resourceexplorer2/pom.xml | 2 +-
services/resourcegroups/pom.xml | 2 +-
services/resourcegroupstaggingapi/pom.xml | 2 +-
services/robomaker/pom.xml | 2 +-
services/rolesanywhere/pom.xml | 2 +-
services/route53/pom.xml | 2 +-
services/route53domains/pom.xml | 2 +-
services/route53profiles/pom.xml | 2 +-
services/route53recoverycluster/pom.xml | 2 +-
services/route53recoverycontrolconfig/pom.xml | 2 +-
services/route53recoveryreadiness/pom.xml | 2 +-
services/route53resolver/pom.xml | 2 +-
services/rum/pom.xml | 2 +-
services/s3/pom.xml | 2 +-
services/s3control/pom.xml | 2 +-
services/s3outposts/pom.xml | 2 +-
services/s3tables/pom.xml | 2 +-
services/s3vectors/pom.xml | 2 +-
services/sagemaker/pom.xml | 2 +-
services/sagemakera2iruntime/pom.xml | 2 +-
services/sagemakeredge/pom.xml | 2 +-
services/sagemakerfeaturestoreruntime/pom.xml | 2 +-
services/sagemakergeospatial/pom.xml | 2 +-
services/sagemakermetrics/pom.xml | 2 +-
services/sagemakerruntime/pom.xml | 2 +-
services/savingsplans/pom.xml | 2 +-
services/scheduler/pom.xml | 2 +-
services/schemas/pom.xml | 2 +-
services/secretsmanager/pom.xml | 2 +-
services/securityhub/pom.xml | 2 +-
services/securityir/pom.xml | 2 +-
services/securitylake/pom.xml | 2 +-
services/serverlessapplicationrepository/pom.xml | 2 +-
services/servicecatalog/pom.xml | 2 +-
services/servicecatalogappregistry/pom.xml | 2 +-
services/servicediscovery/pom.xml | 2 +-
services/servicequotas/pom.xml | 2 +-
services/ses/pom.xml | 2 +-
services/sesv2/pom.xml | 2 +-
services/sfn/pom.xml | 2 +-
services/shield/pom.xml | 2 +-
services/signer/pom.xml | 2 +-
services/simspaceweaver/pom.xml | 2 +-
services/snowball/pom.xml | 2 +-
services/snowdevicemanagement/pom.xml | 2 +-
services/sns/pom.xml | 2 +-
services/socialmessaging/pom.xml | 2 +-
services/sqs/pom.xml | 2 +-
services/ssm/pom.xml | 2 +-
services/ssmcontacts/pom.xml | 2 +-
services/ssmguiconnect/pom.xml | 2 +-
services/ssmincidents/pom.xml | 2 +-
services/ssmquicksetup/pom.xml | 2 +-
services/ssmsap/pom.xml | 2 +-
services/sso/pom.xml | 2 +-
services/ssoadmin/pom.xml | 2 +-
services/ssooidc/pom.xml | 2 +-
services/storagegateway/pom.xml | 2 +-
services/sts/pom.xml | 2 +-
services/supplychain/pom.xml | 2 +-
services/support/pom.xml | 2 +-
services/supportapp/pom.xml | 2 +-
services/swf/pom.xml | 2 +-
services/synthetics/pom.xml | 2 +-
services/taxsettings/pom.xml | 2 +-
services/textract/pom.xml | 2 +-
services/timestreaminfluxdb/pom.xml | 2 +-
services/timestreamquery/pom.xml | 2 +-
services/timestreamwrite/pom.xml | 2 +-
services/tnb/pom.xml | 2 +-
services/transcribe/pom.xml | 2 +-
services/transcribestreaming/pom.xml | 2 +-
services/transfer/pom.xml | 2 +-
services/translate/pom.xml | 2 +-
services/trustedadvisor/pom.xml | 2 +-
services/verifiedpermissions/pom.xml | 2 +-
services/voiceid/pom.xml | 2 +-
services/vpclattice/pom.xml | 2 +-
services/waf/pom.xml | 2 +-
services/wafv2/pom.xml | 2 +-
services/wellarchitected/pom.xml | 2 +-
services/wisdom/pom.xml | 2 +-
services/workdocs/pom.xml | 2 +-
services/workmail/pom.xml | 2 +-
services/workmailmessageflow/pom.xml | 2 +-
services/workspaces/pom.xml | 2 +-
services/workspacesinstances/pom.xml | 2 +-
services/workspacesthinclient/pom.xml | 2 +-
services/workspacesweb/pom.xml | 2 +-
services/xray/pom.xml | 2 +-
test/architecture-tests/pom.xml | 2 +-
test/auth-tests/pom.xml | 2 +-
test/bundle-logging-bridge-binding-test/pom.xml | 2 +-
test/bundle-shading-tests/pom.xml | 2 +-
test/codegen-generated-classes-test/pom.xml | 2 +-
test/crt-unavailable-tests/pom.xml | 2 +-
test/http-client-benchmarks/pom.xml | 2 +-
test/http-client-tests/pom.xml | 2 +-
test/module-path-tests/pom.xml | 2 +-
test/old-client-version-compatibility-test/pom.xml | 2 +-
test/protocol-tests-core/pom.xml | 2 +-
test/protocol-tests/pom.xml | 2 +-
test/region-testing/pom.xml | 2 +-
test/ruleset-testing-core/pom.xml | 2 +-
test/s3-benchmarks/pom.xml | 2 +-
test/s3-tests/pom.xml | 2 +-
test/sdk-benchmarks/pom.xml | 2 +-
test/sdk-native-image-test/pom.xml | 2 +-
test/service-test-utils/pom.xml | 2 +-
test/stability-tests/pom.xml | 2 +-
test/test-utils/pom.xml | 2 +-
test/tests-coverage-reporting/pom.xml | 2 +-
test/v2-migration-tests/pom.xml | 2 +-
third-party/pom.xml | 2 +-
third-party/third-party-jackson-core/pom.xml | 2 +-
third-party/third-party-jackson-dataformat-cbor/pom.xml | 2 +-
third-party/third-party-slf4j-api/pom.xml | 2 +-
utils-lite/pom.xml | 2 +-
utils/pom.xml | 2 +-
v2-migration/pom.xml | 2 +-
503 files changed, 505 insertions(+), 505 deletions(-)
diff --git a/archetypes/archetype-app-quickstart/pom.xml b/archetypes/archetype-app-quickstart/pom.xml
index a48ae606b29d..4aceac045660 100644
--- a/archetypes/archetype-app-quickstart/pom.xml
+++ b/archetypes/archetype-app-quickstart/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml
index e9cb412358e0..7389234d3ff6 100644
--- a/archetypes/archetype-lambda/pom.xml
+++ b/archetypes/archetype-lambda/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
archetype-lambda
diff --git a/archetypes/archetype-tools/pom.xml b/archetypes/archetype-tools/pom.xml
index 8cab57cb310a..181dd9a7eda1 100644
--- a/archetypes/archetype-tools/pom.xml
+++ b/archetypes/archetype-tools/pom.xml
@@ -20,7 +20,7 @@
archetypes
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
diff --git a/archetypes/pom.xml b/archetypes/pom.xml
index 6fa43c54d988..b6b8841a62c0 100644
--- a/archetypes/pom.xml
+++ b/archetypes/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
archetypes
diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml
index cb01e64f3d52..5892d4b59b79 100644
--- a/aws-sdk-java/pom.xml
+++ b/aws-sdk-java/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5
+ 2.34.6-SNAPSHOT
../pom.xml
aws-sdk-java
diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml
index 433c6842c5f2..52fdab4cf277 100644
--- a/bom-internal/pom.xml
+++ b/bom-internal/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
diff --git a/bom/pom.xml b/bom/pom.xml
index 46fe8ceaff91..fe1fcacf8279 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5
+ 2.34.6-SNAPSHOT
../pom.xml
bom
diff --git a/bundle-logging-bridge/pom.xml b/bundle-logging-bridge/pom.xml
index 67d66a2e2ec0..726bcdf51144 100644
--- a/bundle-logging-bridge/pom.xml
+++ b/bundle-logging-bridge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5
+ 2.34.6-SNAPSHOT
bundle-logging-bridge
jar
diff --git a/bundle-sdk/pom.xml b/bundle-sdk/pom.xml
index 920634ab0325..e7097b5bc4b4 100644
--- a/bundle-sdk/pom.xml
+++ b/bundle-sdk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5
+ 2.34.6-SNAPSHOT
bundle-sdk
jar
diff --git a/bundle/pom.xml b/bundle/pom.xml
index cf5b0a17c64c..6c5e6ed8384d 100644
--- a/bundle/pom.xml
+++ b/bundle/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5
+ 2.34.6-SNAPSHOT
bundle
jar
diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml
index 4ee3c7c7900a..e8a24704a6ac 100644
--- a/codegen-lite-maven-plugin/pom.xml
+++ b/codegen-lite-maven-plugin/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5
+ 2.34.6-SNAPSHOT
../pom.xml
codegen-lite-maven-plugin
diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml
index 3b45a5b06419..58150e75c995 100644
--- a/codegen-lite/pom.xml
+++ b/codegen-lite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5
+ 2.34.6-SNAPSHOT
codegen-lite
AWS Java SDK :: Code Generator Lite
diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml
index f05d75f147f7..5df2ccecad01 100644
--- a/codegen-maven-plugin/pom.xml
+++ b/codegen-maven-plugin/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5
+ 2.34.6-SNAPSHOT
../pom.xml
codegen-maven-plugin
diff --git a/codegen/pom.xml b/codegen/pom.xml
index c9250a97f043..fcb6b207a4f4 100644
--- a/codegen/pom.xml
+++ b/codegen/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5
+ 2.34.6-SNAPSHOT
codegen
AWS Java SDK :: Code Generator
diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml
index 316f523cd834..459ab08ca048 100644
--- a/core/annotations/pom.xml
+++ b/core/annotations/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
diff --git a/core/arns/pom.xml b/core/arns/pom.xml
index aafa2ec6d57e..217da850fb8c 100644
--- a/core/arns/pom.xml
+++ b/core/arns/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
diff --git a/core/auth-crt/pom.xml b/core/auth-crt/pom.xml
index bf553dc813db..f591aa5e3690 100644
--- a/core/auth-crt/pom.xml
+++ b/core/auth-crt/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5
+ 2.34.6-SNAPSHOT
auth-crt
diff --git a/core/auth/pom.xml b/core/auth/pom.xml
index 684b49cf00bb..99b297f680c9 100644
--- a/core/auth/pom.xml
+++ b/core/auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5
+ 2.34.6-SNAPSHOT
auth
diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml
index 7578d76c92d8..4effc4c147e7 100644
--- a/core/aws-core/pom.xml
+++ b/core/aws-core/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5
+ 2.34.6-SNAPSHOT
aws-core
diff --git a/core/checksums-spi/pom.xml b/core/checksums-spi/pom.xml
index daa00c32753e..7d1e6685abbb 100644
--- a/core/checksums-spi/pom.xml
+++ b/core/checksums-spi/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5
+ 2.34.6-SNAPSHOT
checksums-spi
diff --git a/core/checksums/pom.xml b/core/checksums/pom.xml
index 7437261d2240..07787e7be304 100644
--- a/core/checksums/pom.xml
+++ b/core/checksums/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5
+ 2.34.6-SNAPSHOT
checksums
diff --git a/core/crt-core/pom.xml b/core/crt-core/pom.xml
index 69d177e1c3e4..37f18983befa 100644
--- a/core/crt-core/pom.xml
+++ b/core/crt-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.34.5
+ 2.34.6-SNAPSHOT
crt-core
diff --git a/core/endpoints-spi/pom.xml b/core/endpoints-spi/pom.xml
index a5ee05bfdb76..f3401c04f43f 100644
--- a/core/endpoints-spi/pom.xml
+++ b/core/endpoints-spi/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
diff --git a/core/http-auth-aws-crt/pom.xml b/core/http-auth-aws-crt/pom.xml
index 3af0b053a109..5e972c904e8c 100644
--- a/core/http-auth-aws-crt/pom.xml
+++ b/core/http-auth-aws-crt/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5
+ 2.34.6-SNAPSHOT
http-auth-aws-crt
diff --git a/core/http-auth-aws-eventstream/pom.xml b/core/http-auth-aws-eventstream/pom.xml
index b26ad2599db6..3ae6368f86cc 100644
--- a/core/http-auth-aws-eventstream/pom.xml
+++ b/core/http-auth-aws-eventstream/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5
+ 2.34.6-SNAPSHOT
http-auth-aws-eventstream
diff --git a/core/http-auth-aws/pom.xml b/core/http-auth-aws/pom.xml
index 1263d75b5dd7..498dfa94f07f 100644
--- a/core/http-auth-aws/pom.xml
+++ b/core/http-auth-aws/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5
+ 2.34.6-SNAPSHOT
http-auth-aws
diff --git a/core/http-auth-spi/pom.xml b/core/http-auth-spi/pom.xml
index b8c733924b7e..b363c421fdbc 100644
--- a/core/http-auth-spi/pom.xml
+++ b/core/http-auth-spi/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5
+ 2.34.6-SNAPSHOT
http-auth-spi
diff --git a/core/http-auth/pom.xml b/core/http-auth/pom.xml
index 3f02c04b15a6..a85339167e8f 100644
--- a/core/http-auth/pom.xml
+++ b/core/http-auth/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5
+ 2.34.6-SNAPSHOT
http-auth
diff --git a/core/identity-spi/pom.xml b/core/identity-spi/pom.xml
index fdf346093403..3fe01b74338e 100644
--- a/core/identity-spi/pom.xml
+++ b/core/identity-spi/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5
+ 2.34.6-SNAPSHOT
identity-spi
diff --git a/core/imds/pom.xml b/core/imds/pom.xml
index 2fdce4465ada..8746edf76c8e 100644
--- a/core/imds/pom.xml
+++ b/core/imds/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
imds
diff --git a/core/json-utils/pom.xml b/core/json-utils/pom.xml
index cf0103007ec1..c3a4106071a3 100644
--- a/core/json-utils/pom.xml
+++ b/core/json-utils/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml
index d6cac8beac1e..9414d9e16730 100644
--- a/core/metrics-spi/pom.xml
+++ b/core/metrics-spi/pom.xml
@@ -5,7 +5,7 @@
core
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
diff --git a/core/pom.xml b/core/pom.xml
index 3c26c99cd341..5ae08baa40ac 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
core
diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml
index eb0db327b082..6c5b9920bdff 100644
--- a/core/profiles/pom.xml
+++ b/core/profiles/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5
+ 2.34.6-SNAPSHOT
profiles
diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml
index 4c238cfdbb3e..515e6db1f07b 100644
--- a/core/protocols/aws-cbor-protocol/pom.xml
+++ b/core/protocols/aws-cbor-protocol/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml
index 81f4e03d025e..06f67fbce6df 100644
--- a/core/protocols/aws-json-protocol/pom.xml
+++ b/core/protocols/aws-json-protocol/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml
index 90ba98a7523a..985e8ae24888 100644
--- a/core/protocols/aws-query-protocol/pom.xml
+++ b/core/protocols/aws-query-protocol/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml
index 8f9aaee67682..f098dcb079bd 100644
--- a/core/protocols/aws-xml-protocol/pom.xml
+++ b/core/protocols/aws-xml-protocol/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml
index 524c87f7e05f..f497c3f17262 100644
--- a/core/protocols/pom.xml
+++ b/core/protocols/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml
index c5ab19fb0fdc..7afd1bf502af 100644
--- a/core/protocols/protocol-core/pom.xml
+++ b/core/protocols/protocol-core/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
diff --git a/core/protocols/smithy-rpcv2-protocol/pom.xml b/core/protocols/smithy-rpcv2-protocol/pom.xml
index a460287a6dc5..ed760067a5aa 100644
--- a/core/protocols/smithy-rpcv2-protocol/pom.xml
+++ b/core/protocols/smithy-rpcv2-protocol/pom.xml
@@ -20,7 +20,7 @@
protocols
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
diff --git a/core/regions/pom.xml b/core/regions/pom.xml
index 85b315b95fc9..a952c85f0b93 100644
--- a/core/regions/pom.xml
+++ b/core/regions/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
core
- 2.34.5
+ 2.34.6-SNAPSHOT
regions
diff --git a/core/retries-spi/pom.xml b/core/retries-spi/pom.xml
index 491ad3d2c6a5..08eac526410a 100644
--- a/core/retries-spi/pom.xml
+++ b/core/retries-spi/pom.xml
@@ -20,7 +20,7 @@
core
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
diff --git a/core/retries/pom.xml b/core/retries/pom.xml
index 425547286725..43ebddc18d63 100644
--- a/core/retries/pom.xml
+++ b/core/retries/pom.xml
@@ -21,7 +21,7 @@
core
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml
index abf70bbef2ad..7b496732574b 100644
--- a/core/sdk-core/pom.xml
+++ b/core/sdk-core/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
core
- 2.34.5
+ 2.34.6-SNAPSHOT
sdk-core
AWS Java SDK :: SDK Core
diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml
index f1db8fb51e4b..3dcebe9c776e 100644
--- a/http-client-spi/pom.xml
+++ b/http-client-spi/pom.xml
@@ -22,7 +22,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
http-client-spi
AWS Java SDK :: HTTP Client Interface
diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml
index d995584568de..6031865d164f 100644
--- a/http-clients/apache-client/pom.xml
+++ b/http-clients/apache-client/pom.xml
@@ -21,7 +21,7 @@
http-clients
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
apache-client
diff --git a/http-clients/apache5-client/pom.xml b/http-clients/apache5-client/pom.xml
index 5b818df31c6a..21df3e4c71b8 100644
--- a/http-clients/apache5-client/pom.xml
+++ b/http-clients/apache5-client/pom.xml
@@ -21,7 +21,7 @@
http-clients
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
apache5-client
diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml
index 7db2c97a0a04..b8bb7e04b04e 100644
--- a/http-clients/aws-crt-client/pom.xml
+++ b/http-clients/aws-crt-client/pom.xml
@@ -21,7 +21,7 @@
http-clients
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml
index 3e5e0b2c4c86..29bedd005f30 100644
--- a/http-clients/netty-nio-client/pom.xml
+++ b/http-clients/netty-nio-client/pom.xml
@@ -20,7 +20,7 @@
http-clients
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
diff --git a/http-clients/pom.xml b/http-clients/pom.xml
index bf1fc347dc10..40d36efd735e 100644
--- a/http-clients/pom.xml
+++ b/http-clients/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml
index c3abe7a6e0b2..162afeaaf606 100644
--- a/http-clients/url-connection-client/pom.xml
+++ b/http-clients/url-connection-client/pom.xml
@@ -20,7 +20,7 @@
http-clients
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml
index f1688a1edca8..fa41b0129f1e 100644
--- a/metric-publishers/cloudwatch-metric-publisher/pom.xml
+++ b/metric-publishers/cloudwatch-metric-publisher/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
metric-publishers
- 2.34.5
+ 2.34.6-SNAPSHOT
cloudwatch-metric-publisher
diff --git a/metric-publishers/emf-metric-logging-publisher/pom.xml b/metric-publishers/emf-metric-logging-publisher/pom.xml
index e7e5372538bb..f47907435e81 100644
--- a/metric-publishers/emf-metric-logging-publisher/pom.xml
+++ b/metric-publishers/emf-metric-logging-publisher/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
metric-publishers
- 2.34.5
+ 2.34.6-SNAPSHOT
emf-metric-logging-publisher
diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml
index 7fe0d9a4bb40..8c84d442983f 100644
--- a/metric-publishers/pom.xml
+++ b/metric-publishers/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5
+ 2.34.6-SNAPSHOT
metric-publishers
diff --git a/pom.xml b/pom.xml
index 04dc4c3965f4..f17c3edd3537 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
4.0.0
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5
+ 2.34.6-SNAPSHOT
pom
AWS Java SDK :: Parent
The Amazon Web Services SDK for Java provides Java APIs
@@ -103,8 +103,8 @@
${project.version}
- 2.34.4
- 2.34.3
+ 2.34.5
+ 2.34.4
2.15.2
2.15.2
2.17.3
diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml
index ed00e1e7c969..32177b3b3d7c 100644
--- a/release-scripts/pom.xml
+++ b/release-scripts/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5
+ 2.34.6-SNAPSHOT
../pom.xml
release-scripts
diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml
index 689ddc10042d..9ae78aad5f7f 100644
--- a/services-custom/dynamodb-enhanced/pom.xml
+++ b/services-custom/dynamodb-enhanced/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services-custom
- 2.34.5
+ 2.34.6-SNAPSHOT
dynamodb-enhanced
AWS Java SDK :: DynamoDB :: Enhanced Client
diff --git a/services-custom/iam-policy-builder/pom.xml b/services-custom/iam-policy-builder/pom.xml
index 732c749df809..e3886023485b 100644
--- a/services-custom/iam-policy-builder/pom.xml
+++ b/services-custom/iam-policy-builder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5
+ 2.34.6-SNAPSHOT
../../pom.xml
iam-policy-builder
diff --git a/services-custom/pom.xml b/services-custom/pom.xml
index 3f313edbcddc..60d7f93bc7a5 100644
--- a/services-custom/pom.xml
+++ b/services-custom/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5
+ 2.34.6-SNAPSHOT
services-custom
AWS Java SDK :: Custom Services
diff --git a/services-custom/s3-event-notifications/pom.xml b/services-custom/s3-event-notifications/pom.xml
index ed9c7538b397..33d3d3253186 100644
--- a/services-custom/s3-event-notifications/pom.xml
+++ b/services-custom/s3-event-notifications/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5
+ 2.34.6-SNAPSHOT
../../pom.xml
s3-event-notifications
diff --git a/services-custom/s3-transfer-manager/pom.xml b/services-custom/s3-transfer-manager/pom.xml
index 89a315c112eb..080ec9f7456a 100644
--- a/services-custom/s3-transfer-manager/pom.xml
+++ b/services-custom/s3-transfer-manager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5
+ 2.34.6-SNAPSHOT
../../pom.xml
s3-transfer-manager
diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml
index 2f35fca16a68..ef6d086ffe9f 100644
--- a/services/accessanalyzer/pom.xml
+++ b/services/accessanalyzer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
accessanalyzer
AWS Java SDK :: Services :: AccessAnalyzer
diff --git a/services/account/pom.xml b/services/account/pom.xml
index 366d84b85d96..0b3cfea4f23b 100644
--- a/services/account/pom.xml
+++ b/services/account/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
account
AWS Java SDK :: Services :: Account
diff --git a/services/acm/pom.xml b/services/acm/pom.xml
index 2cf2cd85df32..caea338a8dba 100644
--- a/services/acm/pom.xml
+++ b/services/acm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
acm
AWS Java SDK :: Services :: AWS Certificate Manager
diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml
index 293fe869f297..5bd8ba1e2a38 100644
--- a/services/acmpca/pom.xml
+++ b/services/acmpca/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
acmpca
AWS Java SDK :: Services :: ACM PCA
diff --git a/services/aiops/pom.xml b/services/aiops/pom.xml
index 6ab960b913ab..ef407891fe8f 100644
--- a/services/aiops/pom.xml
+++ b/services/aiops/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
aiops
AWS Java SDK :: Services :: AI Ops
diff --git a/services/amp/pom.xml b/services/amp/pom.xml
index b483176905c5..c55e8dc55d3a 100644
--- a/services/amp/pom.xml
+++ b/services/amp/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
amp
AWS Java SDK :: Services :: Amp
diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml
index 115e78057380..5efe7741c96b 100644
--- a/services/amplify/pom.xml
+++ b/services/amplify/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
amplify
AWS Java SDK :: Services :: Amplify
diff --git a/services/amplifybackend/pom.xml b/services/amplifybackend/pom.xml
index da94a0d28f62..aa5db4bcb5d8 100644
--- a/services/amplifybackend/pom.xml
+++ b/services/amplifybackend/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
amplifybackend
AWS Java SDK :: Services :: Amplify Backend
diff --git a/services/amplifyuibuilder/pom.xml b/services/amplifyuibuilder/pom.xml
index 1b1cb4054767..8144cd61619e 100644
--- a/services/amplifyuibuilder/pom.xml
+++ b/services/amplifyuibuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
amplifyuibuilder
AWS Java SDK :: Services :: Amplify UI Builder
diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml
index 47c714762ea5..51fcf1e19130 100644
--- a/services/apigateway/pom.xml
+++ b/services/apigateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
apigateway
AWS Java SDK :: Services :: Amazon API Gateway
diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml
index e67e93b68b78..855890362d82 100644
--- a/services/apigatewaymanagementapi/pom.xml
+++ b/services/apigatewaymanagementapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
apigatewaymanagementapi
AWS Java SDK :: Services :: ApiGatewayManagementApi
diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml
index ccf0b3b10958..f0a9464e7c6d 100644
--- a/services/apigatewayv2/pom.xml
+++ b/services/apigatewayv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
apigatewayv2
AWS Java SDK :: Services :: ApiGatewayV2
diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml
index b901d7fbff27..2376147a90bc 100644
--- a/services/appconfig/pom.xml
+++ b/services/appconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
appconfig
AWS Java SDK :: Services :: AppConfig
diff --git a/services/appconfigdata/pom.xml b/services/appconfigdata/pom.xml
index 1c9654920f70..90a2b0845e98 100644
--- a/services/appconfigdata/pom.xml
+++ b/services/appconfigdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
appconfigdata
AWS Java SDK :: Services :: App Config Data
diff --git a/services/appfabric/pom.xml b/services/appfabric/pom.xml
index 0536b0abc73e..6d425a80858d 100644
--- a/services/appfabric/pom.xml
+++ b/services/appfabric/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
appfabric
AWS Java SDK :: Services :: App Fabric
diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml
index dee2670be0c6..b8e544141749 100644
--- a/services/appflow/pom.xml
+++ b/services/appflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
appflow
AWS Java SDK :: Services :: Appflow
diff --git a/services/appintegrations/pom.xml b/services/appintegrations/pom.xml
index c7e86c2cbb5f..8ede97ac9f7a 100644
--- a/services/appintegrations/pom.xml
+++ b/services/appintegrations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
appintegrations
AWS Java SDK :: Services :: App Integrations
diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml
index d90c6b8fc618..e4ab383297a6 100644
--- a/services/applicationautoscaling/pom.xml
+++ b/services/applicationautoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
applicationautoscaling
AWS Java SDK :: Services :: AWS Application Auto Scaling
diff --git a/services/applicationcostprofiler/pom.xml b/services/applicationcostprofiler/pom.xml
index 4c4f686274ef..01ff4bdc3eb9 100644
--- a/services/applicationcostprofiler/pom.xml
+++ b/services/applicationcostprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
applicationcostprofiler
AWS Java SDK :: Services :: Application Cost Profiler
diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml
index 0a400fb946c0..cc46be37e346 100644
--- a/services/applicationdiscovery/pom.xml
+++ b/services/applicationdiscovery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
applicationdiscovery
AWS Java SDK :: Services :: AWS Application Discovery Service
diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml
index 94cb9c9535a4..b36ed014dfab 100644
--- a/services/applicationinsights/pom.xml
+++ b/services/applicationinsights/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
applicationinsights
AWS Java SDK :: Services :: Application Insights
diff --git a/services/applicationsignals/pom.xml b/services/applicationsignals/pom.xml
index a7a8d771efda..013ade6d8f46 100644
--- a/services/applicationsignals/pom.xml
+++ b/services/applicationsignals/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
applicationsignals
AWS Java SDK :: Services :: Application Signals
diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml
index f4b8912886de..621e8e7d4acc 100644
--- a/services/appmesh/pom.xml
+++ b/services/appmesh/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
appmesh
AWS Java SDK :: Services :: App Mesh
diff --git a/services/apprunner/pom.xml b/services/apprunner/pom.xml
index dd0277368ae8..da6c9d3ee6ac 100644
--- a/services/apprunner/pom.xml
+++ b/services/apprunner/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
apprunner
AWS Java SDK :: Services :: App Runner
diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml
index c26e6056ed5c..82281d366244 100644
--- a/services/appstream/pom.xml
+++ b/services/appstream/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
appstream
AWS Java SDK :: Services :: Amazon AppStream
diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml
index 695f53a25dd9..a0afec12838e 100644
--- a/services/appsync/pom.xml
+++ b/services/appsync/pom.xml
@@ -21,7 +21,7 @@
services
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
appsync
diff --git a/services/apptest/pom.xml b/services/apptest/pom.xml
index a5c4499c0424..39a0e4a427b5 100644
--- a/services/apptest/pom.xml
+++ b/services/apptest/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
apptest
AWS Java SDK :: Services :: App Test
diff --git a/services/arcregionswitch/pom.xml b/services/arcregionswitch/pom.xml
index 92901062f076..8b63810e4c96 100644
--- a/services/arcregionswitch/pom.xml
+++ b/services/arcregionswitch/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
arcregionswitch
AWS Java SDK :: Services :: ARC Region Switch
diff --git a/services/arczonalshift/pom.xml b/services/arczonalshift/pom.xml
index 2abeb08bfea9..e1e61c08e72a 100644
--- a/services/arczonalshift/pom.xml
+++ b/services/arczonalshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
arczonalshift
AWS Java SDK :: Services :: ARC Zonal Shift
diff --git a/services/artifact/pom.xml b/services/artifact/pom.xml
index a5a5253896cf..bff2ab368abc 100644
--- a/services/artifact/pom.xml
+++ b/services/artifact/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
artifact
AWS Java SDK :: Services :: Artifact
diff --git a/services/athena/pom.xml b/services/athena/pom.xml
index 71023e0d2d76..65f04f2d222a 100644
--- a/services/athena/pom.xml
+++ b/services/athena/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
athena
AWS Java SDK :: Services :: Amazon Athena
diff --git a/services/auditmanager/pom.xml b/services/auditmanager/pom.xml
index 3de45d94a0fd..d68d0c5608c5 100644
--- a/services/auditmanager/pom.xml
+++ b/services/auditmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
auditmanager
AWS Java SDK :: Services :: Audit Manager
diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml
index a36ad080bc7d..7613a9a08e79 100644
--- a/services/autoscaling/pom.xml
+++ b/services/autoscaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
autoscaling
AWS Java SDK :: Services :: Auto Scaling
diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml
index ac2674d4393f..73f2e17d0f68 100644
--- a/services/autoscalingplans/pom.xml
+++ b/services/autoscalingplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
autoscalingplans
AWS Java SDK :: Services :: Auto Scaling Plans
diff --git a/services/b2bi/pom.xml b/services/b2bi/pom.xml
index dbf3f2a3c4e6..d39231354630 100644
--- a/services/b2bi/pom.xml
+++ b/services/b2bi/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
b2bi
AWS Java SDK :: Services :: B2 Bi
diff --git a/services/backup/pom.xml b/services/backup/pom.xml
index 1c0f05ff47d0..18b086173d1b 100644
--- a/services/backup/pom.xml
+++ b/services/backup/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
backup
AWS Java SDK :: Services :: Backup
diff --git a/services/backupgateway/pom.xml b/services/backupgateway/pom.xml
index 36339af1b472..dad6eadf5448 100644
--- a/services/backupgateway/pom.xml
+++ b/services/backupgateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
backupgateway
AWS Java SDK :: Services :: Backup Gateway
diff --git a/services/backupsearch/pom.xml b/services/backupsearch/pom.xml
index 93b3dc698fa7..bc8db170c7d6 100644
--- a/services/backupsearch/pom.xml
+++ b/services/backupsearch/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
backupsearch
AWS Java SDK :: Services :: Backup Search
diff --git a/services/batch/pom.xml b/services/batch/pom.xml
index c30ddc9d728d..c6633d8c65b3 100644
--- a/services/batch/pom.xml
+++ b/services/batch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
batch
AWS Java SDK :: Services :: AWS Batch
diff --git a/services/bcmdashboards/pom.xml b/services/bcmdashboards/pom.xml
index 85d09847ecb1..1d255e7a5641 100644
--- a/services/bcmdashboards/pom.xml
+++ b/services/bcmdashboards/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
bcmdashboards
AWS Java SDK :: Services :: BCM Dashboards
diff --git a/services/bcmdataexports/pom.xml b/services/bcmdataexports/pom.xml
index 3057d01f7060..c61f73c4b8d8 100644
--- a/services/bcmdataexports/pom.xml
+++ b/services/bcmdataexports/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
bcmdataexports
AWS Java SDK :: Services :: BCM Data Exports
diff --git a/services/bcmpricingcalculator/pom.xml b/services/bcmpricingcalculator/pom.xml
index cb182fb944c8..444e64094e52 100644
--- a/services/bcmpricingcalculator/pom.xml
+++ b/services/bcmpricingcalculator/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
bcmpricingcalculator
AWS Java SDK :: Services :: BCM Pricing Calculator
diff --git a/services/bcmrecommendedactions/pom.xml b/services/bcmrecommendedactions/pom.xml
index 1ff17e6147a9..a7b0724b1918 100644
--- a/services/bcmrecommendedactions/pom.xml
+++ b/services/bcmrecommendedactions/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
bcmrecommendedactions
AWS Java SDK :: Services :: BCM Recommended Actions
diff --git a/services/bedrock/pom.xml b/services/bedrock/pom.xml
index 7169455ae9e0..03f843db059d 100644
--- a/services/bedrock/pom.xml
+++ b/services/bedrock/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
bedrock
AWS Java SDK :: Services :: Bedrock
diff --git a/services/bedrockagent/pom.xml b/services/bedrockagent/pom.xml
index de61f8f6740c..917e9c094980 100644
--- a/services/bedrockagent/pom.xml
+++ b/services/bedrockagent/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
bedrockagent
AWS Java SDK :: Services :: Bedrock Agent
diff --git a/services/bedrockagentcore/pom.xml b/services/bedrockagentcore/pom.xml
index b756023dba10..2ff815de54d5 100644
--- a/services/bedrockagentcore/pom.xml
+++ b/services/bedrockagentcore/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
bedrockagentcore
AWS Java SDK :: Services :: Bedrock Agent Core
diff --git a/services/bedrockagentcorecontrol/pom.xml b/services/bedrockagentcorecontrol/pom.xml
index fe70b9782b07..de3808f17ec9 100644
--- a/services/bedrockagentcorecontrol/pom.xml
+++ b/services/bedrockagentcorecontrol/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
bedrockagentcorecontrol
AWS Java SDK :: Services :: Bedrock Agent Core Control
diff --git a/services/bedrockagentruntime/pom.xml b/services/bedrockagentruntime/pom.xml
index e414ac721e1a..39952334931f 100644
--- a/services/bedrockagentruntime/pom.xml
+++ b/services/bedrockagentruntime/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
bedrockagentruntime
AWS Java SDK :: Services :: Bedrock Agent Runtime
diff --git a/services/bedrockdataautomation/pom.xml b/services/bedrockdataautomation/pom.xml
index 05a30bfca322..a2b9a413fd18 100644
--- a/services/bedrockdataautomation/pom.xml
+++ b/services/bedrockdataautomation/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
bedrockdataautomation
AWS Java SDK :: Services :: Bedrock Data Automation
diff --git a/services/bedrockdataautomationruntime/pom.xml b/services/bedrockdataautomationruntime/pom.xml
index e5f78b4294b0..08e6bb023938 100644
--- a/services/bedrockdataautomationruntime/pom.xml
+++ b/services/bedrockdataautomationruntime/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
bedrockdataautomationruntime
AWS Java SDK :: Services :: Bedrock Data Automation Runtime
diff --git a/services/bedrockruntime/pom.xml b/services/bedrockruntime/pom.xml
index ba0fa1a1b99d..4a9d90e78582 100644
--- a/services/bedrockruntime/pom.xml
+++ b/services/bedrockruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
bedrockruntime
AWS Java SDK :: Services :: Bedrock Runtime
diff --git a/services/billing/pom.xml b/services/billing/pom.xml
index c3260f1cd16a..bd944ef0b80f 100644
--- a/services/billing/pom.xml
+++ b/services/billing/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
billing
AWS Java SDK :: Services :: Billing
diff --git a/services/billingconductor/pom.xml b/services/billingconductor/pom.xml
index f123619c0103..22641ed778aa 100644
--- a/services/billingconductor/pom.xml
+++ b/services/billingconductor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
billingconductor
AWS Java SDK :: Services :: Billingconductor
diff --git a/services/braket/pom.xml b/services/braket/pom.xml
index 9e6c0dc6a9f2..3831fbfe0adc 100644
--- a/services/braket/pom.xml
+++ b/services/braket/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
braket
AWS Java SDK :: Services :: Braket
diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml
index 6d277fc39faf..4ae3c07bbd99 100644
--- a/services/budgets/pom.xml
+++ b/services/budgets/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
budgets
AWS Java SDK :: Services :: AWS Budgets
diff --git a/services/chatbot/pom.xml b/services/chatbot/pom.xml
index ccfc4ae4872e..ca89a0fa47ac 100644
--- a/services/chatbot/pom.xml
+++ b/services/chatbot/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
chatbot
AWS Java SDK :: Services :: Chatbot
diff --git a/services/chime/pom.xml b/services/chime/pom.xml
index 9ec2337989de..0826db0cf7ae 100644
--- a/services/chime/pom.xml
+++ b/services/chime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
chime
AWS Java SDK :: Services :: Chime
diff --git a/services/chimesdkidentity/pom.xml b/services/chimesdkidentity/pom.xml
index aec491566026..2c2edb26d9d1 100644
--- a/services/chimesdkidentity/pom.xml
+++ b/services/chimesdkidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
chimesdkidentity
AWS Java SDK :: Services :: Chime SDK Identity
diff --git a/services/chimesdkmediapipelines/pom.xml b/services/chimesdkmediapipelines/pom.xml
index 6153b9a4fe70..b5ce52ab65b3 100644
--- a/services/chimesdkmediapipelines/pom.xml
+++ b/services/chimesdkmediapipelines/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
chimesdkmediapipelines
AWS Java SDK :: Services :: Chime SDK Media Pipelines
diff --git a/services/chimesdkmeetings/pom.xml b/services/chimesdkmeetings/pom.xml
index 29cceae80b80..1bd1dac20911 100644
--- a/services/chimesdkmeetings/pom.xml
+++ b/services/chimesdkmeetings/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
chimesdkmeetings
AWS Java SDK :: Services :: Chime SDK Meetings
diff --git a/services/chimesdkmessaging/pom.xml b/services/chimesdkmessaging/pom.xml
index 5bb84a0e8e9b..aed02a4b0a68 100644
--- a/services/chimesdkmessaging/pom.xml
+++ b/services/chimesdkmessaging/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
chimesdkmessaging
AWS Java SDK :: Services :: Chime SDK Messaging
diff --git a/services/chimesdkvoice/pom.xml b/services/chimesdkvoice/pom.xml
index e40758fd3ab0..65a82c312d2b 100644
--- a/services/chimesdkvoice/pom.xml
+++ b/services/chimesdkvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
chimesdkvoice
AWS Java SDK :: Services :: Chime SDK Voice
diff --git a/services/cleanrooms/pom.xml b/services/cleanrooms/pom.xml
index cc6b76757dfd..f6fa93930525 100644
--- a/services/cleanrooms/pom.xml
+++ b/services/cleanrooms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
cleanrooms
AWS Java SDK :: Services :: Clean Rooms
diff --git a/services/cleanroomsml/pom.xml b/services/cleanroomsml/pom.xml
index 55797f1bfb14..45b0ae1e0977 100644
--- a/services/cleanroomsml/pom.xml
+++ b/services/cleanroomsml/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
cleanroomsml
AWS Java SDK :: Services :: Clean Rooms ML
diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml
index 4761118b758f..7c1e74ba29a1 100644
--- a/services/cloud9/pom.xml
+++ b/services/cloud9/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
cloud9
diff --git a/services/cloudcontrol/pom.xml b/services/cloudcontrol/pom.xml
index 10706ce023af..da5dc4b8bb63 100644
--- a/services/cloudcontrol/pom.xml
+++ b/services/cloudcontrol/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
cloudcontrol
AWS Java SDK :: Services :: Cloud Control
diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml
index 5642d98547f5..d5c8e6257820 100644
--- a/services/clouddirectory/pom.xml
+++ b/services/clouddirectory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
clouddirectory
AWS Java SDK :: Services :: Amazon CloudDirectory
diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml
index 74a1cabe0ae8..d79b285da93c 100644
--- a/services/cloudformation/pom.xml
+++ b/services/cloudformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
cloudformation
AWS Java SDK :: Services :: AWS CloudFormation
diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml
index 2c8732625e4c..d340b28bcea0 100644
--- a/services/cloudfront/pom.xml
+++ b/services/cloudfront/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
cloudfront
AWS Java SDK :: Services :: Amazon CloudFront
diff --git a/services/cloudfrontkeyvaluestore/pom.xml b/services/cloudfrontkeyvaluestore/pom.xml
index 6ce6c4ae8206..9a3d783b5abd 100644
--- a/services/cloudfrontkeyvaluestore/pom.xml
+++ b/services/cloudfrontkeyvaluestore/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
cloudfrontkeyvaluestore
AWS Java SDK :: Services :: Cloud Front Key Value Store
diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml
index 797bbe0d4bab..fdc21a044733 100644
--- a/services/cloudhsm/pom.xml
+++ b/services/cloudhsm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
cloudhsm
AWS Java SDK :: Services :: AWS CloudHSM
diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml
index a54f56c1b54c..8afd72ce0ffb 100644
--- a/services/cloudhsmv2/pom.xml
+++ b/services/cloudhsmv2/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
cloudhsmv2
diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml
index 8a76738df0ca..337383d5bb34 100644
--- a/services/cloudsearch/pom.xml
+++ b/services/cloudsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
cloudsearch
AWS Java SDK :: Services :: Amazon CloudSearch
diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml
index cfc311f8eb57..6bf8e7d70685 100644
--- a/services/cloudsearchdomain/pom.xml
+++ b/services/cloudsearchdomain/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
cloudsearchdomain
AWS Java SDK :: Services :: Amazon CloudSearch Domain
diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml
index f996b5d26f41..de59d01b9e00 100644
--- a/services/cloudtrail/pom.xml
+++ b/services/cloudtrail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
cloudtrail
AWS Java SDK :: Services :: AWS CloudTrail
diff --git a/services/cloudtraildata/pom.xml b/services/cloudtraildata/pom.xml
index aa73a8352a8d..040f55285ea3 100644
--- a/services/cloudtraildata/pom.xml
+++ b/services/cloudtraildata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
cloudtraildata
AWS Java SDK :: Services :: Cloud Trail Data
diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml
index 0cef14c29da8..313c0955c7f2 100644
--- a/services/cloudwatch/pom.xml
+++ b/services/cloudwatch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
cloudwatch
AWS Java SDK :: Services :: Amazon CloudWatch
diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml
index 4486c868fe62..8e817fce3c0b 100644
--- a/services/cloudwatchevents/pom.xml
+++ b/services/cloudwatchevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
cloudwatchevents
AWS Java SDK :: Services :: Amazon CloudWatch Events
diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml
index 812489d85fd0..0f8dd0b22973 100644
--- a/services/cloudwatchlogs/pom.xml
+++ b/services/cloudwatchlogs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
cloudwatchlogs
AWS Java SDK :: Services :: Amazon CloudWatch Logs
diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml
index 6a7be65294c3..63bc8bb06176 100644
--- a/services/codeartifact/pom.xml
+++ b/services/codeartifact/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
codeartifact
AWS Java SDK :: Services :: Codeartifact
diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml
index 5f7640efefbf..d8870a6eae15 100644
--- a/services/codebuild/pom.xml
+++ b/services/codebuild/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
codebuild
AWS Java SDK :: Services :: AWS Code Build
diff --git a/services/codecatalyst/pom.xml b/services/codecatalyst/pom.xml
index 3c4b1aa709ad..3db01fc38366 100644
--- a/services/codecatalyst/pom.xml
+++ b/services/codecatalyst/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
codecatalyst
AWS Java SDK :: Services :: Code Catalyst
diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml
index e577f811b114..7eb16c33c4dc 100644
--- a/services/codecommit/pom.xml
+++ b/services/codecommit/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
codecommit
AWS Java SDK :: Services :: AWS CodeCommit
diff --git a/services/codeconnections/pom.xml b/services/codeconnections/pom.xml
index 2e970a75a0bd..94b6adfc049e 100644
--- a/services/codeconnections/pom.xml
+++ b/services/codeconnections/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
codeconnections
AWS Java SDK :: Services :: Code Connections
diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml
index d21d6174152b..f89ae06cded0 100644
--- a/services/codedeploy/pom.xml
+++ b/services/codedeploy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
codedeploy
AWS Java SDK :: Services :: AWS CodeDeploy
diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml
index 78c1282819ca..85aff4f5daee 100644
--- a/services/codeguruprofiler/pom.xml
+++ b/services/codeguruprofiler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
codeguruprofiler
AWS Java SDK :: Services :: CodeGuruProfiler
diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml
index a5a8747dceb3..37384536a1ab 100644
--- a/services/codegurureviewer/pom.xml
+++ b/services/codegurureviewer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
codegurureviewer
AWS Java SDK :: Services :: CodeGuru Reviewer
diff --git a/services/codegurusecurity/pom.xml b/services/codegurusecurity/pom.xml
index eeea045e828b..74ad7d0246ef 100644
--- a/services/codegurusecurity/pom.xml
+++ b/services/codegurusecurity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
codegurusecurity
AWS Java SDK :: Services :: Code Guru Security
diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml
index 73f9c027f7cf..1897b17b8515 100644
--- a/services/codepipeline/pom.xml
+++ b/services/codepipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
codepipeline
AWS Java SDK :: Services :: AWS CodePipeline
diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml
index 636683293280..cd6abd0ae1de 100644
--- a/services/codestarconnections/pom.xml
+++ b/services/codestarconnections/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
codestarconnections
AWS Java SDK :: Services :: CodeStar connections
diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml
index 6196e88dcb60..eece15d6500d 100644
--- a/services/codestarnotifications/pom.xml
+++ b/services/codestarnotifications/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
codestarnotifications
AWS Java SDK :: Services :: Codestar Notifications
diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml
index 1e14c68b8890..ceadaa71c4ec 100644
--- a/services/cognitoidentity/pom.xml
+++ b/services/cognitoidentity/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
cognitoidentity
AWS Java SDK :: Services :: Amazon Cognito Identity
diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml
index 388d4fa9a49f..9fceec5e2fa2 100644
--- a/services/cognitoidentityprovider/pom.xml
+++ b/services/cognitoidentityprovider/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
cognitoidentityprovider
AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service
diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml
index 21d1707fe679..79dc7f906477 100644
--- a/services/cognitosync/pom.xml
+++ b/services/cognitosync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
cognitosync
AWS Java SDK :: Services :: Amazon Cognito Sync
diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml
index 6cd9f9a08c95..b6efbc06935a 100644
--- a/services/comprehend/pom.xml
+++ b/services/comprehend/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
comprehend
diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml
index 66ddedd0c325..f8ac4d336292 100644
--- a/services/comprehendmedical/pom.xml
+++ b/services/comprehendmedical/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
comprehendmedical
AWS Java SDK :: Services :: ComprehendMedical
diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml
index 38329efc625d..916c64459117 100644
--- a/services/computeoptimizer/pom.xml
+++ b/services/computeoptimizer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
computeoptimizer
AWS Java SDK :: Services :: Compute Optimizer
diff --git a/services/config/pom.xml b/services/config/pom.xml
index a923c9e65aea..288adff111c6 100644
--- a/services/config/pom.xml
+++ b/services/config/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
config
AWS Java SDK :: Services :: AWS Config
diff --git a/services/connect/pom.xml b/services/connect/pom.xml
index eae3f821cf3b..714f2bd78e70 100644
--- a/services/connect/pom.xml
+++ b/services/connect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
connect
AWS Java SDK :: Services :: Connect
diff --git a/services/connectcampaigns/pom.xml b/services/connectcampaigns/pom.xml
index e97d557b5984..3655ca49cff2 100644
--- a/services/connectcampaigns/pom.xml
+++ b/services/connectcampaigns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
connectcampaigns
AWS Java SDK :: Services :: Connect Campaigns
diff --git a/services/connectcampaignsv2/pom.xml b/services/connectcampaignsv2/pom.xml
index bf8de2d4be3f..deed141902a0 100644
--- a/services/connectcampaignsv2/pom.xml
+++ b/services/connectcampaignsv2/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
connectcampaignsv2
AWS Java SDK :: Services :: Connect Campaigns V2
diff --git a/services/connectcases/pom.xml b/services/connectcases/pom.xml
index 1738fe3f3bee..21acbb7eec67 100644
--- a/services/connectcases/pom.xml
+++ b/services/connectcases/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
connectcases
AWS Java SDK :: Services :: Connect Cases
diff --git a/services/connectcontactlens/pom.xml b/services/connectcontactlens/pom.xml
index 4e0819dae1aa..b45b8f4b24ed 100644
--- a/services/connectcontactlens/pom.xml
+++ b/services/connectcontactlens/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
connectcontactlens
AWS Java SDK :: Services :: Connect Contact Lens
diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml
index 0a61715a8fbc..1929fd43f16a 100644
--- a/services/connectparticipant/pom.xml
+++ b/services/connectparticipant/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
connectparticipant
AWS Java SDK :: Services :: ConnectParticipant
diff --git a/services/controlcatalog/pom.xml b/services/controlcatalog/pom.xml
index 9950459fdf5a..20c85fafdb94 100644
--- a/services/controlcatalog/pom.xml
+++ b/services/controlcatalog/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
controlcatalog
AWS Java SDK :: Services :: Control Catalog
diff --git a/services/controltower/pom.xml b/services/controltower/pom.xml
index 7f44039fc0f7..2a01c96fd7f5 100644
--- a/services/controltower/pom.xml
+++ b/services/controltower/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
controltower
AWS Java SDK :: Services :: Control Tower
diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml
index 852815033b5f..ae95b20cd4b2 100644
--- a/services/costandusagereport/pom.xml
+++ b/services/costandusagereport/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
costandusagereport
AWS Java SDK :: Services :: AWS Cost and Usage Report
diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml
index e4e6f50dfd27..346b3e5eefe3 100644
--- a/services/costexplorer/pom.xml
+++ b/services/costexplorer/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
costexplorer
diff --git a/services/costoptimizationhub/pom.xml b/services/costoptimizationhub/pom.xml
index 1feb9f3534c2..e406a1382f15 100644
--- a/services/costoptimizationhub/pom.xml
+++ b/services/costoptimizationhub/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
costoptimizationhub
AWS Java SDK :: Services :: Cost Optimization Hub
diff --git a/services/customerprofiles/pom.xml b/services/customerprofiles/pom.xml
index 6f5141db2905..7b424225f55d 100644
--- a/services/customerprofiles/pom.xml
+++ b/services/customerprofiles/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
customerprofiles
AWS Java SDK :: Services :: Customer Profiles
diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml
index c4c743101f71..0dbeced87725 100644
--- a/services/databasemigration/pom.xml
+++ b/services/databasemigration/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
databasemigration
AWS Java SDK :: Services :: AWS Database Migration Service
diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml
index 5333ef264ef7..1d70cc5e3f71 100644
--- a/services/databrew/pom.xml
+++ b/services/databrew/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
databrew
AWS Java SDK :: Services :: Data Brew
diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml
index 633d1f386eb2..62c63f099b42 100644
--- a/services/dataexchange/pom.xml
+++ b/services/dataexchange/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
dataexchange
AWS Java SDK :: Services :: DataExchange
diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml
index 9a58bffa227d..1269aa3cdb85 100644
--- a/services/datapipeline/pom.xml
+++ b/services/datapipeline/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
datapipeline
AWS Java SDK :: Services :: AWS Data Pipeline
diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml
index ae9c152573dc..16d24159d87b 100644
--- a/services/datasync/pom.xml
+++ b/services/datasync/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
datasync
AWS Java SDK :: Services :: DataSync
diff --git a/services/datazone/pom.xml b/services/datazone/pom.xml
index 12cc4ba97978..37e39c2bb2db 100644
--- a/services/datazone/pom.xml
+++ b/services/datazone/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
datazone
AWS Java SDK :: Services :: Data Zone
diff --git a/services/dax/pom.xml b/services/dax/pom.xml
index ee33314378db..4c0004cddca4 100644
--- a/services/dax/pom.xml
+++ b/services/dax/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
dax
AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX)
diff --git a/services/deadline/pom.xml b/services/deadline/pom.xml
index 0b0a46f42e04..365b386d9ddf 100644
--- a/services/deadline/pom.xml
+++ b/services/deadline/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
deadline
AWS Java SDK :: Services :: Deadline
diff --git a/services/detective/pom.xml b/services/detective/pom.xml
index 6d7a51c115f8..ac4942db15eb 100644
--- a/services/detective/pom.xml
+++ b/services/detective/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
detective
AWS Java SDK :: Services :: Detective
diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml
index 037dbc505da2..a0d9465c6e3a 100644
--- a/services/devicefarm/pom.xml
+++ b/services/devicefarm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
devicefarm
AWS Java SDK :: Services :: AWS Device Farm
diff --git a/services/devopsguru/pom.xml b/services/devopsguru/pom.xml
index fce69be01fa7..722591ed7726 100644
--- a/services/devopsguru/pom.xml
+++ b/services/devopsguru/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
devopsguru
AWS Java SDK :: Services :: Dev Ops Guru
diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml
index 2b6575aedc39..1f96eae62337 100644
--- a/services/directconnect/pom.xml
+++ b/services/directconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
directconnect
AWS Java SDK :: Services :: AWS Direct Connect
diff --git a/services/directory/pom.xml b/services/directory/pom.xml
index 9ceaed2aeff9..22be1dd57745 100644
--- a/services/directory/pom.xml
+++ b/services/directory/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
directory
AWS Java SDK :: Services :: AWS Directory Service
diff --git a/services/directoryservicedata/pom.xml b/services/directoryservicedata/pom.xml
index 7b18518427c1..bd54e2569bd3 100644
--- a/services/directoryservicedata/pom.xml
+++ b/services/directoryservicedata/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
directoryservicedata
AWS Java SDK :: Services :: Directory Service Data
diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml
index 3600cbbe3911..a98488869883 100644
--- a/services/dlm/pom.xml
+++ b/services/dlm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
dlm
AWS Java SDK :: Services :: DLM
diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml
index 08834cc723d3..06ecb9f2ab10 100644
--- a/services/docdb/pom.xml
+++ b/services/docdb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
docdb
AWS Java SDK :: Services :: DocDB
diff --git a/services/docdbelastic/pom.xml b/services/docdbelastic/pom.xml
index ddcfc974e19c..3cab87b9d651 100644
--- a/services/docdbelastic/pom.xml
+++ b/services/docdbelastic/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
docdbelastic
AWS Java SDK :: Services :: Doc DB Elastic
diff --git a/services/drs/pom.xml b/services/drs/pom.xml
index 6d28f8ef8ea7..a182ec03246a 100644
--- a/services/drs/pom.xml
+++ b/services/drs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
drs
AWS Java SDK :: Services :: Drs
diff --git a/services/dsql/pom.xml b/services/dsql/pom.xml
index 96afd1a53fd0..3c032954866e 100644
--- a/services/dsql/pom.xml
+++ b/services/dsql/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
dsql
AWS Java SDK :: Services :: DSQL
diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml
index 0d9d8c8bfde3..43f4f3a1a522 100644
--- a/services/dynamodb/pom.xml
+++ b/services/dynamodb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
dynamodb
AWS Java SDK :: Services :: Amazon DynamoDB
diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml
index e12a8ac903ec..54ed1fc455e1 100644
--- a/services/ebs/pom.xml
+++ b/services/ebs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
ebs
AWS Java SDK :: Services :: EBS
diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml
index 36b24ed096d5..7c27d62422fb 100644
--- a/services/ec2/pom.xml
+++ b/services/ec2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
ec2
AWS Java SDK :: Services :: Amazon EC2
diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml
index 56b6cad1c430..de7c82d7e593 100644
--- a/services/ec2instanceconnect/pom.xml
+++ b/services/ec2instanceconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
ec2instanceconnect
AWS Java SDK :: Services :: EC2 Instance Connect
diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml
index d07f3b64753e..46c5a0a78383 100644
--- a/services/ecr/pom.xml
+++ b/services/ecr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
ecr
AWS Java SDK :: Services :: Amazon EC2 Container Registry
diff --git a/services/ecrpublic/pom.xml b/services/ecrpublic/pom.xml
index 030f2dc99510..4bad2022b1d4 100644
--- a/services/ecrpublic/pom.xml
+++ b/services/ecrpublic/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
ecrpublic
AWS Java SDK :: Services :: ECR PUBLIC
diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml
index 710ea7c1c1e5..eba4516f580e 100644
--- a/services/ecs/pom.xml
+++ b/services/ecs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
ecs
AWS Java SDK :: Services :: Amazon EC2 Container Service
diff --git a/services/efs/pom.xml b/services/efs/pom.xml
index bc85cb09f338..33635531be76 100644
--- a/services/efs/pom.xml
+++ b/services/efs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
efs
AWS Java SDK :: Services :: Amazon Elastic File System
diff --git a/services/eks/pom.xml b/services/eks/pom.xml
index 8a17751d158e..cacc234e4317 100644
--- a/services/eks/pom.xml
+++ b/services/eks/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
eks
AWS Java SDK :: Services :: EKS
diff --git a/services/eksauth/pom.xml b/services/eksauth/pom.xml
index 0c5f2a735332..169470d6e0a4 100644
--- a/services/eksauth/pom.xml
+++ b/services/eksauth/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
eksauth
AWS Java SDK :: Services :: EKS Auth
diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml
index 7e958888a3c4..5e36beaa6fb1 100644
--- a/services/elasticache/pom.xml
+++ b/services/elasticache/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
elasticache
AWS Java SDK :: Services :: Amazon ElastiCache
diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml
index 8bb50b745321..24a553c7dddb 100644
--- a/services/elasticbeanstalk/pom.xml
+++ b/services/elasticbeanstalk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
elasticbeanstalk
AWS Java SDK :: Services :: AWS Elastic Beanstalk
diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml
index c58d031e77e3..823d75b44286 100644
--- a/services/elasticloadbalancing/pom.xml
+++ b/services/elasticloadbalancing/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
elasticloadbalancing
AWS Java SDK :: Services :: Elastic Load Balancing
diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml
index 99fce0642716..353325b78607 100644
--- a/services/elasticloadbalancingv2/pom.xml
+++ b/services/elasticloadbalancingv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
elasticloadbalancingv2
AWS Java SDK :: Services :: Elastic Load Balancing V2
diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml
index fc53aa290ef7..bd35ded815b0 100644
--- a/services/elasticsearch/pom.xml
+++ b/services/elasticsearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
elasticsearch
AWS Java SDK :: Services :: Amazon Elasticsearch Service
diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml
index d580a62bb19f..592e69768097 100644
--- a/services/elastictranscoder/pom.xml
+++ b/services/elastictranscoder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
elastictranscoder
AWS Java SDK :: Services :: Amazon Elastic Transcoder
diff --git a/services/emr/pom.xml b/services/emr/pom.xml
index e77c29a17390..303ac30e65ad 100644
--- a/services/emr/pom.xml
+++ b/services/emr/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
emr
AWS Java SDK :: Services :: Amazon EMR
diff --git a/services/emrcontainers/pom.xml b/services/emrcontainers/pom.xml
index 6c6ae795ba43..2ba59695b9a8 100644
--- a/services/emrcontainers/pom.xml
+++ b/services/emrcontainers/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
emrcontainers
AWS Java SDK :: Services :: EMR Containers
diff --git a/services/emrserverless/pom.xml b/services/emrserverless/pom.xml
index 87b8e0294974..7a965e7da491 100644
--- a/services/emrserverless/pom.xml
+++ b/services/emrserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
emrserverless
AWS Java SDK :: Services :: EMR Serverless
diff --git a/services/entityresolution/pom.xml b/services/entityresolution/pom.xml
index b14c0dec374a..60cb30549838 100644
--- a/services/entityresolution/pom.xml
+++ b/services/entityresolution/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
entityresolution
AWS Java SDK :: Services :: Entity Resolution
diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml
index 1d6f2e72f634..d07c9ed08258 100644
--- a/services/eventbridge/pom.xml
+++ b/services/eventbridge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
eventbridge
AWS Java SDK :: Services :: EventBridge
diff --git a/services/evidently/pom.xml b/services/evidently/pom.xml
index 680255927cc6..916022f69757 100644
--- a/services/evidently/pom.xml
+++ b/services/evidently/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
evidently
AWS Java SDK :: Services :: Evidently
diff --git a/services/evs/pom.xml b/services/evs/pom.xml
index 399f11199cd9..58a379131fb2 100644
--- a/services/evs/pom.xml
+++ b/services/evs/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
evs
AWS Java SDK :: Services :: Evs
diff --git a/services/finspace/pom.xml b/services/finspace/pom.xml
index 61567a0cfcbe..244976049c66 100644
--- a/services/finspace/pom.xml
+++ b/services/finspace/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
finspace
AWS Java SDK :: Services :: Finspace
diff --git a/services/finspacedata/pom.xml b/services/finspacedata/pom.xml
index 859dc583fadf..54f1aa4db658 100644
--- a/services/finspacedata/pom.xml
+++ b/services/finspacedata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
finspacedata
AWS Java SDK :: Services :: Finspace Data
diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml
index 30419479b5f5..217320464894 100644
--- a/services/firehose/pom.xml
+++ b/services/firehose/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
firehose
AWS Java SDK :: Services :: Amazon Kinesis Firehose
diff --git a/services/fis/pom.xml b/services/fis/pom.xml
index 65e6b4b5c700..08a37b2a68d4 100644
--- a/services/fis/pom.xml
+++ b/services/fis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
fis
AWS Java SDK :: Services :: Fis
diff --git a/services/fms/pom.xml b/services/fms/pom.xml
index 8b81904d8ca4..bfe3e22afd82 100644
--- a/services/fms/pom.xml
+++ b/services/fms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
fms
AWS Java SDK :: Services :: FMS
diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml
index fd7c405e5e70..0c7ec19891bf 100644
--- a/services/forecast/pom.xml
+++ b/services/forecast/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
forecast
AWS Java SDK :: Services :: Forecast
diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml
index 1e0f9afad69c..e1c269ba6192 100644
--- a/services/forecastquery/pom.xml
+++ b/services/forecastquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
forecastquery
AWS Java SDK :: Services :: Forecastquery
diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml
index 430e203c1514..6cdda26fc268 100644
--- a/services/frauddetector/pom.xml
+++ b/services/frauddetector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
frauddetector
AWS Java SDK :: Services :: FraudDetector
diff --git a/services/freetier/pom.xml b/services/freetier/pom.xml
index abebb3d67df3..46da19b0422c 100644
--- a/services/freetier/pom.xml
+++ b/services/freetier/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
freetier
AWS Java SDK :: Services :: Free Tier
diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml
index dc6696d9c04a..1fd4a90b66f3 100644
--- a/services/fsx/pom.xml
+++ b/services/fsx/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
fsx
AWS Java SDK :: Services :: FSx
diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml
index ceecf45b6eb4..5e887f229ca9 100644
--- a/services/gamelift/pom.xml
+++ b/services/gamelift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
gamelift
AWS Java SDK :: Services :: AWS GameLift
diff --git a/services/gameliftstreams/pom.xml b/services/gameliftstreams/pom.xml
index f3e91c0a1e84..4d9b508f2fa3 100644
--- a/services/gameliftstreams/pom.xml
+++ b/services/gameliftstreams/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
gameliftstreams
AWS Java SDK :: Services :: Game Lift Streams
diff --git a/services/geomaps/pom.xml b/services/geomaps/pom.xml
index edd23ad0bce4..2b5c5535ee8f 100644
--- a/services/geomaps/pom.xml
+++ b/services/geomaps/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
geomaps
AWS Java SDK :: Services :: Geo Maps
diff --git a/services/geoplaces/pom.xml b/services/geoplaces/pom.xml
index 5652cea57340..044f5185de8f 100644
--- a/services/geoplaces/pom.xml
+++ b/services/geoplaces/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
geoplaces
AWS Java SDK :: Services :: Geo Places
diff --git a/services/georoutes/pom.xml b/services/georoutes/pom.xml
index 1f79bc7303df..01de9e3bfb08 100644
--- a/services/georoutes/pom.xml
+++ b/services/georoutes/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
georoutes
AWS Java SDK :: Services :: Geo Routes
diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml
index 7bfd35f87808..e352dca043c1 100644
--- a/services/glacier/pom.xml
+++ b/services/glacier/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
glacier
AWS Java SDK :: Services :: Amazon Glacier
diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml
index 3cbe913cc475..3cd0008a2208 100644
--- a/services/globalaccelerator/pom.xml
+++ b/services/globalaccelerator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
globalaccelerator
AWS Java SDK :: Services :: Global Accelerator
diff --git a/services/glue/pom.xml b/services/glue/pom.xml
index 3f22b5da7127..5517bca0fe36 100644
--- a/services/glue/pom.xml
+++ b/services/glue/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
glue
diff --git a/services/grafana/pom.xml b/services/grafana/pom.xml
index 74403ce7cb6e..caf1db0b98ea 100644
--- a/services/grafana/pom.xml
+++ b/services/grafana/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
grafana
AWS Java SDK :: Services :: Grafana
diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml
index 3d3ed619eb47..e7abf91b1e67 100644
--- a/services/greengrass/pom.xml
+++ b/services/greengrass/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
greengrass
AWS Java SDK :: Services :: AWS Greengrass
diff --git a/services/greengrassv2/pom.xml b/services/greengrassv2/pom.xml
index 9e350ff4b66e..ac1129ad79f8 100644
--- a/services/greengrassv2/pom.xml
+++ b/services/greengrassv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
greengrassv2
AWS Java SDK :: Services :: Greengrass V2
diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml
index ed5df2f3e7ce..f923f1c575d0 100644
--- a/services/groundstation/pom.xml
+++ b/services/groundstation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
groundstation
AWS Java SDK :: Services :: GroundStation
diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml
index 570bd4f1ea4d..6a6247ffcd96 100644
--- a/services/guardduty/pom.xml
+++ b/services/guardduty/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
guardduty
diff --git a/services/health/pom.xml b/services/health/pom.xml
index 70b98856eea7..81edbd291d79 100644
--- a/services/health/pom.xml
+++ b/services/health/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
health
AWS Java SDK :: Services :: AWS Health APIs and Notifications
diff --git a/services/healthlake/pom.xml b/services/healthlake/pom.xml
index 667d694bc772..749c60a127d7 100644
--- a/services/healthlake/pom.xml
+++ b/services/healthlake/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
healthlake
AWS Java SDK :: Services :: Health Lake
diff --git a/services/iam/pom.xml b/services/iam/pom.xml
index dde654033b51..7324b509f785 100644
--- a/services/iam/pom.xml
+++ b/services/iam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
iam
AWS Java SDK :: Services :: AWS IAM
diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml
index 95b95bc94084..e3ac217dec28 100644
--- a/services/identitystore/pom.xml
+++ b/services/identitystore/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
identitystore
AWS Java SDK :: Services :: Identitystore
diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml
index 9ca17e409c35..af05e5054831 100644
--- a/services/imagebuilder/pom.xml
+++ b/services/imagebuilder/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
imagebuilder
AWS Java SDK :: Services :: Imagebuilder
diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml
index 2065917b9aab..2675170caba8 100644
--- a/services/inspector/pom.xml
+++ b/services/inspector/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
inspector
AWS Java SDK :: Services :: Amazon Inspector Service
diff --git a/services/inspector2/pom.xml b/services/inspector2/pom.xml
index 2b6650a0e275..908f1a8c53b9 100644
--- a/services/inspector2/pom.xml
+++ b/services/inspector2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
inspector2
AWS Java SDK :: Services :: Inspector2
diff --git a/services/inspectorscan/pom.xml b/services/inspectorscan/pom.xml
index 5a24ae996d8d..55e7314729c3 100644
--- a/services/inspectorscan/pom.xml
+++ b/services/inspectorscan/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
inspectorscan
AWS Java SDK :: Services :: Inspector Scan
diff --git a/services/internetmonitor/pom.xml b/services/internetmonitor/pom.xml
index 7894a6db1c22..1df6591f3da1 100644
--- a/services/internetmonitor/pom.xml
+++ b/services/internetmonitor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
internetmonitor
AWS Java SDK :: Services :: Internet Monitor
diff --git a/services/invoicing/pom.xml b/services/invoicing/pom.xml
index 5f2bfe7f036d..26bf39c90cde 100644
--- a/services/invoicing/pom.xml
+++ b/services/invoicing/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
invoicing
AWS Java SDK :: Services :: Invoicing
diff --git a/services/iot/pom.xml b/services/iot/pom.xml
index d892d73541b2..7333447c93e3 100644
--- a/services/iot/pom.xml
+++ b/services/iot/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
iot
AWS Java SDK :: Services :: AWS IoT
diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml
index 7f377de64f91..fc517b9be128 100644
--- a/services/iotanalytics/pom.xml
+++ b/services/iotanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
iotanalytics
AWS Java SDK :: Services :: IoTAnalytics
diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml
index bd1aa4a14940..44d8e105161a 100644
--- a/services/iotdataplane/pom.xml
+++ b/services/iotdataplane/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
iotdataplane
AWS Java SDK :: Services :: AWS IoT Data Plane
diff --git a/services/iotdeviceadvisor/pom.xml b/services/iotdeviceadvisor/pom.xml
index a9b00cf5d57a..d64b7dad3efe 100644
--- a/services/iotdeviceadvisor/pom.xml
+++ b/services/iotdeviceadvisor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
iotdeviceadvisor
AWS Java SDK :: Services :: Iot Device Advisor
diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml
index 5f43403f1594..9db9681aa062 100644
--- a/services/iotevents/pom.xml
+++ b/services/iotevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
iotevents
AWS Java SDK :: Services :: IoT Events
diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml
index 5cd9cb5981ec..6159fae55388 100644
--- a/services/ioteventsdata/pom.xml
+++ b/services/ioteventsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
ioteventsdata
AWS Java SDK :: Services :: IoT Events Data
diff --git a/services/iotfleethub/pom.xml b/services/iotfleethub/pom.xml
index d6e46fea2044..e53dfc671a57 100644
--- a/services/iotfleethub/pom.xml
+++ b/services/iotfleethub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
iotfleethub
AWS Java SDK :: Services :: Io T Fleet Hub
diff --git a/services/iotfleetwise/pom.xml b/services/iotfleetwise/pom.xml
index 50f86e1696f0..89174b6415b9 100644
--- a/services/iotfleetwise/pom.xml
+++ b/services/iotfleetwise/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
iotfleetwise
AWS Java SDK :: Services :: Io T Fleet Wise
diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml
index 1d15c818082f..5242eb5c1559 100644
--- a/services/iotjobsdataplane/pom.xml
+++ b/services/iotjobsdataplane/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
iotjobsdataplane
AWS Java SDK :: Services :: IoT Jobs Data Plane
diff --git a/services/iotmanagedintegrations/pom.xml b/services/iotmanagedintegrations/pom.xml
index 8e157fa2812d..69df2a484612 100644
--- a/services/iotmanagedintegrations/pom.xml
+++ b/services/iotmanagedintegrations/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
iotmanagedintegrations
AWS Java SDK :: Services :: IoT Managed Integrations
diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml
index f6d8c482603b..8b31f3cda423 100644
--- a/services/iotsecuretunneling/pom.xml
+++ b/services/iotsecuretunneling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
iotsecuretunneling
AWS Java SDK :: Services :: IoTSecureTunneling
diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml
index bc1a59e2792f..a8abeed7d6e8 100644
--- a/services/iotsitewise/pom.xml
+++ b/services/iotsitewise/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
iotsitewise
AWS Java SDK :: Services :: Io T Site Wise
diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml
index eb72c9e360bc..878148f55f40 100644
--- a/services/iotthingsgraph/pom.xml
+++ b/services/iotthingsgraph/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
iotthingsgraph
AWS Java SDK :: Services :: IoTThingsGraph
diff --git a/services/iottwinmaker/pom.xml b/services/iottwinmaker/pom.xml
index 28c2c0e376af..aec72857c701 100644
--- a/services/iottwinmaker/pom.xml
+++ b/services/iottwinmaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
iottwinmaker
AWS Java SDK :: Services :: Io T Twin Maker
diff --git a/services/iotwireless/pom.xml b/services/iotwireless/pom.xml
index d42e15f7e062..70e6523188ed 100644
--- a/services/iotwireless/pom.xml
+++ b/services/iotwireless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
iotwireless
AWS Java SDK :: Services :: IoT Wireless
diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml
index 091422e18a72..8a22439eed26 100644
--- a/services/ivs/pom.xml
+++ b/services/ivs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
ivs
AWS Java SDK :: Services :: Ivs
diff --git a/services/ivschat/pom.xml b/services/ivschat/pom.xml
index 5b5166878a06..310a50608e61 100644
--- a/services/ivschat/pom.xml
+++ b/services/ivschat/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
ivschat
AWS Java SDK :: Services :: Ivschat
diff --git a/services/ivsrealtime/pom.xml b/services/ivsrealtime/pom.xml
index d8f43d4a0176..6b334f7b0a71 100644
--- a/services/ivsrealtime/pom.xml
+++ b/services/ivsrealtime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
ivsrealtime
AWS Java SDK :: Services :: IVS Real Time
diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml
index da1b604c55c2..68cc6928f0e2 100644
--- a/services/kafka/pom.xml
+++ b/services/kafka/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
kafka
AWS Java SDK :: Services :: Kafka
diff --git a/services/kafkaconnect/pom.xml b/services/kafkaconnect/pom.xml
index 40cc5750d963..14a778c48e3a 100644
--- a/services/kafkaconnect/pom.xml
+++ b/services/kafkaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
kafkaconnect
AWS Java SDK :: Services :: Kafka Connect
diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml
index 8190d8c3c74f..7b0b098e2c27 100644
--- a/services/kendra/pom.xml
+++ b/services/kendra/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
kendra
AWS Java SDK :: Services :: Kendra
diff --git a/services/kendraranking/pom.xml b/services/kendraranking/pom.xml
index eba041c3acb1..02867ac5da53 100644
--- a/services/kendraranking/pom.xml
+++ b/services/kendraranking/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
kendraranking
AWS Java SDK :: Services :: Kendra Ranking
diff --git a/services/keyspaces/pom.xml b/services/keyspaces/pom.xml
index d7e5a133d931..1595c45f8bcb 100644
--- a/services/keyspaces/pom.xml
+++ b/services/keyspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
keyspaces
AWS Java SDK :: Services :: Keyspaces
diff --git a/services/keyspacesstreams/pom.xml b/services/keyspacesstreams/pom.xml
index ff029c9db959..fc87bda0aa4e 100644
--- a/services/keyspacesstreams/pom.xml
+++ b/services/keyspacesstreams/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
keyspacesstreams
AWS Java SDK :: Services :: Keyspaces Streams
diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml
index 1c54cf050024..1e2340bf2db8 100644
--- a/services/kinesis/pom.xml
+++ b/services/kinesis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
kinesis
AWS Java SDK :: Services :: Amazon Kinesis
diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml
index 9b0498fd5841..f2016d027e38 100644
--- a/services/kinesisanalytics/pom.xml
+++ b/services/kinesisanalytics/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
kinesisanalytics
AWS Java SDK :: Services :: Amazon Kinesis Analytics
diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml
index 7570b536f3c9..5aa5ceb6474e 100644
--- a/services/kinesisanalyticsv2/pom.xml
+++ b/services/kinesisanalyticsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
kinesisanalyticsv2
AWS Java SDK :: Services :: Kinesis Analytics V2
diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml
index 6fe7b62df63c..0e8f7e7a22b6 100644
--- a/services/kinesisvideo/pom.xml
+++ b/services/kinesisvideo/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
kinesisvideo
diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml
index 96e9b70a4324..47ae7bbaa442 100644
--- a/services/kinesisvideoarchivedmedia/pom.xml
+++ b/services/kinesisvideoarchivedmedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
kinesisvideoarchivedmedia
AWS Java SDK :: Services :: Kinesis Video Archived Media
diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml
index 111a6add43cd..8f28e9f573e4 100644
--- a/services/kinesisvideomedia/pom.xml
+++ b/services/kinesisvideomedia/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
kinesisvideomedia
AWS Java SDK :: Services :: Kinesis Video Media
diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml
index 73d2162844ad..a159a3665fe8 100644
--- a/services/kinesisvideosignaling/pom.xml
+++ b/services/kinesisvideosignaling/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
kinesisvideosignaling
AWS Java SDK :: Services :: Kinesis Video Signaling
diff --git a/services/kinesisvideowebrtcstorage/pom.xml b/services/kinesisvideowebrtcstorage/pom.xml
index a9a012e1e0e2..65f39ee7454b 100644
--- a/services/kinesisvideowebrtcstorage/pom.xml
+++ b/services/kinesisvideowebrtcstorage/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
kinesisvideowebrtcstorage
AWS Java SDK :: Services :: Kinesis Video Web RTC Storage
diff --git a/services/kms/pom.xml b/services/kms/pom.xml
index 290cc5bb0ef2..3e0d52b21203 100644
--- a/services/kms/pom.xml
+++ b/services/kms/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
kms
AWS Java SDK :: Services :: AWS KMS
diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml
index 5d0ee61fd5db..ad478ecad71b 100644
--- a/services/lakeformation/pom.xml
+++ b/services/lakeformation/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
lakeformation
AWS Java SDK :: Services :: LakeFormation
diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml
index 99298b5207e2..fc7ffb07a0ee 100644
--- a/services/lambda/pom.xml
+++ b/services/lambda/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
lambda
AWS Java SDK :: Services :: AWS Lambda
diff --git a/services/launchwizard/pom.xml b/services/launchwizard/pom.xml
index a125d118e53c..8fdc1fecd89a 100644
--- a/services/launchwizard/pom.xml
+++ b/services/launchwizard/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
launchwizard
AWS Java SDK :: Services :: Launch Wizard
diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml
index b50edbf0196f..85f901070c4f 100644
--- a/services/lexmodelbuilding/pom.xml
+++ b/services/lexmodelbuilding/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
lexmodelbuilding
AWS Java SDK :: Services :: Amazon Lex Model Building
diff --git a/services/lexmodelsv2/pom.xml b/services/lexmodelsv2/pom.xml
index c39e295f1103..5a75c1a7eb16 100644
--- a/services/lexmodelsv2/pom.xml
+++ b/services/lexmodelsv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
lexmodelsv2
AWS Java SDK :: Services :: Lex Models V2
diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml
index 97f5e31ceefa..78017bd90562 100644
--- a/services/lexruntime/pom.xml
+++ b/services/lexruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
lexruntime
AWS Java SDK :: Services :: Amazon Lex Runtime
diff --git a/services/lexruntimev2/pom.xml b/services/lexruntimev2/pom.xml
index 3eb25d1b6b25..fdf259525abf 100644
--- a/services/lexruntimev2/pom.xml
+++ b/services/lexruntimev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
lexruntimev2
AWS Java SDK :: Services :: Lex Runtime V2
diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml
index 771c98f3f8dd..6c549b17a7cf 100644
--- a/services/licensemanager/pom.xml
+++ b/services/licensemanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
licensemanager
AWS Java SDK :: Services :: License Manager
diff --git a/services/licensemanagerlinuxsubscriptions/pom.xml b/services/licensemanagerlinuxsubscriptions/pom.xml
index 1ab46979c939..98c52e75ce77 100644
--- a/services/licensemanagerlinuxsubscriptions/pom.xml
+++ b/services/licensemanagerlinuxsubscriptions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
licensemanagerlinuxsubscriptions
AWS Java SDK :: Services :: License Manager Linux Subscriptions
diff --git a/services/licensemanagerusersubscriptions/pom.xml b/services/licensemanagerusersubscriptions/pom.xml
index bfed6530d822..2e17bf5c9b2c 100644
--- a/services/licensemanagerusersubscriptions/pom.xml
+++ b/services/licensemanagerusersubscriptions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
licensemanagerusersubscriptions
AWS Java SDK :: Services :: License Manager User Subscriptions
diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml
index 5ebb4fa340eb..17b563a4f132 100644
--- a/services/lightsail/pom.xml
+++ b/services/lightsail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
lightsail
AWS Java SDK :: Services :: Amazon Lightsail
diff --git a/services/location/pom.xml b/services/location/pom.xml
index 204398bc3b6d..ab2b34513c76 100644
--- a/services/location/pom.xml
+++ b/services/location/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
location
AWS Java SDK :: Services :: Location
diff --git a/services/lookoutequipment/pom.xml b/services/lookoutequipment/pom.xml
index 48af40c21814..baac575c6253 100644
--- a/services/lookoutequipment/pom.xml
+++ b/services/lookoutequipment/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
lookoutequipment
AWS Java SDK :: Services :: Lookout Equipment
diff --git a/services/lookoutmetrics/pom.xml b/services/lookoutmetrics/pom.xml
index adb2c41cb3ed..407df52b9713 100644
--- a/services/lookoutmetrics/pom.xml
+++ b/services/lookoutmetrics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
lookoutmetrics
AWS Java SDK :: Services :: Lookout Metrics
diff --git a/services/lookoutvision/pom.xml b/services/lookoutvision/pom.xml
index ffe9a0d805d1..40fa989cf36e 100644
--- a/services/lookoutvision/pom.xml
+++ b/services/lookoutvision/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
lookoutvision
AWS Java SDK :: Services :: Lookout Vision
diff --git a/services/m2/pom.xml b/services/m2/pom.xml
index 95cad47b498a..4c8ad5aad4d6 100644
--- a/services/m2/pom.xml
+++ b/services/m2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
m2
AWS Java SDK :: Services :: M2
diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml
index 1eb9dd307464..e571095b48d2 100644
--- a/services/machinelearning/pom.xml
+++ b/services/machinelearning/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
machinelearning
AWS Java SDK :: Services :: Amazon Machine Learning
diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml
index 7762e1771914..3c997868558e 100644
--- a/services/macie2/pom.xml
+++ b/services/macie2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
macie2
AWS Java SDK :: Services :: Macie2
diff --git a/services/mailmanager/pom.xml b/services/mailmanager/pom.xml
index 5326273cb17d..5e3ff0c2c838 100644
--- a/services/mailmanager/pom.xml
+++ b/services/mailmanager/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
mailmanager
AWS Java SDK :: Services :: Mail Manager
diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml
index dfe8b861bcd1..81d9fda4da7a 100644
--- a/services/managedblockchain/pom.xml
+++ b/services/managedblockchain/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
managedblockchain
AWS Java SDK :: Services :: ManagedBlockchain
diff --git a/services/managedblockchainquery/pom.xml b/services/managedblockchainquery/pom.xml
index 9dc403cfbea5..9cdd8379408b 100644
--- a/services/managedblockchainquery/pom.xml
+++ b/services/managedblockchainquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
managedblockchainquery
AWS Java SDK :: Services :: Managed Blockchain Query
diff --git a/services/marketplaceagreement/pom.xml b/services/marketplaceagreement/pom.xml
index 898fdf2a6b0f..07450ecc542e 100644
--- a/services/marketplaceagreement/pom.xml
+++ b/services/marketplaceagreement/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
marketplaceagreement
AWS Java SDK :: Services :: Marketplace Agreement
diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml
index 7e31f1b4d342..d5f880da4cf6 100644
--- a/services/marketplacecatalog/pom.xml
+++ b/services/marketplacecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
marketplacecatalog
AWS Java SDK :: Services :: Marketplace Catalog
diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml
index f00a70779b5a..2e8b8d629114 100644
--- a/services/marketplacecommerceanalytics/pom.xml
+++ b/services/marketplacecommerceanalytics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
marketplacecommerceanalytics
AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics
diff --git a/services/marketplacedeployment/pom.xml b/services/marketplacedeployment/pom.xml
index 01086f110b89..7178203d554c 100644
--- a/services/marketplacedeployment/pom.xml
+++ b/services/marketplacedeployment/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
marketplacedeployment
AWS Java SDK :: Services :: Marketplace Deployment
diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml
index 6b9e44e421df..2cd82b66f984 100644
--- a/services/marketplaceentitlement/pom.xml
+++ b/services/marketplaceentitlement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
marketplaceentitlement
AWS Java SDK :: Services :: AWS Marketplace Entitlement
diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml
index 0aee2b3d4b70..805cdbd55ef9 100644
--- a/services/marketplacemetering/pom.xml
+++ b/services/marketplacemetering/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
marketplacemetering
AWS Java SDK :: Services :: AWS Marketplace Metering Service
diff --git a/services/marketplacereporting/pom.xml b/services/marketplacereporting/pom.xml
index a1c3160dc1cc..ecd84d391a83 100644
--- a/services/marketplacereporting/pom.xml
+++ b/services/marketplacereporting/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
marketplacereporting
AWS Java SDK :: Services :: Marketplace Reporting
diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml
index a3cba6982356..4202b612302b 100644
--- a/services/mediaconnect/pom.xml
+++ b/services/mediaconnect/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
mediaconnect
AWS Java SDK :: Services :: MediaConnect
diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml
index 6147cd532b97..8f73b58c66e1 100644
--- a/services/mediaconvert/pom.xml
+++ b/services/mediaconvert/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
mediaconvert
diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml
index 74f62cc85fa6..d5a7b181460c 100644
--- a/services/medialive/pom.xml
+++ b/services/medialive/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
medialive
diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml
index 185584f31059..1a1326eb0f55 100644
--- a/services/mediapackage/pom.xml
+++ b/services/mediapackage/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
mediapackage
diff --git a/services/mediapackagev2/pom.xml b/services/mediapackagev2/pom.xml
index aae8d8d06280..b228fbaa98e5 100644
--- a/services/mediapackagev2/pom.xml
+++ b/services/mediapackagev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
mediapackagev2
AWS Java SDK :: Services :: Media Package V2
diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml
index 3a2618f658d7..eb944c224c43 100644
--- a/services/mediapackagevod/pom.xml
+++ b/services/mediapackagevod/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
mediapackagevod
AWS Java SDK :: Services :: MediaPackage Vod
diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml
index 693af5013791..71db30e5bb3d 100644
--- a/services/mediastore/pom.xml
+++ b/services/mediastore/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
mediastore
diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml
index 21ffb5da0488..39ce3eb3a9c4 100644
--- a/services/mediastoredata/pom.xml
+++ b/services/mediastoredata/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
mediastoredata
diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml
index 00fc40eadc55..16452b2c953a 100644
--- a/services/mediatailor/pom.xml
+++ b/services/mediatailor/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
mediatailor
AWS Java SDK :: Services :: MediaTailor
diff --git a/services/medicalimaging/pom.xml b/services/medicalimaging/pom.xml
index 352a0e745d6d..54df25696d5c 100644
--- a/services/medicalimaging/pom.xml
+++ b/services/medicalimaging/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
medicalimaging
AWS Java SDK :: Services :: Medical Imaging
diff --git a/services/memorydb/pom.xml b/services/memorydb/pom.xml
index 9be8c670134d..54d8ec7fa166 100644
--- a/services/memorydb/pom.xml
+++ b/services/memorydb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
memorydb
AWS Java SDK :: Services :: Memory DB
diff --git a/services/mgn/pom.xml b/services/mgn/pom.xml
index f95e620deb76..b748edc89def 100644
--- a/services/mgn/pom.xml
+++ b/services/mgn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
mgn
AWS Java SDK :: Services :: Mgn
diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml
index 95fe814f2d8f..20790dec2328 100644
--- a/services/migrationhub/pom.xml
+++ b/services/migrationhub/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
migrationhub
diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml
index 396a73890bb1..b1f472020fda 100644
--- a/services/migrationhubconfig/pom.xml
+++ b/services/migrationhubconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
migrationhubconfig
AWS Java SDK :: Services :: MigrationHub Config
diff --git a/services/migrationhuborchestrator/pom.xml b/services/migrationhuborchestrator/pom.xml
index 904496860694..40adee1cb74e 100644
--- a/services/migrationhuborchestrator/pom.xml
+++ b/services/migrationhuborchestrator/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
migrationhuborchestrator
AWS Java SDK :: Services :: Migration Hub Orchestrator
diff --git a/services/migrationhubrefactorspaces/pom.xml b/services/migrationhubrefactorspaces/pom.xml
index cb65cec5cf9e..7f2c99317e66 100644
--- a/services/migrationhubrefactorspaces/pom.xml
+++ b/services/migrationhubrefactorspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
migrationhubrefactorspaces
AWS Java SDK :: Services :: Migration Hub Refactor Spaces
diff --git a/services/migrationhubstrategy/pom.xml b/services/migrationhubstrategy/pom.xml
index 6ce48862e58c..3da2a8314932 100644
--- a/services/migrationhubstrategy/pom.xml
+++ b/services/migrationhubstrategy/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
migrationhubstrategy
AWS Java SDK :: Services :: Migration Hub Strategy
diff --git a/services/mpa/pom.xml b/services/mpa/pom.xml
index 7977f54d83e6..836d27b55216 100644
--- a/services/mpa/pom.xml
+++ b/services/mpa/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
mpa
AWS Java SDK :: Services :: MPA
diff --git a/services/mq/pom.xml b/services/mq/pom.xml
index 2da72985aa28..9e7ff884f711 100644
--- a/services/mq/pom.xml
+++ b/services/mq/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
mq
diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml
index 167cac3f1627..3c12167d2d9c 100644
--- a/services/mturk/pom.xml
+++ b/services/mturk/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
mturk
AWS Java SDK :: Services :: Amazon Mechanical Turk Requester
diff --git a/services/mwaa/pom.xml b/services/mwaa/pom.xml
index 0df620d38e80..0a4158d21042 100644
--- a/services/mwaa/pom.xml
+++ b/services/mwaa/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
mwaa
AWS Java SDK :: Services :: MWAA
diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml
index 32f53d20af61..245b744c2a55 100644
--- a/services/neptune/pom.xml
+++ b/services/neptune/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
neptune
AWS Java SDK :: Services :: Neptune
diff --git a/services/neptunedata/pom.xml b/services/neptunedata/pom.xml
index c7801e2b6e6f..315d2bf91bc9 100644
--- a/services/neptunedata/pom.xml
+++ b/services/neptunedata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
neptunedata
AWS Java SDK :: Services :: Neptunedata
diff --git a/services/neptunegraph/pom.xml b/services/neptunegraph/pom.xml
index 6ec8901d6fc1..19247bf03262 100644
--- a/services/neptunegraph/pom.xml
+++ b/services/neptunegraph/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
neptunegraph
AWS Java SDK :: Services :: Neptune Graph
diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml
index d9692b9b0ec1..02f41fd892c1 100644
--- a/services/networkfirewall/pom.xml
+++ b/services/networkfirewall/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
networkfirewall
AWS Java SDK :: Services :: Network Firewall
diff --git a/services/networkflowmonitor/pom.xml b/services/networkflowmonitor/pom.xml
index 50fdf7a9c255..e7986f456aa9 100644
--- a/services/networkflowmonitor/pom.xml
+++ b/services/networkflowmonitor/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
networkflowmonitor
AWS Java SDK :: Services :: Network Flow Monitor
diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml
index 902e4ce94448..632b9279bb8f 100644
--- a/services/networkmanager/pom.xml
+++ b/services/networkmanager/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
networkmanager
AWS Java SDK :: Services :: NetworkManager
diff --git a/services/networkmonitor/pom.xml b/services/networkmonitor/pom.xml
index 411678fa6863..0e978ba0c912 100644
--- a/services/networkmonitor/pom.xml
+++ b/services/networkmonitor/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
networkmonitor
AWS Java SDK :: Services :: Network Monitor
diff --git a/services/notifications/pom.xml b/services/notifications/pom.xml
index 0f18f1797c89..e9cec2c1769a 100644
--- a/services/notifications/pom.xml
+++ b/services/notifications/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
notifications
AWS Java SDK :: Services :: Notifications
diff --git a/services/notificationscontacts/pom.xml b/services/notificationscontacts/pom.xml
index 7641ba8920cd..1aa30d87a440 100644
--- a/services/notificationscontacts/pom.xml
+++ b/services/notificationscontacts/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
notificationscontacts
AWS Java SDK :: Services :: Notifications Contacts
diff --git a/services/oam/pom.xml b/services/oam/pom.xml
index d7c5e2853f5a..c65298c12bfc 100644
--- a/services/oam/pom.xml
+++ b/services/oam/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
oam
AWS Java SDK :: Services :: OAM
diff --git a/services/observabilityadmin/pom.xml b/services/observabilityadmin/pom.xml
index 07b33f747d3c..aa0c364de697 100644
--- a/services/observabilityadmin/pom.xml
+++ b/services/observabilityadmin/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
observabilityadmin
AWS Java SDK :: Services :: Observability Admin
diff --git a/services/odb/pom.xml b/services/odb/pom.xml
index 2a1a99e53215..d2a2d6fe494c 100644
--- a/services/odb/pom.xml
+++ b/services/odb/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
odb
AWS Java SDK :: Services :: Odb
diff --git a/services/omics/pom.xml b/services/omics/pom.xml
index ead594837834..96c372b3542f 100644
--- a/services/omics/pom.xml
+++ b/services/omics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
omics
AWS Java SDK :: Services :: Omics
diff --git a/services/opensearch/pom.xml b/services/opensearch/pom.xml
index ce5844040d6b..775f67b581fc 100644
--- a/services/opensearch/pom.xml
+++ b/services/opensearch/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
opensearch
AWS Java SDK :: Services :: Open Search
diff --git a/services/opensearchserverless/pom.xml b/services/opensearchserverless/pom.xml
index 87064a7f8054..6356d39ba663 100644
--- a/services/opensearchserverless/pom.xml
+++ b/services/opensearchserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
opensearchserverless
AWS Java SDK :: Services :: Open Search Serverless
diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml
index ddbadbc66640..38dd408c185a 100644
--- a/services/organizations/pom.xml
+++ b/services/organizations/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
organizations
AWS Java SDK :: Services :: AWS Organizations
diff --git a/services/osis/pom.xml b/services/osis/pom.xml
index be5c480dd6fa..e290e32434c2 100644
--- a/services/osis/pom.xml
+++ b/services/osis/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
osis
AWS Java SDK :: Services :: OSIS
diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml
index 5aa702d02a37..20b8ee62cf9f 100644
--- a/services/outposts/pom.xml
+++ b/services/outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
outposts
AWS Java SDK :: Services :: Outposts
diff --git a/services/panorama/pom.xml b/services/panorama/pom.xml
index c788725300e6..1a469aca7cf4 100644
--- a/services/panorama/pom.xml
+++ b/services/panorama/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
panorama
AWS Java SDK :: Services :: Panorama
diff --git a/services/partnercentralselling/pom.xml b/services/partnercentralselling/pom.xml
index 7fad5fadf1de..e05c2b3912a0 100644
--- a/services/partnercentralselling/pom.xml
+++ b/services/partnercentralselling/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
partnercentralselling
AWS Java SDK :: Services :: Partner Central Selling
diff --git a/services/paymentcryptography/pom.xml b/services/paymentcryptography/pom.xml
index d5f3d10964ac..6a5d034eda0c 100644
--- a/services/paymentcryptography/pom.xml
+++ b/services/paymentcryptography/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
paymentcryptography
AWS Java SDK :: Services :: Payment Cryptography
diff --git a/services/paymentcryptographydata/pom.xml b/services/paymentcryptographydata/pom.xml
index 0953e29c0305..4f8099287479 100644
--- a/services/paymentcryptographydata/pom.xml
+++ b/services/paymentcryptographydata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
paymentcryptographydata
AWS Java SDK :: Services :: Payment Cryptography Data
diff --git a/services/pcaconnectorad/pom.xml b/services/pcaconnectorad/pom.xml
index e389bb474f95..73043266686e 100644
--- a/services/pcaconnectorad/pom.xml
+++ b/services/pcaconnectorad/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
pcaconnectorad
AWS Java SDK :: Services :: Pca Connector Ad
diff --git a/services/pcaconnectorscep/pom.xml b/services/pcaconnectorscep/pom.xml
index b62a87eb0645..7a03387a15f6 100644
--- a/services/pcaconnectorscep/pom.xml
+++ b/services/pcaconnectorscep/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
pcaconnectorscep
AWS Java SDK :: Services :: Pca Connector Scep
diff --git a/services/pcs/pom.xml b/services/pcs/pom.xml
index 76f152e19efd..35a04f29d294 100644
--- a/services/pcs/pom.xml
+++ b/services/pcs/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
pcs
AWS Java SDK :: Services :: PCS
diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml
index dfe2b2b3a3f0..ec048581c065 100644
--- a/services/personalize/pom.xml
+++ b/services/personalize/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
personalize
AWS Java SDK :: Services :: Personalize
diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml
index 8d9bc57ff272..5350bfbe86e0 100644
--- a/services/personalizeevents/pom.xml
+++ b/services/personalizeevents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
personalizeevents
AWS Java SDK :: Services :: Personalize Events
diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml
index 89f361c7ec9f..2ce89fbaf1ee 100644
--- a/services/personalizeruntime/pom.xml
+++ b/services/personalizeruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
personalizeruntime
AWS Java SDK :: Services :: Personalize Runtime
diff --git a/services/pi/pom.xml b/services/pi/pom.xml
index 3f3a6ea886c1..f44965904807 100644
--- a/services/pi/pom.xml
+++ b/services/pi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
pi
AWS Java SDK :: Services :: PI
diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml
index 307f503020dd..13d9e2525189 100644
--- a/services/pinpoint/pom.xml
+++ b/services/pinpoint/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
pinpoint
AWS Java SDK :: Services :: Amazon Pinpoint
diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml
index a8e7cf411dd4..6b5224b61f4c 100644
--- a/services/pinpointemail/pom.xml
+++ b/services/pinpointemail/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
pinpointemail
AWS Java SDK :: Services :: Pinpoint Email
diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml
index 9b9d2545507f..56a23b91e46b 100644
--- a/services/pinpointsmsvoice/pom.xml
+++ b/services/pinpointsmsvoice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
pinpointsmsvoice
AWS Java SDK :: Services :: Pinpoint SMS Voice
diff --git a/services/pinpointsmsvoicev2/pom.xml b/services/pinpointsmsvoicev2/pom.xml
index e3ac31c44fcf..bb5755158889 100644
--- a/services/pinpointsmsvoicev2/pom.xml
+++ b/services/pinpointsmsvoicev2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
pinpointsmsvoicev2
AWS Java SDK :: Services :: Pinpoint SMS Voice V2
diff --git a/services/pipes/pom.xml b/services/pipes/pom.xml
index 0340fc3df3c6..897af3173bd4 100644
--- a/services/pipes/pom.xml
+++ b/services/pipes/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
pipes
AWS Java SDK :: Services :: Pipes
diff --git a/services/polly/pom.xml b/services/polly/pom.xml
index d4df207dc57a..d9c73e8d8eee 100644
--- a/services/polly/pom.xml
+++ b/services/polly/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
polly
AWS Java SDK :: Services :: Amazon Polly
diff --git a/services/pom.xml b/services/pom.xml
index 22e9692b0ea0..f28baf775587 100644
--- a/services/pom.xml
+++ b/services/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5
+ 2.34.6-SNAPSHOT
services
AWS Java SDK :: Services
diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml
index f5145cbc71d3..8b82bef6e46d 100644
--- a/services/pricing/pom.xml
+++ b/services/pricing/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
pricing
diff --git a/services/proton/pom.xml b/services/proton/pom.xml
index 21011009ee3e..e76406d1f0c4 100644
--- a/services/proton/pom.xml
+++ b/services/proton/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
proton
AWS Java SDK :: Services :: Proton
diff --git a/services/qapps/pom.xml b/services/qapps/pom.xml
index 37e18e93af1a..6e31eef8c347 100644
--- a/services/qapps/pom.xml
+++ b/services/qapps/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
qapps
AWS Java SDK :: Services :: Q Apps
diff --git a/services/qbusiness/pom.xml b/services/qbusiness/pom.xml
index ba43eb648d16..c72b80260012 100644
--- a/services/qbusiness/pom.xml
+++ b/services/qbusiness/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
qbusiness
AWS Java SDK :: Services :: Q Business
diff --git a/services/qconnect/pom.xml b/services/qconnect/pom.xml
index 2077ffa5ee9a..447a755e3ea5 100644
--- a/services/qconnect/pom.xml
+++ b/services/qconnect/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
qconnect
AWS Java SDK :: Services :: Q Connect
diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml
index 94f89b683c42..781e555089ff 100644
--- a/services/qldb/pom.xml
+++ b/services/qldb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
qldb
AWS Java SDK :: Services :: QLDB
diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml
index 3077f0c2c46e..7dddd07aa2cb 100644
--- a/services/qldbsession/pom.xml
+++ b/services/qldbsession/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
qldbsession
AWS Java SDK :: Services :: QLDB Session
diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml
index 8816a295bcdf..c5a3a2ea7a01 100644
--- a/services/quicksight/pom.xml
+++ b/services/quicksight/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
quicksight
AWS Java SDK :: Services :: QuickSight
diff --git a/services/ram/pom.xml b/services/ram/pom.xml
index e772e2892e60..8928c7192c89 100644
--- a/services/ram/pom.xml
+++ b/services/ram/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
ram
AWS Java SDK :: Services :: RAM
diff --git a/services/rbin/pom.xml b/services/rbin/pom.xml
index e4059814bfa3..203b1ad3766b 100644
--- a/services/rbin/pom.xml
+++ b/services/rbin/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
rbin
AWS Java SDK :: Services :: Rbin
diff --git a/services/rds/pom.xml b/services/rds/pom.xml
index 88256c68c41c..7d1532593fef 100644
--- a/services/rds/pom.xml
+++ b/services/rds/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
rds
AWS Java SDK :: Services :: Amazon RDS
diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml
index 4419e12d4681..f9c9fdef57bb 100644
--- a/services/rdsdata/pom.xml
+++ b/services/rdsdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
rdsdata
AWS Java SDK :: Services :: RDS Data
diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml
index 5a871ddb7c27..1b41fe999559 100644
--- a/services/redshift/pom.xml
+++ b/services/redshift/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
redshift
AWS Java SDK :: Services :: Amazon Redshift
diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml
index 1b03c1f39ba0..b61a15b40ad0 100644
--- a/services/redshiftdata/pom.xml
+++ b/services/redshiftdata/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
redshiftdata
AWS Java SDK :: Services :: Redshift Data
diff --git a/services/redshiftserverless/pom.xml b/services/redshiftserverless/pom.xml
index 229b906cdb82..d4795d141028 100644
--- a/services/redshiftserverless/pom.xml
+++ b/services/redshiftserverless/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
redshiftserverless
AWS Java SDK :: Services :: Redshift Serverless
diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml
index 3e5e1d8894bb..d1a1826772a7 100644
--- a/services/rekognition/pom.xml
+++ b/services/rekognition/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
rekognition
AWS Java SDK :: Services :: Amazon Rekognition
diff --git a/services/repostspace/pom.xml b/services/repostspace/pom.xml
index caedab5417b0..d5b1acac3147 100644
--- a/services/repostspace/pom.xml
+++ b/services/repostspace/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
repostspace
AWS Java SDK :: Services :: Repostspace
diff --git a/services/resiliencehub/pom.xml b/services/resiliencehub/pom.xml
index 5af02d47bd00..e6a48d7c9b0c 100644
--- a/services/resiliencehub/pom.xml
+++ b/services/resiliencehub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
resiliencehub
AWS Java SDK :: Services :: Resiliencehub
diff --git a/services/resourceexplorer2/pom.xml b/services/resourceexplorer2/pom.xml
index fcf0efb69b02..dcdcd2f7a577 100644
--- a/services/resourceexplorer2/pom.xml
+++ b/services/resourceexplorer2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
resourceexplorer2
AWS Java SDK :: Services :: Resource Explorer 2
diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml
index 9c3a3c276e1a..f50568922c1f 100644
--- a/services/resourcegroups/pom.xml
+++ b/services/resourcegroups/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
resourcegroups
diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml
index 908cd81500a0..c256b2de3b3f 100644
--- a/services/resourcegroupstaggingapi/pom.xml
+++ b/services/resourcegroupstaggingapi/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
resourcegroupstaggingapi
AWS Java SDK :: Services :: AWS Resource Groups Tagging API
diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml
index a10dc68f10be..bf36a0c2783d 100644
--- a/services/robomaker/pom.xml
+++ b/services/robomaker/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
robomaker
AWS Java SDK :: Services :: RoboMaker
diff --git a/services/rolesanywhere/pom.xml b/services/rolesanywhere/pom.xml
index 71ac86742fbb..95e4a92f0906 100644
--- a/services/rolesanywhere/pom.xml
+++ b/services/rolesanywhere/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
rolesanywhere
AWS Java SDK :: Services :: Roles Anywhere
diff --git a/services/route53/pom.xml b/services/route53/pom.xml
index e96bbaa682e3..0412fa080423 100644
--- a/services/route53/pom.xml
+++ b/services/route53/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
route53
AWS Java SDK :: Services :: Amazon Route53
diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml
index 5ccf25a0cdf6..fc3aba430a7b 100644
--- a/services/route53domains/pom.xml
+++ b/services/route53domains/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
route53domains
AWS Java SDK :: Services :: Amazon Route53 Domains
diff --git a/services/route53profiles/pom.xml b/services/route53profiles/pom.xml
index 24a1ae2c70d0..672f5fef68a5 100644
--- a/services/route53profiles/pom.xml
+++ b/services/route53profiles/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
route53profiles
AWS Java SDK :: Services :: Route53 Profiles
diff --git a/services/route53recoverycluster/pom.xml b/services/route53recoverycluster/pom.xml
index 6d684d8103af..d4cec6e07a94 100644
--- a/services/route53recoverycluster/pom.xml
+++ b/services/route53recoverycluster/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
route53recoverycluster
AWS Java SDK :: Services :: Route53 Recovery Cluster
diff --git a/services/route53recoverycontrolconfig/pom.xml b/services/route53recoverycontrolconfig/pom.xml
index 752413274be4..4451a0157668 100644
--- a/services/route53recoverycontrolconfig/pom.xml
+++ b/services/route53recoverycontrolconfig/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
route53recoverycontrolconfig
AWS Java SDK :: Services :: Route53 Recovery Control Config
diff --git a/services/route53recoveryreadiness/pom.xml b/services/route53recoveryreadiness/pom.xml
index c5afbf040a1f..141e0fdb6128 100644
--- a/services/route53recoveryreadiness/pom.xml
+++ b/services/route53recoveryreadiness/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
route53recoveryreadiness
AWS Java SDK :: Services :: Route53 Recovery Readiness
diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml
index 2ca935fbe163..c18000e524b6 100644
--- a/services/route53resolver/pom.xml
+++ b/services/route53resolver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
route53resolver
AWS Java SDK :: Services :: Route53Resolver
diff --git a/services/rum/pom.xml b/services/rum/pom.xml
index 50f2f6f2c877..eab8108283a7 100644
--- a/services/rum/pom.xml
+++ b/services/rum/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
rum
AWS Java SDK :: Services :: RUM
diff --git a/services/s3/pom.xml b/services/s3/pom.xml
index c80156c8f679..b6c2b45648f3 100644
--- a/services/s3/pom.xml
+++ b/services/s3/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
s3
AWS Java SDK :: Services :: Amazon S3
diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml
index 703d401b8fb1..d349092df916 100644
--- a/services/s3control/pom.xml
+++ b/services/s3control/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
s3control
AWS Java SDK :: Services :: Amazon S3 Control
diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml
index eba74d7b0785..e3f48285bfd5 100644
--- a/services/s3outposts/pom.xml
+++ b/services/s3outposts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
s3outposts
AWS Java SDK :: Services :: S3 Outposts
diff --git a/services/s3tables/pom.xml b/services/s3tables/pom.xml
index eb671442a879..8fbb8b9f4683 100644
--- a/services/s3tables/pom.xml
+++ b/services/s3tables/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
s3tables
AWS Java SDK :: Services :: S3 Tables
diff --git a/services/s3vectors/pom.xml b/services/s3vectors/pom.xml
index 33d2614a11c3..36ebc9bfda14 100644
--- a/services/s3vectors/pom.xml
+++ b/services/s3vectors/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
s3vectors
AWS Java SDK :: Services :: S3 Vectors
diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml
index 8b2543913778..5d16fd99766b 100644
--- a/services/sagemaker/pom.xml
+++ b/services/sagemaker/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
sagemaker
diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml
index 26fb5d9c9ef2..737da3566a80 100644
--- a/services/sagemakera2iruntime/pom.xml
+++ b/services/sagemakera2iruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
sagemakera2iruntime
AWS Java SDK :: Services :: SageMaker A2I Runtime
diff --git a/services/sagemakeredge/pom.xml b/services/sagemakeredge/pom.xml
index 28026fd55007..4b61296102e5 100644
--- a/services/sagemakeredge/pom.xml
+++ b/services/sagemakeredge/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
sagemakeredge
AWS Java SDK :: Services :: Sagemaker Edge
diff --git a/services/sagemakerfeaturestoreruntime/pom.xml b/services/sagemakerfeaturestoreruntime/pom.xml
index f7d0ed85f291..f1597c201f09 100644
--- a/services/sagemakerfeaturestoreruntime/pom.xml
+++ b/services/sagemakerfeaturestoreruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
sagemakerfeaturestoreruntime
AWS Java SDK :: Services :: Sage Maker Feature Store Runtime
diff --git a/services/sagemakergeospatial/pom.xml b/services/sagemakergeospatial/pom.xml
index bf3c675fc913..d51c2672632b 100644
--- a/services/sagemakergeospatial/pom.xml
+++ b/services/sagemakergeospatial/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
sagemakergeospatial
AWS Java SDK :: Services :: Sage Maker Geospatial
diff --git a/services/sagemakermetrics/pom.xml b/services/sagemakermetrics/pom.xml
index 68621f5ad9bb..d5ddc08bc46e 100644
--- a/services/sagemakermetrics/pom.xml
+++ b/services/sagemakermetrics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
sagemakermetrics
AWS Java SDK :: Services :: Sage Maker Metrics
diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml
index bc628322acf5..c2b9accd4185 100644
--- a/services/sagemakerruntime/pom.xml
+++ b/services/sagemakerruntime/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
sagemakerruntime
AWS Java SDK :: Services :: SageMaker Runtime
diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml
index af20d0937ae8..8c77b19cd2d0 100644
--- a/services/savingsplans/pom.xml
+++ b/services/savingsplans/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
savingsplans
AWS Java SDK :: Services :: Savingsplans
diff --git a/services/scheduler/pom.xml b/services/scheduler/pom.xml
index 1af94c172b1f..3641b6cf15a6 100644
--- a/services/scheduler/pom.xml
+++ b/services/scheduler/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
scheduler
AWS Java SDK :: Services :: Scheduler
diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml
index a89dce9f64b3..ec47945c8656 100644
--- a/services/schemas/pom.xml
+++ b/services/schemas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
schemas
AWS Java SDK :: Services :: Schemas
diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml
index 208eb2f389fd..678d9ff9dbd9 100644
--- a/services/secretsmanager/pom.xml
+++ b/services/secretsmanager/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
secretsmanager
AWS Java SDK :: Services :: AWS Secrets Manager
diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml
index d7c1c809dba5..803160aae8c9 100644
--- a/services/securityhub/pom.xml
+++ b/services/securityhub/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
securityhub
AWS Java SDK :: Services :: SecurityHub
diff --git a/services/securityir/pom.xml b/services/securityir/pom.xml
index f31fda1602e2..3b7f12fe24aa 100644
--- a/services/securityir/pom.xml
+++ b/services/securityir/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
securityir
AWS Java SDK :: Services :: Security IR
diff --git a/services/securitylake/pom.xml b/services/securitylake/pom.xml
index 34d5fdc2dced..bd30efe742e6 100644
--- a/services/securitylake/pom.xml
+++ b/services/securitylake/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
securitylake
AWS Java SDK :: Services :: Security Lake
diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml
index bcf27c3030e9..c296d21499e6 100644
--- a/services/serverlessapplicationrepository/pom.xml
+++ b/services/serverlessapplicationrepository/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
serverlessapplicationrepository
diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml
index 9b55b1414dd2..9fe7955e41f2 100644
--- a/services/servicecatalog/pom.xml
+++ b/services/servicecatalog/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
servicecatalog
AWS Java SDK :: Services :: AWS Service Catalog
diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml
index 8f5a2cde8696..032ccdde4874 100644
--- a/services/servicecatalogappregistry/pom.xml
+++ b/services/servicecatalogappregistry/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
servicecatalogappregistry
AWS Java SDK :: Services :: Service Catalog App Registry
diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml
index 645fb3464002..6936cc5ef4d2 100644
--- a/services/servicediscovery/pom.xml
+++ b/services/servicediscovery/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
servicediscovery
diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml
index fd073367a357..67977aa1c589 100644
--- a/services/servicequotas/pom.xml
+++ b/services/servicequotas/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
servicequotas
AWS Java SDK :: Services :: Service Quotas
diff --git a/services/ses/pom.xml b/services/ses/pom.xml
index ccbb1515b36b..61c0d8b15025 100644
--- a/services/ses/pom.xml
+++ b/services/ses/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
ses
AWS Java SDK :: Services :: Amazon SES
diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml
index 3df32f3553e6..edc7f1bbfbcd 100644
--- a/services/sesv2/pom.xml
+++ b/services/sesv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
sesv2
AWS Java SDK :: Services :: SESv2
diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml
index f87ecb247ef8..be9114cf7fdf 100644
--- a/services/sfn/pom.xml
+++ b/services/sfn/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
sfn
AWS Java SDK :: Services :: AWS Step Functions
diff --git a/services/shield/pom.xml b/services/shield/pom.xml
index cad7ed5f376e..67e027fa9cfd 100644
--- a/services/shield/pom.xml
+++ b/services/shield/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
shield
AWS Java SDK :: Services :: AWS Shield
diff --git a/services/signer/pom.xml b/services/signer/pom.xml
index fe30cad6b06a..662a4268b07a 100644
--- a/services/signer/pom.xml
+++ b/services/signer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
signer
AWS Java SDK :: Services :: Signer
diff --git a/services/simspaceweaver/pom.xml b/services/simspaceweaver/pom.xml
index d2acd66aabac..62d9e66542dc 100644
--- a/services/simspaceweaver/pom.xml
+++ b/services/simspaceweaver/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
simspaceweaver
AWS Java SDK :: Services :: Sim Space Weaver
diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml
index f436aedb1192..580655457621 100644
--- a/services/snowball/pom.xml
+++ b/services/snowball/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
snowball
AWS Java SDK :: Services :: Amazon Snowball
diff --git a/services/snowdevicemanagement/pom.xml b/services/snowdevicemanagement/pom.xml
index ef48645809c4..f2516a546253 100644
--- a/services/snowdevicemanagement/pom.xml
+++ b/services/snowdevicemanagement/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
snowdevicemanagement
AWS Java SDK :: Services :: Snow Device Management
diff --git a/services/sns/pom.xml b/services/sns/pom.xml
index 6133c3b94aa2..314f8cead6de 100644
--- a/services/sns/pom.xml
+++ b/services/sns/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
sns
AWS Java SDK :: Services :: Amazon SNS
diff --git a/services/socialmessaging/pom.xml b/services/socialmessaging/pom.xml
index 96fc5f34ffb4..f5e3d055d06d 100644
--- a/services/socialmessaging/pom.xml
+++ b/services/socialmessaging/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
socialmessaging
AWS Java SDK :: Services :: Social Messaging
diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml
index 2b8356f2c943..aafa0fa34538 100644
--- a/services/sqs/pom.xml
+++ b/services/sqs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
sqs
AWS Java SDK :: Services :: Amazon SQS
diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml
index 1f4f662fb981..c3f141801043 100644
--- a/services/ssm/pom.xml
+++ b/services/ssm/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
ssm
AWS Java SDK :: Services :: AWS Simple Systems Management (SSM)
diff --git a/services/ssmcontacts/pom.xml b/services/ssmcontacts/pom.xml
index 08b833d7f3aa..24ad53cd5c4b 100644
--- a/services/ssmcontacts/pom.xml
+++ b/services/ssmcontacts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
ssmcontacts
AWS Java SDK :: Services :: SSM Contacts
diff --git a/services/ssmguiconnect/pom.xml b/services/ssmguiconnect/pom.xml
index ed00327aa945..6d76968314c4 100644
--- a/services/ssmguiconnect/pom.xml
+++ b/services/ssmguiconnect/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
ssmguiconnect
AWS Java SDK :: Services :: SSM Gui Connect
diff --git a/services/ssmincidents/pom.xml b/services/ssmincidents/pom.xml
index c9989f85e1ce..4fb30d989c7d 100644
--- a/services/ssmincidents/pom.xml
+++ b/services/ssmincidents/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
ssmincidents
AWS Java SDK :: Services :: SSM Incidents
diff --git a/services/ssmquicksetup/pom.xml b/services/ssmquicksetup/pom.xml
index e47af221be5c..28b6dc4abd86 100644
--- a/services/ssmquicksetup/pom.xml
+++ b/services/ssmquicksetup/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
ssmquicksetup
AWS Java SDK :: Services :: SSM Quick Setup
diff --git a/services/ssmsap/pom.xml b/services/ssmsap/pom.xml
index 1557772a1ec8..acb69090b295 100644
--- a/services/ssmsap/pom.xml
+++ b/services/ssmsap/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
ssmsap
AWS Java SDK :: Services :: Ssm Sap
diff --git a/services/sso/pom.xml b/services/sso/pom.xml
index 812957ccf715..1b9c643ba46a 100644
--- a/services/sso/pom.xml
+++ b/services/sso/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
sso
AWS Java SDK :: Services :: SSO
diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml
index e42f3153b267..29ec5f67c075 100644
--- a/services/ssoadmin/pom.xml
+++ b/services/ssoadmin/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
ssoadmin
AWS Java SDK :: Services :: SSO Admin
diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml
index b1d6d4a4f31a..f6e1039e23a3 100644
--- a/services/ssooidc/pom.xml
+++ b/services/ssooidc/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
ssooidc
AWS Java SDK :: Services :: SSO OIDC
diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml
index db6850e0b87b..22e8552bbf15 100644
--- a/services/storagegateway/pom.xml
+++ b/services/storagegateway/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
storagegateway
AWS Java SDK :: Services :: AWS Storage Gateway
diff --git a/services/sts/pom.xml b/services/sts/pom.xml
index 966f189e407c..ff14aff3b5f0 100644
--- a/services/sts/pom.xml
+++ b/services/sts/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
sts
AWS Java SDK :: Services :: AWS STS
diff --git a/services/supplychain/pom.xml b/services/supplychain/pom.xml
index baa57672de66..959ba82ca780 100644
--- a/services/supplychain/pom.xml
+++ b/services/supplychain/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
supplychain
AWS Java SDK :: Services :: Supply Chain
diff --git a/services/support/pom.xml b/services/support/pom.xml
index b254e0a41505..d5e737baf462 100644
--- a/services/support/pom.xml
+++ b/services/support/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
support
AWS Java SDK :: Services :: AWS Support
diff --git a/services/supportapp/pom.xml b/services/supportapp/pom.xml
index d35a2b248279..e2c2d32d0aef 100644
--- a/services/supportapp/pom.xml
+++ b/services/supportapp/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
supportapp
AWS Java SDK :: Services :: Support App
diff --git a/services/swf/pom.xml b/services/swf/pom.xml
index 38d012d813bf..569e362cb307 100644
--- a/services/swf/pom.xml
+++ b/services/swf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
swf
AWS Java SDK :: Services :: Amazon SWF
diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml
index b9735cea9af1..881ecb7408b5 100644
--- a/services/synthetics/pom.xml
+++ b/services/synthetics/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
synthetics
AWS Java SDK :: Services :: Synthetics
diff --git a/services/taxsettings/pom.xml b/services/taxsettings/pom.xml
index 34ebef9f3b12..008d551f99ab 100644
--- a/services/taxsettings/pom.xml
+++ b/services/taxsettings/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
taxsettings
AWS Java SDK :: Services :: Tax Settings
diff --git a/services/textract/pom.xml b/services/textract/pom.xml
index f92efeb6e466..ad89a6226fc1 100644
--- a/services/textract/pom.xml
+++ b/services/textract/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
textract
AWS Java SDK :: Services :: Textract
diff --git a/services/timestreaminfluxdb/pom.xml b/services/timestreaminfluxdb/pom.xml
index 48d860b0c56a..7aa0706db776 100644
--- a/services/timestreaminfluxdb/pom.xml
+++ b/services/timestreaminfluxdb/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
timestreaminfluxdb
AWS Java SDK :: Services :: Timestream Influx DB
diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml
index bb84e3f2bf1d..a1d9906d2282 100644
--- a/services/timestreamquery/pom.xml
+++ b/services/timestreamquery/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
timestreamquery
AWS Java SDK :: Services :: Timestream Query
diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml
index dee71c52aabc..1480abe8a98e 100644
--- a/services/timestreamwrite/pom.xml
+++ b/services/timestreamwrite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
timestreamwrite
AWS Java SDK :: Services :: Timestream Write
diff --git a/services/tnb/pom.xml b/services/tnb/pom.xml
index ce0e9880ac3b..20e36d209bad 100644
--- a/services/tnb/pom.xml
+++ b/services/tnb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
tnb
AWS Java SDK :: Services :: Tnb
diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml
index ae52fdfb82c5..29ea00e56023 100644
--- a/services/transcribe/pom.xml
+++ b/services/transcribe/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
transcribe
AWS Java SDK :: Services :: Transcribe
diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml
index bd62c2b959be..a84a34e5a64f 100644
--- a/services/transcribestreaming/pom.xml
+++ b/services/transcribestreaming/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
transcribestreaming
AWS Java SDK :: Services :: AWS Transcribe Streaming
diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml
index 8c243d275c4a..199a754f2103 100644
--- a/services/transfer/pom.xml
+++ b/services/transfer/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
transfer
AWS Java SDK :: Services :: Transfer
diff --git a/services/translate/pom.xml b/services/translate/pom.xml
index f5dd2dc15af0..c8a7926241ca 100644
--- a/services/translate/pom.xml
+++ b/services/translate/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
translate
diff --git a/services/trustedadvisor/pom.xml b/services/trustedadvisor/pom.xml
index 2c99b060de81..e12a01dfb8cd 100644
--- a/services/trustedadvisor/pom.xml
+++ b/services/trustedadvisor/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
trustedadvisor
AWS Java SDK :: Services :: Trusted Advisor
diff --git a/services/verifiedpermissions/pom.xml b/services/verifiedpermissions/pom.xml
index 9ef4ba70a5f6..d82844889b90 100644
--- a/services/verifiedpermissions/pom.xml
+++ b/services/verifiedpermissions/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
verifiedpermissions
AWS Java SDK :: Services :: Verified Permissions
diff --git a/services/voiceid/pom.xml b/services/voiceid/pom.xml
index 0f67fcc78b46..8485e964c3aa 100644
--- a/services/voiceid/pom.xml
+++ b/services/voiceid/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
voiceid
AWS Java SDK :: Services :: Voice ID
diff --git a/services/vpclattice/pom.xml b/services/vpclattice/pom.xml
index 8729bb27da46..90ee2ce50afe 100644
--- a/services/vpclattice/pom.xml
+++ b/services/vpclattice/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
vpclattice
AWS Java SDK :: Services :: VPC Lattice
diff --git a/services/waf/pom.xml b/services/waf/pom.xml
index ded73933bedf..2cebbb487665 100644
--- a/services/waf/pom.xml
+++ b/services/waf/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
waf
AWS Java SDK :: Services :: AWS WAF
diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml
index c351656728c9..bc904c9d4d7e 100644
--- a/services/wafv2/pom.xml
+++ b/services/wafv2/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
wafv2
AWS Java SDK :: Services :: WAFV2
diff --git a/services/wellarchitected/pom.xml b/services/wellarchitected/pom.xml
index e70489916bf9..917bd83d7ae8 100644
--- a/services/wellarchitected/pom.xml
+++ b/services/wellarchitected/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
wellarchitected
AWS Java SDK :: Services :: Well Architected
diff --git a/services/wisdom/pom.xml b/services/wisdom/pom.xml
index dd28c287f45d..de98a26cd7a0 100644
--- a/services/wisdom/pom.xml
+++ b/services/wisdom/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
wisdom
AWS Java SDK :: Services :: Wisdom
diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml
index 171d27bc2ebc..9e26cd319ae9 100644
--- a/services/workdocs/pom.xml
+++ b/services/workdocs/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
workdocs
AWS Java SDK :: Services :: Amazon WorkDocs
diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml
index 262388dd2267..694ae6d7c541 100644
--- a/services/workmail/pom.xml
+++ b/services/workmail/pom.xml
@@ -20,7 +20,7 @@
services
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
workmail
diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml
index 1a185efc4c40..27669cb885e4 100644
--- a/services/workmailmessageflow/pom.xml
+++ b/services/workmailmessageflow/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
workmailmessageflow
AWS Java SDK :: Services :: WorkMailMessageFlow
diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml
index 8777d53ec53b..ca75a096a9d9 100644
--- a/services/workspaces/pom.xml
+++ b/services/workspaces/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
workspaces
AWS Java SDK :: Services :: Amazon WorkSpaces
diff --git a/services/workspacesinstances/pom.xml b/services/workspacesinstances/pom.xml
index 0c7f53e1e167..6269a9760def 100644
--- a/services/workspacesinstances/pom.xml
+++ b/services/workspacesinstances/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
workspacesinstances
AWS Java SDK :: Services :: Workspaces Instances
diff --git a/services/workspacesthinclient/pom.xml b/services/workspacesthinclient/pom.xml
index 93dceb016cf6..1a94e2fdcd42 100644
--- a/services/workspacesthinclient/pom.xml
+++ b/services/workspacesthinclient/pom.xml
@@ -17,7 +17,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
workspacesthinclient
AWS Java SDK :: Services :: Work Spaces Thin Client
diff --git a/services/workspacesweb/pom.xml b/services/workspacesweb/pom.xml
index dbc0076021e2..41fc8fa5ad5e 100644
--- a/services/workspacesweb/pom.xml
+++ b/services/workspacesweb/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
workspacesweb
AWS Java SDK :: Services :: Work Spaces Web
diff --git a/services/xray/pom.xml b/services/xray/pom.xml
index 5337ce119ba9..fe2d957eccf8 100644
--- a/services/xray/pom.xml
+++ b/services/xray/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
services
- 2.34.5
+ 2.34.6-SNAPSHOT
xray
AWS Java SDK :: Services :: AWS X-Ray
diff --git a/test/architecture-tests/pom.xml b/test/architecture-tests/pom.xml
index 8804beab9cec..ba7527e7d41c 100644
--- a/test/architecture-tests/pom.xml
+++ b/test/architecture-tests/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
../../pom.xml
diff --git a/test/auth-tests/pom.xml b/test/auth-tests/pom.xml
index f2ddb92db16f..d65c94e0516c 100644
--- a/test/auth-tests/pom.xml
+++ b/test/auth-tests/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/bundle-logging-bridge-binding-test/pom.xml b/test/bundle-logging-bridge-binding-test/pom.xml
index 40f7dedb28cf..4d4a078ae143 100644
--- a/test/bundle-logging-bridge-binding-test/pom.xml
+++ b/test/bundle-logging-bridge-binding-test/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/bundle-shading-tests/pom.xml b/test/bundle-shading-tests/pom.xml
index d2155367217f..f92fc1fe390f 100644
--- a/test/bundle-shading-tests/pom.xml
+++ b/test/bundle-shading-tests/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml
index 2a00c0af4bbb..b88d42cf167e 100644
--- a/test/codegen-generated-classes-test/pom.xml
+++ b/test/codegen-generated-classes-test/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
../../pom.xml
diff --git a/test/crt-unavailable-tests/pom.xml b/test/crt-unavailable-tests/pom.xml
index 16311499ba24..1297ec852a7a 100644
--- a/test/crt-unavailable-tests/pom.xml
+++ b/test/crt-unavailable-tests/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/http-client-benchmarks/pom.xml b/test/http-client-benchmarks/pom.xml
index b14093331279..d8f7473df3fb 100644
--- a/test/http-client-benchmarks/pom.xml
+++ b/test/http-client-benchmarks/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5
+ 2.34.6-SNAPSHOT
../../pom.xml
diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml
index 36fc065e636f..a65f2f2b0ede 100644
--- a/test/http-client-tests/pom.xml
+++ b/test/http-client-tests/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
../../pom.xml
http-client-tests
diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml
index 90087defe24b..5951b6e25a16 100644
--- a/test/module-path-tests/pom.xml
+++ b/test/module-path-tests/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/old-client-version-compatibility-test/pom.xml b/test/old-client-version-compatibility-test/pom.xml
index 4507bd3040f2..e597900fd29f 100644
--- a/test/old-client-version-compatibility-test/pom.xml
+++ b/test/old-client-version-compatibility-test/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
../../pom.xml
diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml
index 4681413a8fb4..4834910679a9 100644
--- a/test/protocol-tests-core/pom.xml
+++ b/test/protocol-tests-core/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml
index 6e1b4211831a..21d33d923be0 100644
--- a/test/protocol-tests/pom.xml
+++ b/test/protocol-tests/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/region-testing/pom.xml b/test/region-testing/pom.xml
index 500bcb80ac32..bdd3a9a1f822 100644
--- a/test/region-testing/pom.xml
+++ b/test/region-testing/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/ruleset-testing-core/pom.xml b/test/ruleset-testing-core/pom.xml
index 0f8065d03034..91315d2bcc3d 100644
--- a/test/ruleset-testing-core/pom.xml
+++ b/test/ruleset-testing-core/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/s3-benchmarks/pom.xml b/test/s3-benchmarks/pom.xml
index 7d93da4b7f38..329ae215e367 100644
--- a/test/s3-benchmarks/pom.xml
+++ b/test/s3-benchmarks/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/s3-tests/pom.xml b/test/s3-tests/pom.xml
index 86686edfd8c5..c1d86ba7a07a 100644
--- a/test/s3-tests/pom.xml
+++ b/test/s3-tests/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml
index 5a0af641371a..c320859c387c 100644
--- a/test/sdk-benchmarks/pom.xml
+++ b/test/sdk-benchmarks/pom.xml
@@ -19,7 +19,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5
+ 2.34.6-SNAPSHOT
../../pom.xml
diff --git a/test/sdk-native-image-test/pom.xml b/test/sdk-native-image-test/pom.xml
index 23904241d609..e242f8f2c5d1 100644
--- a/test/sdk-native-image-test/pom.xml
+++ b/test/sdk-native-image-test/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml
index d5de07ec8f8b..dc252be93732 100644
--- a/test/service-test-utils/pom.xml
+++ b/test/service-test-utils/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5
+ 2.34.6-SNAPSHOT
../../pom.xml
service-test-utils
diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml
index fd36424b0892..6247376e54f2 100644
--- a/test/stability-tests/pom.xml
+++ b/test/stability-tests/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml
index 6804df6d8c41..8406b624e450 100644
--- a/test/test-utils/pom.xml
+++ b/test/test-utils/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5
+ 2.34.6-SNAPSHOT
../../pom.xml
test-utils
diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml
index ea881f3f3c13..b2c32e88c837 100644
--- a/test/tests-coverage-reporting/pom.xml
+++ b/test/tests-coverage-reporting/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
../../pom.xml
4.0.0
diff --git a/test/v2-migration-tests/pom.xml b/test/v2-migration-tests/pom.xml
index bee48b5e582f..65816969d87d 100644
--- a/test/v2-migration-tests/pom.xml
+++ b/test/v2-migration-tests/pom.xml
@@ -22,7 +22,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5
+ 2.34.6-SNAPSHOT
../..
diff --git a/third-party/pom.xml b/third-party/pom.xml
index c4780571358b..58ebb262f993 100644
--- a/third-party/pom.xml
+++ b/third-party/pom.xml
@@ -21,7 +21,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
third-party
diff --git a/third-party/third-party-jackson-core/pom.xml b/third-party/third-party-jackson-core/pom.xml
index 48399eca9c36..2f102d9a75e7 100644
--- a/third-party/third-party-jackson-core/pom.xml
+++ b/third-party/third-party-jackson-core/pom.xml
@@ -20,7 +20,7 @@
third-party
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
diff --git a/third-party/third-party-jackson-dataformat-cbor/pom.xml b/third-party/third-party-jackson-dataformat-cbor/pom.xml
index 3a89ff9432a7..eafc63a7f5eb 100644
--- a/third-party/third-party-jackson-dataformat-cbor/pom.xml
+++ b/third-party/third-party-jackson-dataformat-cbor/pom.xml
@@ -20,7 +20,7 @@
third-party
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
diff --git a/third-party/third-party-slf4j-api/pom.xml b/third-party/third-party-slf4j-api/pom.xml
index 091858edef25..a433f4a5483f 100644
--- a/third-party/third-party-slf4j-api/pom.xml
+++ b/third-party/third-party-slf4j-api/pom.xml
@@ -20,7 +20,7 @@
third-party
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
diff --git a/utils-lite/pom.xml b/utils-lite/pom.xml
index a46c28c4169a..36cf9893198f 100644
--- a/utils-lite/pom.xml
+++ b/utils-lite/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5
+ 2.34.6-SNAPSHOT
utils-lite
AWS Java SDK :: Utils Lite
diff --git a/utils/pom.xml b/utils/pom.xml
index 870c17d809ce..b5095aebce77 100644
--- a/utils/pom.xml
+++ b/utils/pom.xml
@@ -20,7 +20,7 @@
aws-sdk-java-pom
software.amazon.awssdk
- 2.34.5
+ 2.34.6-SNAPSHOT
4.0.0
diff --git a/v2-migration/pom.xml b/v2-migration/pom.xml
index e2f293eb9f5c..bcf7046a396c 100644
--- a/v2-migration/pom.xml
+++ b/v2-migration/pom.xml
@@ -21,7 +21,7 @@
software.amazon.awssdk
aws-sdk-java-pom
- 2.34.5
+ 2.34.6-SNAPSHOT
../pom.xml