Skip to content
This repository was archived by the owner on Jul 31, 2025. It is now read-only.

Commit 0caab5a

Browse files
Release v1.40.32 (2021-08-27) (#4080)
Release v1.40.32 (2021-08-27) === ### Service Client Updates * `service/ec2`: Updates service API and documentation * This release adds the BootMode flag to the ImportImage API and showing the detected BootMode of an ImportImage task. * `service/elasticmapreduce`: Updates service API and documentation * Amazon EMR now supports auto-terminating idle EMR clusters. You can specify the idle timeout value when enabling auto-termination for both running and new clusters and Amazon EMR automatically terminates the cluster when idle timeout kicks in. * `service/s3`: Updates service documentation and examples * Documentation updates for Amazon S3.
1 parent 1ad2399 commit 0caab5a

File tree

15 files changed

+1070
-372
lines changed

15 files changed

+1070
-372
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
Release v1.40.32 (2021-08-27)
2+
===
3+
4+
### Service Client Updates
5+
* `service/ec2`: Updates service API and documentation
6+
* This release adds the BootMode flag to the ImportImage API and showing the detected BootMode of an ImportImage task.
7+
* `service/elasticmapreduce`: Updates service API and documentation
8+
* Amazon EMR now supports auto-terminating idle EMR clusters. You can specify the idle timeout value when enabling auto-termination for both running and new clusters and Amazon EMR automatically terminates the cluster when idle timeout kicks in.
9+
* `service/s3`: Updates service documentation and examples
10+
* Documentation updates for Amazon S3.
11+
112
Release v1.40.31 (2021-08-26)
213
===
314

aws/endpoints/defaults.go

Lines changed: 48 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aws/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ package aws
55
const SDKName = "aws-sdk-go"
66

77
// SDKVersion is the version of this SDK
8-
const SDKVersion = "1.40.31"
8+
const SDKVersion = "1.40.32"

models/apis/ec2/2016-11-15/api-2.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19220,7 +19220,8 @@
1922019220
"shape":"TagSpecificationList",
1922119221
"locationName":"TagSpecification"
1922219222
},
19223-
"UsageOperation":{"shape":"String"}
19223+
"UsageOperation":{"shape":"String"},
19224+
"BootMode":{"shape":"BootModeValues"}
1922419225
}
1922519226
},
1922619227
"ImportImageResult":{
@@ -19358,6 +19359,10 @@
1935819359
"UsageOperation":{
1935919360
"shape":"String",
1936019361
"locationName":"usageOperation"
19362+
},
19363+
"BootMode":{
19364+
"shape":"BootModeValues",
19365+
"locationName":"bootMode"
1936119366
}
1936219367
}
1936319368
},

models/apis/ec2/2016-11-15/docs-2.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2082,6 +2082,8 @@
20822082
"base": null,
20832083
"refs": {
20842084
"Image$BootMode": "<p>The boot mode of the image. For more information, see <a href=\"https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ami-boot.html\">Boot modes</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>",
2085+
"ImportImageRequest$BootMode": "<p>The boot mode of the virtual machine.</p>",
2086+
"ImportImageTask$BootMode": "<p>The boot mode of the virtual machine.</p>",
20852087
"Instance$BootMode": "<p>The boot mode of the instance. For more information, see <a href=\"https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ami-boot.html\">Boot modes</a> in the <i>Amazon EC2 User Guide</i>.</p>",
20862088
"RegisterImageRequest$BootMode": "<p>The boot mode of the AMI. For more information, see <a href=\"https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ami-boot.html\">Boot modes</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>"
20872089
}

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

