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

Commit 246b05a

Browse files
author
awssdkgo
committed
Release v1.21.2
1 parent 840be55 commit 246b05a

File tree

12 files changed

+211
-25
lines changed

12 files changed

+211
-25
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
Release v1.21.2 (2019-07-22)
2+
===
3+
4+
### Service Client Updates
5+
* `aws/endpoints`: Updated Regions and Endpoints metadata.
6+
* `service/mq`: Updates service API and documentation
7+
* Adds support for AWS Key Management Service (KMS) to offer server-side encryption. You can now select your own customer managed CMK, or use an AWS managed CMK in your KMS account.
8+
* `service/shield`: Updates service API and documentation
9+
* Adding new VectorType (HTTP_Reflection) and related top contributor types to describe WordPress Pingback DDoS attacks.
10+
11+
### SDK Enhancements
12+
* Fixup SDK source formating, test error checking, and simplify type conervsions
13+
* [#2703](https://github.com/aws/aws-sdk-go/pull/2703), [#2704](https://github.com/aws/aws-sdk-go/pull/2704), [#2705](https://github.com/aws/aws-sdk-go/pull/2705), [#2706](https://github.com/aws/aws-sdk-go/pull/2706), [#2707](https://github.com/aws/aws-sdk-go/pull/2707), [#2708](https://github.com/aws/aws-sdk-go/pull/2708)
14+
15+
### SDK Bugs
16+
* `aws/request`: Fix SDK error checking when seeking readers ([#2696](https://github.com/aws/aws-sdk-go/pull/2696))
17+
* Fixes the SDK handling of seeking a reader to ensure errors are not lost, and are bubbled up.
18+
* In several places the SDK ignored Seek errors when attempting to determine a reader's length, or rewinding the reader for retry attempts.
19+
* Related to [#2525](https://github.com/aws/aws-sdk-go/issues/2525)
120
Release v1.21.1 (2019-07-19)
221
===
322

CHANGELOG_PENDING.md

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

33
### SDK Enhancements
4-
* Fixup SDK source formating, test error checking, and simplify type conervsions
5-
* [#2703](https://github.com/aws/aws-sdk-go/pull/2703), [#2704](https://github.com/aws/aws-sdk-go/pull/2704), [#2705](https://github.com/aws/aws-sdk-go/pull/2705), [#2706](https://github.com/aws/aws-sdk-go/pull/2706), [#2707](https://github.com/aws/aws-sdk-go/pull/2707), [#2708](https://github.com/aws/aws-sdk-go/pull/2708)
64

75
### SDK Bugs
8-
* `aws/request`: Fix SDK error checking when seeking readers ([#2696](https://github.com/aws/aws-sdk-go/pull/2696))
9-
* Fixes the SDK handling of seeking a reader to ensure errors are not lost, and are bubbled up.
10-
* In several places the SDK ignored Seek errors when attempting to determine a reader's length, or rewinding the reader for retry attempts.
11-
* Related to [#2525](https://github.com/aws/aws-sdk-go/issues/2525)

aws/endpoints/defaults.go

Lines changed: 10 additions & 0 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.21.1"
8+
const SDKVersion = "1.21.2"

models/apis/mq/2017-11-27/api-2.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -796,6 +796,10 @@
796796
"shape" : "DeploymentMode",
797797
"locationName" : "deploymentMode"
798798
},
799+
"EncryptionOptions" : {
800+
"shape" : "EncryptionOptions",
801+
"locationName" : "encryptionOptions"
802+
},
799803
"EngineType" : {
800804
"shape" : "EngineType",
801805
"locationName" : "engineType"
@@ -875,6 +879,10 @@
875879
"shape" : "DeploymentMode",
876880
"locationName" : "deploymentMode"
877881
},
882+
"EncryptionOptions" : {
883+
"shape" : "EncryptionOptions",
884+
"locationName" : "encryptionOptions"
885+
},
878886
"EngineType" : {
879887
"shape" : "EngineType",
880888
"locationName" : "engineType"
@@ -1277,6 +1285,10 @@
12771285
"shape" : "DeploymentMode",
12781286
"locationName" : "deploymentMode"
12791287
},
1288+
"EncryptionOptions" : {
1289+
"shape" : "EncryptionOptions",
1290+
"locationName" : "encryptionOptions"
1291+
},
12801292
"EngineType" : {
12811293
"shape" : "EngineType",
12821294
"locationName" : "engineType"
@@ -1373,6 +1385,10 @@
13731385
"shape" : "DeploymentMode",
13741386
"locationName" : "deploymentMode"
13751387
},
1388+
"EncryptionOptions" : {
1389+
"shape" : "EncryptionOptions",
1390+
"locationName" : "encryptionOptions"
1391+
},
13761392
"EngineType" : {
13771393
"shape" : "EngineType",
13781394
"locationName" : "engineType"
@@ -1595,6 +1611,20 @@
15951611
}
15961612
}
15971613
},
1614+
"EncryptionOptions" : {
1615+
"type" : "structure",
1616+
"members" : {
1617+
"KmsKeyId" : {
1618+
"shape" : "__string",
1619+
"locationName" : "kmsKeyId"
1620+
},
1621+
"UseAwsOwnedKey" : {
1622+
"shape" : "__boolean",
1623+
"locationName" : "useAwsOwnedKey"
1624+
}
1625+
},
1626+
"required" : [ "UseAwsOwnedKey" ]
1627+
},
15981628
"EngineType" : {
15991629
"type" : "string",
16001630
"enum" : [ "ACTIVEMQ" ]
@@ -2446,5 +2476,15 @@
24462476
"type" : "timestamp",
24472477
"timestampFormat" : "unixTimestamp"
24482478
}
2479+
},
2480+
"authorizers" : {
2481+
"authorization_strategy" : {
2482+
"name" : "authorization_strategy",
2483+
"type" : "provided",
2484+
"placement" : {
2485+
"location" : "header",
2486+
"name" : "Authorization"
2487+
}
2488+
}
24492489
}
24502490
}

models/apis/mq/2017-11-27/docs-2.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,13 @@
168168
"base" : "Returns information about an ActiveMQ user.",
169169
"refs" : { }
170170
},
171+
"EncryptionOptions" : {
172+
"base" : "Encryption options for the broker.",
173+
"refs" : {
174+
"CreateBrokerInput$EncryptionOptions" : "Encryption options for the broker.",
175+
"DescribeBrokerOutput$EncryptionOptions" : "Encryption options for the broker."
176+
}
177+
},
171178
"EngineType" : {
172179
"base" : "The type of broker engine. Note: Currently, Amazon MQ supports only ActiveMQ.",
173180
"refs" : {
@@ -311,6 +318,7 @@
311318
"DescribeBrokerOutput$AutoMinorVersionUpgrade" : "Required. Enables automatic upgrades to new minor versions for brokers, as Apache releases the versions. The automatic upgrades occur during the maintenance window of the broker or after a manual broker reboot.",
312319
"DescribeBrokerOutput$PubliclyAccessible" : "Required. Enables connections from applications outside of the VPC that hosts the broker's subnets.",
313320
"DescribeUserOutput$ConsoleAccess" : "Enables access to the the ActiveMQ Web Console for the ActiveMQ user.",
321+
"EncryptionOptions$UseAwsOwnedKey" : "Enables the use of an AWS owned CMK using AWS Key Management Service (KMS).",
314322
"Logs$Audit" : "Enables audit logging. Every user management action made using JMX or the ActiveMQ Web Console is logged.",
315323
"Logs$General" : "Enables general logging.",
316324
"LogsSummary$Audit" : "Enables audit logging. Every user management action made using JMX or the ActiveMQ Web Console is logged.",
@@ -484,6 +492,7 @@
484492
"DescribeConfigurationRevisionOutput$Description" : "The description of the configuration.",
485493
"DescribeUserOutput$BrokerId" : "Required. The unique ID that Amazon MQ generates for the broker.",
486494
"DescribeUserOutput$Username" : "Required. The username of the ActiveMQ user. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 2-100 characters long.",
495+
"EncryptionOptions$KmsKeyId" : "The customer master key (CMK) to use for the AWS Key Management Service (KMS). This key is used to encrypt your data at rest. If not provided, Amazon MQ will use a default CMK to encrypt your data.",
487496
"EngineVersion$Name" : "Id for the version.",
488497
"Error$ErrorAttribute" : "The attribute which caused the error.",
489498
"Error$Message" : "The explanation of the error.",

models/apis/shield/2016-06-02/api-2.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,9 @@
366366
"SOURCE_ASN",
367367
"SOURCE_COUNTRY",
368368
"SOURCE_IP_ADDRESS",
369-
"SOURCE_USER_AGENT"
369+
"SOURCE_USER_AGENT",
370+
"WORDPRESS_PINGBACK_REFLECTOR",
371+
"WORDPRESS_PINGBACK_SOURCE"
370372
]
371373
},
372374
"AttackSummaries":{

0 commit comments

Comments
 (0)