Skip to content

Commit b9cf2b4

Browse files
Updated API models and rebuilt service gems.
1 parent 03350b0 commit b9cf2b4

File tree

51 files changed

+874
-96
lines changed

Some content is hidden

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

51 files changed

+874
-96
lines changed

apis/bcm-data-exports/2023-11-26/api-2.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,12 @@
214214
},
215215
"exception":true
216216
},
217+
"AccountId":{
218+
"type":"string",
219+
"max":12,
220+
"min":12,
221+
"pattern":"[0-9]{12}"
222+
},
217223
"Arn":{
218224
"type":"string",
219225
"max":2048,
@@ -612,6 +618,7 @@
612618
],
613619
"members":{
614620
"S3Bucket":{"shape":"GenericString"},
621+
"S3BucketOwner":{"shape":"AccountId"},
615622
"S3Prefix":{"shape":"GenericString"},
616623
"S3Region":{"shape":"GenericString"},
617624
"S3OutputConfigurations":{"shape":"S3OutputConfigurations"}

apis/bcm-data-exports/2023-11-26/docs-2.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@
2020
"base": "<p>You don't have sufficient access to perform this action.</p>",
2121
"refs": {}
2222
},
23+
"AccountId": {
24+
"base": null,
25+
"refs": {
26+
"S3Destination$S3BucketOwner": "<p>The AWS Account ID that owns the S3 bucket used as the destination for the data export.</p>"
27+
}
28+
},
2329
"Arn": {
2430
"base": null,
2531
"refs": {

apis/elasticmapreduce/2009-03-31/api-2.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2964,6 +2964,7 @@
29642964
"ReleaseLabel":{"shape":"XmlStringMaxLen256"},
29652965
"Instances":{"shape":"JobFlowInstancesConfig"},
29662966
"Steps":{"shape":"StepConfigList"},
2967+
"StepExecutionRoleArn":{"shape":"ArnType"},
29672968
"BootstrapActions":{"shape":"BootstrapActionConfigList"},
29682969
"SupportedProducts":{"shape":"SupportedProductsList"},
29692970
"NewSupportedProducts":{"shape":"NewSupportedProductsList"},

apis/elasticmapreduce/2009-03-31/docs-2.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@
138138
"GetOnClusterAppUIPresignedURLInput$ExecutionRoleArn": "<p>The execution role ARN associated with the cluster's application user interface presigned URL.</p>",
139139
"GetPersistentAppUIPresignedURLInput$ExecutionRoleArn": "<p>The execution role ARN associated with the presigned URL.</p>",
140140
"PutAutoScalingPolicyOutput$ClusterArn": "<p>The Amazon Resource Name (ARN) of the cluster.</p>",
141+
"RunJobFlowInput$StepExecutionRoleArn": "<p>The Amazon Resource Name (ARN) of the runtime role for steps specified in the RunJobFlow request. The runtime role can be a cross-account IAM role. The runtime role ARN is a combination of account ID, role name, and role type using the following format: <code>arn:partition:iam::account-id:role/role-name</code>.</p> <p>For example, <code>arn:aws:iam::1234567890:role/ReadOnly</code> is a correctly formatted runtime role ARN.</p> <p>This parameter applies only to steps included in the <code>Steps</code> parameter of this RunJobFlow request. It does not apply to steps added later to the cluster.</p>",
141142
"RunJobFlowOutput$ClusterArn": "<p>The Amazon Resource Name (ARN) of the cluster.</p>",
142143
"Studio$IdcInstanceArn": "<p> The ARN of the IAM Identity Center instance the Studio application belongs to. </p>"
143144
}

apis/logs/2014-03-28/api-2.json

Lines changed: 35 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4911,7 +4911,8 @@
49114911
"clientToken":{
49124912
"shape":"ClientToken",
49134913
"idempotencyToken":true
4914-
}
4914+
},
4915+
"parameters":{"shape":"QueryParameterList"}
49154916
}
49164917
},
49174918
"PutQueryDefinitionResponse":{
@@ -5001,7 +5002,8 @@
50015002
"name":{"shape":"QueryDefinitionName"},
50025003
"queryString":{"shape":"QueryDefinitionString"},
50035004
"lastModified":{"shape":"Timestamp"},
5004-
"logGroupNames":{"shape":"LogGroupNames"}
5005+
"logGroupNames":{"shape":"LogGroupNames"},
5006+
"parameters":{"shape":"QueryParameterList"}
50055007
}
50065008
},
50075009
"QueryDefinitionList":{
@@ -5051,6 +5053,34 @@
50515053
"max":1000,
50525054
"min":1
50535055
},
5056+
"QueryParameter":{
5057+
"type":"structure",
5058+
"required":["name"],
5059+
"members":{
5060+
"name":{"shape":"QueryParameterName"},
5061+
"defaultValue":{"shape":"QueryParameterDefaultValue"},
5062+
"description":{"shape":"QueryParameterDescription"}
5063+
}
5064+
},
5065+
"QueryParameterDefaultValue":{
5066+
"type":"string",
5067+
"max":1024
5068+
},
5069+
"QueryParameterDescription":{
5070+
"type":"string",
5071+
"max":512
5072+
},
5073+
"QueryParameterList":{
5074+
"type":"list",
5075+
"member":{"shape":"QueryParameter"},
5076+
"max":20
5077+
},
5078+
"QueryParameterName":{
5079+
"type":"string",
5080+
"max":128,
5081+
"min":1,
5082+
"pattern":"^[a-zA-Z_][a-zA-Z0-9_]*"
5083+
},
50545084
"QueryResults":{
50555085
"type":"list",
50565086
"member":{"shape":"ResultRows"}
@@ -5228,7 +5258,9 @@
52285258
],
52295259
"members":{
52305260
"destinationIdentifier":{"shape":"S3Uri"},
5231-
"roleArn":{"shape":"RoleArn"}
5261+
"roleArn":{"shape":"RoleArn"},
5262+
"ownerAccountId":{"shape":"AccountId"},
5263+
"kmsKeyId":{"shape":"KmsKeyId"}
52325264
}
52335265
},
52345266
"S3DeliveryConfiguration":{

apis/logs/2014-03-28/docs-2.json

Lines changed: 38 additions & 5 deletions
Large diffs are not rendered by default.

apis/sagemaker/2017-07-24/api-2.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7630,6 +7630,7 @@
76307630
"ml.r7i.16xlarge",
76317631
"ml.r7i.24xlarge",
76327632
"ml.r7i.48xlarge",
7633+
"ml.r5d.16xlarge",
76337634
"ml.p6-b300.48xlarge"
76347635
]
76357636
},
@@ -9368,8 +9369,7 @@
93689369
"type":"structure",
93699370
"required":[
93709371
"InferenceComponentName",
9371-
"EndpointName",
9372-
"Specification"
9372+
"EndpointName"
93739373
],
93749374
"members":{
93759375
"InferenceComponentName":{"shape":"InferenceComponentName"},
@@ -15782,7 +15782,7 @@
1578215782
},
1578315783
"HubContentDocument":{
1578415784
"type":"string",
15785-
"max":170391,
15785+
"max":327680,
1578615786
"min":0,
1578715787
"pattern":".*"
1578815788
},

