Skip to content

Commit 8e9a608

Browse files
author
AWS
committed
Amazon Connect Cases Update: Introduces CustomEntity as part of the UserUnion data type. This field is used to indicate the entity who is performing the API action.
1 parent c27e77b commit 8e9a608

File tree

2 files changed

+20
-3
lines changed

2 files changed

+20
-3
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 Cases",
4+
"contributor": "",
5+
"description": "Introduces CustomEntity as part of the UserUnion data type. This field is used to indicate the entity who is performing the API action."
6+
}

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

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1743,6 +1743,13 @@
17431743
"type":"timestamp",
17441744
"timestampFormat":"iso8601"
17451745
},
1746+
"CustomEntity":{
1747+
"type":"string",
1748+
"max":500,
1749+
"min":1,
1750+
"pattern":"^[a-zA-Z0-9_\\-\\.@:/ ]*[a-zA-Z0-9_\\-\\.@:/]$",
1751+
"sensitive":true
1752+
},
17461753
"DeleteCaseRuleRequest":{
17471754
"type":"structure",
17481755
"required":[
@@ -3441,7 +3448,7 @@
34413448
"SearchCasesRequestMaxResultsInteger":{
34423449
"type":"integer",
34433450
"box":true,
3444-
"max":25,
3451+
"max":100,
34453452
"min":1
34463453
},
34473454
"SearchCasesRequestSearchTermString":{
@@ -3472,7 +3479,7 @@
34723479
"SearchCasesResponseCasesList":{
34733480
"type":"list",
34743481
"member":{"shape":"SearchCasesResponseItem"},
3475-
"max":25,
3482+
"max":100,
34763483
"min":0
34773484
},
34783485
"SearchCasesResponseItem":{
@@ -4165,12 +4172,16 @@
41654172
"UserUnion":{
41664173
"type":"structure",
41674174
"members":{
4175+
"customEntity":{
4176+
"shape":"CustomEntity",
4177+
"documentation":"<p>Any provided entity.</p>"
4178+
},
41684179
"userArn":{
41694180
"shape":"UserArn",
41704181
"documentation":"<p>Represents the Amazon Connect ARN of the user.</p>"
41714182
}
41724183
},
4173-
"documentation":"<p>Represents the identity of the person who performed the action.</p>",
4184+
"documentation":"<p>Represents the entity that performed the action.</p>",
41744185
"union":true
41754186
},
41764187
"ValidationException":{

0 commit comments

Comments
 (0)