Skip to content

Commit 33d82a7

Browse files
author
AWS
committed
Amazon Elastic Compute Cloud Update: This release allows customers to attach multiple Elastic Inference Accelerators to a single EC2 instance. It adds support for a Count parameter for each Elastic Inference Accelerator type you specify on the RunInstances and LaunchTemplate APIs.
1 parent f852f97 commit 33d82a7

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "feature",
3+
"category": "Amazon Elastic Compute Cloud",
4+
"description": "This release allows customers to attach multiple Elastic Inference Accelerators to a single EC2 instance. It adds support for a Count parameter for each Elastic Inference Accelerator type you specify on the RunInstances and LaunchTemplate APIs."
5+
}

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

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17210,7 +17210,11 @@
1721017210
"members":{
1721117211
"Type":{
1721217212
"shape":"String",
17213-
"documentation":"<p> The type of elastic inference accelerator. The possible values are <code>eia1.small</code>, <code>eia1.medium</code>, and <code>eia1.large</code>. </p>"
17213+
"documentation":"<p> The type of elastic inference accelerator. The possible values are <code>eia1.medium</code>, <code>eia1.large</code>, and <code>eia1.xlarge</code>. </p>"
17214+
},
17215+
"Count":{
17216+
"shape":"ElasticInferenceAcceleratorCount",
17217+
"documentation":"<p> The number of elastic inference accelerators of given type to be attached to the instance. Only positive values allowed. If not specified defaults to 1. </p>"
1721417218
}
1721517219
},
1721617220
"documentation":"<p> Describes an elastic inference accelerator. </p>"
@@ -17248,6 +17252,10 @@
1724817252
"locationName":"item"
1724917253
}
1725017254
},
17255+
"ElasticInferenceAcceleratorCount":{
17256+
"type":"integer",
17257+
"min":1
17258+
},
1725117259
"ElasticInferenceAccelerators":{
1725217260
"type":"list",
1725317261
"member":{
@@ -23260,10 +23268,18 @@
2326023268
"Type":{
2326123269
"shape":"String",
2326223270
"documentation":"<p> The type of elastic inference accelerator. The possible values are eia1.medium, eia1.large, and eia1.xlarge. </p>"
23271+
},
23272+
"Count":{
23273+
"shape":"LaunchTemplateElasticInferenceAcceleratorCount",
23274+
"documentation":"<p> The number of elastic inference accelerators of given type to be attached to the instance. Only positive values allowed. If not specified defaults to 1. </p>"
2326323275
}
2326423276
},
2326523277
"documentation":"<p> Describes an elastic inference accelerator. </p>"
2326623278
},
23279+
"LaunchTemplateElasticInferenceAcceleratorCount":{
23280+
"type":"integer",
23281+
"min":1
23282+
},
2326723283
"LaunchTemplateElasticInferenceAcceleratorList":{
2326823284
"type":"list",
2326923285
"member":{
@@ -23278,6 +23294,11 @@
2327823294
"shape":"String",
2327923295
"documentation":"<p> The type of elastic inference accelerator. The possible values are eia1.medium, eia1.large, and eia1.xlarge. </p>",
2328023296
"locationName":"type"
23297+
},
23298+
"Count":{
23299+
"shape":"Integer",
23300+
"documentation":"<p> The number of elastic inference accelerators of given type to be attached to the instance. Only positive values allowed. If not specified defaults to 1. </p>",
23301+
"locationName":"count"
2328123302
}
2328223303
},
2328323304
"documentation":"<p> Describes an elastic inference accelerator. </p>"

0 commit comments

Comments
 (0)