Skip to content

Commit d117027

Browse files
Updated API models and rebuilt service gems.
1 parent 6d48c72 commit d117027

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+2214
-180
lines changed

Diff for: apis/connectcases/2022-10-03/api-2.json

+108-7
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,14 @@
55
"endpointPrefix":"cases",
66
"jsonVersion":"1.1",
77
"protocol":"rest-json",
8+
"protocols":["rest-json"],
89
"serviceAbbreviation":"ConnectCases",
910
"serviceFullName":"Amazon Connect Cases",
1011
"serviceId":"ConnectCases",
1112
"signatureVersion":"v4",
1213
"signingName":"cases",
13-
"uid":"connectcases-2022-10-03"
14+
"uid":"connectcases-2022-10-03",
15+
"auth":["aws.auth#sigv4"]
1416
},
1517
"operations":{
1618
"BatchGetCaseRule":{
@@ -549,7 +551,8 @@
549551
{"shape":"ResourceNotFoundException"},
550552
{"shape":"ValidationException"},
551553
{"shape":"ThrottlingException"},
552-
{"shape":"AccessDeniedException"}
554+
{"shape":"AccessDeniedException"},
555+
{"shape":"ConflictException"}
553556
]
554557
},
555558
"SearchCases":{
@@ -1767,7 +1770,7 @@
17671770
},
17681771
"FieldValueUnionStringValueString":{
17691772
"type":"string",
1770-
"max":1500,
1773+
"max":3000,
17711774
"min":0
17721775
},
17731776
"FileArn":{
@@ -2460,7 +2463,8 @@
24602463
"members":{
24612464
"comment":{"shape":"CommentContent"},
24622465
"contact":{"shape":"ContactContent"},
2463-
"file":{"shape":"FileContent"}
2466+
"file":{"shape":"FileContent"},
2467+
"sla":{"shape":"SlaContent"}
24642468
},
24652469
"union":true
24662470
},
@@ -2481,7 +2485,8 @@
24812485
"members":{
24822486
"comment":{"shape":"CommentContent"},
24832487
"contact":{"shape":"Contact"},
2484-
"file":{"shape":"FileContent"}
2488+
"file":{"shape":"FileContent"},
2489+
"sla":{"shape":"SlaInputContent"}
24852490
},
24862491
"union":true
24872492
},
@@ -2490,15 +2495,17 @@
24902495
"enum":[
24912496
"Contact",
24922497
"Comment",
2493-
"File"
2498+
"File",
2499+
"Sla"
24942500
]
24952501
},
24962502
"RelatedItemTypeFilter":{
24972503
"type":"structure",
24982504
"members":{
24992505
"comment":{"shape":"CommentFilter"},
25002506
"contact":{"shape":"ContactFilter"},
2501-
"file":{"shape":"FileFilter"}
2507+
"file":{"shape":"FileFilter"},
2508+
"sla":{"shape":"SlaFilter"}
25022509
},
25032510
"union":true
25042511
},
@@ -2712,6 +2719,94 @@
27122719
},
27132720
"exception":true
27142721
},
2722+
"SlaCompletionTime":{
2723+
"type":"timestamp",
2724+
"timestampFormat":"iso8601"
2725+
},
2726+
"SlaConfiguration":{
2727+
"type":"structure",
2728+
"required":[
2729+
"name",
2730+
"status",
2731+
"targetTime",
2732+
"type"
2733+
],
2734+
"members":{
2735+
"completionTime":{"shape":"SlaCompletionTime"},
2736+
"fieldId":{"shape":"FieldId"},
2737+
"name":{"shape":"SlaName"},
2738+
"status":{"shape":"SlaStatus"},
2739+
"targetFieldValues":{"shape":"SlaFieldValueUnionList"},
2740+
"targetTime":{"shape":"SlaTargetTime"},
2741+
"type":{"shape":"SlaType"}
2742+
}
2743+
},
2744+
"SlaContent":{
2745+
"type":"structure",
2746+
"required":["slaConfiguration"],
2747+
"members":{
2748+
"slaConfiguration":{"shape":"SlaConfiguration"}
2749+
}
2750+
},
2751+
"SlaFieldValueUnionList":{
2752+
"type":"list",
2753+
"member":{"shape":"FieldValueUnion"},
2754+
"max":1,
2755+
"min":1
2756+
},
2757+
"SlaFilter":{
2758+
"type":"structure",
2759+
"members":{
2760+
"name":{"shape":"SlaName"},
2761+
"status":{"shape":"SlaStatus"}
2762+
}
2763+
},
2764+
"SlaInputConfiguration":{
2765+
"type":"structure",
2766+
"required":[
2767+
"name",
2768+
"targetSlaMinutes",
2769+
"type"
2770+
],
2771+
"members":{
2772+
"fieldId":{"shape":"FieldId"},
2773+
"name":{"shape":"SlaName"},
2774+
"targetFieldValues":{"shape":"SlaFieldValueUnionList"},
2775+
"targetSlaMinutes":{"shape":"TargetSlaMinutes"},
2776+
"type":{"shape":"SlaType"}
2777+
}
2778+
},
2779+
"SlaInputContent":{
2780+
"type":"structure",
2781+
"members":{
2782+
"slaInputConfiguration":{"shape":"SlaInputConfiguration"}
2783+
},
2784+
"union":true
2785+
},
2786+
"SlaName":{
2787+
"type":"string",
2788+
"max":500,
2789+
"min":1,
2790+
"pattern":"^.*[\\S]$",
2791+
"sensitive":true
2792+
},
2793+
"SlaStatus":{
2794+
"type":"string",
2795+
"enum":[
2796+
"Active",
2797+
"Overdue",
2798+
"Met",
2799+
"NotMet"
2800+
]
2801+
},
2802+
"SlaTargetTime":{
2803+
"type":"timestamp",
2804+
"timestampFormat":"iso8601"
2805+
},
2806+
"SlaType":{
2807+
"type":"string",
2808+
"enum":["CaseField"]
2809+
},
27152810
"Sort":{
27162811
"type":"structure",
27172812
"required":[
@@ -2756,6 +2851,12 @@
27562851
"key":{"shape":"String"},
27572852
"value":{"shape":"String"}
27582853
},
2854+
"TargetSlaMinutes":{
2855+
"type":"long",
2856+
"box":true,
2857+
"max":129600,
2858+
"min":1
2859+
},
27592860
"TemplateArn":{
27602861
"type":"string",
27612862
"max":500,

0 commit comments

Comments
 (0)