Skip to content

Commit b8f365e

Browse files
Update to latest models
1 parent b8a7a43 commit b8f365e

File tree

12 files changed

+512
-299
lines changed

12 files changed

+512
-299
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": "``cleanrooms``",
4+
"description": "Add support for configurable compute sizes for PySpark jobs."
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": "``cloudformation``",
4+
"description": "ListHookResults API now supports retrieving invocation results for all CloudFormation Hooks (previously limited to create change set and Cloud Control operations) with new optional parameters for filtering by Hook status and ARN."
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": "Add m8i, m8i-flex and i8ge instance types."
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": "``opensearchserverless``",
4+
"description": "Add support for Federal Information Processing Standards (FIPS) and Federal Risk and Authorization Management Program (FedRAMP) compliance"
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": "``rds``",
4+
"description": "Added new EndpointNetworkType and TargetConnectionNetworkType fields in Proxy APIs to support IPv6"
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": "``verifiedpermissions``",
4+
"description": "Amazon Verified Permissions / Features : Adds support for datetime and duration attribute values."
5+
}

awscli/botocore/data/cleanrooms/2022-02-17/service-2.json

Lines changed: 51 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8604,6 +8604,10 @@
86048604
"error":{
86058605
"shape":"ProtectedJobError",
86068606
"documentation":"<p> The error from the protected job.</p>"
8607+
},
8608+
"computeConfiguration":{
8609+
"shape":"ProtectedJobComputeConfiguration",
8610+
"documentation":"<p>The compute configuration for the protected job.</p>"
86078611
}
86088612
},
86098613
"documentation":"<p>The parameters for an Clean Rooms protected job.</p>"
@@ -8612,6 +8616,17 @@
86128616
"type":"string",
86138617
"enum":["DIRECT_ANALYSIS"]
86148618
},
8619+
"ProtectedJobComputeConfiguration":{
8620+
"type":"structure",
8621+
"members":{
8622+
"worker":{
8623+
"shape":"ProtectedJobWorkerComputeConfiguration",
8624+
"documentation":"<p>The worker configuration for the compute environment.</p>"
8625+
}
8626+
},
8627+
"documentation":"<p>The configuration of the compute resources for a PySpark job.</p>",
8628+
"union":true
8629+
},
86158630
"ProtectedJobConfigurationDetails":{
86168631
"type":"structure",
86178632
"members":{
@@ -8925,6 +8940,37 @@
89258940
"type":"string",
89268941
"enum":["PYSPARK"]
89278942
},
8943+
"ProtectedJobWorkerComputeConfiguration":{
8944+
"type":"structure",
8945+
"required":[
8946+
"type",
8947+
"number"
8948+
],
8949+
"members":{
8950+
"type":{
8951+
"shape":"ProtectedJobWorkerComputeType",
8952+
"documentation":"<p>The worker compute configuration type.</p>"
8953+
},
8954+
"number":{
8955+
"shape":"ProtectedJobWorkerComputeConfigurationNumberInteger",
8956+
"documentation":"<p>The number of workers for a PySpark job.</p>"
8957+
}
8958+
},
8959+
"documentation":"<p>The configuration of the compute resources for a PySpark job.</p>"
8960+
},
8961+
"ProtectedJobWorkerComputeConfigurationNumberInteger":{
8962+
"type":"integer",
8963+
"box":true,
8964+
"max":128,
8965+
"min":4
8966+
},
8967+
"ProtectedJobWorkerComputeType":{
8968+
"type":"string",
8969+
"enum":[
8970+
"CR.1X",
8971+
"CR.4X"
8972+
]
8973+
},
89288974
"ProtectedQuery":{
89298975
"type":"structure",
89308976
"required":[
@@ -9901,6 +9947,10 @@
99019947
"resultConfiguration":{
99029948
"shape":"ProtectedJobResultConfigurationInput",
99039949
"documentation":"<p>The details needed to write the job results.</p>"
9950+
},
9951+
"computeConfiguration":{
9952+
"shape":"ProtectedJobComputeConfiguration",
9953+
"documentation":"<p>The compute configuration for the protected job.</p>"
99049954
}
99059955
}
99069956
},
@@ -10655,7 +10705,7 @@
1065510705
},
1065610706
"number":{
1065710707
"shape":"WorkerComputeConfigurationNumberInteger",
10658-
"documentation":"<p> The number of workers.</p>"
10708+
"documentation":"<p> The number of workers.</p> <p>SQL queries support a minimum value of 2 and a maximum value of 400. </p> <p>PySpark jobs support a minimum value of 4 and a maximum value of 128.</p>"
1065910709
}
1066010710
},
1066110711
"documentation":"<p> The configuration of the compute resources for workers running an analysis with the Clean Rooms SQL analytics engine.</p>"

awscli/botocore/data/cloudformation/2010-05-15/service-2.json

Lines changed: 283 additions & 240 deletions
Large diffs are not rendered by default.

awscli/botocore/data/ec2/2016-11-15/service-2.json

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42498,7 +42498,38 @@
4249842498
"r8i-flex.4xlarge",
4249942499
"r8i-flex.8xlarge",
4250042500
"r8i-flex.12xlarge",
42501-
"r8i-flex.16xlarge"
42501+
"r8i-flex.16xlarge",
42502+
"m8i.large",
42503+
"m8i.xlarge",
42504+
"m8i.2xlarge",
42505+
"m8i.4xlarge",
42506+
"m8i.8xlarge",
42507+
"m8i.12xlarge",
42508+
"m8i.16xlarge",
42509+
"m8i.24xlarge",
42510+
"m8i.32xlarge",
42511+
"m8i.48xlarge",
42512+
"m8i.96xlarge",
42513+
"m8i.metal-48xl",
42514+
"m8i.metal-96xl",
42515+
"m8i-flex.large",
42516+
"m8i-flex.xlarge",
42517+
"m8i-flex.2xlarge",
42518+
"m8i-flex.4xlarge",
42519+
"m8i-flex.8xlarge",
42520+
"m8i-flex.12xlarge",
42521+
"m8i-flex.16xlarge",
42522+
"i8ge.large",
42523+
"i8ge.xlarge",
42524+
"i8ge.2xlarge",
42525+
"i8ge.3xlarge",
42526+
"i8ge.6xlarge",
42527+
"i8ge.12xlarge",
42528+
"i8ge.18xlarge",
42529+
"i8ge.24xlarge",
42530+
"i8ge.48xlarge",
42531+
"i8ge.metal-24xl",
42532+
"i8ge.metal-48xl"
4250242533
]
4250342534
},
4250442535
"InstanceTypeHypervisor":{

0 commit comments

Comments
 (0)