Lines changed: 73 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,15 @@
242242
{"shape":"InvalidRequestException"}
243243
]
244244
},
245+
"GetAutoTerminationPolicy":{
246+
"name":"GetAutoTerminationPolicy",
247+
"http":{
248+
"method":"POST",
249+
"requestUri":"/"
250+
},
251+
"input":{"shape":"GetAutoTerminationPolicyInput"},
252+
"output":{"shape":"GetAutoTerminationPolicyOutput"}
253+
},
245254
"GetBlockPublicAccessConfiguration":{
246255
"name":"GetBlockPublicAccessConfiguration",
247256
"http":{
@@ -465,6 +474,15 @@
465474
"input":{"shape":"PutAutoScalingPolicyInput"},
466475
"output":{"shape":"PutAutoScalingPolicyOutput"}
467476
},
477+
"PutAutoTerminationPolicy":{
478+
"name":"PutAutoTerminationPolicy",
479+
"http":{
480+
"method":"POST",
481+
"requestUri":"/"
482+
},
483+
"input":{"shape":"PutAutoTerminationPolicyInput"},
484+
"output":{"shape":"PutAutoTerminationPolicyOutput"}
485+
},
468486
"PutBlockPublicAccessConfiguration":{
469487
"name":"PutBlockPublicAccessConfiguration",
470488
"http":{
@@ -496,6 +514,15 @@
496514
"input":{"shape":"RemoveAutoScalingPolicyInput"},
497515
"output":{"shape":"RemoveAutoScalingPolicyOutput"}
498516
},
517+
"RemoveAutoTerminationPolicy":{
518+
"name":"RemoveAutoTerminationPolicy",
519+
"http":{
520+
"method":"POST",
521+
"requestUri":"/"
522+
},
523+
"input":{"shape":"RemoveAutoTerminationPolicyInput"},
524+
"output":{"shape":"RemoveAutoTerminationPolicyOutput"}
525+
},
499526
"RemoveManagedScalingPolicy":{
500527
"name":"RemoveManagedScalingPolicy",
501528
"http":{
@@ -779,6 +806,12 @@
779806
"StateChangeReason":{"shape":"AutoScalingPolicyStateChangeReason"}
780807
}
781808
},
809+
"AutoTerminationPolicy":{
810+
"type":"structure",
811+
"members":{
812+
"IdleTimeout":{"shape":"Long"}
813+
}
814+
},
782815
"BlockPublicAccessConfiguration":{
783816
"type":"structure",
784817
"required":["BlockPublicSecurityGroupRules"],
@@ -1339,6 +1372,19 @@
13391372
"LogFile":{"shape":"String"}
13401373
}
13411374
},
1375+
"GetAutoTerminationPolicyInput":{
1376+
"type":"structure",
1377+
"required":["ClusterId"],
1378+
"members":{
1379+
"ClusterId":{"shape":"ClusterId"}
1380+
}
1381+
},
1382+
"GetAutoTerminationPolicyOutput":{
1383+
"type":"structure",
1384+
"members":{
1385+
"AutoTerminationPolicy":{"shape":"AutoTerminationPolicy"}
1386+
}
1387+
},
13421388
"GetBlockPublicAccessConfigurationInput":{
13431389
"type":"structure",
13441390
"members":{
@@ -2361,6 +2407,19 @@
23612407
"ClusterArn":{"shape":"ArnType"}
23622408
}
23632409
},
2410+
"PutAutoTerminationPolicyInput":{
2411+
"type":"structure",
2412+
"required":["ClusterId"],
2413+
"members":{
2414+
"ClusterId":{"shape":"ClusterId"},
2415+
"AutoTerminationPolicy":{"shape":"AutoTerminationPolicy"}
2416+
}
2417+
},
2418+
"PutAutoTerminationPolicyOutput":{
2419+
"type":"structure",
2420+
"members":{
2421+
}
2422+
},
23642423
"PutBlockPublicAccessConfigurationInput":{
23652424
"type":"structure",
23662425
"required":["BlockPublicAccessConfiguration"],
@@ -2412,6 +2471,18 @@
24122471
"members":{
24132472
}
24142473
},
2474+
"RemoveAutoTerminationPolicyInput":{
2475+
"type":"structure",
2476+
"required":["ClusterId"],
2477+
"members":{
2478+
"ClusterId":{"shape":"ClusterId"}
2479+
}
2480+
},
2481+
"RemoveAutoTerminationPolicyOutput":{
2482+
"type":"structure",
2483+
"members":{
2484+
}
2485+
},
24152486
"RemoveManagedScalingPolicyInput":{
24162487
"type":"structure",
24172488
"required":["ClusterId"],
@@ -2481,7 +2552,8 @@
24812552
"KerberosAttributes":{"shape":"KerberosAttributes"},
24822553
"StepConcurrencyLevel":{"shape":"Integer"},
24832554
"ManagedScalingPolicy":{"shape":"ManagedScalingPolicy"},
2484-
"PlacementGroupConfigs":{"shape":"PlacementGroupConfigList"}
2555+
"PlacementGroupConfigs":{"shape":"PlacementGroupConfigList"},
2556+
"AutoTerminationPolicy":{"shape":"AutoTerminationPolicy"}
24852557
}
24862558
},
24872559
"RunJobFlowOutput":{

0 commit comments

Comments
 (0)