Skip to content

Commit d628587

Browse files
author
AWS
committed
Amazon AppIntegrations Service Update: This release adds support for MCP servers via the ApplicationType field, allowing customers to register their Bedrock AgentCore gateways as third party applications.
1 parent 6cb861a commit d628587

File tree

2 files changed

+54
-5
lines changed

2 files changed

+54
-5
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 AppIntegrations Service",
4+
"contributor": "",
5+
"description": "This release adds support for MCP servers via the ApplicationType field, allowing customers to register their Bedrock AgentCore gateways as third party applications."
6+
}

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

Lines changed: 48 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@
464464
},
465465
"ApplicationNamespace":{
466466
"type":"string",
467-
"max":32,
467+
"max":211,
468468
"min":1,
469469
"pattern":"^[a-zA-Z0-9\\/\\._\\-]+$"
470470
},
@@ -507,7 +507,14 @@
507507
},
508508
"IsService":{
509509
"shape":"Boolean",
510-
"documentation":"<p>Indicates whether the application is a service.</p>"
510+
"documentation":"<p>Indicates whether the application is a service.</p>",
511+
"deprecated":true,
512+
"deprecatedMessage":"IsService has been deprecated in favor of ApplicationType",
513+
"deprecatedSince":"2025-12-01"
514+
},
515+
"ApplicationType":{
516+
"shape":"ApplicationType",
517+
"documentation":"<p>The type of application.</p>"
511518
}
512519
},
513520
"documentation":"<p>Summary information about the Application.</p>"
@@ -518,6 +525,15 @@
518525
"min":1,
519526
"pattern":"^\\w+\\:\\/\\/.*$"
520527
},
528+
"ApplicationType":{
529+
"type":"string",
530+
"documentation":"<value>The type of application</value>",
531+
"enum":[
532+
"STANDARD",
533+
"SERVICE",
534+
"MCP_SERVER"
535+
]
536+
},
521537
"ApplicationsList":{
522538
"type":"list",
523539
"member":{"shape":"ApplicationSummary"},
@@ -616,7 +632,10 @@
616632
},
617633
"IsService":{
618634
"shape":"Boolean",
619-
"documentation":"<p>Indicates whether the application is a service.</p>"
635+
"documentation":"<p>Indicates whether the application is a service.</p>",
636+
"deprecated":true,
637+
"deprecatedMessage":"IsService has been deprecated in favor of ApplicationType",
638+
"deprecatedSince":"2025-12-01"
620639
},
621640
"InitializationTimeout":{
622641
"shape":"InitializationTimeout",
@@ -629,6 +648,10 @@
629648
"IframeConfig":{
630649
"shape":"IframeConfig",
631650
"documentation":"<p>The iframe configuration for the application.</p>"
651+
},
652+
"ApplicationType":{
653+
"shape":"ApplicationType",
654+
"documentation":"<p>The type of application.</p>"
632655
}
633656
}
634657
},
@@ -1214,7 +1237,10 @@
12141237
},
12151238
"IsService":{
12161239
"shape":"Boolean",
1217-
"documentation":"<p>Indicates whether the application is a service.</p>"
1240+
"documentation":"<p>Indicates whether the application is a service.</p>",
1241+
"deprecated":true,
1242+
"deprecatedMessage":"IsService has been deprecated in favor of ApplicationType",
1243+
"deprecatedSince":"2025-12-01"
12181244
},
12191245
"InitializationTimeout":{
12201246
"shape":"InitializationTimeout",
@@ -1227,6 +1253,10 @@
12271253
"IframeConfig":{
12281254
"shape":"IframeConfig",
12291255
"documentation":"<p>The iframe configuration for the application.</p>"
1256+
},
1257+
"ApplicationType":{
1258+
"shape":"ApplicationType",
1259+
"documentation":"<p>The type of application.</p>"
12301260
}
12311261
}
12321262
},
@@ -1457,6 +1487,12 @@
14571487
"documentation":"<p>The maximum number of results to return per page.</p>",
14581488
"location":"querystring",
14591489
"locationName":"maxResults"
1490+
},
1491+
"ApplicationType":{
1492+
"shape":"ApplicationType",
1493+
"documentation":"<p>The type of application.</p>",
1494+
"location":"querystring",
1495+
"locationName":"applicationType"
14601496
}
14611497
}
14621498
},
@@ -1937,7 +1973,10 @@
19371973
"IsService":{
19381974
"shape":"Boolean",
19391975
"documentation":"<p>Indicates whether the application is a service.</p>",
1940-
"box":true
1976+
"box":true,
1977+
"deprecated":true,
1978+
"deprecatedMessage":"IsService has been deprecated in favor of ApplicationType",
1979+
"deprecatedSince":"2025-12-01"
19411980
},
19421981
"InitializationTimeout":{
19431982
"shape":"InitializationTimeout",
@@ -1950,6 +1989,10 @@
19501989
"IframeConfig":{
19511990
"shape":"IframeConfig",
19521991
"documentation":"<p>The iframe configuration for the application.</p>"
1992+
},
1993+
"ApplicationType":{
1994+
"shape":"ApplicationType",
1995+
"documentation":"<p>The type of application.</p>"
19531996
}
19541997
}
19551998
},

0 commit comments

Comments
 (0)