apis/timestream-influxdb/2023-01-27/api-2.json

Lines changed: 68 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,14 @@
361361
"min":2,
362362
"pattern":"[^_\"][^\"]*"
363363
},
364+
"ClusterConfiguration":{
365+
"type":"structure",
366+
"members":{
367+
"ingestQueryInstances":{"shape":"Integer"},
368+
"queryOnlyInstances":{"shape":"Integer"},
369+
"dedicatedCompactor":{"shape":"Boolean"}
370+
}
371+
},
364372
"ClusterDeploymentType":{
365373
"type":"string",
366374
"enum":["MULTI_NODE_READ_REPLICAS"]
@@ -421,6 +429,7 @@
421429
"deploymentType":{"shape":"ClusterDeploymentType"},
422430
"failoverMode":{"shape":"FailoverMode"},
423431
"logDeliveryConfiguration":{"shape":"LogDeliveryConfiguration"},
432+
"maintenanceSchedule":{"shape":"MaintenanceSchedule"},
424433
"tags":{"shape":"RequestTagMap"}
425434
}
426435
},
@@ -456,6 +465,7 @@
456465
"dbParameterGroupIdentifier":{"shape":"DbParameterGroupIdentifier"},
457466
"deploymentType":{"shape":"DeploymentType"},
458467
"logDeliveryConfiguration":{"shape":"LogDeliveryConfiguration"},
468+
"maintenanceSchedule":{"shape":"MaintenanceSchedule"},
459469
"tags":{"shape":"RequestTagMap"},
460470
"port":{"shape":"Port"},
461471
"networkType":{"shape":"NetworkType"}
@@ -491,7 +501,10 @@
491501
"influxAuthParametersSecretArn":{"shape":"String"},
492502
"dbClusterId":{"shape":"DbClusterId"},
493503
"instanceMode":{"shape":"InstanceMode"},
494-
"instanceModes":{"shape":"InstanceModeList"}
504+
"instanceModes":{"shape":"InstanceModeList"},
505+
"maintenanceSchedule":{"shape":"MaintenanceSchedule"},
506+
"lastMaintenanceTime":{"shape":"SyntheticTimestamp_date_time"},
507+
"nextMaintenanceTime":{"shape":"SyntheticTimestamp_date_time"}
495508
}
496509
},
497510
"CreateDbParameterGroupInput":{
@@ -748,7 +761,10 @@
748761
"influxAuthParametersSecretArn":{"shape":"String"},
749762
"dbClusterId":{"shape":"DbClusterId"},
750763
"instanceMode":{"shape":"InstanceMode"},
751-
"instanceModes":{"shape":"InstanceModeList"}
764+
"instanceModes":{"shape":"InstanceModeList"},
765+
"maintenanceSchedule":{"shape":"MaintenanceSchedule"},
766+
"lastMaintenanceTime":{"shape":"SyntheticTimestamp_date_time"},
767+
"nextMaintenanceTime":{"shape":"SyntheticTimestamp_date_time"}
752768
}
753769
},
754770
"DeploymentType":{
@@ -830,10 +846,14 @@
830846
"publiclyAccessible":{"shape":"Boolean"},
831847
"dbParameterGroupIdentifier":{"shape":"DbParameterGroupIdentifier"},
832848
"logDeliveryConfiguration":{"shape":"LogDeliveryConfiguration"},
849+
"maintenanceSchedule":{"shape":"MaintenanceSchedule"},
850+
"lastMaintenanceTime":{"shape":"SyntheticTimestamp_date_time"},
851+
"nextMaintenanceTime":{"shape":"SyntheticTimestamp_date_time"},
833852
"influxAuthParametersSecretArn":{"shape":"String"},
834853
"vpcSubnetIds":{"shape":"VpcSubnetIdList"},
835854
"vpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"},
836-
"failoverMode":{"shape":"FailoverMode"}
855+
"failoverMode":{"shape":"FailoverMode"},
856+
"clusterConfiguration":{"shape":"ClusterConfiguration"}
837857
}
838858
},
839859
"GetDbInstanceInput":{
@@ -873,7 +893,10 @@
873893
"influxAuthParametersSecretArn":{"shape":"String"},
874894
"dbClusterId":{"shape":"DbClusterId"},
875895
"instanceMode":{"shape":"InstanceMode"},
876-
"instanceModes":{"shape":"InstanceModeList"}
896+
"instanceModes":{"shape":"InstanceModeList"},
897+
"maintenanceSchedule":{"shape":"MaintenanceSchedule"},
898+
"lastMaintenanceTime":{"shape":"SyntheticTimestamp_date_time"},
899+
"nextMaintenanceTime":{"shape":"SyntheticTimestamp_date_time"}
877900
}
878901
},
879902
"GetDbParameterGroupInput":{
@@ -898,6 +921,12 @@
898921
"parameters":{"shape":"Parameters"}
899922
}
900923
},
924+
"IanaTimezone":{
925+
"type":"string",
926+
"max":64,
927+
"min":1,
928+
"pattern":"(UTC|[A-Za-z_]+/[A-Za-z0-9_]+(/[A-Za-z0-9_]+)?)"
929+
},
901930
"InfluxDBv2Parameters":{
902931
"type":"structure",
903932
"members":{
@@ -1085,7 +1114,7 @@
10851114
},
10861115
"InfluxDBv3CoreParametersDataFusionConfigString":{
10871116
"type":"string",
1088-
"pattern":"[a-zA-Z0-9_]+=[^,\\s]+(?:,[a-zA-Z0-9_]+=[^,\\s]+)*"
1117+
"pattern":"[a-zA-Z0-9_.]+:[^,\\s]+(?:,[a-zA-Z0-9_.]+:[^,\\s]+)*"
10891118
},
10901119
"InfluxDBv3CoreParametersDataFusionMaxParquetFanoutInteger":{
10911120
"type":"integer",
@@ -1276,7 +1305,7 @@
12761305
},
12771306
"InfluxDBv3EnterpriseParametersDataFusionConfigString":{
12781307
"type":"string",
1279-
"pattern":"[a-zA-Z0-9_]+=[^,\\s]+(?:,[a-zA-Z0-9_]+=[^,\\s]+)*"
1308+
"pattern":"[a-zA-Z0-9_.]+:[^,\\s]+(?:,[a-zA-Z0-9_.]+:[^,\\s]+)*"
12801309
},
12811310
"InfluxDBv3EnterpriseParametersDataFusionMaxParquetFanoutInteger":{
12821311
"type":"integer",
@@ -1521,6 +1550,23 @@
15211550
"error"
15221551
]
15231552
},
1553+
"MaintenanceSchedule":{
1554+
"type":"structure",
1555+
"required":[
1556+
"timezone",
1557+
"preferredMaintenanceWindow"
1558+
],
1559+
"members":{
1560+
"timezone":{"shape":"IanaTimezone"},
1561+
"preferredMaintenanceWindow":{"shape":"MaintenanceWindow"}
1562+
}
1563+
},
1564+
"MaintenanceWindow":{
1565+
"type":"string",
1566+
"max":19,
1567+
"min":0,
1568+
"pattern":"$|^(Mon|Tue|Wed|Thu|Fri|Sat|Sun):([01]\\d|2[0-3]):[0-5]\\d-(Mon|Tue|Wed|Thu|Fri|Sat|Sun):([01]\\d|2[0-3]):[0-5]\\d"
1569+
},
15241570
"MaxResults":{
15251571
"type":"integer",
15261572
"box":true,
@@ -1642,7 +1688,10 @@
16421688
"influxAuthParametersSecretArn":{"shape":"String"},
16431689
"dbClusterId":{"shape":"DbClusterId"},
16441690
"instanceMode":{"shape":"InstanceMode"},
1645-
"instanceModes":{"shape":"InstanceModeList"}
1691+
"instanceModes":{"shape":"InstanceModeList"},
1692+
"maintenanceSchedule":{"shape":"MaintenanceSchedule"},
1693+
"lastMaintenanceTime":{"shape":"SyntheticTimestamp_date_time"},
1694+
"nextMaintenanceTime":{"shape":"SyntheticTimestamp_date_time"}
16461695
}
16471696
},
16481697
"RequestTagMap":{
@@ -1716,6 +1765,10 @@
17161765
]
17171766
},
17181767
"String":{"type":"string"},
1768+
"SyntheticTimestamp_date_time":{
1769+
"type":"timestamp",
1770+
"timestampFormat":"iso8601"
1771+
},
17191772
"TagKey":{
17201773
"type":"string",
17211774
"max":128,
@@ -1781,7 +1834,8 @@
17811834
"dbParameterGroupIdentifier":{"shape":"DbParameterGroupIdentifier"},
17821835
"port":{"shape":"Port"},
17831836
"dbInstanceType":{"shape":"DbInstanceType"},
1784-
"failoverMode":{"shape":"FailoverMode"}
1837+
"failoverMode":{"shape":"FailoverMode"},
1838+
"maintenanceSchedule":{"shape":"MaintenanceSchedule"}
17851839
}
17861840
},
17871841
"UpdateDbClusterOutput":{
@@ -1801,7 +1855,8 @@
18011855
"dbInstanceType":{"shape":"DbInstanceType"},
18021856
"deploymentType":{"shape":"DeploymentType"},
18031857
"dbStorageType":{"shape":"DbStorageType"},
1804-
"allocatedStorage":{"shape":"AllocatedStorage"}
1858+
"allocatedStorage":{"shape":"AllocatedStorage"},
1859+
"maintenanceSchedule":{"shape":"MaintenanceSchedule"}
18051860
}
18061861
},
18071862
"UpdateDbInstanceOutput":{
@@ -1834,7 +1889,10 @@
18341889
"influxAuthParametersSecretArn":{"shape":"String"},
18351890
"dbClusterId":{"shape":"DbClusterId"},
18361891
"instanceMode":{"shape":"InstanceMode"},
1837-
"instanceModes":{"shape":"InstanceModeList"}
1892+
"instanceModes":{"shape":"InstanceModeList"},
1893+
"maintenanceSchedule":{"shape":"MaintenanceSchedule"},
1894+
"lastMaintenanceTime":{"shape":"SyntheticTimestamp_date_time"},
1895+
"nextMaintenanceTime":{"shape":"SyntheticTimestamp_date_time"}
18381896
}
18391897
},
18401898
"Username":{

0 commit comments

Comments
 (0)