Skip to content

Commit bd12159

Browse files
author
AWS
committed
Amazon Connect Service Update: This release supports adding NotAttributeCondition and Range to the RoutingCriteria object.
1 parent eaaf871 commit bd12159

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "Amazon Connect Service",
4+
"contributor": "",
5+
"description": "This release supports adding NotAttributeCondition and Range to the RoutingCriteria object."
6+
}

services/connect/src/main/resources/codegen-resources/service-2.json

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6067,6 +6067,10 @@
60676067
"shape":"NullableProficiencyLevel",
60686068
"documentation":"<p>The proficiency level of the condition.</p>"
60696069
},
6070+
"Range":{
6071+
"shape":"Range",
6072+
"documentation":"<p>An Object to define the minimum and maximum proficiency levels.</p>"
6073+
},
60706074
"MatchCriteria":{
60716075
"shape":"MatchCriteria",
60726076
"documentation":"<p>An object to define <code>AgentsCriteria</code>.</p>"
@@ -12755,7 +12759,8 @@
1275512759
"OrExpression":{
1275612760
"shape":"Expressions",
1275712761
"documentation":"<p>List of routing expressions which will be OR-ed together.</p>"
12758-
}
12762+
},
12763+
"NotAttributeCondition":{"shape":"AttributeCondition"}
1275912764
},
1276012765
"documentation":"<p>A tagged union to specify expression for a routing step.</p>"
1276112766
},
@@ -19164,6 +19169,20 @@
1916419169
"max":50,
1916519170
"min":1
1916619171
},
19172+
"Range":{
19173+
"type":"structure",
19174+
"members":{
19175+
"MinProficiencyLevel":{
19176+
"shape":"NullableProficiencyLevel",
19177+
"documentation":"<p>The minimum proficiency level of the range.</p>"
19178+
},
19179+
"MaxProficiencyLevel":{
19180+
"shape":"NullableProficiencyLevel",
19181+
"documentation":"<p>The maximum proficiency level of the range.</p>"
19182+
}
19183+
},
19184+
"documentation":"<p>An Object to define the minimum and maximum proficiency levels.</p>"
19185+
},
1916719186
"ReadOnlyFieldInfo":{
1916819187
"type":"structure",
1916919188
"members":{
@@ -22203,7 +22222,7 @@
2220322222
},
2220422223
"UploadUrlMetadata":{
2220522224
"shape":"UploadUrlMetadata",
22206-
"documentation":"<p>Information to be used while uploading the attached file. </p>"
22225+
"documentation":"<p>The headers to be provided while uploading the file to the URL.</p>"
2220722226
}
2220822227
},
2220922228
"documentation":"Response from StartAttachedFileUpload API."

0 commit comments

Comments
 (0)