Skip to content

Commit d07b568

Browse files
Release v1.34.17 (2020-09-03) (#3521)
Release v1.34.17 (2020-09-03) === ### Service Client Updates * `service/guardduty`: Updates service API and documentation * GuardDuty findings triggered by failed events now include the error code name within the AwsApiCallAction section. * `service/kendra`: Updates service API and documentation * Amazon Kendra now returns confidence scores for both 'answer' and 'question and answer' query responses. * `service/mediapackage`: Updates service API and documentation * Enables inserting a UTCTiming XML tag in the output manifest of a DASH endpoint which a media player will use to help with time synchronization. * `service/states`: Updates service API and documentation * This release of the AWS Step Functions SDK introduces support for payloads up to 256KB for Standard and Express workflows
1 parent 95871fc commit d07b568

File tree

14 files changed

+533
-74
lines changed

14 files changed

+533
-74
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
Release v1.34.17 (2020-09-03)
2+
===
3+
4+
### Service Client Updates
5+
* `service/guardduty`: Updates service API and documentation
6+
* GuardDuty findings triggered by failed events now include the error code name within the AwsApiCallAction section.
7+
* `service/kendra`: Updates service API and documentation
8+
* Amazon Kendra now returns confidence scores for both 'answer' and 'question and answer' query responses.
9+
* `service/mediapackage`: Updates service API and documentation
10+
* Enables inserting a UTCTiming XML tag in the output manifest of a DASH endpoint which a media player will use to help with time synchronization.
11+
* `service/states`: Updates service API and documentation
12+
* This release of the AWS Step Functions SDK introduces support for payloads up to 256KB for Standard and Express workflows
13+
114
Release v1.34.16 (2020-09-02)
215
===
316

aws/version.go

+1-1
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.34.16"
8+
const SDKVersion = "1.34.17"

models/apis/guardduty/2017-11-28/api-2.json

+4
Original file line numberDiff line numberDiff line change
@@ -1022,6 +1022,10 @@
10221022
"shape":"DomainDetails",
10231023
"locationName":"domainDetails"
10241024
},
1025+
"ErrorCode":{
1026+
"shape":"String",
1027+
"locationName":"errorCode"
1028+
},
10251029
"RemoteIpDetails":{
10261030
"shape":"RemoteIpDetails",
10271031
"locationName":"remoteIpDetails"

models/apis/guardduty/2017-11-28/docs-2.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@
166166
}
167167
},
168168
"AwsApiCallAction": {
169-
"base": "<p>Contains information about the API operation.</p>",
169+
"base": "<p>Contains information about the API action.</p>",
170170
"refs": {
171171
"Action$AwsApiCallAction": "<p>Information about the AWS_API_CALL action described in this finding.</p>"
172172
}
@@ -394,7 +394,7 @@
394394
}
395395
},
396396
"DefaultServerSideEncryption": {
397-
"base": "<p>Contains information on the server side encryption method used in the S3 bucket. See <a href=\"https://docs.aws.amazon.com/AmazonS3/atest/dev/serv-side-encryption.html\">S3 Server-Side Encryption</a> for more information.</p>",
397+
"base": "<p>Contains information on the server side encryption method used in the S3 bucket. See <a href=\"https://docs.aws.amazon.com/AmazonS3/latest/dev/serv-side-encryption.html\">S3 Server-Side Encryption</a> for more information.</p>",
398398
"refs": {
399399
"S3BucketDetail$DefaultServerSideEncryption": "<p>Describes the server side encryption method used in the S3 bucket.</p>"
400400
}
@@ -1329,7 +1329,7 @@
13291329
"RemoteIpDetails": {
13301330
"base": "<p>Contains information about the remote IP address of the connection.</p>",
13311331
"refs": {
1332-
"AwsApiCallAction$RemoteIpDetails": "<p>The remote IP information of the connection.</p>",
1332+
"AwsApiCallAction$RemoteIpDetails": "<p>The remote IP information of the connection that initiated the AWS API call.</p>",
13331333
"NetworkConnectionAction$RemoteIpDetails": "<p>The remote IP information of the connection.</p>",
13341334
"PortProbeDetail$RemoteIpDetails": "<p>The remote IP information of the connection.</p>"
13351335
}
@@ -1434,6 +1434,7 @@
14341434
"AdminAccount$AdminAccountId": "<p>The AWS account ID for the account.</p>",
14351435
"AwsApiCallAction$Api": "<p>The AWS API name.</p>",
14361436
"AwsApiCallAction$CallerType": "<p>The AWS API caller type.</p>",
1437+
"AwsApiCallAction$ErrorCode": "<p>The error code of the failed AWS API action.</p>",
14371438
"AwsApiCallAction$ServiceName": "<p>The AWS service name whose API was invoked.</p>",
14381439
"BadRequestException$Message": "<p>The error message.</p>",
14391440
"BadRequestException$Type": "<p>The error type.</p>",

models/apis/kendra/2019-02-03/api-2.json

+17-2
Original file line numberDiff line numberDiff line change
@@ -751,7 +751,7 @@
751751
},
752752
"DataSourceInclusionsExclusionsStringsMember":{
753753
"type":"string",
754-
"max":150,
754+
"max":50,
755755
"min":1
756756
},
757757
"DataSourceName":{
@@ -1596,7 +1596,8 @@
15961596
"DocumentTitle":{"shape":"TextWithHighlights"},
15971597
"DocumentExcerpt":{"shape":"TextWithHighlights"},
15981598
"DocumentURI":{"shape":"Url"},
1599-
"DocumentAttributes":{"shape":"DocumentAttributeList"}
1599+
"DocumentAttributes":{"shape":"DocumentAttributeList"},
1600+
"ScoreAttributes":{"shape":"ScoreAttributes"}
16001601
}
16011602
},
16021603
"QueryResultItemList":{
@@ -1875,6 +1876,20 @@
18751876
]
18761877
},
18771878
"ScanSchedule":{"type":"string"},
1879+
"ScoreAttributes":{
1880+
"type":"structure",
1881+
"members":{
1882+
"ScoreConfidence":{"shape":"ScoreConfidence"}
1883+
}
1884+
},
1885+
"ScoreConfidence":{
1886+
"type":"string",
1887+
"enum":[
1888+
"VERY_HIGH",
1889+
"HIGH",
1890+
"MEDIUM"
1891+
]
1892+
},
18781893
"Search":{
18791894
"type":"structure",
18801895
"members":{

models/apis/kendra/2019-02-03/docs-2.json

+17-5
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"AdditionalResultAttributeList": {
5555
"base": null,
5656
"refs": {
57-
"QueryResultItem$AdditionalAttributes": "<p>One or more additional attribues associated with the query result.</p>"
57+
"QueryResultItem$AdditionalAttributes": "<p>One or more additional attributes associated with the query result.</p>"
5858
}
5959
},
6060
"AdditionalResultAttributeValue": {
@@ -522,8 +522,8 @@
522522
"base": "<p>A custom attribute value assigned to a document. </p>",
523523
"refs": {
524524
"AttributeFilter$EqualsTo": "<p>Performs an equals operation on two document attributes.</p>",
525-
"AttributeFilter$ContainsAll": "<p>Returns true when a document contains all of the specified document attributes. This filter is only appicable to <code>StringListValue</code> metadata.</p>",
526-
"AttributeFilter$ContainsAny": "<p>Returns true when a document contains any of the specified document attributes.This filter is only appicable to <code>StringListValue</code> metadata.</p>",
525+
"AttributeFilter$ContainsAll": "<p>Returns true when a document contains all of the specified document attributes. This filter is only applicable to <code>StringListValue</code> metadata.</p>",
526+
"AttributeFilter$ContainsAny": "<p>Returns true when a document contains any of the specified document attributes. This filter is only applicable to <code>StringListValue</code> metadata.</p>",
527527
"AttributeFilter$GreaterThan": "<p>Performs a greater than operation on two document attributes. Use with a document attribute of type <code>Integer</code> or <code>Long</code>.</p>",
528528
"AttributeFilter$GreaterThanOrEquals": "<p>Performs a greater or equals than operation on two document attributes. Use with a document attribute of type <code>Integer</code> or <code>Long</code>.</p>",
529529
"AttributeFilter$LessThan": "<p>Performs a less than operation on two document attributes. Use with a document attribute of type <code>Integer</code> or <code>Long</code>.</p>",
@@ -1055,7 +1055,7 @@
10551055
"QueryIdentifiersEnclosingOption": {
10561056
"base": null,
10571057
"refs": {
1058-
"SqlConfiguration$QueryIdentifiersEnclosingOption": "<p>Determines whether Amazon Kendra encloses SQL identifiers in double quotes (\") when making a database query.</p> <p>By default, Amazon Kendra passes SQL identifiers the way that they are entered into the data source configuration. It does not change the case of identifiers or enclose them in quotes.</p> <p>PostgreSQL internally converts uppercase characters to lower case characters in identifiers unless they are quoted. Choosing this option encloses identifiers in quotes so that PostgreSQL does not convert the character's case.</p> <p>For MySQL databases, you must enable the <code>ansi_quotes</code> option when you choose this option.</p>"
1058+
"SqlConfiguration$QueryIdentifiersEnclosingOption": "<p>Determines whether Amazon Kendra encloses SQL identifiers for tables and column names in double quotes (\") when making a database query.</p> <p>By default, Amazon Kendra passes SQL identifiers the way that they are entered into the data source configuration. It does not change the case of identifiers or enclose them in quotes.</p> <p>PostgreSQL internally converts uppercase characters to lower case characters in identifiers unless they are quoted. Choosing this option encloses identifiers in quotes so that PostgreSQL does not convert the character's case.</p> <p>For MySQL databases, you must enable the <code>ansi_quotes</code> option when you set this field to <code>DOUBLE_QUOTES</code>.</p>"
10591059
}
10601060
},
10611061
"QueryRequest": {
@@ -1293,6 +1293,18 @@
12931293
"UpdateDataSourceRequest$Schedule": "<p>The new update schedule for the data source.</p>"
12941294
}
12951295
},
1296+
"ScoreAttributes": {
1297+
"base": "<p>Provides a relative ranking that indicates how confident Amazon Kendra is that the response matches the query.</p>",
1298+
"refs": {
1299+
"QueryResultItem$ScoreAttributes": "<p>Indicates the confidence that Amazon Kendra has that a result matches the query that you provided. Each result is placed into a bin that indicates the confidence, <code>VERY_HIGH</code>, <code>HIGH</code>, and <code>MEDIUM</code>. You can use the score to determine if a response meets the confidence needed for your application.</p> <p>Confidence scores are only returned for results with the <code>Type</code> field set to <code>QUESTION_ANSWER</code> or <code>ANSWER</code>. This field is not returned if the <code>Type</code> field is set to <code>DOCUMENT</code>.</p>"
1300+
}
1301+
},
1302+
"ScoreConfidence": {
1303+
"base": "Enumeration for query score confidence.",
1304+
"refs": {
1305+
"ScoreAttributes$ScoreConfidence": "<p>A relative ranking for how well the response matches the query.</p>"
1306+
}
1307+
},
12961308
"Search": {
12971309
"base": "<p>Provides information about how a custom index field is used during a search.</p>",
12981310
"refs": {
@@ -1382,7 +1394,7 @@
13821394
}
13831395
},
13841396
"SortingConfiguration": {
1385-
"base": "<p>Specifies the document attribute to use to sort the response to a Amazon Kendra query. You can specify a single attribute for sorting. The attribute must have the <code>Sortable</code> flag set to <code>true</code>, otherwise Amazon Kendra returns an exception.</p>",
1397+
"base": "<p>Specifies the document attribute to use to sort the response to a Amazon Kendra query. You can specify a single attribute for sorting. The attribute must have the <code>Sortable</code> flag set to <code>true</code>, otherwise Amazon Kendra returns an exception.</p> <p>You can sort attributes of the following types.</p> <ul> <li> <p>Date value</p> </li> <li> <p>Long value</p> </li> <li> <p>String value</p> </li> </ul> <p>You can't sort attributes of the following type.</p> <ul> <li> <p>String list value</p> </li> </ul>",
13861398
"refs": {
13871399
"QueryRequest$SortingConfiguration": "<p>Provides information that determines how the results of the query are sorted. You can set the field that Amazon Kendra should sort the results on, and specify whether the results should be sorted in ascending or descending order. In the case of ties in sorting the results, the results are sorted by relevance.</p> <p>If you don't provide sorting configuration, the results are sorted by the relevance that Amazon Kendra determines for the result.</p>"
13881400
}

models/apis/mediapackage/2017-10-12/api-2.json

+16
Original file line numberDiff line numberDiff line change
@@ -1060,6 +1060,14 @@
10601060
"SuggestedPresentationDelaySeconds": {
10611061
"locationName": "suggestedPresentationDelaySeconds",
10621062
"shape": "__integer"
1063+
},
1064+
"UtcTiming": {
1065+
"locationName": "utcTiming",
1066+
"shape": "UtcTiming"
1067+
},
1068+
"UtcTimingUri": {
1069+
"locationName": "utcTimingUri",
1070+
"shape": "__string"
10631071
}
10641072
},
10651073
"type": "structure"
@@ -2422,6 +2430,14 @@
24222430
},
24232431
"type": "structure"
24242432
},
2433+
"UtcTiming": {
2434+
"enum": [
2435+
"NONE",
2436+
"HTTP-HEAD",
2437+
"HTTP-ISO"
2438+
],
2439+
"type": "string"
2440+
},
24252441
"__AdTriggersElement": {
24262442
"enum": [
24272443
"SPLICE_INSERT",

models/apis/mediapackage/2017-10-12/docs-2.json

+7
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,12 @@
281281
"base" : null,
282282
"refs" : { }
283283
},
284+
"UtcTiming" : {
285+
"base" : null,
286+
"refs" : {
287+
"DashPackage$UtcTiming" : "Determines the type of UTCTiming included in the Media Presentation Description (MPD)"
288+
}
289+
},
284290
"__AdTriggersElement" : {
285291
"base" : null,
286292
"refs" : {
@@ -406,6 +412,7 @@
406412
"ChannelUpdateParameters$Description" : "A short text description of the Channel.",
407413
"CmafPackage$SegmentPrefix" : "An optional custom string that is prepended to the name of each segment. If not specified, it defaults to the ChannelId.",
408414
"CmafPackageCreateOrUpdateParameters$SegmentPrefix" : "An optional custom string that is prepended to the name of each segment. If not specified, it defaults to the ChannelId.",
415+
"DashPackage$UtcTimingUri" : "Specifies the value attribute of the UTCTiming field when utcTiming is set to HTTP-ISO or HTTP-HEAD",
409416
"HarvestJob$Arn" : "The Amazon Resource Name (ARN) assigned to the HarvestJob.\n",
410417
"HarvestJob$ChannelId" : "The ID of the Channel that the HarvestJob will harvest from.\n",
411418
"HarvestJob$CreatedAt" : "The time the HarvestJob was submitted\n",

0 commit comments

Comments
 (0)