Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update SDK API clients from latest model #1507

Merged
merged 4 commits into from
Nov 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
10 changes: 10 additions & 0 deletions .changelog/41575353444b40ffbf474f4155544f00.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"id": "41575353-444b-40ff-bf47-4f4155544f00",
"type": "release",
"description": "New AWS service client module",
"modules": [
"service/appconfigdata",
"service/drs",
"service/migrationhubstrategy"
]
}
8 changes: 8 additions & 0 deletions .changelog/59f1938f00b846e9a4a224a69b1919ea.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"id": "59f1938f-00b8-46e9-a4a2-24a69b1919ea",
"type": "announcement",
"description": "Fix API modeling bug incorrectly generating `DocumentAttributeValue` type as a union instead of a structure. This update corrects this bug by correcting the `DocumentAttributeValue` type to be a `struct` instead of an `interface`. This change also removes the `DocumentAttributeValueMember` types. To migrate to this change your application using service/kendra will need to be updated to use struct members in `DocumentAttributeValue` instead of `DocumentAttributeValueMember` types.",
"modules": [
"service/kendra"
]
}
45 changes: 45 additions & 0 deletions .changelog/e2d513dd7ed54a0ea1eac2ef37c64d52.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"id": "e2d513dd-7ed5-4a0e-a1ea-c2ef37c64d52",
"type": "feature",
"description": "API client updated",
"modules": [
"service/amplifybackend",
"service/apigateway",
"service/appconfig",
"service/applicationinsights",
"service/appstream",
"service/auditmanager",
"service/batch",
"service/chime",
"service/chimesdkmeetings",
"service/cloudformation",
"service/cloudtrail",
"service/cloudwatch",
"service/connect",
"service/databasemigrationservice",
"service/databrew",
"service/devopsguru",
"service/dynamodbstreams",
"service/ec2",
"service/eks",
"service/forecast",
"service/ivs",
"service/kafka",
"service/kendra",
"service/kms",
"service/lambda",
"service/lexmodelsv2",
"service/lexruntimev2",
"service/location",
"service/mediaconvert",
"service/medialive",
"service/mgn",
"service/qldb",
"service/qldbsession",
"service/redshift",
"service/sns",
"service/ssm",
"service/transfer",
"service/wafv2"
]
}
2 changes: 1 addition & 1 deletion aws/endpoints_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ func TestEndpointResolverWithOptionsFunc_ResolveEndpoint(t *testing.T) {
t.Errorf("expect no error, got %v", err)
}

if e,a := "https://foo.amazonaws.com", e.URL; e != a {
if e, a := "https://foo.amazonaws.com", e.URL; e != a {
t.Errorf("expect %v, got %v", e, a)
}
}
Loading