Skip to content

Commit 3e8e0c2

Browse files
Update to latest models
1 parent e26b717 commit 3e8e0c2

File tree

19 files changed

+1666
-642
lines changed

19 files changed

+1666
-642
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "api-change",
3+
"category": "``appintegrations``",
4+
"description": "Amazon AppIntegrations introduces new configuration capabilities to enable customers to manage iframe permissions, control application refresh behavior (per contact or per browser/cross-contact), and run background applications (service)."
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "api-change",
3+
"category": "``budgets``",
4+
"description": "Adds IPv6 and PrivateLink support for AWS Budgets in IAD."
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "api-change",
3+
"category": "``config``",
4+
"description": "Documentation improvements have been made to the EvaluationModel and DescribeConfigurationRecorders APIs."
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "api-change",
3+
"category": "``ec2``",
4+
"description": "Transit Gateway native integration with AWS Network Firewall. Adding new enum value for the new Transit Gateway Attachment type."
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "api-change",
3+
"category": "``kms``",
4+
"description": "Doc only update: fixed grammatical errors."
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "api-change",
3+
"category": "``mediapackagev2``",
4+
"description": "This release adds support for specifying a preferred input for channels using CMAF ingest."
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "api-change",
3+
"category": "``socialmessaging``",
4+
"description": "This release introduces new WhatsApp template management APIs that enable customers to programmatically create and submit templates for approval, monitor approval status, and manage the complete template lifecycle"
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "api-change",
3+
"category": "``sqs``",
4+
"description": "Documentation updates for Amazon SQS fair queues feature."
5+
}

awscli/botocore/data/appintegrations/2020-07-29/service-2.json

