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

Commit d5c2145

Browse files
Release v1.37.14 (2021-02-18) (#3789)
Release v1.37.14 (2021-02-18) === ### Service Client Updates * `service/cloudformation`: Updates service API and documentation * Adding the 'callAs' parameter to all CloudFormation StackSets APIs except getTemplateSummary to support creating and managing service-managed StackSets with AWS Organizations Delegated Administrators * `service/codebuild`: Updates service API and documentation * AWS CodeBuild now allows you to specify a separate bucket owner as part of the S3 destination in a report group. * `service/health`: Updates service documentation * Documentation updates for health * `service/sagemaker`: Updates service API and documentation * This release adds expires-in-seconds parameter to the CreatePresignedDomainUrl API for support of a configurable TTL. ### SDK Enhancements * `service/neptune`: Support for PreSignedUrl generation for CopyDBClusterSnapshot and CreateDBCluster operations. ([#3782](#3782)) * `service/docdb`: Support for PreSignedUrl generation for CopyDBClusterSnapshot and CreateDBCluster operations. ([#3782](#3782))
1 parent 39a0852 commit d5c2145

File tree

14 files changed

+1116
-486
lines changed

14 files changed

+1116
-486
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
Release v1.37.14 (2021-02-18)
2+
===
3+
4+
### Service Client Updates
5+
* `service/cloudformation`: Updates service API and documentation
6+
* Adding the 'callAs' parameter to all CloudFormation StackSets APIs except getTemplateSummary to support creating and managing service-managed StackSets with AWS Organizations Delegated Administrators
7+
* `service/codebuild`: Updates service API and documentation
8+
* AWS CodeBuild now allows you to specify a separate bucket owner as part of the S3 destination in a report group.
9+
* `service/health`: Updates service documentation
10+
* Documentation updates for health
11+
* `service/sagemaker`: Updates service API and documentation
12+
* This release adds expires-in-seconds parameter to the CreatePresignedDomainUrl API for support of a configurable TTL.
13+
14+
### SDK Enhancements
15+
* `service/neptune`: Support for PreSignedUrl generation for CopyDBClusterSnapshot and CreateDBCluster operations. ([#3782](https://github.com/aws/aws-sdk-go/pull/3782))
16+
* `service/docdb`: Support for PreSignedUrl generation for CopyDBClusterSnapshot and CreateDBCluster operations. ([#3782](https://github.com/aws/aws-sdk-go/pull/3782))
17+
118
Release v1.37.13 (2021-02-17)
219
===
320

CHANGELOG_PENDING.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
### SDK Features
22

33
### SDK Enhancements
4-
* `service/neptune`: Support for PreSignedUrl generation for CopyDBClusterSnapshot and CreateDBCluster operations. ([#3782](https://github.com/aws/aws-sdk-go/pull/3782))
5-
* `service/docdb`: Support for PreSignedUrl generation for CopyDBClusterSnapshot and CreateDBCluster operations. ([#3782](https://github.com/aws/aws-sdk-go/pull/3782))
64

75
### SDK Bugs

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.37.13"
8+
const SDKVersion = "1.37.14"

models/apis/cloudformation/2010-05-15/api-2.json

Lines changed: 36 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -892,6 +892,13 @@
892892
},
893893
"exception":true
894894
},
895+
"CallAs":{
896+
"type":"string",
897+
"enum":[
898+
"SELF",
899+
"DELEGATED_ADMIN"
900+
]
901+
},
895902
"CancelUpdateStackInput":{
896903
"type":"structure",
897904
"required":["StackName"],
@@ -1118,7 +1125,8 @@
11181125
"OperationId":{
11191126
"shape":"ClientRequestToken",
11201127
"idempotencyToken":true
1121-
}
1128+
},
1129+
"CallAs":{"shape":"CallAs"}
11221130
}
11231131
},
11241132
"CreateStackInstancesOutput":{
@@ -1148,6 +1156,7 @@
11481156
"ExecutionRoleName":{"shape":"ExecutionRoleName"},
11491157
"PermissionModel":{"shape":"PermissionModels"},
11501158
"AutoDeployment":{"shape":"AutoDeployment"},
1159+
"CallAs":{"shape":"CallAs"},
11511160
"ClientRequestToken":{
11521161
"shape":"ClientRequestToken",
11531162
"idempotencyToken":true
@@ -1212,7 +1221,8 @@
12121221
"OperationId":{
12131222
"shape":"ClientRequestToken",
12141223
"idempotencyToken":true
1215-
}
1224+
},
1225+
"CallAs":{"shape":"CallAs"}
12161226
}
12171227
},
12181228
"DeleteStackInstancesOutput":{
@@ -1225,7 +1235,8 @@
12251235
"type":"structure",
12261236
"required":["StackSetName"],
12271237
"members":{
1228-
"StackSetName":{"shape":"StackSetName"}
1238+
"StackSetName":{"shape":"StackSetName"},
1239+
"CallAs":{"shape":"CallAs"}
12291240
}
12301241
},
12311242
"DeleteStackSetOutput":{
@@ -1357,7 +1368,8 @@
13571368
"members":{
13581369
"StackSetName":{"shape":"StackSetName"},
13591370
"StackInstanceAccount":{"shape":"Account"},
1360-
"StackInstanceRegion":{"shape":"Region"}
1371+
"StackInstanceRegion":{"shape":"Region"},
1372+
"CallAs":{"shape":"CallAs"}
13611373
}
13621374
},
13631375
"DescribeStackInstanceOutput":{
@@ -1419,7 +1431,8 @@
14191431
"type":"structure",
14201432
"required":["StackSetName"],
14211433
"members":{
1422-
"StackSetName":{"shape":"StackSetName"}
1434+
"StackSetName":{"shape":"StackSetName"},
1435+
"CallAs":{"shape":"CallAs"}
14231436
}
14241437
},
14251438
"DescribeStackSetOperationInput":{
@@ -1430,7 +1443,8 @@
14301443
],
14311444
"members":{
14321445
"StackSetName":{"shape":"StackSetName"},
1433-
"OperationId":{"shape":"ClientRequestToken"}
1446+
"OperationId":{"shape":"ClientRequestToken"},
1447+
"CallAs":{"shape":"CallAs"}
14341448
}
14351449
},
14361450
"DescribeStackSetOperationOutput":{
@@ -1552,7 +1566,8 @@
15521566
"OperationId":{
15531567
"shape":"ClientRequestToken",
15541568
"idempotencyToken":true
1555-
}
1569+
},
1570+
"CallAs":{"shape":"CallAs"}
15561571
}
15571572
},
15581573
"DetectStackSetDriftOutput":{
@@ -1855,7 +1870,8 @@
18551870
"MaxResults":{"shape":"MaxResults"},
18561871
"Filters":{"shape":"StackInstanceFilters"},
18571872
"StackInstanceAccount":{"shape":"Account"},
1858-
"StackInstanceRegion":{"shape":"Region"}
1873+
"StackInstanceRegion":{"shape":"Region"},
1874+
"CallAs":{"shape":"CallAs"}
18591875
}
18601876
},
18611877
"ListStackInstancesOutput":{
@@ -1890,7 +1906,8 @@
18901906
"StackSetName":{"shape":"StackSetName"},
18911907
"OperationId":{"shape":"ClientRequestToken"},
18921908
"NextToken":{"shape":"NextToken"},
1893-
"MaxResults":{"shape":"MaxResults"}
1909+
"MaxResults":{"shape":"MaxResults"},
1910+
"CallAs":{"shape":"CallAs"}
18941911
}
18951912
},
18961913
"ListStackSetOperationResultsOutput":{
@@ -1906,7 +1923,8 @@
19061923
"members":{
19071924
"StackSetName":{"shape":"StackSetName"},
19081925
"NextToken":{"shape":"NextToken"},
1909-
"MaxResults":{"shape":"MaxResults"}
1926+
"MaxResults":{"shape":"MaxResults"},
1927+
"CallAs":{"shape":"CallAs"}
19101928
}
19111929
},
19121930
"ListStackSetOperationsOutput":{
@@ -1921,7 +1939,8 @@
19211939
"members":{
19221940
"NextToken":{"shape":"NextToken"},
19231941
"MaxResults":{"shape":"MaxResults"},
1924-
"Status":{"shape":"StackSetStatus"}
1942+
"Status":{"shape":"StackSetStatus"},
1943+
"CallAs":{"shape":"CallAs"}
19251944
}
19261945
},
19271946
"ListStackSetsOutput":{
@@ -3223,7 +3242,8 @@
32233242
],
32243243
"members":{
32253244
"StackSetName":{"shape":"StackSetName"},
3226-
"OperationId":{"shape":"ClientRequestToken"}
3245+
"OperationId":{"shape":"ClientRequestToken"},
3246+
"CallAs":{"shape":"CallAs"}
32273247
}
32283248
},
32293249
"StopStackSetOperationOutput":{
@@ -3416,7 +3436,8 @@
34163436
"OperationId":{
34173437
"shape":"ClientRequestToken",
34183438
"idempotencyToken":true
3419-
}
3439+
},
3440+
"CallAs":{"shape":"CallAs"}
34203441
}
34213442
},
34223443
"UpdateStackInstancesOutput":{
@@ -3454,7 +3475,8 @@
34543475
"idempotencyToken":true
34553476
},
34563477
"Accounts":{"shape":"AccountList"},
3457-
"Regions":{"shape":"RegionList"}
3478+
"Regions":{"shape":"RegionList"},
3479+
"CallAs":{"shape":"CallAs"}
34583480
}
34593481
},
34603482
"UpdateStackSetOutput":{

0 commit comments

Comments
 (0)