Skip to content

Commit

Permalink
Release v1.44.0 (2022-04-25) (#4375)
Browse files Browse the repository at this point in the history
Release v1.44.0 (2022-04-25)
===

### Service Client Updates
* `service/connect`: Updates service API, documentation, and paginators
* `service/gamelift`: Updates service documentation
  * Documentation updates for Amazon GameLift.
* `service/mq`: Updates service API and documentation
  * This release adds the CRITICAL_ACTION_REQUIRED broker state and the ActionRequired API property. CRITICAL_ACTION_REQUIRED informs you when your broker is degraded. ActionRequired provides you with a code which you can use to find instructions in the Developer Guide on how to resolve the issue.
* `service/rds-data`: Updates service API and documentation
* `service/securityhub`: Updates service API and documentation

### SDK Features
* `aws/request`: Fixes bug in WithSetRequestHeaders where the header key was added to the header map directly
  * Addresses an issue where the header keys being added were being added directly to the header map, and did not have the canonical header casing applied. This introduced bugs where instead of overwriting existing header key, it added another map entry.
  • Loading branch information
aws-sdk-go-automation committed Apr 25, 2022
1 parent 181965c commit e42fdf2
Show file tree
Hide file tree
Showing 22 changed files with 1,785 additions and 341 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
Release v1.44.0 (2022-04-25)
===

### Service Client Updates
* `service/connect`: Updates service API, documentation, and paginators
* `service/gamelift`: Updates service documentation
* Documentation updates for Amazon GameLift.
* `service/mq`: Updates service API and documentation
* This release adds the CRITICAL_ACTION_REQUIRED broker state and the ActionRequired API property. CRITICAL_ACTION_REQUIRED informs you when your broker is degraded. ActionRequired provides you with a code which you can use to find instructions in the Developer Guide on how to resolve the issue.
* `service/rds-data`: Updates service API and documentation
* `service/securityhub`: Updates service API and documentation

### SDK Features
* `aws/request`: Fixes bug in WithSetRequestHeaders where the header key was added to the header map directly
* Addresses an issue where the header keys being added were being added directly to the header map, and did not have the canonical header casing applied. This introduced bugs where instead of overwriting existing header key, it added another map entry.

Release v1.43.45 (2022-04-22)
===

Expand Down
2 changes: 0 additions & 2 deletions CHANGELOG_PENDING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
### SDK Features
* `aws/request`: Fixes bug in WithSetRequestHeaders where the header key was added to the header map directly
* Addresses an issue where the header keys being added were being added directly to the header map, and did not have the canonical header casing applied. This introduced bugs where instead of overwriting existing header key, it added another map entry.

### SDK Enhancements

Expand Down
2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.43.45"
const SDKVersion = "1.44.0"
141 changes: 141 additions & 0 deletions models/apis/connect/2017-08-08/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1587,6 +1587,22 @@
{"shape":"AccessDeniedException"}
]
},
"SearchUsers":{
"name":"SearchUsers",
"http":{
"method":"POST",
"requestUri":"/search-users"
},
"input":{"shape":"SearchUsersRequest"},
"output":{"shape":"SearchUsersResponse"},
"errors":[
{"shape":"InvalidRequestException"},
{"shape":"InvalidParameterException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ThrottlingException"},
{"shape":"InternalServiceException"}
]
},
"SearchVocabularies":{
"name":"SearchVocabularies",
"http":{
Expand Down Expand Up @@ -2390,6 +2406,7 @@
"AwaitAnswerMachinePrompt":{"shape":"Boolean"}
}
},
"ApproximateTotalCount":{"type":"long"},
"AssociateApprovedOriginRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -2931,6 +2948,14 @@
"key":{"shape":"ReferenceKey"},
"value":{"shape":"Reference"}
},
"ControlPlaneTagFilter":{
"type":"structure",
"members":{
"OrConditions":{"shape":"TagOrConditionList"},
"AndConditions":{"shape":"TagAndConditionList"},
"TagCondition":{"shape":"TagCondition"}
}
},
"CreateAgentStatusRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -4452,7 +4477,21 @@
"Tags":{"shape":"TagMap"}
}
},
"HierarchyGroupCondition":{
"type":"structure",
"members":{
"Value":{"shape":"String"},
"HierarchyGroupMatchType":{"shape":"HierarchyGroupMatchType"}
}
},
"HierarchyGroupId":{"type":"string"},
"HierarchyGroupMatchType":{
"type":"string",
"enum":[
"EXACT",
"WITH_CHILD_GROUPS"
]
},
"HierarchyGroupName":{"type":"string"},
"HierarchyGroupSummary":{
"type":"structure",
Expand Down Expand Up @@ -5908,6 +5947,11 @@
"min":0
},
"NextToken":{"type":"string"},
"NextToken2500":{
"type":"string",
"max":2500,
"min":1
},
"Origin":{
"type":"string",
"max":267
Expand Down Expand Up @@ -6762,6 +6806,27 @@
"AvailableNumbersList":{"shape":"AvailableNumbersList"}
}
},
"SearchUsersRequest":{
"type":"structure",
"members":{
"InstanceId":{"shape":"InstanceId"},
"NextToken":{"shape":"NextToken2500"},
"MaxResults":{
"shape":"MaxResult100",
"box":true
},
"SearchFilter":{"shape":"UserSearchFilter"},
"SearchCriteria":{"shape":"UserSearchCriteria"}
}
},
"SearchUsersResponse":{
"type":"structure",
"members":{
"Users":{"shape":"UserSearchSummaryList"},
"NextToken":{"shape":"NextToken2500"},
"ApproximateTotalCount":{"shape":"ApproximateTotalCount"}
}
},
"SearchVocabulariesRequest":{
"type":"structure",
"required":["InstanceId"],
Expand Down Expand Up @@ -7068,6 +7133,22 @@
"min":1
},
"String":{"type":"string"},
"StringComparisonType":{
"type":"string",
"enum":[
"STARTS_WITH",
"CONTAINS",
"EXACT"
]
},
"StringCondition":{
"type":"structure",
"members":{
"FieldName":{"shape":"String"},
"Value":{"shape":"String"},
"ComparisonType":{"shape":"StringComparisonType"}
}
},
"SupportedMessagingContentType":{
"type":"string",
"max":100,
Expand Down Expand Up @@ -7095,6 +7176,17 @@
"members":{
}
},
"TagAndConditionList":{
"type":"list",
"member":{"shape":"TagCondition"}
},
"TagCondition":{
"type":"structure",
"members":{
"TagKey":{"shape":"String"},
"TagValue":{"shape":"String"}
}
},
"TagKey":{
"type":"string",
"max":128,
Expand All @@ -7114,6 +7206,10 @@
"max":50,
"min":1
},
"TagOrConditionList":{
"type":"list",
"member":{"shape":"TagAndConditionList"}
},
"TagResourceRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -7961,6 +8057,13 @@
"Email":{"shape":"Email"}
}
},
"UserIdentityInfoLite":{
"type":"structure",
"members":{
"FirstName":{"shape":"AgentFirstName"},
"LastName":{"shape":"AgentLastName"}
}
},
"UserNotFoundException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -7990,6 +8093,44 @@
"ContactFlowId":{"shape":"ContactFlowId"}
}
},
"UserSearchConditionList":{
"type":"list",
"member":{"shape":"UserSearchCriteria"}
},
"UserSearchCriteria":{
"type":"structure",
"members":{
"OrConditions":{"shape":"UserSearchConditionList"},
"AndConditions":{"shape":"UserSearchConditionList"},
"StringCondition":{"shape":"StringCondition"},
"HierarchyGroupCondition":{"shape":"HierarchyGroupCondition"}
}
},
"UserSearchFilter":{
"type":"structure",
"members":{
"TagFilter":{"shape":"ControlPlaneTagFilter"}
}
},
"UserSearchSummary":{
"type":"structure",
"members":{
"Arn":{"shape":"ARN"},
"DirectoryUserId":{"shape":"DirectoryUserId"},
"HierarchyGroupId":{"shape":"HierarchyGroupId"},
"Id":{"shape":"UserId"},
"IdentityInfo":{"shape":"UserIdentityInfoLite"},
"PhoneConfig":{"shape":"UserPhoneConfig"},
"RoutingProfileId":{"shape":"RoutingProfileId"},
"SecurityProfileIds":{"shape":"SecurityProfileIds"},
"Tags":{"shape":"TagMap"},
"Username":{"shape":"AgentUsername"}
}
},
"UserSearchSummaryList":{
"type":"list",
"member":{"shape":"UserSearchSummary"}
},
"UserSummary":{
"type":"structure",
"members":{
Expand Down

0 comments on commit e42fdf2

Please sign in to comment.