Lines changed: 123 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -446,6 +446,16 @@
446446
"max":50,
447447
"min":1
448448
},
449+
"ApplicationConfig":{
450+
"type":"structure",
451+
"members":{
452+
"ContactHandling":{
453+
"shape":"ContactHandling",
454+
"documentation":"<p>The contact handling configuration for the application.</p>"
455+
}
456+
},
457+
"documentation":"<p>The configuration settings for the application.</p>"
458+
},
449459
"ApplicationName":{
450460
"type":"string",
451461
"max":255,
@@ -494,6 +504,10 @@
494504
"LastModifiedTime":{
495505
"shape":"Timestamp",
496506
"documentation":"<p>The time when the application was last modified.</p>"
507+
},
508+
"IsService":{
509+
"shape":"Boolean",
510+
"documentation":"<p>Indicates whether the application is a service.</p>"
497511
}
498512
},
499513
"documentation":"<p>Summary information about the Application.</p>"
@@ -522,6 +536,7 @@
522536
"min":1,
523537
"pattern":"^(arn:aws:[A-Za-z0-9][A-Za-z0-9_/.-]{0,62}:[A-Za-z0-9_/.-]{0,63}:[A-Za-z0-9_/.-]{0,63}:[A-Za-z0-9][A-Za-z0-9:_/+=,@.-]{0,1023}|[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})(:[\\w\\$]+)?$"
524538
},
539+
"Boolean":{"type":"boolean"},
525540
"ClientAssociationMetadata":{
526541
"type":"map",
527542
"key":{"shape":"NonBlankString"},
@@ -533,6 +548,23 @@
533548
"min":1,
534549
"pattern":".*"
535550
},
551+
"ContactHandling":{
552+
"type":"structure",
553+
"members":{
554+
"Scope":{
555+
"shape":"ContactHandlingScope",
556+
"documentation":"<p>Indicates whether the application refreshes for each contact or refreshes only with each new browser session.</p>"
557+
}
558+
},
559+
"documentation":"<p>The contact handling configuration for the application.</p>"
560+
},
561+
"ContactHandlingScope":{
562+
"type":"string",
563+
"enum":[
564+
"CROSS_CONTACTS",
565+
"PER_CONTACT"
566+
]
567+
},
536568
"CreateApplicationRequest":{
537569
"type":"structure",
538570
"required":[
@@ -581,6 +613,22 @@
581613
"Permissions":{
582614
"shape":"PermissionList",
583615
"documentation":"<p>The configuration of events or requests that the application has access to.</p>"
616+
},
617+
"IsService":{
618+
"shape":"Boolean",
619+
"documentation":"<p>Indicates whether the application is a service.</p>"
620+
},
621+
"InitializationTimeout":{
622+
"shape":"InitializationTimeout",
623+
"documentation":"<p>The maximum time in milliseconds allowed to establish a connection with the workspace.</p>"
624+
},
625+
"ApplicationConfig":{
626+
"shape":"ApplicationConfig",
627+
"documentation":"<p>The configuration settings for the application.</p>"
628+
},
629+
"IframeConfig":{
630+
"shape":"IframeConfig",
631+
"documentation":"<p>The iframe configuration for the application.</p>"
584632
}
585633
}
586634
},
@@ -854,8 +902,7 @@
854902
},
855903
"DeleteApplicationResponse":{
856904
"type":"structure",
857-
"members":{
858-
}
905+
"members":{}
859906
},
860907
"DeleteDataIntegrationRequest":{
861908
"type":"structure",
@@ -871,8 +918,7 @@
871918
},
872919
"DeleteDataIntegrationResponse":{
873920
"type":"structure",
874-
"members":{
875-
}
921+
"members":{}
876922
},
877923
"DeleteEventIntegrationRequest":{
878924
"type":"structure",
@@ -888,8 +934,7 @@
888934
},
889935
"DeleteEventIntegrationResponse":{
890936
"type":"structure",
891-
"members":{
892-
}
937+
"members":{}
893938
},
894939
"Description":{
895940
"type":"string",
@@ -1166,6 +1211,22 @@
11661211
"Permissions":{
11671212
"shape":"PermissionList",
11681213
"documentation":"<p>The configuration of events or requests that the application has access to.</p>"
1214+
},
1215+
"IsService":{
1216+
"shape":"Boolean",
1217+
"documentation":"<p>Indicates whether the application is a service.</p>"
1218+
},
1219+
"InitializationTimeout":{
1220+
"shape":"InitializationTimeout",
1221+
"documentation":"<p>The maximum time in milliseconds allowed to establish a connection with the workspace.</p>"
1222+
},
1223+
"ApplicationConfig":{
1224+
"shape":"ApplicationConfig",
1225+
"documentation":"<p>The configuration settings for the application.</p>"
1226+
},
1227+
"IframeConfig":{
1228+
"shape":"IframeConfig",
1229+
"documentation":"<p>The iframe configuration for the application.</p>"
11691230
}
11701231
}
11711232
},
@@ -1279,6 +1340,39 @@
12791340
"min":1,
12801341
"pattern":".*\\S.*"
12811342
},
1343+
"IframeConfig":{
1344+
"type":"structure",
1345+
"members":{
1346+
"Allow":{
1347+
"shape":"IframePermissionList",
1348+
"documentation":"<p>The list of features that are allowed in the iframe.</p>"
1349+
},
1350+
"Sandbox":{
1351+
"shape":"IframePermissionList",
1352+
"documentation":"<p>The list of sandbox attributes for the iframe.</p>"
1353+
}
1354+
},
1355+
"documentation":"<p>The iframe configuration for the application.</p>"
1356+
},
1357+
"IframePermission":{
1358+
"type":"string",
1359+
"documentation":"<p>A permission for the iframe.</p>",
1360+
"max":100,
1361+
"min":1,
1362+
"pattern":"^[a-z-]+$"
1363+
},
1364+
"IframePermissionList":{
1365+
"type":"list",
1366+
"member":{"shape":"IframePermission"},
1367+
"documentation":"<p>A list of permissions for the iframe.</p>",
1368+
"max":25,
1369+
"min":0
1370+
},
1371+
"InitializationTimeout":{
1372+
"type":"integer",
1373+
"max":600000,
1374+
"min":1
1375+
},
12821376
"InternalServiceError":{
12831377
"type":"structure",
12841378
"members":{
@@ -1742,8 +1836,7 @@
17421836
},
17431837
"TagResourceResponse":{
17441838
"type":"structure",
1745-
"members":{
1746-
}
1839+
"members":{}
17471840
},
17481841
"TagValue":{
17491842
"type":"string",
@@ -1801,8 +1894,7 @@
18011894
},
18021895
"UntagResourceResponse":{
18031896
"type":"structure",
1804-
"members":{
1805-
}
1897+
"members":{}
18061898
},
18071899
"UpdateApplicationRequest":{
18081900
"type":"structure",
@@ -1841,13 +1933,29 @@
18411933
"Permissions":{
18421934
"shape":"PermissionList",
18431935
"documentation":"<p>The configuration of events or requests that the application has access to.</p>"
1936+
},
1937+
"IsService":{
1938+
"shape":"Boolean",
1939+
"documentation":"<p>Indicates whether the application is a service.</p>",
1940+
"box":true
1941+
},
1942+
"InitializationTimeout":{
1943+
"shape":"InitializationTimeout",
1944+
"documentation":"<p>The maximum time in milliseconds allowed to establish a connection with the workspace.</p>"
1945+
},
1946+
"ApplicationConfig":{
1947+
"shape":"ApplicationConfig",
1948+
"documentation":"<p>The configuration settings for the application.</p>"
1949+
},
1950+
"IframeConfig":{
1951+
"shape":"IframeConfig",
1952+
"documentation":"<p>The iframe configuration for the application.</p>"
18441953
}
18451954
}
18461955
},
18471956
"UpdateApplicationResponse":{
18481957
"type":"structure",
1849-
"members":{
1850-
}
1958+
"members":{}
18511959
},
18521960
"UpdateDataIntegrationAssociationRequest":{
18531961
"type":"structure",
@@ -1877,8 +1985,7 @@
18771985
},
18781986
"UpdateDataIntegrationAssociationResponse":{
18791987
"type":"structure",
1880-
"members":{
1881-
}
1988+
"members":{}
18821989
},
18831990
"UpdateDataIntegrationRequest":{
18841991
"type":"structure",
@@ -1902,8 +2009,7 @@
19022009
},
19032010
"UpdateDataIntegrationResponse":{
19042011
"type":"structure",
1905-
"members":{
1906-
}
2012+
"members":{}
19072013
},
19082014
"UpdateEventIntegrationRequest":{
19092015
"type":"structure",
@@ -1923,8 +2029,7 @@
19232029
},
19242030
"UpdateEventIntegrationResponse":{
19252031
"type":"structure",
1926-
"members":{
1927-
}
2032+
"members":{}
19282033
}
19292034
},
19302035
"documentation":"<ul> <li> <p> <a href=\"https://docs.aws.amazon.com/connect/latest/APIReference/API_Operations_Amazon_AppIntegrations_Service.html\">Amazon AppIntegrations actions</a> </p> </li> <li> <p> <a href=\"https://docs.aws.amazon.com/connect/latest/APIReference/API_Types_Amazon_AppIntegrations_Service.html\">Amazon AppIntegrations data types</a> </p> </li> </ul> <p>The Amazon AppIntegrations service enables you to configure and reuse connections to external applications.</p> <p>For information about how you can use external applications with Amazon Connect, see the following topics in the <i>Amazon Connect Administrator Guide</i>:</p> <ul> <li> <p> <a href=\"https://docs.aws.amazon.com/connect/latest/adminguide/3p-apps.html\">Third-party applications (3p apps) in the agent workspace</a> </p> </li> <li> <p> <a href=\"https://docs.aws.amazon.com/connect/latest/adminguide/amazon-q-connect.html\">Use Amazon Q in Connect for generative AI–powered agent assistance in real-time</a> </p> </li> </ul>"

0 commit comments

Comments
 (0)